Search is not available for this dataset
identifier
stringlengths
1
155
parameters
stringlengths
2
6.09k
docstring
stringlengths
11
63.4k
docstring_summary
stringlengths
0
63.4k
function
stringlengths
29
99.8k
function_tokens
list
start_point
list
end_point
list
language
stringclasses
1 value
docstring_language
stringlengths
2
7
docstring_language_predictions
stringlengths
18
23
is_langid_reliable
stringclasses
2 values
LegacyDatasource.add_batch_kwargs_generator
(self, name, class_name, **kwargs)
Add a BatchKwargGenerator to the datasource. Args: name (str): the name of the new BatchKwargGenerator to add class_name: class of the BatchKwargGenerator to add kwargs: additional keyword arguments will be passed directly to the new BatchKwargGenerator's constructor ...
Add a BatchKwargGenerator to the datasource.
def add_batch_kwargs_generator(self, name, class_name, **kwargs): """Add a BatchKwargGenerator to the datasource. Args: name (str): the name of the new BatchKwargGenerator to add class_name: class of the BatchKwargGenerator to add kwargs: additional keyword arguments...
[ "def", "add_batch_kwargs_generator", "(", "self", ",", "name", ",", "class_name", ",", "*", "*", "kwargs", ")", ":", "kwargs", "[", "\"class_name\"", "]", "=", "class_name", "generator", "=", "self", ".", "_build_batch_kwargs_generator", "(", "*", "*", "kwargs...
[ 221, 4 ]
[ 238, 24 ]
python
en
['en', 'ny', 'en']
True
LegacyDatasource._build_batch_kwargs_generator
(self, **kwargs)
Build a BatchKwargGenerator using the provided configuration and return the newly-built generator.
Build a BatchKwargGenerator using the provided configuration and return the newly-built generator.
def _build_batch_kwargs_generator(self, **kwargs): """Build a BatchKwargGenerator using the provided configuration and return the newly-built generator.""" generator = instantiate_class_from_config( config=kwargs, runtime_environment={"datasource": self}, config_defau...
[ "def", "_build_batch_kwargs_generator", "(", "self", ",", "*", "*", "kwargs", ")", ":", "generator", "=", "instantiate_class_from_config", "(", "config", "=", "kwargs", ",", "runtime_environment", "=", "{", "\"datasource\"", ":", "self", "}", ",", "config_defaults...
[ 240, 4 ]
[ 256, 24 ]
python
en
['en', 'en', 'en']
True
LegacyDatasource.get_batch_kwargs_generator
(self, name)
Get the (named) BatchKwargGenerator from a datasource) Args: name (str): name of BatchKwargGenerator (default value is 'default') Returns: BatchKwargGenerator (BatchKwargGenerator)
Get the (named) BatchKwargGenerator from a datasource)
def get_batch_kwargs_generator(self, name): """Get the (named) BatchKwargGenerator from a datasource) Args: name (str): name of BatchKwargGenerator (default value is 'default') Returns: BatchKwargGenerator (BatchKwargGenerator) """ if name in self._batch...
[ "def", "get_batch_kwargs_generator", "(", "self", ",", "name", ")", ":", "if", "name", "in", "self", ".", "_batch_kwargs_generators", ":", "return", "self", ".", "_batch_kwargs_generators", "[", "name", "]", "elif", "(", "\"batch_kwargs_generators\"", "in", "self"...
[ 258, 4 ]
[ 283, 24 ]
python
en
['en', 'en', 'en']
True
LegacyDatasource.list_batch_kwargs_generators
(self)
List currently-configured BatchKwargGenerator for this datasource. Returns: List(dict): each dictionary includes "name" and "type" keys
List currently-configured BatchKwargGenerator for this datasource.
def list_batch_kwargs_generators(self): """List currently-configured BatchKwargGenerator for this datasource. Returns: List(dict): each dictionary includes "name" and "type" keys """ generators = [] if "batch_kwargs_generators" in self._datasource_config: ...
[ "def", "list_batch_kwargs_generators", "(", "self", ")", ":", "generators", "=", "[", "]", "if", "\"batch_kwargs_generators\"", "in", "self", ".", "_datasource_config", ":", "for", "key", ",", "value", "in", "self", ".", "_datasource_config", "[", "\"batch_kwargs_...
[ 285, 4 ]
[ 299, 25 ]
python
en
['en', 'en', 'en']
True
LegacyDatasource.process_batch_parameters
(self, limit=None, dataset_options=None)
Use datasource-specific configuration to translate any batch parameters into batch kwargs at the datasource level. Args: limit (int): a parameter all datasources must accept to allow limiting a batch to a smaller number of rows. dataset_options (dict): a set of kwargs that will ...
Use datasource-specific configuration to translate any batch parameters into batch kwargs at the datasource level.
def process_batch_parameters(self, limit=None, dataset_options=None): """Use datasource-specific configuration to translate any batch parameters into batch kwargs at the datasource level. Args: limit (int): a parameter all datasources must accept to allow limiting a batch to a small...
[ "def", "process_batch_parameters", "(", "self", ",", "limit", "=", "None", ",", "dataset_options", "=", "None", ")", ":", "batch_kwargs", "=", "self", ".", "_datasource_config", ".", "get", "(", "\"batch_kwargs\"", ",", "{", "}", ")", "if", "limit", "is", ...
[ 302, 4 ]
[ 325, 27 ]
python
en
['en', 'en', 'sw']
True
LegacyDatasource.get_batch
(self, batch_kwargs, batch_parameters=None)
Get a batch of data from the datasource. Args: batch_kwargs: the BatchKwargs to use to construct the batch batch_parameters: optional parameters to store as the reference description of the batch. They should reflect parameters that would provide the passed BatchKwargs. ...
Get a batch of data from the datasource.
def get_batch(self, batch_kwargs, batch_parameters=None): """Get a batch of data from the datasource. Args: batch_kwargs: the BatchKwargs to use to construct the batch batch_parameters: optional parameters to store as the reference description of the batch. They should ...
[ "def", "get_batch", "(", "self", ",", "batch_kwargs", ",", "batch_parameters", "=", "None", ")", ":", "raise", "NotImplementedError" ]
[ 328, 4 ]
[ 341, 33 ]
python
en
['en', 'en', 'en']
True
LegacyDatasource.get_available_data_asset_names
(self, batch_kwargs_generator_names=None)
Returns a dictionary of data_asset_names that the specified batch kwarg generator can provide. Note that some batch kwargs generators may not be capable of describing specific named data assets, and some (such as filesystem glob batch kwargs generators) require the user to configure ...
Returns a dictionary of data_asset_names that the specified batch kwarg generator can provide. Note that some batch kwargs generators may not be capable of describing specific named data assets, and some (such as filesystem glob batch kwargs generators) require the user to configure ...
def get_available_data_asset_names(self, batch_kwargs_generator_names=None): """ Returns a dictionary of data_asset_names that the specified batch kwarg generator can provide. Note that some batch kwargs generators may not be capable of describing specific named data assets, and some (su...
[ "def", "get_available_data_asset_names", "(", "self", ",", "batch_kwargs_generator_names", "=", "None", ")", ":", "available_data_asset_names", "=", "{", "}", "if", "batch_kwargs_generator_names", "is", "None", ":", "batch_kwargs_generator_names", "=", "[", "generator", ...
[ 343, 4 ]
[ 379, 41 ]
python
en
['en', 'error', 'th']
False
run_migrations_offline
()
Run migrations in 'offline' mode. This configures the context with just a URL and not an Engine, though an Engine is acceptable here as well. By skipping the Engine creation we don't even need a DBAPI to be available. Calls to context.execute() here emit the given string to the script output....
Run migrations in 'offline' mode.
def run_migrations_offline(): """Run migrations in 'offline' mode. This configures the context with just a URL and not an Engine, though an Engine is acceptable here as well. By skipping the Engine creation we don't even need a DBAPI to be available. Calls to context.execute() here emit the g...
[ "def", "run_migrations_offline", "(", ")", ":", "url", "=", "config", ".", "get_main_option", "(", "\"sqlalchemy.url\"", ")", "context", ".", "configure", "(", "url", "=", "url", ",", "target_metadata", "=", "target_metadata", ",", "literal_binds", "=", "True", ...
[ 34, 0 ]
[ 52, 32 ]
python
en
['en', 'nl', 'en']
True
run_migrations_online
()
Run migrations in 'online' mode. In this scenario we need to create an Engine and associate a connection with the context.
Run migrations in 'online' mode.
def run_migrations_online(): """Run migrations in 'online' mode. In this scenario we need to create an Engine and associate a connection with the context. """ # this callback is used to prevent an auto-migration from being generated # when there are no changes to the schema # reference: h...
[ "def", "run_migrations_online", "(", ")", ":", "# this callback is used to prevent an auto-migration from being generated", "# when there are no changes to the schema", "# reference: http://alembic.zzzcomputing.com/en/latest/cookbook.html", "def", "process_revision_directives", "(", "context",...
[ 55, 0 ]
[ 84, 36 ]
python
en
['en', 'nl', 'it']
False
version
()
Show Ambassador's version
Show Ambassador's version
def version(): """ Show Ambassador's version """ print("Ambassador %s" % __version__) scout = Scout() print("Ambassador Scout version %s" % scout.version) print("Ambassador Scout semver %s" % scout.get_semver(scout.version)) result = scout.report(action="version", mode="cli") sh...
[ "def", "version", "(", ")", ":", "print", "(", "\"Ambassador %s\"", "%", "__version__", ")", "scout", "=", "Scout", "(", ")", "print", "(", "\"Ambassador Scout version %s\"", "%", "scout", ".", "version", ")", "print", "(", "\"Ambassador Scout semver %s\"", "%"...
[ 85, 0 ]
[ 98, 48 ]
python
en
['en', 'error', 'th']
False
showid
()
Show Ambassador's installation ID
Show Ambassador's installation ID
def showid(): """ Show Ambassador's installation ID """ scout = Scout() print("Ambassador Scout installation ID %s" % scout.install_id) result= scout.report(action="showid", mode="cli") show_notices(result, printer=stdout_printer)
[ "def", "showid", "(", ")", ":", "scout", "=", "Scout", "(", ")", "print", "(", "\"Ambassador Scout installation ID %s\"", "%", "scout", ".", "install_id", ")", "result", "=", "scout", ".", "report", "(", "action", "=", "\"showid\"", ",", "mode", "=", "\"cl...
[ 101, 0 ]
[ 111, 48 ]
python
en
['en', 'error', 'th']
False
dump
(config_dir_path: Parameter.REQUIRED, *, secret_dir_path=None, watt=False, debug=False, debug_scout=False, k8s=False, recurse=False, stats=False, nopretty=False, everything=False, aconf=False, ir=False, v2=False, v3=False, diag=False, features=False, profile=False)
Dump various forms of an Ambassador configuration for debugging Use --aconf, --ir, and --envoy to control what gets dumped. If none are requested, the IR will be dumped. :param config_dir_path: Configuration directory to scan for Ambassador YAML files :param secret_dir_path: Directory into which ...
Dump various forms of an Ambassador configuration for debugging
def dump(config_dir_path: Parameter.REQUIRED, *, secret_dir_path=None, watt=False, debug=False, debug_scout=False, k8s=False, recurse=False, stats=False, nopretty=False, everything=False, aconf=False, ir=False, v2=False, v3=False, diag=False, features=False, profile=False): """ Dump v...
[ "def", "dump", "(", "config_dir_path", ":", "Parameter", ".", "REQUIRED", ",", "*", ",", "secret_dir_path", "=", "None", ",", "watt", "=", "False", ",", "debug", "=", "False", ",", "debug_scout", "=", "False", ",", "k8s", "=", "False", ",", "recurse", ...
[ 143, 0 ]
[ 352, 17 ]
python
en
['en', 'error', 'th']
False
validate
(config_dir_path: Parameter.REQUIRED, **kwargs)
Validate an Ambassador configuration. This is an extension of "config" that redirects output to devnull and always exits on error. :param config_dir_path: Configuration directory to scan for Ambassador YAML files
Validate an Ambassador configuration. This is an extension of "config" that redirects output to devnull and always exits on error.
def validate(config_dir_path: Parameter.REQUIRED, **kwargs): """ Validate an Ambassador configuration. This is an extension of "config" that redirects output to devnull and always exits on error. :param config_dir_path: Configuration directory to scan for Ambassador YAML files """ config(config...
[ "def", "validate", "(", "config_dir_path", ":", "Parameter", ".", "REQUIRED", ",", "*", "*", "kwargs", ")", ":", "config", "(", "config_dir_path", ",", "os", ".", "devnull", ",", "exit_on_error", "=", "True", ",", "*", "*", "kwargs", ")" ]
[ 355, 0 ]
[ 362, 69 ]
python
en
['en', 'error', 'th']
False
config
(config_dir_path: Parameter.REQUIRED, output_json_path: Parameter.REQUIRED, *, debug=False, debug_scout=False, check=False, k8s=False, ir=None, aconf=None, exit_on_error=False)
Generate an Envoy configuration :param config_dir_path: Configuration directory to scan for Ambassador YAML files :param output_json_path: Path to output envoy.json :param debug: If set, generate debugging output :param debug_scout: If set, generate debugging output when talking to Scout :para...
Generate an Envoy configuration
def config(config_dir_path: Parameter.REQUIRED, output_json_path: Parameter.REQUIRED, *, debug=False, debug_scout=False, check=False, k8s=False, ir=None, aconf=None, exit_on_error=False): """ Generate an Envoy configuration :param config_dir_path: Configuration directory to scan for A...
[ "def", "config", "(", "config_dir_path", ":", "Parameter", ".", "REQUIRED", ",", "output_json_path", ":", "Parameter", ".", "REQUIRED", ",", "*", ",", "debug", "=", "False", ",", "debug_scout", "=", "False", ",", "check", "=", "False", ",", "k8s", "=", "...
[ 365, 0 ]
[ 472, 19 ]
python
en
['en', 'error', 'th']
False
ExpectationSuite.isEquivalentTo
(self, other)
ExpectationSuite equivalence relies only on expectations and evaluation parameters. It does not include: - data_asset_name - expectation_suite_name - meta - data_asset_type
ExpectationSuite equivalence relies only on expectations and evaluation parameters. It does not include: - data_asset_name - expectation_suite_name - meta - data_asset_type
def isEquivalentTo(self, other): """ ExpectationSuite equivalence relies only on expectations and evaluation parameters. It does not include: - data_asset_name - expectation_suite_name - meta - data_asset_type """ if not isinstance(other, self.__class__): ...
[ "def", "isEquivalentTo", "(", "self", ",", "other", ")", ":", "if", "not", "isinstance", "(", "other", ",", "self", ".", "__class__", ")", ":", "if", "isinstance", "(", "other", ",", "dict", ")", ":", "try", ":", "other", "=", "expectationSuiteSchema", ...
[ 120, 4 ]
[ 147, 9 ]
python
en
['en', 'error', 'th']
False
ExpectationSuite.__eq__
(self, other)
ExpectationSuite equality ignores instance identity, relying only on properties.
ExpectationSuite equality ignores instance identity, relying only on properties.
def __eq__(self, other): """ExpectationSuite equality ignores instance identity, relying only on properties.""" if not isinstance(other, self.__class__): # Delegate comparison to the other instance's __eq__. return NotImplemented return all( ( ...
[ "def", "__eq__", "(", "self", ",", "other", ")", ":", "if", "not", "isinstance", "(", "other", ",", "self", ".", "__class__", ")", ":", "# Delegate comparison to the other instance's __eq__.", "return", "NotImplemented", "return", "all", "(", "(", "self", ".", ...
[ 149, 4 ]
[ 162, 9 ]
python
en
['en', 'en', 'en']
True
ExpectationSuite.get_table_expectations
(self)
Return a list of table expectations.
Return a list of table expectations.
def get_table_expectations(self): """Return a list of table expectations.""" return [ e for e in self.expectations if e.expectation_type.startswith("expect_table_") ]
[ "def", "get_table_expectations", "(", "self", ")", ":", "return", "[", "e", "for", "e", "in", "self", ".", "expectations", "if", "e", ".", "expectation_type", ".", "startswith", "(", "\"expect_table_\"", ")", "]" ]
[ 221, 4 ]
[ 227, 9 ]
python
en
['en', 'en', 'en']
True
ExpectationSuite.get_column_expectations
(self)
Return a list of column map expectations.
Return a list of column map expectations.
def get_column_expectations(self): """Return a list of column map expectations.""" return [e for e in self.expectations if "column" in e.kwargs]
[ "def", "get_column_expectations", "(", "self", ")", ":", "return", "[", "e", "for", "e", "in", "self", ".", "expectations", "if", "\"column\"", "in", "e", ".", "kwargs", "]" ]
[ 229, 4 ]
[ 231, 69 ]
python
en
['en', 'en', 'en']
True
ExpectationSuite.append_expectation
(self, expectation_config)
Appends an expectation. Args: expectation_config (ExpectationConfiguration): \ The expectation to be added to the list. Notes: May want to add type-checking in the future.
Appends an expectation.
def append_expectation(self, expectation_config): """Appends an expectation. Args: expectation_config (ExpectationConfiguration): \ The expectation to be added to the list. Notes: May want to add type-checking in the future. """ ...
[ "def", "append_expectation", "(", "self", ",", "expectation_config", ")", ":", "self", ".", "expectations", ".", "append", "(", "expectation_config", ")" ]
[ 249, 4 ]
[ 259, 52 ]
python
en
['en', 'en', 'en']
True
ExpectationSuite.remove_expectation
( self, expectation_configuration: ExpectationConfiguration, match_type: str = "domain", remove_multiple_matches: bool = False, )
Args: expectation_configuration: A potentially incomplete (partial) Expectation Configuration to match against for for the removal of expectations. match_type: This determines what kwargs to use when matching. Options are 'domain' to match based on the d...
def remove_expectation( self, expectation_configuration: ExpectationConfiguration, match_type: str = "domain", remove_multiple_matches: bool = False, ) -> List[ExpectationConfiguration]: """ Args: expectation_configuration: A potentially incomplete (parti...
[ "def", "remove_expectation", "(", "self", ",", "expectation_configuration", ":", "ExpectationConfiguration", ",", "match_type", ":", "str", "=", "\"domain\"", ",", "remove_multiple_matches", ":", "bool", "=", "False", ",", ")", "->", "List", "[", "ExpectationConfigu...
[ 261, 4 ]
[ 302, 72 ]
python
en
['en', 'error', 'th']
False
ExpectationSuite.find_expectation_indexes
( self, expectation_configuration: ExpectationConfiguration, match_type: str = "domain", )
Args: expectation_configuration: A potentially incomplete (partial) Expectation Configuration to match against to find the index of any matching Expectation Configurations on the suite. match_type: This determines what kwargs to use when matching. Options are 'domain' t...
def find_expectation_indexes( self, expectation_configuration: ExpectationConfiguration, match_type: str = "domain", ) -> List[int]: """ Args: expectation_configuration: A potentially incomplete (partial) Expectation Configuration to match against to ...
[ "def", "find_expectation_indexes", "(", "self", ",", "expectation_configuration", ":", "ExpectationConfiguration", ",", "match_type", ":", "str", "=", "\"domain\"", ",", ")", "->", "List", "[", "int", "]", ":", "if", "not", "isinstance", "(", "expectation_configur...
[ 322, 4 ]
[ 352, 28 ]
python
en
['en', 'error', 'th']
False
ExpectationSuite.patch_expectation
( self, expectation_configuration: ExpectationConfiguration, op: str, path: str, value: Any, match_type: str, )
Args: expectation_configuration: A potentially incomplete (partial) Expectation Configuration to match against to find the expectation to patch. op: A jsonpatch operation (one of 'add','update', or 'remove') (see http://jsonpatch.com/) path: A jsonpatch ...
def patch_expectation( self, expectation_configuration: ExpectationConfiguration, op: str, path: str, value: Any, match_type: str, ) -> ExpectationConfiguration: """ Args: expectation_configuration: A potentially incomplete (partial) Expe...
[ "def", "patch_expectation", "(", "self", ",", "expectation_configuration", ":", "ExpectationConfiguration", ",", "op", ":", "str", ",", "path", ":", "str", ",", "value", ":", "Any", ",", "match_type", ":", "str", ",", ")", "->", "ExpectationConfiguration", ":"...
[ 371, 4 ]
[ 409, 62 ]
python
en
['en', 'error', 'th']
False
ExpectationSuite.add_expectation
( self, expectation_configuration: ExpectationConfiguration, match_type: str = "domain", overwrite_existing: bool = True, )
Args: expectation_configuration: The ExpectationConfiguration to add or update match_type: The criteria used to determine whether the Suite already has an ExpectationConfiguration and so whether we should add or replace. overwrite_existing: If the expectatio...
def add_expectation( self, expectation_configuration: ExpectationConfiguration, match_type: str = "domain", overwrite_existing: bool = True, ) -> ExpectationConfiguration: """ Args: expectation_configuration: The ExpectationConfiguration to add or update ...
[ "def", "add_expectation", "(", "self", ",", "expectation_configuration", ":", "ExpectationConfiguration", ",", "match_type", ":", "str", "=", "\"domain\"", ",", "overwrite_existing", ":", "bool", "=", "True", ",", ")", "->", "ExpectationConfiguration", ":", "found_e...
[ 411, 4 ]
[ 458, 40 ]
python
en
['en', 'error', 'th']
False
XcodeArchsVariableMapping
(archs, archs_including_64_bit=None)
Constructs a dictionary with expansion for $(ARCHS_STANDARD) variable, and optionally for $(ARCHS_STANDARD_INCLUDING_64_BIT).
Constructs a dictionary with expansion for $(ARCHS_STANDARD) variable, and optionally for $(ARCHS_STANDARD_INCLUDING_64_BIT).
def XcodeArchsVariableMapping(archs, archs_including_64_bit=None): """Constructs a dictionary with expansion for $(ARCHS_STANDARD) variable, and optionally for $(ARCHS_STANDARD_INCLUDING_64_BIT).""" mapping = {'$(ARCHS_STANDARD)': archs} if archs_including_64_bit: mapping['$(ARCHS_STANDARD_INCLUDING_64_BIT)...
[ "def", "XcodeArchsVariableMapping", "(", "archs", ",", "archs_including_64_bit", "=", "None", ")", ":", "mapping", "=", "{", "'$(ARCHS_STANDARD)'", ":", "archs", "}", "if", "archs_including_64_bit", ":", "mapping", "[", "'$(ARCHS_STANDARD_INCLUDING_64_BIT)'", "]", "="...
[ 30, 0 ]
[ 36, 16 ]
python
en
['en', 'en', 'en']
True
GetXcodeArchsDefault
()
Returns the |XcodeArchsDefault| object to use to expand ARCHS for the installed version of Xcode. The default values used by Xcode for ARCHS and the expansion of the variables depends on the version of Xcode used. For all version anterior to Xcode 5.0 or posterior to Xcode 5.1 included uses $(ARCHS_STANDARD) i...
Returns the |XcodeArchsDefault| object to use to expand ARCHS for the installed version of Xcode. The default values used by Xcode for ARCHS and the expansion of the variables depends on the version of Xcode used.
def GetXcodeArchsDefault(): """Returns the |XcodeArchsDefault| object to use to expand ARCHS for the installed version of Xcode. The default values used by Xcode for ARCHS and the expansion of the variables depends on the version of Xcode used. For all version anterior to Xcode 5.0 or posterior to Xcode 5.1 in...
[ "def", "GetXcodeArchsDefault", "(", ")", ":", "global", "XCODE_ARCHS_DEFAULT_CACHE", "if", "XCODE_ARCHS_DEFAULT_CACHE", ":", "return", "XCODE_ARCHS_DEFAULT_CACHE", "xcode_version", ",", "_", "=", "XcodeVersion", "(", ")", "if", "xcode_version", "<", "'0500'", ":", "XC...
[ 94, 0 ]
[ 140, 34 ]
python
en
['en', 'en', 'en']
True
XcodeVersion
()
Returns a tuple of version and build version of installed Xcode.
Returns a tuple of version and build version of installed Xcode.
def XcodeVersion(): """Returns a tuple of version and build version of installed Xcode.""" # `xcodebuild -version` output looks like # Xcode 4.6.3 # Build version 4H1503 # or like # Xcode 3.2.6 # Component versions: DevToolsCore-1809.0; DevToolsSupport-1806.0 # BuildVersion: 10M2518 # C...
[ "def", "XcodeVersion", "(", ")", ":", "# `xcodebuild -version` output looks like", "# Xcode 4.6.3", "# Build version 4H1503", "# or like", "# Xcode 3.2.6", "# Component versions: DevToolsCore-1809.0; DevToolsSupport-1806.0", "# BuildVersion: 10M2518", "# Convert that to '0463'...
[ 1252, 0 ]
[ 1290, 28 ]
python
en
['en', 'en', 'en']
True
CLTVersion
()
Returns the version of command-line tools from pkgutil.
Returns the version of command-line tools from pkgutil.
def CLTVersion(): """Returns the version of command-line tools from pkgutil.""" # pkgutil output looks like # package-id: com.apple.pkg.CLTools_Executables # version: 5.0.1.0.1.1382131676 # volume: / # location: / # install-time: 1382544035 # groups: com.apple.FindSystemFiles.pkg-group com.a...
[ "def", "CLTVersion", "(", ")", ":", "# pkgutil output looks like", "# package-id: com.apple.pkg.CLTools_Executables", "# version: 5.0.1.0.1.1382131676", "# volume: /", "# location: /", "# install-time: 1382544035", "# groups: com.apple.FindSystemFiles.pkg-group com.apple.DevToolsBo...
[ 1294, 0 ]
[ 1313, 14 ]
python
en
['en', 'en', 'en']
True
GetStdoutQuiet
(cmdlist)
Returns the content of standard output returned by invoking |cmdlist|. Ignores the stderr. Raises |GypError| if the command return with a non-zero return code.
Returns the content of standard output returned by invoking |cmdlist|. Ignores the stderr. Raises |GypError| if the command return with a non-zero return code.
def GetStdoutQuiet(cmdlist): """Returns the content of standard output returned by invoking |cmdlist|. Ignores the stderr. Raises |GypError| if the command return with a non-zero return code.""" job = subprocess.Popen(cmdlist, stdout=subprocess.PIPE, stderr=subprocess.PIPE) out = job.communicate()[0] if job...
[ "def", "GetStdoutQuiet", "(", "cmdlist", ")", ":", "job", "=", "subprocess", ".", "Popen", "(", "cmdlist", ",", "stdout", "=", "subprocess", ".", "PIPE", ",", "stderr", "=", "subprocess", ".", "PIPE", ")", "out", "=", "job", ".", "communicate", "(", ")...
[ 1316, 0 ]
[ 1324, 25 ]
python
en
['en', 'en', 'en']
True
GetStdout
(cmdlist)
Returns the content of standard output returned by invoking |cmdlist|. Raises |GypError| if the command return with a non-zero return code.
Returns the content of standard output returned by invoking |cmdlist|. Raises |GypError| if the command return with a non-zero return code.
def GetStdout(cmdlist): """Returns the content of standard output returned by invoking |cmdlist|. Raises |GypError| if the command return with a non-zero return code.""" job = subprocess.Popen(cmdlist, stdout=subprocess.PIPE) out = job.communicate()[0] if job.returncode != 0: sys.stderr.write(out + '\n') ...
[ "def", "GetStdout", "(", "cmdlist", ")", ":", "job", "=", "subprocess", ".", "Popen", "(", "cmdlist", ",", "stdout", "=", "subprocess", ".", "PIPE", ")", "out", "=", "job", ".", "communicate", "(", ")", "[", "0", "]", "if", "job", ".", "returncode", ...
[ 1327, 0 ]
[ 1335, 25 ]
python
en
['en', 'en', 'en']
True
MergeGlobalXcodeSettingsToSpec
(global_dict, spec)
Merges the global xcode_settings dictionary into each configuration of the target represented by spec. For keys that are both in the global and the local xcode_settings dict, the local key gets precendence.
Merges the global xcode_settings dictionary into each configuration of the target represented by spec. For keys that are both in the global and the local xcode_settings dict, the local key gets precendence.
def MergeGlobalXcodeSettingsToSpec(global_dict, spec): """Merges the global xcode_settings dictionary into each configuration of the target represented by spec. For keys that are both in the global and the local xcode_settings dict, the local key gets precendence. """ # The xcode generator special-cases globa...
[ "def", "MergeGlobalXcodeSettingsToSpec", "(", "global_dict", ",", "spec", ")", ":", "# The xcode generator special-cases global xcode_settings and does something", "# that amounts to merging in the global xcode_settings into each local", "# xcode_settings dict.", "global_xcode_settings", "="...
[ 1338, 0 ]
[ 1351, 45 ]
python
en
['en', 'en', 'en']
True
IsMacBundle
(flavor, spec)
Returns if |spec| should be treated as a bundle. Bundles are directories with a certain subdirectory structure, instead of just a single file. Bundle rules do not produce a binary but also package resources into that directory.
Returns if |spec| should be treated as a bundle.
def IsMacBundle(flavor, spec): """Returns if |spec| should be treated as a bundle. Bundles are directories with a certain subdirectory structure, instead of just a single file. Bundle rules do not produce a binary but also package resources into that directory.""" is_mac_bundle = (int(spec.get('mac_bundle', ...
[ "def", "IsMacBundle", "(", "flavor", ",", "spec", ")", ":", "is_mac_bundle", "=", "(", "int", "(", "spec", ".", "get", "(", "'mac_bundle'", ",", "0", ")", ")", "!=", "0", "and", "flavor", "==", "'mac'", ")", "if", "is_mac_bundle", ":", "assert", "spe...
[ 1354, 0 ]
[ 1365, 22 ]
python
en
['en', 'en', 'en']
True
GetMacBundleResources
(product_dir, xcode_settings, resources)
Yields (output, resource) pairs for every resource in |resources|. Only call this for mac bundle targets. Args: product_dir: Path to the directory containing the output bundle, relative to the build directory. xcode_settings: The XcodeSettings of the current target. resources: A list of...
Yields (output, resource) pairs for every resource in |resources|. Only call this for mac bundle targets.
def GetMacBundleResources(product_dir, xcode_settings, resources): """Yields (output, resource) pairs for every resource in |resources|. Only call this for mac bundle targets. Args: product_dir: Path to the directory containing the output bundle, relative to the build directory. xcode_setti...
[ "def", "GetMacBundleResources", "(", "product_dir", ",", "xcode_settings", ",", "resources", ")", ":", "dest", "=", "os", ".", "path", ".", "join", "(", "product_dir", ",", "xcode_settings", ".", "GetBundleResourceFolder", "(", ")", ")", "for", "res", "in", ...
[ 1368, 0 ]
[ 1405, 21 ]
python
en
['en', 'en', 'en']
True
GetMacInfoPlist
(product_dir, xcode_settings, gyp_path_to_build_path)
Returns (info_plist, dest_plist, defines, extra_env), where: * |info_plist| is the source plist path, relative to the build directory, * |dest_plist| is the destination plist path, relative to the build directory, * |defines| is a list of preprocessor defines (empty if the plist shouldn't be preproces...
Returns (info_plist, dest_plist, defines, extra_env), where: * |info_plist| is the source plist path, relative to the build directory, * |dest_plist| is the destination plist path, relative to the build directory, * |defines| is a list of preprocessor defines (empty if the plist shouldn't be preproces...
def GetMacInfoPlist(product_dir, xcode_settings, gyp_path_to_build_path): """Returns (info_plist, dest_plist, defines, extra_env), where: * |info_plist| is the source plist path, relative to the build directory, * |dest_plist| is the destination plist path, relative to the build directory, * |defines| i...
[ "def", "GetMacInfoPlist", "(", "product_dir", ",", "xcode_settings", ",", "gyp_path_to_build_path", ")", ":", "info_plist", "=", "xcode_settings", ".", "GetPerTargetSetting", "(", "'INFOPLIST_FILE'", ")", "if", "not", "info_plist", ":", "return", "None", ",", "None"...
[ 1408, 0 ]
[ 1452, 51 ]
python
en
['en', 'fr', 'en']
True
_GetXcodeEnv
(xcode_settings, built_products_dir, srcroot, configuration, additional_settings=None)
Return the environment variables that Xcode would set. See http://developer.apple.com/library/mac/#documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_setting_ref.html#//apple_ref/doc/uid/TP40003931-CH3-SW153 for a full list. Args: xcode_settings: An XcodeSettings ob...
Return the environment variables that Xcode would set. See http://developer.apple.com/library/mac/#documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_setting_ref.html#//apple_ref/doc/uid/TP40003931-CH3-SW153 for a full list.
def _GetXcodeEnv(xcode_settings, built_products_dir, srcroot, configuration, additional_settings=None): """Return the environment variables that Xcode would set. See http://developer.apple.com/library/mac/#documentation/DeveloperTools/Reference/XcodeBuildSettingRef/1-Build_Setting_Reference/build_se...
[ "def", "_GetXcodeEnv", "(", "xcode_settings", ",", "built_products_dir", ",", "srcroot", ",", "configuration", ",", "additional_settings", "=", "None", ")", ":", "if", "not", "xcode_settings", ":", "return", "{", "}", "# This function is considered a friend of XcodeSett...
[ 1455, 0 ]
[ 1538, 28 ]
python
en
['en', 'en', 'en']
True
_NormalizeEnvVarReferences
(str)
Takes a string containing variable references in the form ${FOO}, $(FOO), or $FOO, and returns a string with all variable references in the form ${FOO}.
Takes a string containing variable references in the form ${FOO}, $(FOO), or $FOO, and returns a string with all variable references in the form ${FOO}.
def _NormalizeEnvVarReferences(str): """Takes a string containing variable references in the form ${FOO}, $(FOO), or $FOO, and returns a string with all variable references in the form ${FOO}. """ # $FOO -> ${FOO} str = re.sub(r'\$([a-zA-Z_][a-zA-Z0-9_]*)', r'${\1}', str) # $(FOO) -> ${FOO} matches = re....
[ "def", "_NormalizeEnvVarReferences", "(", "str", ")", ":", "# $FOO -> ${FOO}", "str", "=", "re", ".", "sub", "(", "r'\\$([a-zA-Z_][a-zA-Z0-9_]*)'", ",", "r'${\\1}'", ",", "str", ")", "# $(FOO) -> ${FOO}", "matches", "=", "re", ".", "findall", "(", "r'(\\$\\(([a-zA...
[ 1541, 0 ]
[ 1555, 12 ]
python
en
['en', 'en', 'en']
True
ExpandEnvVars
(string, expansions)
Expands ${VARIABLES}, $(VARIABLES), and $VARIABLES in string per the expansions list. If the variable expands to something that references another variable, this variable is expanded as well if it's in env -- until no variables present in env are left.
Expands ${VARIABLES}, $(VARIABLES), and $VARIABLES in string per the expansions list. If the variable expands to something that references another variable, this variable is expanded as well if it's in env -- until no variables present in env are left.
def ExpandEnvVars(string, expansions): """Expands ${VARIABLES}, $(VARIABLES), and $VARIABLES in string per the expansions list. If the variable expands to something that references another variable, this variable is expanded as well if it's in env -- until no variables present in env are left.""" for k, v in ...
[ "def", "ExpandEnvVars", "(", "string", ",", "expansions", ")", ":", "for", "k", ",", "v", "in", "reversed", "(", "expansions", ")", ":", "string", "=", "string", ".", "replace", "(", "'${'", "+", "k", "+", "'}'", ",", "v", ")", "string", "=", "stri...
[ 1558, 0 ]
[ 1567, 15 ]
python
en
['en', 'en', 'en']
True
_TopologicallySortedEnvVarKeys
(env)
Takes a dict |env| whose values are strings that can refer to other keys, for example env['foo'] = '$(bar) and $(baz)'. Returns a list L of all keys of env such that key2 is after key1 in L if env[key2] refers to env[key1]. Throws an Exception in case of dependency cycles.
Takes a dict |env| whose values are strings that can refer to other keys, for example env['foo'] = '$(bar) and $(baz)'. Returns a list L of all keys of env such that key2 is after key1 in L if env[key2] refers to env[key1].
def _TopologicallySortedEnvVarKeys(env): """Takes a dict |env| whose values are strings that can refer to other keys, for example env['foo'] = '$(bar) and $(baz)'. Returns a list L of all keys of env such that key2 is after key1 in L if env[key2] refers to env[key1]. Throws an Exception in case of dependency c...
[ "def", "_TopologicallySortedEnvVarKeys", "(", "env", ")", ":", "# Since environment variables can refer to other variables, the evaluation", "# order is important. Below is the logic to compute the dependency graph", "# and sort it.", "regex", "=", "re", ".", "compile", "(", "r'\\$\\{(...
[ 1570, 0 ]
[ 1601, 80 ]
python
en
['en', 'en', 'en']
True
GetSpecPostbuildCommands
(spec, quiet=False)
Returns the list of postbuilds explicitly defined on |spec|, in a form executable by a shell.
Returns the list of postbuilds explicitly defined on |spec|, in a form executable by a shell.
def GetSpecPostbuildCommands(spec, quiet=False): """Returns the list of postbuilds explicitly defined on |spec|, in a form executable by a shell.""" postbuilds = [] for postbuild in spec.get('postbuilds', []): if not quiet: postbuilds.append('echo POSTBUILD\\(%s\\) %s' % ( spec['target_nam...
[ "def", "GetSpecPostbuildCommands", "(", "spec", ",", "quiet", "=", "False", ")", ":", "postbuilds", "=", "[", "]", "for", "postbuild", "in", "spec", ".", "get", "(", "'postbuilds'", ",", "[", "]", ")", ":", "if", "not", "quiet", ":", "postbuilds", ".",...
[ 1611, 0 ]
[ 1620, 19 ]
python
en
['en', 'en', 'en']
True
_HasIOSTarget
(targets)
Returns true if any target contains the iOS specific key IPHONEOS_DEPLOYMENT_TARGET.
Returns true if any target contains the iOS specific key IPHONEOS_DEPLOYMENT_TARGET.
def _HasIOSTarget(targets): """Returns true if any target contains the iOS specific key IPHONEOS_DEPLOYMENT_TARGET.""" for target_dict in targets.values(): for config in target_dict['configurations'].values(): if config.get('xcode_settings', {}).get('IPHONEOS_DEPLOYMENT_TARGET'): return True r...
[ "def", "_HasIOSTarget", "(", "targets", ")", ":", "for", "target_dict", "in", "targets", ".", "values", "(", ")", ":", "for", "config", "in", "target_dict", "[", "'configurations'", "]", ".", "values", "(", ")", ":", "if", "config", ".", "get", "(", "'...
[ 1623, 0 ]
[ 1630, 14 ]
python
en
['en', 'en', 'en']
True
_AddIOSDeviceConfigurations
(targets)
Clone all targets and append -iphoneos to the name. Configure these targets to build for iOS devices and use correct architectures for those builds.
Clone all targets and append -iphoneos to the name. Configure these targets to build for iOS devices and use correct architectures for those builds.
def _AddIOSDeviceConfigurations(targets): """Clone all targets and append -iphoneos to the name. Configure these targets to build for iOS devices and use correct architectures for those builds.""" for target_dict in targets.itervalues(): toolset = target_dict['toolset'] configs = target_dict['configuratio...
[ "def", "_AddIOSDeviceConfigurations", "(", "targets", ")", ":", "for", "target_dict", "in", "targets", ".", "itervalues", "(", ")", ":", "toolset", "=", "target_dict", "[", "'toolset'", "]", "configs", "=", "target_dict", "[", "'configurations'", "]", "for", "...
[ 1633, 0 ]
[ 1645, 16 ]
python
en
['en', 'en', 'en']
True
CloneConfigurationForDeviceAndEmulator
(target_dicts)
If |target_dicts| contains any iOS targets, automatically create -iphoneos targets for iOS device builds.
If |target_dicts| contains any iOS targets, automatically create -iphoneos targets for iOS device builds.
def CloneConfigurationForDeviceAndEmulator(target_dicts): """If |target_dicts| contains any iOS targets, automatically create -iphoneos targets for iOS device builds.""" if _HasIOSTarget(target_dicts): return _AddIOSDeviceConfigurations(target_dicts) return target_dicts
[ "def", "CloneConfigurationForDeviceAndEmulator", "(", "target_dicts", ")", ":", "if", "_HasIOSTarget", "(", "target_dicts", ")", ":", "return", "_AddIOSDeviceConfigurations", "(", "target_dicts", ")", "return", "target_dicts" ]
[ 1647, 0 ]
[ 1652, 21 ]
python
en
['en', 'en', 'en']
True
XcodeArchsDefault._VariableMapping
(self, sdkroot)
Returns the dictionary of variable mapping depending on the SDKROOT.
Returns the dictionary of variable mapping depending on the SDKROOT.
def _VariableMapping(self, sdkroot): """Returns the dictionary of variable mapping depending on the SDKROOT.""" sdkroot = sdkroot.lower() if 'iphoneos' in sdkroot: return self._archs['ios'] elif 'iphonesimulator' in sdkroot: return self._archs['iossim'] else: return self._archs['ma...
[ "def", "_VariableMapping", "(", "self", ",", "sdkroot", ")", ":", "sdkroot", "=", "sdkroot", ".", "lower", "(", ")", "if", "'iphoneos'", "in", "sdkroot", ":", "return", "self", ".", "_archs", "[", "'ios'", "]", "elif", "'iphonesimulator'", "in", "sdkroot",...
[ 52, 2 ]
[ 60, 31 ]
python
en
['en', 'en', 'en']
True
XcodeArchsDefault._ExpandArchs
(self, archs, sdkroot)
Expands variables references in ARCHS, and remove duplicates.
Expands variables references in ARCHS, and remove duplicates.
def _ExpandArchs(self, archs, sdkroot): """Expands variables references in ARCHS, and remove duplicates.""" variable_mapping = self._VariableMapping(sdkroot) expanded_archs = [] for arch in archs: if self.variable_pattern.match(arch): variable = arch try: variable_expansi...
[ "def", "_ExpandArchs", "(", "self", ",", "archs", ",", "sdkroot", ")", ":", "variable_mapping", "=", "self", ".", "_VariableMapping", "(", "sdkroot", ")", "expanded_archs", "=", "[", "]", "for", "arch", "in", "archs", ":", "if", "self", ".", "variable_patt...
[ 62, 2 ]
[ 78, 25 ]
python
en
['en', 'en', 'en']
True
XcodeArchsDefault.ActiveArchs
(self, archs, valid_archs, sdkroot)
Expands variables references in ARCHS, and filter by VALID_ARCHS if it is defined (if not set, Xcode accept any value in ARCHS, otherwise, only values present in VALID_ARCHS are kept).
Expands variables references in ARCHS, and filter by VALID_ARCHS if it is defined (if not set, Xcode accept any value in ARCHS, otherwise, only values present in VALID_ARCHS are kept).
def ActiveArchs(self, archs, valid_archs, sdkroot): """Expands variables references in ARCHS, and filter by VALID_ARCHS if it is defined (if not set, Xcode accept any value in ARCHS, otherwise, only values present in VALID_ARCHS are kept).""" expanded_archs = self._ExpandArchs(archs or self._default, sd...
[ "def", "ActiveArchs", "(", "self", ",", "archs", ",", "valid_archs", ",", "sdkroot", ")", ":", "expanded_archs", "=", "self", ".", "_ExpandArchs", "(", "archs", "or", "self", ".", "_default", ",", "sdkroot", "or", "''", ")", "if", "valid_archs", ":", "fi...
[ 80, 2 ]
[ 91, 25 ]
python
en
['en', 'en', 'en']
True
XcodeSettings._ConvertConditionalKeys
(self, configname)
Converts or warns on conditional keys. Xcode supports conditional keys, such as CODE_SIGN_IDENTITY[sdk=iphoneos*]. This is a partial implementation with some keys converted while the rest force a warning.
Converts or warns on conditional keys. Xcode supports conditional keys, such as CODE_SIGN_IDENTITY[sdk=iphoneos*]. This is a partial implementation with some keys converted while the rest force a warning.
def _ConvertConditionalKeys(self, configname): """Converts or warns on conditional keys. Xcode supports conditional keys, such as CODE_SIGN_IDENTITY[sdk=iphoneos*]. This is a partial implementation with some keys converted while the rest force a warning.""" settings = self.xcode_settings[configname] ...
[ "def", "_ConvertConditionalKeys", "(", "self", ",", "configname", ")", ":", "settings", "=", "self", ".", "xcode_settings", "[", "configname", "]", "conditional_keys", "=", "[", "key", "for", "key", "in", "settings", "if", "key", ".", "endswith", "(", "']'",...
[ 183, 2 ]
[ 198, 23 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetFrameworkVersion
(self)
Returns the framework version of the current target. Only valid for bundles.
Returns the framework version of the current target. Only valid for bundles.
def GetFrameworkVersion(self): """Returns the framework version of the current target. Only valid for bundles.""" assert self._IsBundle() return self.GetPerTargetSetting('FRAMEWORK_VERSION', default='A')
[ "def", "GetFrameworkVersion", "(", "self", ")", ":", "assert", "self", ".", "_IsBundle", "(", ")", "return", "self", ".", "GetPerTargetSetting", "(", "'FRAMEWORK_VERSION'", ",", "default", "=", "'A'", ")" ]
[ 238, 2 ]
[ 242, 69 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetWrapperExtension
(self)
Returns the bundle extension (.app, .framework, .plugin, etc). Only valid for bundles.
Returns the bundle extension (.app, .framework, .plugin, etc). Only valid for bundles.
def GetWrapperExtension(self): """Returns the bundle extension (.app, .framework, .plugin, etc). Only valid for bundles.""" assert self._IsBundle() if self.spec['type'] in ('loadable_module', 'shared_library'): default_wrapper_extension = { 'loadable_module': 'bundle', 'shared_lib...
[ "def", "GetWrapperExtension", "(", "self", ")", ":", "assert", "self", ".", "_IsBundle", "(", ")", "if", "self", ".", "spec", "[", "'type'", "]", "in", "(", "'loadable_module'", ",", "'shared_library'", ")", ":", "default_wrapper_extension", "=", "{", "'load...
[ 244, 2 ]
[ 263, 54 ]
python
en
['en', 'da', 'en']
True
XcodeSettings.GetProductName
(self)
Returns PRODUCT_NAME.
Returns PRODUCT_NAME.
def GetProductName(self): """Returns PRODUCT_NAME.""" return self.spec.get('product_name', self.spec['target_name'])
[ "def", "GetProductName", "(", "self", ")", ":", "return", "self", ".", "spec", ".", "get", "(", "'product_name'", ",", "self", ".", "spec", "[", "'target_name'", "]", ")" ]
[ 265, 2 ]
[ 267, 66 ]
python
en
['en', 'en', 'en']
False
XcodeSettings.GetFullProductName
(self)
Returns FULL_PRODUCT_NAME.
Returns FULL_PRODUCT_NAME.
def GetFullProductName(self): """Returns FULL_PRODUCT_NAME.""" if self._IsBundle(): return self.GetWrapperName() else: return self._GetStandaloneBinaryPath()
[ "def", "GetFullProductName", "(", "self", ")", ":", "if", "self", ".", "_IsBundle", "(", ")", ":", "return", "self", ".", "GetWrapperName", "(", ")", "else", ":", "return", "self", ".", "_GetStandaloneBinaryPath", "(", ")" ]
[ 269, 2 ]
[ 274, 44 ]
python
en
['en', 'no', 'en']
False
XcodeSettings.GetWrapperName
(self)
Returns the directory name of the bundle represented by this target. Only valid for bundles.
Returns the directory name of the bundle represented by this target. Only valid for bundles.
def GetWrapperName(self): """Returns the directory name of the bundle represented by this target. Only valid for bundles.""" assert self._IsBundle() return self.GetProductName() + self.GetWrapperExtension()
[ "def", "GetWrapperName", "(", "self", ")", ":", "assert", "self", ".", "_IsBundle", "(", ")", "return", "self", ".", "GetProductName", "(", ")", "+", "self", ".", "GetWrapperExtension", "(", ")" ]
[ 276, 2 ]
[ 280, 61 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetBundleContentsFolderPath
(self)
Returns the qualified path to the bundle's contents folder. E.g. Chromium.app/Contents or Foo.bundle/Versions/A. Only valid for bundles.
Returns the qualified path to the bundle's contents folder. E.g. Chromium.app/Contents or Foo.bundle/Versions/A. Only valid for bundles.
def GetBundleContentsFolderPath(self): """Returns the qualified path to the bundle's contents folder. E.g. Chromium.app/Contents or Foo.bundle/Versions/A. Only valid for bundles.""" if self.isIOS: return self.GetWrapperName() assert self._IsBundle() if self.spec['type'] == 'shared_library': ...
[ "def", "GetBundleContentsFolderPath", "(", "self", ")", ":", "if", "self", ".", "isIOS", ":", "return", "self", ".", "GetWrapperName", "(", ")", "assert", "self", ".", "_IsBundle", "(", ")", "if", "self", ".", "spec", "[", "'type'", "]", "==", "'shared_l...
[ 282, 2 ]
[ 293, 60 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetBundleResourceFolder
(self)
Returns the qualified path to the bundle's resource folder. E.g. Chromium.app/Contents/Resources. Only valid for bundles.
Returns the qualified path to the bundle's resource folder. E.g. Chromium.app/Contents/Resources. Only valid for bundles.
def GetBundleResourceFolder(self): """Returns the qualified path to the bundle's resource folder. E.g. Chromium.app/Contents/Resources. Only valid for bundles.""" assert self._IsBundle() if self.isIOS: return self.GetBundleContentsFolderPath() return os.path.join(self.GetBundleContentsFolderPa...
[ "def", "GetBundleResourceFolder", "(", "self", ")", ":", "assert", "self", ".", "_IsBundle", "(", ")", "if", "self", ".", "isIOS", ":", "return", "self", ".", "GetBundleContentsFolderPath", "(", ")", "return", "os", ".", "path", ".", "join", "(", "self", ...
[ 295, 2 ]
[ 301, 72 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetBundlePlistPath
(self)
Returns the qualified path to the bundle's plist file. E.g. Chromium.app/Contents/Info.plist. Only valid for bundles.
Returns the qualified path to the bundle's plist file. E.g. Chromium.app/Contents/Info.plist. Only valid for bundles.
def GetBundlePlistPath(self): """Returns the qualified path to the bundle's plist file. E.g. Chromium.app/Contents/Info.plist. Only valid for bundles.""" assert self._IsBundle() if self.spec['type'] in ('executable', 'loadable_module'): return os.path.join(self.GetBundleContentsFolderPath(), 'Info...
[ "def", "GetBundlePlistPath", "(", "self", ")", ":", "assert", "self", ".", "_IsBundle", "(", ")", "if", "self", ".", "spec", "[", "'type'", "]", "in", "(", "'executable'", ",", "'loadable_module'", ")", ":", "return", "os", ".", "path", ".", "join", "(...
[ 303, 2 ]
[ 311, 52 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetProductType
(self)
Returns the PRODUCT_TYPE of this target.
Returns the PRODUCT_TYPE of this target.
def GetProductType(self): """Returns the PRODUCT_TYPE of this target.""" if self._IsIosAppExtension(): assert self._IsBundle(), ('ios_app_extension flag requires mac_bundle ' '(target %s)' % self.spec['target_name']) return 'com.apple.product-type.app-extension' if self._IsIosWatchKitE...
[ "def", "GetProductType", "(", "self", ")", ":", "if", "self", ".", "_IsIosAppExtension", "(", ")", ":", "assert", "self", ".", "_IsBundle", "(", ")", ",", "(", "'ios_app_extension flag requires mac_bundle '", "'(target %s)'", "%", "self", ".", "spec", "[", "'t...
[ 313, 2 ]
[ 339, 26 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetMachOType
(self)
Returns the MACH_O_TYPE of this target.
Returns the MACH_O_TYPE of this target.
def GetMachOType(self): """Returns the MACH_O_TYPE of this target.""" # Weird, but matches Xcode. if not self._IsBundle() and self.spec['type'] == 'executable': return '' return { 'executable': 'mh_execute', 'static_library': 'staticlib', 'shared_library': 'mh_dylib', 'load...
[ "def", "GetMachOType", "(", "self", ")", ":", "# Weird, but matches Xcode.", "if", "not", "self", ".", "_IsBundle", "(", ")", "and", "self", ".", "spec", "[", "'type'", "]", "==", "'executable'", ":", "return", "''", "return", "{", "'executable'", ":", "'m...
[ 341, 2 ]
[ 351, 24 ]
python
en
['en', 'en', 'en']
True
XcodeSettings._GetBundleBinaryPath
(self)
Returns the name of the bundle binary of by this target. E.g. Chromium.app/Contents/MacOS/Chromium. Only valid for bundles.
Returns the name of the bundle binary of by this target. E.g. Chromium.app/Contents/MacOS/Chromium. Only valid for bundles.
def _GetBundleBinaryPath(self): """Returns the name of the bundle binary of by this target. E.g. Chromium.app/Contents/MacOS/Chromium. Only valid for bundles.""" assert self._IsBundle() if self.spec['type'] in ('shared_library') or self.isIOS: path = self.GetBundleContentsFolderPath() elif sel...
[ "def", "_GetBundleBinaryPath", "(", "self", ")", ":", "assert", "self", ".", "_IsBundle", "(", ")", "if", "self", ".", "spec", "[", "'type'", "]", "in", "(", "'shared_library'", ")", "or", "self", ".", "isIOS", ":", "path", "=", "self", ".", "GetBundle...
[ 353, 2 ]
[ 361, 55 ]
python
en
['en', 'en', 'en']
True
XcodeSettings._GetStandaloneBinaryPath
(self)
Returns the name of the non-bundle binary represented by this target. E.g. hello_world. Only valid for non-bundles.
Returns the name of the non-bundle binary represented by this target. E.g. hello_world. Only valid for non-bundles.
def _GetStandaloneBinaryPath(self): """Returns the name of the non-bundle binary represented by this target. E.g. hello_world. Only valid for non-bundles.""" assert not self._IsBundle() assert self.spec['type'] in ( 'executable', 'shared_library', 'static_library', 'loadable_module'), ( ...
[ "def", "_GetStandaloneBinaryPath", "(", "self", ")", ":", "assert", "not", "self", ".", "_IsBundle", "(", ")", "assert", "self", ".", "spec", "[", "'type'", "]", "in", "(", "'executable'", ",", "'shared_library'", ",", "'static_library'", ",", "'loadable_modul...
[ 383, 2 ]
[ 401, 46 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetExecutableName
(self)
Returns the executable name of the bundle represented by this target. E.g. Chromium.
Returns the executable name of the bundle represented by this target. E.g. Chromium.
def GetExecutableName(self): """Returns the executable name of the bundle represented by this target. E.g. Chromium.""" if self._IsBundle(): return self.spec.get('product_name', self.spec['target_name']) else: return self._GetStandaloneBinaryPath()
[ "def", "GetExecutableName", "(", "self", ")", ":", "if", "self", ".", "_IsBundle", "(", ")", ":", "return", "self", ".", "spec", ".", "get", "(", "'product_name'", ",", "self", ".", "spec", "[", "'target_name'", "]", ")", "else", ":", "return", "self",...
[ 403, 2 ]
[ 409, 44 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetExecutablePath
(self)
Returns the directory name of the bundle represented by this target. E.g. Chromium.app/Contents/MacOS/Chromium.
Returns the directory name of the bundle represented by this target. E.g. Chromium.app/Contents/MacOS/Chromium.
def GetExecutablePath(self): """Returns the directory name of the bundle represented by this target. E.g. Chromium.app/Contents/MacOS/Chromium.""" if self._IsBundle(): return self._GetBundleBinaryPath() else: return self._GetStandaloneBinaryPath()
[ "def", "GetExecutablePath", "(", "self", ")", ":", "if", "self", ".", "_IsBundle", "(", ")", ":", "return", "self", ".", "_GetBundleBinaryPath", "(", ")", "else", ":", "return", "self", ".", "_GetStandaloneBinaryPath", "(", ")" ]
[ 411, 2 ]
[ 417, 44 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetActiveArchs
(self, configname)
Returns the architectures this target should be built for.
Returns the architectures this target should be built for.
def GetActiveArchs(self, configname): """Returns the architectures this target should be built for.""" config_settings = self.xcode_settings[configname] xcode_archs_default = GetXcodeArchsDefault() return xcode_archs_default.ActiveArchs( config_settings.get('ARCHS'), config_settings.get(...
[ "def", "GetActiveArchs", "(", "self", ",", "configname", ")", ":", "config_settings", "=", "self", ".", "xcode_settings", "[", "configname", "]", "xcode_archs_default", "=", "GetXcodeArchsDefault", "(", ")", "return", "xcode_archs_default", ".", "ActiveArchs", "(", ...
[ 419, 2 ]
[ 426, 39 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetCflags
(self, configname, arch=None)
Returns flags that need to be added to .c, .cc, .m, and .mm compilations.
Returns flags that need to be added to .c, .cc, .m, and .mm compilations.
def GetCflags(self, configname, arch=None): """Returns flags that need to be added to .c, .cc, .m, and .mm compilations.""" # This functions (and the similar ones below) do not offer complete # emulation of all xcode_settings keys. They're implemented on demand. self.configname = configname cfl...
[ "def", "GetCflags", "(", "self", ",", "configname", ",", "arch", "=", "None", ")", ":", "# This functions (and the similar ones below) do not offer complete", "# emulation of all xcode_settings keys. They're implemented on demand.", "self", ".", "configname", "=", "configname", ...
[ 469, 2 ]
[ 588, 17 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetCflagsC
(self, configname)
Returns flags that need to be added to .c, and .m compilations.
Returns flags that need to be added to .c, and .m compilations.
def GetCflagsC(self, configname): """Returns flags that need to be added to .c, and .m compilations.""" self.configname = configname cflags_c = [] if self._Settings().get('GCC_C_LANGUAGE_STANDARD', '') == 'ansi': cflags_c.append('-ansi') else: self._Appendf(cflags_c, 'GCC_C_LANGUAGE_STAN...
[ "def", "GetCflagsC", "(", "self", ",", "configname", ")", ":", "self", ".", "configname", "=", "configname", "cflags_c", "=", "[", "]", "if", "self", ".", "_Settings", "(", ")", ".", "get", "(", "'GCC_C_LANGUAGE_STANDARD'", ",", "''", ")", "==", "'ansi'"...
[ 590, 2 ]
[ 600, 19 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetCflagsCC
(self, configname)
Returns flags that need to be added to .cc, and .mm compilations.
Returns flags that need to be added to .cc, and .mm compilations.
def GetCflagsCC(self, configname): """Returns flags that need to be added to .cc, and .mm compilations.""" self.configname = configname cflags_cc = [] clang_cxx_language_standard = self._Settings().get( 'CLANG_CXX_LANGUAGE_STANDARD') # Note: Don't make c++0x to c++11 so that c++0x can be us...
[ "def", "GetCflagsCC", "(", "self", ",", "configname", ")", ":", "self", ".", "configname", "=", "configname", "cflags_cc", "=", "[", "]", "clang_cxx_language_standard", "=", "self", ".", "_Settings", "(", ")", ".", "get", "(", "'CLANG_CXX_LANGUAGE_STANDARD'", ...
[ 602, 2 ]
[ 641, 20 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetCflagsObjC
(self, configname)
Returns flags that need to be added to .m compilations.
Returns flags that need to be added to .m compilations.
def GetCflagsObjC(self, configname): """Returns flags that need to be added to .m compilations.""" self.configname = configname cflags_objc = [] self._AddObjectiveCGarbageCollectionFlags(cflags_objc) self._AddObjectiveCARCFlags(cflags_objc) self._AddObjectiveCMissingPropertySynthesisFlags(cflags...
[ "def", "GetCflagsObjC", "(", "self", ",", "configname", ")", ":", "self", ".", "configname", "=", "configname", "cflags_objc", "=", "[", "]", "self", ".", "_AddObjectiveCGarbageCollectionFlags", "(", "cflags_objc", ")", "self", ".", "_AddObjectiveCARCFlags", "(", ...
[ 659, 2 ]
[ 667, 22 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetCflagsObjCC
(self, configname)
Returns flags that need to be added to .mm compilations.
Returns flags that need to be added to .mm compilations.
def GetCflagsObjCC(self, configname): """Returns flags that need to be added to .mm compilations.""" self.configname = configname cflags_objcc = [] self._AddObjectiveCGarbageCollectionFlags(cflags_objcc) self._AddObjectiveCARCFlags(cflags_objcc) self._AddObjectiveCMissingPropertySynthesisFlags(c...
[ "def", "GetCflagsObjCC", "(", "self", ",", "configname", ")", ":", "self", ".", "configname", "=", "configname", "cflags_objcc", "=", "[", "]", "self", ".", "_AddObjectiveCGarbageCollectionFlags", "(", "cflags_objcc", ")", "self", ".", "_AddObjectiveCARCFlags", "(...
[ 669, 2 ]
[ 679, 23 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetInstallNameBase
(self)
Return DYLIB_INSTALL_NAME_BASE for this target.
Return DYLIB_INSTALL_NAME_BASE for this target.
def GetInstallNameBase(self): """Return DYLIB_INSTALL_NAME_BASE for this target.""" # Xcode sets this for shared_libraries, and for nonbundled loadable_modules. if (self.spec['type'] != 'shared_library' and (self.spec['type'] != 'loadable_module' or self._IsBundle())): return None install_...
[ "def", "GetInstallNameBase", "(", "self", ")", ":", "# Xcode sets this for shared_libraries, and for nonbundled loadable_modules.", "if", "(", "self", ".", "spec", "[", "'type'", "]", "!=", "'shared_library'", "and", "(", "self", ".", "spec", "[", "'type'", "]", "!=...
[ 681, 2 ]
[ 690, 23 ]
python
en
['en', 'en', 'en']
True
XcodeSettings._StandardizePath
(self, path)
Do :standardizepath processing for path.
Do :standardizepath processing for path.
def _StandardizePath(self, path): """Do :standardizepath processing for path.""" # I'm not quite sure what :standardizepath does. Just call normpath(), # but don't let @executable_path/../foo collapse to foo. if '/' in path: prefix, rest = '', path if path.startswith('@'): prefix, re...
[ "def", "_StandardizePath", "(", "self", ",", "path", ")", ":", "# I'm not quite sure what :standardizepath does. Just call normpath(),", "# but don't let @executable_path/../foo collapse to foo.", "if", "'/'", "in", "path", ":", "prefix", ",", "rest", "=", "''", ",", "path"...
[ 692, 2 ]
[ 702, 15 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetInstallName
(self)
Return LD_DYLIB_INSTALL_NAME for this target.
Return LD_DYLIB_INSTALL_NAME for this target.
def GetInstallName(self): """Return LD_DYLIB_INSTALL_NAME for this target.""" # Xcode sets this for shared_libraries, and for nonbundled loadable_modules. if (self.spec['type'] != 'shared_library' and (self.spec['type'] != 'loadable_module' or self._IsBundle())): return None default_insta...
[ "def", "GetInstallName", "(", "self", ")", ":", "# Xcode sets this for shared_libraries, and for nonbundled loadable_modules.", "if", "(", "self", ".", "spec", "[", "'type'", "]", "!=", "'shared_library'", "and", "(", "self", ".", "spec", "[", "'type'", "]", "!=", ...
[ 704, 2 ]
[ 740, 23 ]
python
en
['en', 'en', 'en']
True
XcodeSettings._MapLinkerFlagFilename
(self, ldflag, gyp_to_build_path)
Checks if ldflag contains a filename and if so remaps it from gyp-directory-relative to build-directory-relative.
Checks if ldflag contains a filename and if so remaps it from gyp-directory-relative to build-directory-relative.
def _MapLinkerFlagFilename(self, ldflag, gyp_to_build_path): """Checks if ldflag contains a filename and if so remaps it from gyp-directory-relative to build-directory-relative.""" # This list is expanded on demand. # They get matched as: # -exported_symbols_list file # -Wl,exported_symbols_...
[ "def", "_MapLinkerFlagFilename", "(", "self", ",", "ldflag", ",", "gyp_to_build_path", ")", ":", "# This list is expanded on demand.", "# They get matched as:", "# -exported_symbols_list file", "# -Wl,exported_symbols_list file", "# -Wl,exported_symbols_list,file", "LINKER_FILE",...
[ 742, 2 ]
[ 768, 17 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetLdflags
(self, configname, product_dir, gyp_to_build_path, arch=None)
Returns flags that need to be passed to the linker. Args: configname: The name of the configuration to get ld flags for. product_dir: The directory where products such static and dynamic libraries are placed. This is added to the library search path. gyp_to_build_path: A functio...
Returns flags that need to be passed to the linker.
def GetLdflags(self, configname, product_dir, gyp_to_build_path, arch=None): """Returns flags that need to be passed to the linker. Args: configname: The name of the configuration to get ld flags for. product_dir: The directory where products such static and dynamic libraries are pl...
[ "def", "GetLdflags", "(", "self", ",", "configname", ",", "product_dir", ",", "gyp_to_build_path", ",", "arch", "=", "None", ")", ":", "self", ".", "configname", "=", "configname", "ldflags", "=", "[", "]", "# The xcode build is relative to a gyp file's directory, a...
[ 770, 2 ]
[ 863, 18 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetLibtoolflags
(self, configname)
Returns flags that need to be passed to the static linker. Args: configname: The name of the configuration to get ld flags for.
Returns flags that need to be passed to the static linker.
def GetLibtoolflags(self, configname): """Returns flags that need to be passed to the static linker. Args: configname: The name of the configuration to get ld flags for. """ self.configname = configname libtoolflags = [] for libtoolflag in self._Settings().get('OTHER_LDFLAGS', []): ...
[ "def", "GetLibtoolflags", "(", "self", ",", "configname", ")", ":", "self", ".", "configname", "=", "configname", "libtoolflags", "=", "[", "]", "for", "libtoolflag", "in", "self", ".", "_Settings", "(", ")", ".", "get", "(", "'OTHER_LDFLAGS'", ",", "[", ...
[ 865, 2 ]
[ 879, 23 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetPerTargetSettings
(self)
Gets a list of all the per-target settings. This will only fetch keys whose values are the same across all configurations.
Gets a list of all the per-target settings. This will only fetch keys whose values are the same across all configurations.
def GetPerTargetSettings(self): """Gets a list of all the per-target settings. This will only fetch keys whose values are the same across all configurations.""" first_pass = True result = {} for configname in sorted(self.xcode_settings.keys()): if first_pass: result = dict(self.xcode_s...
[ "def", "GetPerTargetSettings", "(", "self", ")", ":", "first_pass", "=", "True", "result", "=", "{", "}", "for", "configname", "in", "sorted", "(", "self", ".", "xcode_settings", ".", "keys", "(", ")", ")", ":", "if", "first_pass", ":", "result", "=", ...
[ 881, 2 ]
[ 896, 17 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.GetPerTargetSetting
(self, setting, default=None)
Tries to get xcode_settings.setting from spec. Assumes that the setting has the same value in all configurations and throws otherwise.
Tries to get xcode_settings.setting from spec. Assumes that the setting has the same value in all configurations and throws otherwise.
def GetPerTargetSetting(self, setting, default=None): """Tries to get xcode_settings.setting from spec. Assumes that the setting has the same value in all configurations and throws otherwise.""" is_first_pass = True result = None for configname in sorted(self.xcode_settings.keys()): if is_f...
[ "def", "GetPerTargetSetting", "(", "self", ",", "setting", ",", "default", "=", "None", ")", ":", "is_first_pass", "=", "True", "result", "=", "None", "for", "configname", "in", "sorted", "(", "self", ".", "xcode_settings", ".", "keys", "(", ")", ")", ":...
[ 904, 2 ]
[ 919, 17 ]
python
en
['en', 'en', 'en']
True
XcodeSettings._GetStripPostbuilds
(self, configname, output_binary, quiet)
Returns a list of shell commands that contain the shell commands neccessary to strip this target's binary. These should be run as postbuilds before the actual postbuilds run.
Returns a list of shell commands that contain the shell commands neccessary to strip this target's binary. These should be run as postbuilds before the actual postbuilds run.
def _GetStripPostbuilds(self, configname, output_binary, quiet): """Returns a list of shell commands that contain the shell commands neccessary to strip this target's binary. These should be run as postbuilds before the actual postbuilds run.""" self.configname = configname result = [] if (self...
[ "def", "_GetStripPostbuilds", "(", "self", ",", "configname", ",", "output_binary", ",", "quiet", ")", ":", "self", ".", "configname", "=", "configname", "result", "=", "[", "]", "if", "(", "self", ".", "_Test", "(", "'DEPLOYMENT_POSTPROCESSING'", ",", "'YES...
[ 921, 2 ]
[ 953, 17 ]
python
en
['en', 'en', 'en']
True
XcodeSettings._GetDebugInfoPostbuilds
(self, configname, output, output_binary, quiet)
Returns a list of shell commands that contain the shell commands neccessary to massage this target's debug information. These should be run as postbuilds before the actual postbuilds run.
Returns a list of shell commands that contain the shell commands neccessary to massage this target's debug information. These should be run as postbuilds before the actual postbuilds run.
def _GetDebugInfoPostbuilds(self, configname, output, output_binary, quiet): """Returns a list of shell commands that contain the shell commands neccessary to massage this target's debug information. These should be run as postbuilds before the actual postbuilds run.""" self.configname = configname ...
[ "def", "_GetDebugInfoPostbuilds", "(", "self", ",", "configname", ",", "output", ",", "output_binary", ",", "quiet", ")", ":", "self", ".", "configname", "=", "configname", "# For static libraries, no dSYMs are created.", "result", "=", "[", "]", "if", "(", "self"...
[ 955, 2 ]
[ 972, 17 ]
python
en
['en', 'en', 'en']
True
XcodeSettings._GetTargetPostbuilds
(self, configname, output, output_binary, quiet=False)
Returns a list of shell commands that contain the shell commands to run as postbuilds for this target, before the actual postbuilds.
Returns a list of shell commands that contain the shell commands to run as postbuilds for this target, before the actual postbuilds.
def _GetTargetPostbuilds(self, configname, output, output_binary, quiet=False): """Returns a list of shell commands that contain the shell commands to run as postbuilds for this target, before the actual postbuilds.""" # dSYMs need to build before stripping happens. return ( ...
[ "def", "_GetTargetPostbuilds", "(", "self", ",", "configname", ",", "output", ",", "output_binary", ",", "quiet", "=", "False", ")", ":", "# dSYMs need to build before stripping happens.", "return", "(", "self", ".", "_GetDebugInfoPostbuilds", "(", "configname", ",", ...
[ 974, 2 ]
[ 981, 67 ]
python
en
['en', 'en', 'en']
True
XcodeSettings._GetIOSPostbuilds
(self, configname, output_binary)
Return a shell command to codesign the iOS output binary so it can be deployed to a device. This should be run as the very last step of the build.
Return a shell command to codesign the iOS output binary so it can be deployed to a device. This should be run as the very last step of the build.
def _GetIOSPostbuilds(self, configname, output_binary): """Return a shell command to codesign the iOS output binary so it can be deployed to a device. This should be run as the very last step of the build.""" if not (self.isIOS and self.spec['type'] == 'executable'): return [] settings = sel...
[ "def", "_GetIOSPostbuilds", "(", "self", ",", "configname", ",", "output_binary", ")", ":", "if", "not", "(", "self", ".", "isIOS", "and", "self", ".", "spec", "[", "'type'", "]", "==", "'executable'", ")", ":", "return", "[", "]", "settings", "=", "se...
[ 983, 2 ]
[ 1007, 5 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.AddImplicitPostbuilds
(self, configname, output, output_binary, postbuilds=[], quiet=False)
Returns a list of shell commands that should run before and after |postbuilds|.
Returns a list of shell commands that should run before and after |postbuilds|.
def AddImplicitPostbuilds(self, configname, output, output_binary, postbuilds=[], quiet=False): """Returns a list of shell commands that should run before and after |postbuilds|.""" assert output_binary is not None pre = self._GetTargetPostbuilds(configname, output, output_bi...
[ "def", "AddImplicitPostbuilds", "(", "self", ",", "configname", ",", "output", ",", "output_binary", ",", "postbuilds", "=", "[", "]", ",", "quiet", "=", "False", ")", ":", "assert", "output_binary", "is", "not", "None", "pre", "=", "self", ".", "_GetTarge...
[ 1025, 2 ]
[ 1032, 34 ]
python
en
['en', 'en', 'en']
True
XcodeSettings.AdjustLibraries
(self, libraries, config_name=None)
Transforms entries like 'Cocoa.framework' in libraries into entries like '-framework Cocoa', 'libcrypto.dylib' into '-lcrypto', etc.
Transforms entries like 'Cocoa.framework' in libraries into entries like '-framework Cocoa', 'libcrypto.dylib' into '-lcrypto', etc.
def AdjustLibraries(self, libraries, config_name=None): """Transforms entries like 'Cocoa.framework' in libraries into entries like '-framework Cocoa', 'libcrypto.dylib' into '-lcrypto', etc. """ libraries = [self._AdjustLibrary(library, config_name) for library in libraries] return...
[ "def", "AdjustLibraries", "(", "self", ",", "libraries", ",", "config_name", "=", "None", ")", ":", "libraries", "=", "[", "self", ".", "_AdjustLibrary", "(", "library", ",", "config_name", ")", "for", "library", "in", "libraries", "]", "return", "libraries"...
[ 1065, 2 ]
[ 1071, 20 ]
python
en
['es', 'en', 'en']
True
XcodeSettings.GetExtraPlistItems
(self, configname=None)
Returns a dictionary with extra items to insert into Info.plist.
Returns a dictionary with extra items to insert into Info.plist.
def GetExtraPlistItems(self, configname=None): """Returns a dictionary with extra items to insert into Info.plist.""" if configname not in XcodeSettings._plist_cache: cache = {} cache['BuildMachineOSBuild'] = self._BuildMachineOSBuild() xcode, xcode_build = XcodeVersion() cache['DTXcode...
[ "def", "GetExtraPlistItems", "(", "self", ",", "configname", "=", "None", ")", ":", "if", "configname", "not", "in", "XcodeSettings", ".", "_plist_cache", ":", "cache", "=", "{", "}", "cache", "[", "'BuildMachineOSBuild'", "]", "=", "self", ".", "_BuildMachi...
[ 1080, 2 ]
[ 1115, 16 ]
python
en
['en', 'en', 'en']
True
XcodeSettings._DefaultSdkRoot
(self)
Returns the default SDKROOT to use. Prior to version 5.0.0, if SDKROOT was not explicitly set in the Xcode project, then the environment variable was empty. Starting with this version, Xcode uses the name of the newest SDK installed.
Returns the default SDKROOT to use.
def _DefaultSdkRoot(self): """Returns the default SDKROOT to use. Prior to version 5.0.0, if SDKROOT was not explicitly set in the Xcode project, then the environment variable was empty. Starting with this version, Xcode uses the name of the newest SDK installed. """ xcode_version, xcode_build ...
[ "def", "_DefaultSdkRoot", "(", "self", ")", ":", "xcode_version", ",", "xcode_build", "=", "XcodeVersion", "(", ")", "if", "xcode_version", "<", "'0500'", ":", "return", "''", "default_sdk_path", "=", "self", ".", "_XcodeSdkPath", "(", "''", ")", "default_sdk_...
[ 1117, 2 ]
[ 1143, 13 ]
python
en
['en', 'en', 'en']
True
MacPrefixHeader.__init__
(self, xcode_settings, gyp_path_to_build_path, gyp_path_to_build_output)
If xcode_settings is None, all methods on this class are no-ops. Args: gyp_path_to_build_path: A function that takes a gyp-relative path, and returns a path relative to the build directory. gyp_path_to_build_output: A function that takes a gyp-relative path and a language co...
If xcode_settings is None, all methods on this class are no-ops.
def __init__(self, xcode_settings, gyp_path_to_build_path, gyp_path_to_build_output): """If xcode_settings is None, all methods on this class are no-ops. Args: gyp_path_to_build_path: A function that takes a gyp-relative path, and returns a path relative to the build director...
[ "def", "__init__", "(", "self", ",", "xcode_settings", ",", "gyp_path_to_build_path", ",", "gyp_path_to_build_output", ")", ":", "# This doesn't support per-configuration prefix headers. Good enough", "# for now.", "self", ".", "header", "=", "None", "self", ".", "compile_h...
[ 1168, 2 ]
[ 1194, 55 ]
python
en
['en', 'en', 'en']
True
MacPrefixHeader.GetInclude
(self, lang, arch=None)
Gets the cflags to include the prefix header for language |lang|.
Gets the cflags to include the prefix header for language |lang|.
def GetInclude(self, lang, arch=None): """Gets the cflags to include the prefix header for language |lang|.""" if self.compile_headers and lang in self.compiled_headers: return '-include %s' % self._CompiledHeader(lang, arch) elif self.header: return '-include %s' % self.header else: r...
[ "def", "GetInclude", "(", "self", ",", "lang", ",", "arch", "=", "None", ")", ":", "if", "self", ".", "compile_headers", "and", "lang", "in", "self", ".", "compiled_headers", ":", "return", "'-include %s'", "%", "self", ".", "_CompiledHeader", "(", "lang",...
[ 1203, 2 ]
[ 1210, 15 ]
python
en
['en', 'en', 'en']
True
MacPrefixHeader._Gch
(self, lang, arch)
Returns the actual file name of the prefix header for language |lang|.
Returns the actual file name of the prefix header for language |lang|.
def _Gch(self, lang, arch): """Returns the actual file name of the prefix header for language |lang|.""" assert self.compile_headers return self._CompiledHeader(lang, arch) + '.gch'
[ "def", "_Gch", "(", "self", ",", "lang", ",", "arch", ")", ":", "assert", "self", ".", "compile_headers", "return", "self", ".", "_CompiledHeader", "(", "lang", ",", "arch", ")", "+", "'.gch'" ]
[ 1212, 2 ]
[ 1215, 52 ]
python
en
['en', 'en', 'en']
True
MacPrefixHeader.GetObjDependencies
(self, sources, objs, arch=None)
Given a list of source files and the corresponding object files, returns a list of (source, object, gch) tuples, where |gch| is the build-directory relative path to the gch file each object file depends on. |compilable[i]| has to be the source file belonging to |objs[i]|.
Given a list of source files and the corresponding object files, returns a list of (source, object, gch) tuples, where |gch| is the build-directory relative path to the gch file each object file depends on. |compilable[i]| has to be the source file belonging to |objs[i]|.
def GetObjDependencies(self, sources, objs, arch=None): """Given a list of source files and the corresponding object files, returns a list of (source, object, gch) tuples, where |gch| is the build-directory relative path to the gch file each object file depends on. |compilable[i]| has to be the source ...
[ "def", "GetObjDependencies", "(", "self", ",", "sources", ",", "objs", ",", "arch", "=", "None", ")", ":", "if", "not", "self", ".", "header", "or", "not", "self", ".", "compile_headers", ":", "return", "[", "]", "result", "=", "[", "]", "for", "sour...
[ 1217, 2 ]
[ 1236, 17 ]
python
en
['en', 'en', 'en']
True
MacPrefixHeader.GetPchBuildCommands
(self, arch=None)
Returns [(path_to_gch, language_flag, language, header)]. |path_to_gch| and |header| are relative to the build directory.
Returns [(path_to_gch, language_flag, language, header)]. |path_to_gch| and |header| are relative to the build directory.
def GetPchBuildCommands(self, arch=None): """Returns [(path_to_gch, language_flag, language, header)]. |path_to_gch| and |header| are relative to the build directory. """ if not self.header or not self.compile_headers: return [] return [ (self._Gch('c', arch), '-x c-header', 'c', self.he...
[ "def", "GetPchBuildCommands", "(", "self", ",", "arch", "=", "None", ")", ":", "if", "not", "self", ".", "header", "or", "not", "self", ".", "compile_headers", ":", "return", "[", "]", "return", "[", "(", "self", ".", "_Gch", "(", "'c'", ",", "arch",...
[ 1238, 2 ]
[ 1249, 5 ]
python
en
['en', 'jv', 'en']
True
OrionDBExplorer.__init__
(self, user, database='orion', mongodb_config=None)
Initiaize this OrionDBExplorer. Args: user (str): Unique identifier of the user that creates this OrionExporer instance. This username or user ID will be used to populate the ``created_by`` field of all the objects created in the datab...
Initiaize this OrionDBExplorer.
def __init__(self, user, database='orion', mongodb_config=None): """Initiaize this OrionDBExplorer. Args: user (str): Unique identifier of the user that creates this OrionExporer instance. This username or user ID will be used to populate the ...
[ "def", "__init__", "(", "self", ",", "user", ",", "database", "=", "'orion'", ",", "mongodb_config", "=", "None", ")", ":", "if", "mongodb_config", "is", "None", ":", "mongodb_config", "=", "dict", "(", ")", "elif", "isinstance", "(", "mongodb_config", ","...
[ 73, 4 ]
[ 106, 60 ]
python
en
['en', 'la', 'en']
True
OrionDBExplorer.drop_database
(self)
Drop the database. This method is used for development purposes and will most likely be removed in the future.
Drop the database.
def drop_database(self): """Drop the database. This method is used for development purposes and will most likely be removed in the future. """ self._db.drop_database(self.database)
[ "def", "drop_database", "(", "self", ")", ":", "self", ".", "_db", ".", "drop_database", "(", "self", ".", "database", ")" ]
[ 108, 4 ]
[ 114, 45 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.add_dataset
(self, name, entity=None)
Add a new Dataset object to the database. The Dataset needs to be given a name and, optionally, an identitifier, name or ID, of the entity which produced the Dataset. Args: name (str): Name of the Dataset entity (str): Name or Id of the e...
Add a new Dataset object to the database.
def add_dataset(self, name, entity=None): """Add a new Dataset object to the database. The Dataset needs to be given a name and, optionally, an identitifier, name or ID, of the entity which produced the Dataset. Args: name (str): Name of the Dataset ...
[ "def", "add_dataset", "(", "self", ",", "name", ",", "entity", "=", "None", ")", ":", "return", "schema", ".", "Dataset", ".", "insert", "(", "name", "=", "name", ",", "entity", "=", "entity", ",", "created_by", "=", "self", ".", "user", ")" ]
[ 120, 4 ]
[ 144, 9 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.get_datasets
(self, name=None, entity=None, created_by=None)
Query the Datasets collection. All the details about the matching Datasets will be returned in a ``pandas.DataFrame``. All the arguments are optional, so a call without arguments will return a table with information about all the Datasets availabe. Args: name (str)...
Query the Datasets collection.
def get_datasets(self, name=None, entity=None, created_by=None): """Query the Datasets collection. All the details about the matching Datasets will be returned in a ``pandas.DataFrame``. All the arguments are optional, so a call without arguments will return a table with inform...
[ "def", "get_datasets", "(", "self", ",", "name", "=", "None", ",", "entity", "=", "None", ",", "created_by", "=", "None", ")", ":", "return", "schema", ".", "Dataset", ".", "find", "(", "as_df_", "=", "True", ",", "name", "=", "name", ",", "entity", ...
[ 146, 4 ]
[ 172, 9 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.get_dataset
(self, dataset=None, name=None, entity=None, created_by=None)
Get a Dataset object from the database. All the arguments are optional but empty queries are not allowed, so at least one argument needs to be passed with a value different than ``None``. Args: dataset (Dataset, ObjectID or str): Dataset object (or the corresponding...
Get a Dataset object from the database.
def get_dataset(self, dataset=None, name=None, entity=None, created_by=None): """Get a Dataset object from the database. All the arguments are optional but empty queries are not allowed, so at least one argument needs to be passed with a value different than ``None``. Args: ...
[ "def", "get_dataset", "(", "self", ",", "dataset", "=", "None", ",", "name", "=", "None", ",", "entity", "=", "None", ",", "created_by", "=", "None", ")", ":", "return", "schema", ".", "Dataset", ".", "get", "(", "dataset", "=", "dataset", ",", "name...
[ 174, 4 ]
[ 204, 9 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.add_signal
(self, name, dataset, data_location=None, start_time=None, stop_time=None, timestamp_column=None, value_column=None)
Add a new Signal object to the database. The signal needs to be given a name and be associated to a Dataset. Args: name (str): Name of the Signal. dataset (Dataset or ObjectID or str): Dataset object which the created Signal belongs to or the ...
Add a new Signal object to the database.
def add_signal(self, name, dataset, data_location=None, start_time=None, stop_time=None, timestamp_column=None, value_column=None): """Add a new Signal object to the database. The signal needs to be given a name and be associated to a Dataset. Args: name (str): ...
[ "def", "add_signal", "(", "self", ",", "name", ",", "dataset", ",", "data_location", "=", "None", ",", "start_time", "=", "None", ",", "stop_time", "=", "None", ",", "timestamp_column", "=", "None", ",", "value_column", "=", "None", ")", ":", "data_locatio...
[ 210, 4 ]
[ 264, 9 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.add_signals
(self, dataset, signals_path=None, start_time=None, stop_time=None, timestamp_column=None, value_column=None)
Add a multiple Signal objects to the database. All the signals will be added to the Dataset using the CSV filename as their name. Args: dataset (Dataset or ObjectID or str): Dataset object which the created Signals belongs to or the corresponding Obj...
Add a multiple Signal objects to the database.
def add_signals(self, dataset, signals_path=None, start_time=None, stop_time=None, timestamp_column=None, value_column=None): """Add a multiple Signal objects to the database. All the signals will be added to the Dataset using the CSV filename as their name. Args: ...
[ "def", "add_signals", "(", "self", ",", "dataset", ",", "signals_path", "=", "None", ",", "start_time", "=", "None", ",", "stop_time", "=", "None", ",", "timestamp_column", "=", "None", ",", "value_column", "=", "None", ")", ":", "for", "filename", "in", ...
[ 266, 4 ]
[ 305, 24 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.get_signals
(self, name=None, dataset=None, created_by=None)
Query the Signals collection. All the details about the matching Signals will be returned in a ``pandas.DataFrame``. All the arguments are optional, so a call without arguments will return a table with information about all the Signals availabe. Args: name (str): ...
Query the Signals collection.
def get_signals(self, name=None, dataset=None, created_by=None): """Query the Signals collection. All the details about the matching Signals will be returned in a ``pandas.DataFrame``. All the arguments are optional, so a call without arguments will return a table with informat...
[ "def", "get_signals", "(", "self", ",", "name", "=", "None", ",", "dataset", "=", "None", ",", "created_by", "=", "None", ")", ":", "return", "schema", ".", "Signal", ".", "find", "(", "as_df_", "=", "True", ",", "name", "=", "name", ",", "dataset", ...
[ 307, 4 ]
[ 333, 9 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.get_signal
(self, signal=None, name=None, dataset=None, created_by=None)
Get a Signal object from the database. All the arguments are optional but empty queries are not allowed, so at least one argument needs to be passed with a value different than ``None``. Args: signal (Signal, ObjectID or str): Signal object (or the corresponding Obj...
Get a Signal object from the database.
def get_signal(self, signal=None, name=None, dataset=None, created_by=None): """Get a Signal object from the database. All the arguments are optional but empty queries are not allowed, so at least one argument needs to be passed with a value different than ``None``. Args: s...
[ "def", "get_signal", "(", "self", ",", "signal", "=", "None", ",", "name", "=", "None", ",", "dataset", "=", "None", ",", "created_by", "=", "None", ")", ":", "return", "schema", ".", "Signal", ".", "get", "(", "signal", "=", "signal", ",", "name", ...
[ 335, 4 ]
[ 366, 9 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.add_template
(self, name, template=None)
Add a new Template object to the database. The template can be passed as a name of a registered MLPipeline, or as a path to an MLPipeline JSON specification, or as a full dictionary specification of an MLPipeline or directly as an MLPipeline instance. If the ``template`` argume...
Add a new Template object to the database.
def add_template(self, name, template=None): """Add a new Template object to the database. The template can be passed as a name of a registered MLPipeline, or as a path to an MLPipeline JSON specification, or as a full dictionary specification of an MLPipeline or directly as an ...
[ "def", "add_template", "(", "self", ",", "name", ",", "template", "=", "None", ")", ":", "template", "=", "template", "or", "name", "if", "isinstance", "(", "template", ",", "str", ")", "and", "os", ".", "path", ".", "isfile", "(", "template", ")", "...
[ 372, 4 ]
[ 421, 23 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.get_templates
(self, name=None, created_by=None)
Query the Templates collection. All the details about the matching Templates will be returned in a ``pandas.DataFrame``, except for the JSON specification of the template, which will be removed from the table for readability. In order to access the JSON specification of each Template, ...
Query the Templates collection.
def get_templates(self, name=None, created_by=None): """Query the Templates collection. All the details about the matching Templates will be returned in a ``pandas.DataFrame``, except for the JSON specification of the template, which will be removed from the table for readability. ...
[ "def", "get_templates", "(", "self", ",", "name", "=", "None", ",", "created_by", "=", "None", ")", ":", "return", "schema", ".", "Template", ".", "find", "(", "as_df_", "=", "True", ",", "name", "=", "name", ",", "created_by", "=", "created_by", ",", ...
[ 423, 4 ]
[ 450, 9 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.get_template
(self, template=None, name=None, created_by=None)
Get a Template object from the database. All the arguments are optional but empty queries are not allowed, so at least one argument needs to be passed with a value different than ``None``. Args: template (Template, ObjectID or str): Template object (or the correspon...
Get a Template object from the database.
def get_template(self, template=None, name=None, created_by=None): """Get a Template object from the database. All the arguments are optional but empty queries are not allowed, so at least one argument needs to be passed with a value different than ``None``. Args: template ...
[ "def", "get_template", "(", "self", ",", "template", "=", "None", ",", "name", "=", "None", ",", "created_by", "=", "None", ")", ":", "return", "schema", ".", "Template", ".", "get", "(", "template", "=", "template", ",", "name", "=", "name", ",", "c...
[ 452, 4 ]
[ 479, 9 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.add_pipeline
(self, name, template, hyperparameters)
Add a new Pipeline object to the database. The Pipeline will consist on a copy of the given Template using the indicated hyperparameters. The hyperparameters can be passed as a dictionary containing the hyperparameter values following the MLBlocks specification format, or a pat...
Add a new Pipeline object to the database.
def add_pipeline(self, name, template, hyperparameters): """Add a new Pipeline object to the database. The Pipeline will consist on a copy of the given Template using the indicated hyperparameters. The hyperparameters can be passed as a dictionary containing the hyperparameter ...
[ "def", "add_pipeline", "(", "self", ",", "name", ",", "template", ",", "hyperparameters", ")", ":", "pipeline", "=", "self", ".", "get_template", "(", "template", ")", ".", "load", "(", ")", "if", "isinstance", "(", "hyperparameters", ",", "str", ")", ":...
[ 485, 4 ]
[ 525, 9 ]
python
en
['en', 'en', 'en']
True
OrionDBExplorer.get_pipelines
(self, name=None, template=None, created_by=None)
Query the Pipelines collection. All the details about the matching Pipelines will be returned in a ``pandas.DataFrame``, except for the JSON specification of the pipeline, which will be removed from the table for readability. In order to access the JSON specification of each Pipeline, ...
Query the Pipelines collection.
def get_pipelines(self, name=None, template=None, created_by=None): """Query the Pipelines collection. All the details about the matching Pipelines will be returned in a ``pandas.DataFrame``, except for the JSON specification of the pipeline, which will be removed from the table for rea...
[ "def", "get_pipelines", "(", "self", ",", "name", "=", "None", ",", "template", "=", "None", ",", "created_by", "=", "None", ")", ":", "return", "schema", ".", "Pipeline", ".", "find", "(", "as_df_", "=", "True", ",", "name", "=", "name", ",", "templ...
[ 527, 4 ]
[ 558, 9 ]
python
en
['en', 'en', 'en']
True