-
Что такое
полиморфизм? -
Что такое *инкапсуляция? Что такое *нарушение инкапсуляции? -
Чем
абстрактныйкласс отличается отинтерфейса? -
Расскажите о
паттерне MVC. Чем отличаетсяпассивнаямодель отактивной?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var cal = new CalHeatMap(); | |
| cal.init({ | |
| itemSelector: $element, | |
| domain: "month", | |
| subDomain: "x_day", | |
| range: 3, |
Inspired by Trulia Trends - but with code and using SVG.
Example data shows concurrent user sessions over time, taken from a development environment.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # ******************************************* | |
| # WARNING: this does *not* handle 3-way merges properly. | |
| # Anything modified on the local branch since the common base will get ignored. | |
| # | |
| # FOR ANYONE LANDING HERE: | |
| # This script is now updated as part of the git-whistles gem. | |
| # https://github.com/mezis/git-whistles | |
| # ******************************************* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| "chrome-webstore-item": { | |
| "Вы сможете вернуть все как было в любое время.": "Вы сможете вернуть все как было в любое время.", | |
| "Нажмите «{buttonName}», чтобы продолжить": "Нажмите «<i18n:param>buttonName</i18n:param>», чтобы продолжить", | |
| "Нажмите кнопку \"{buttonName}\"": "Нажмите кнопку «<i18n:param>buttonName</i18n:param>»", | |
| "Устанавливая расширение, вы принимаете условия {legal}": "Устанавливая расширение, вы принимаете условия <i18n:param>legal</i18n:param>", | |
| "Устанавливая расширение, вы принимаете условия лицензионного соглашения": "Устанавливая расширение, вы принимаете условия лицензионного соглашения", | |
| "Чтобы добавить визуальные закладки.": "Чтобы добавить визуальные закладки.", | |
| "Чтобы легко переключаться между поисковиками.": "Чтобы легко переключаться между поисковиками.", | |
| "Чтобы сделать Яндекс поиском по умолчанию и стартовой страницей.": "Чтобы сделать Яндекс поиском по умолчанию и стартов |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/lib/utils.js b/lib/utils.js | |
| index c90dd6b0..0c5ae37f 100644 | |
| --- a/lib/utils.js | |
| +++ b/lib/utils.js | |
| @@ -6,7 +6,7 @@ | |
| const assert = require('assert'); | |
| const urlParse = require('url').parse; | |
| const path = require('path'); | |
| -const exec = require('child_process').exec; | |
| +const processSpawn = require('child_process').spawn; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| with self.profiler.actions.register_artifacts('Registering Sandbox resources'): | |
| if not self.Parameters.reuse_artifacts_cache: | |
| return self.create_artifact_resources(), ArtifactsCacheStatus.CACHE_IGNORED | |
| cached_resources = self.get_cached_artifact_resources() | |
| if cached_resources: | |
| return cached_resources, ArtifactsCacheStatus.CACHE_REUSED |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "filter": { | |
| "ref_glob": "refs/heads/release/v+([0-9]).+([0-9]).0" | |
| }, | |
| "reject": { | |
| "deleted": true | |
| } | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "filter": { | |
| "ref_glob": "refs/heads/release/v+([0-9]).+([0-9]).0", | |
| "deleted": false | |
| }, | |
| }, | |
| { | |
| "filter": { | |
| "ref_glob": "refs/heads/release/v*", |