repository_name stringlengths 7 55 | func_path_in_repository stringlengths 4 223 | func_name stringlengths 1 134 | whole_func_string stringlengths 75 104k | language stringclasses 1
value | func_code_string stringlengths 75 104k | func_code_tokens listlengths 19 28.4k | func_documentation_string stringlengths 1 46.9k | func_documentation_tokens listlengths 1 1.97k | split_name stringclasses 1
value | func_code_url stringlengths 87 315 |
|---|---|---|---|---|---|---|---|---|---|---|
colab/colab | colab/accounts/views.py | EmailView.update | def update(self, request, key):
"""Set an email address as primary address."""
request.UPDATE = http.QueryDict(request.body)
email_addr = request.UPDATE.get('email')
user_id = request.UPDATE.get('user')
if not email_addr:
return http.HttpResponseBadRequest()
... | python | def update(self, request, key):
"""Set an email address as primary address."""
request.UPDATE = http.QueryDict(request.body)
email_addr = request.UPDATE.get('email')
user_id = request.UPDATE.get('user')
if not email_addr:
return http.HttpResponseBadRequest()
... | [
"def",
"update",
"(",
"self",
",",
"request",
",",
"key",
")",
":",
"request",
".",
"UPDATE",
"=",
"http",
".",
"QueryDict",
"(",
"request",
".",
"body",
")",
"email_addr",
"=",
"request",
".",
"UPDATE",
".",
"get",
"(",
"'email'",
")",
"user_id",
"=... | Set an email address as primary address. | [
"Set",
"an",
"email",
"address",
"as",
"primary",
"address",
"."
] | train | https://github.com/colab/colab/blob/2ad099231e620bec647363b27d38006eca71e13b/colab/accounts/views.py#L181-L199 |
colab/colab | colab/accounts/views.py | SignupView.is_logged | def is_logged(self, user):
"""Check if a logged user is trying to access the register page.
If so, redirect him/her to his/her profile"""
response = None
if user.is_authenticated():
if not user.needs_update:
response = redirect('user_profile', username=use... | python | def is_logged(self, user):
"""Check if a logged user is trying to access the register page.
If so, redirect him/her to his/her profile"""
response = None
if user.is_authenticated():
if not user.needs_update:
response = redirect('user_profile', username=use... | [
"def",
"is_logged",
"(",
"self",
",",
"user",
")",
":",
"response",
"=",
"None",
"if",
"user",
".",
"is_authenticated",
"(",
")",
":",
"if",
"not",
"user",
".",
"needs_update",
":",
"response",
"=",
"redirect",
"(",
"'user_profile'",
",",
"username",
"="... | Check if a logged user is trying to access the register page.
If so, redirect him/her to his/her profile | [
"Check",
"if",
"a",
"logged",
"user",
"is",
"trying",
"to",
"access",
"the",
"register",
"page",
".",
"If",
"so",
"redirect",
"him",
"/",
"her",
"to",
"his",
"/",
"her",
"profile"
] | train | https://github.com/colab/colab/blob/2ad099231e620bec647363b27d38006eca71e13b/colab/accounts/views.py#L227-L236 |
colab/colab | colab/settings.py | get_env_setting | def get_env_setting(setting):
""" Get the environment setting or return exception """
try:
return os.environ[setting]
except KeyError:
error_msg = "Set the %s env variable" % setting
raise ImproperlyConfigured(error_msg) | python | def get_env_setting(setting):
""" Get the environment setting or return exception """
try:
return os.environ[setting]
except KeyError:
error_msg = "Set the %s env variable" % setting
raise ImproperlyConfigured(error_msg) | [
"def",
"get_env_setting",
"(",
"setting",
")",
":",
"try",
":",
"return",
"os",
".",
"environ",
"[",
"setting",
"]",
"except",
"KeyError",
":",
"error_msg",
"=",
"\"Set the %s env variable\"",
"%",
"setting",
"raise",
"ImproperlyConfigured",
"(",
"error_msg",
")... | Get the environment setting or return exception | [
"Get",
"the",
"environment",
"setting",
"or",
"return",
"exception"
] | train | https://github.com/colab/colab/blob/2ad099231e620bec647363b27d38006eca71e13b/colab/settings.py#L101-L107 |
ravendb/ravendb-python-client | pyravendb/tools/custom_decoder.py | parse_json | def parse_json(json_string, object_type, mappers):
"""
This function will use the custom JsonDecoder and the conventions.mappers to recreate your custom object
in the parse json string state just call this method with the json_string your complete object_type and with your
mappers dict.
the mappers ... | python | def parse_json(json_string, object_type, mappers):
"""
This function will use the custom JsonDecoder and the conventions.mappers to recreate your custom object
in the parse json string state just call this method with the json_string your complete object_type and with your
mappers dict.
the mappers ... | [
"def",
"parse_json",
"(",
"json_string",
",",
"object_type",
",",
"mappers",
")",
":",
"obj",
"=",
"json",
".",
"loads",
"(",
"json_string",
",",
"cls",
"=",
"JsonDecoder",
",",
"object_mapper",
"=",
"mappers",
".",
"get",
"(",
"object_type",
",",
"None",
... | This function will use the custom JsonDecoder and the conventions.mappers to recreate your custom object
in the parse json string state just call this method with the json_string your complete object_type and with your
mappers dict.
the mappers dict must contain in the key the object_type (ex. User) and the... | [
"This",
"function",
"will",
"use",
"the",
"custom",
"JsonDecoder",
"and",
"the",
"conventions",
".",
"mappers",
"to",
"recreate",
"your",
"custom",
"object",
"in",
"the",
"parse",
"json",
"string",
"state",
"just",
"call",
"this",
"method",
"with",
"the",
"j... | train | https://github.com/ravendb/ravendb-python-client/blob/383739db2594303e3cc469134aa16156f6f80acd/pyravendb/tools/custom_decoder.py#L28-L49 |
colab/colab | colab/accounts/utils/validators.py | validate_social_account | def validate_social_account(account, url):
"""Verifies if a social account is valid.
Examples:
>>> validate_social_account('seocam', 'http://twitter.com')
True
>>> validate_social_account('seocam-fake-should-fail',
'http://twitter.com')
False
"""
requ... | python | def validate_social_account(account, url):
"""Verifies if a social account is valid.
Examples:
>>> validate_social_account('seocam', 'http://twitter.com')
True
>>> validate_social_account('seocam-fake-should-fail',
'http://twitter.com')
False
"""
requ... | [
"def",
"validate_social_account",
"(",
"account",
",",
"url",
")",
":",
"request",
"=",
"urllib2",
".",
"Request",
"(",
"urlparse",
".",
"urljoin",
"(",
"url",
",",
"account",
")",
")",
"request",
".",
"get_method",
"=",
"lambda",
":",
"'HEAD'",
"try",
"... | Verifies if a social account is valid.
Examples:
>>> validate_social_account('seocam', 'http://twitter.com')
True
>>> validate_social_account('seocam-fake-should-fail',
'http://twitter.com')
False | [
"Verifies",
"if",
"a",
"social",
"account",
"is",
"valid",
"."
] | train | https://github.com/colab/colab/blob/2ad099231e620bec647363b27d38006eca71e13b/colab/accounts/utils/validators.py#L6-L28 |
xingjiepan/cylinder_fitting | cylinder_fitting/analysis.py | fitting_rmsd | def fitting_rmsd(w_fit, C_fit, r_fit, Xs):
'''Calculate the RMSD of fitting.'''
return np.sqrt(sum((geometry.point_line_distance(p, C_fit, w_fit) - r_fit) ** 2
for p in Xs) / len(Xs)) | python | def fitting_rmsd(w_fit, C_fit, r_fit, Xs):
'''Calculate the RMSD of fitting.'''
return np.sqrt(sum((geometry.point_line_distance(p, C_fit, w_fit) - r_fit) ** 2
for p in Xs) / len(Xs)) | [
"def",
"fitting_rmsd",
"(",
"w_fit",
",",
"C_fit",
",",
"r_fit",
",",
"Xs",
")",
":",
"return",
"np",
".",
"sqrt",
"(",
"sum",
"(",
"(",
"geometry",
".",
"point_line_distance",
"(",
"p",
",",
"C_fit",
",",
"w_fit",
")",
"-",
"r_fit",
")",
"**",
"2"... | Calculate the RMSD of fitting. | [
"Calculate",
"the",
"RMSD",
"of",
"fitting",
"."
] | train | https://github.com/xingjiepan/cylinder_fitting/blob/f96d79732bc49cbc0cb4b39f008af7ce42aeb213/cylinder_fitting/analysis.py#L6-L9 |
ravendb/ravendb-python-client | pyravendb/store/stream.py | IncrementalJsonParser.basic_parse | def basic_parse(response, buf_size=ijson.backend.BUFSIZE):
"""
Iterator yielding unprefixed events.
Parameters:
- response: a stream response from requests
"""
lexer = iter(IncrementalJsonParser.lexer(response, buf_size))
for value in ijson.backend.parse_value(l... | python | def basic_parse(response, buf_size=ijson.backend.BUFSIZE):
"""
Iterator yielding unprefixed events.
Parameters:
- response: a stream response from requests
"""
lexer = iter(IncrementalJsonParser.lexer(response, buf_size))
for value in ijson.backend.parse_value(l... | [
"def",
"basic_parse",
"(",
"response",
",",
"buf_size",
"=",
"ijson",
".",
"backend",
".",
"BUFSIZE",
")",
":",
"lexer",
"=",
"iter",
"(",
"IncrementalJsonParser",
".",
"lexer",
"(",
"response",
",",
"buf_size",
")",
")",
"for",
"value",
"in",
"ijson",
"... | Iterator yielding unprefixed events.
Parameters:
- response: a stream response from requests | [
"Iterator",
"yielding",
"unprefixed",
"events",
"."
] | train | https://github.com/ravendb/ravendb-python-client/blob/383739db2594303e3cc469134aa16156f6f80acd/pyravendb/store/stream.py#L13-L29 |
s4int/robotframework-KafkaLibrary | KafkaLibrary/__init__.py | KafkaLibrary.connect_to_kafka | def connect_to_kafka(self, bootstrap_servers='127.0.0.1:9092',
auto_offset_reset='latest',
client_id='Robot',
**kwargs
):
"""Connect to kafka
- ``bootstrap_servers``: default 127.0.0.1:9092
- ``cl... | python | def connect_to_kafka(self, bootstrap_servers='127.0.0.1:9092',
auto_offset_reset='latest',
client_id='Robot',
**kwargs
):
"""Connect to kafka
- ``bootstrap_servers``: default 127.0.0.1:9092
- ``cl... | [
"def",
"connect_to_kafka",
"(",
"self",
",",
"bootstrap_servers",
"=",
"'127.0.0.1:9092'",
",",
"auto_offset_reset",
"=",
"'latest'",
",",
"client_id",
"=",
"'Robot'",
",",
"*",
"*",
"kwargs",
")",
":",
"self",
".",
"connect_consumer",
"(",
"bootstrap_servers",
... | Connect to kafka
- ``bootstrap_servers``: default 127.0.0.1:9092
- ``client_id``: default: Robot | [
"Connect",
"to",
"kafka",
"-",
"bootstrap_servers",
":",
"default",
"127",
".",
"0",
".",
"0",
".",
"1",
":",
"9092",
"-",
"client_id",
":",
"default",
":",
"Robot"
] | train | https://github.com/s4int/robotframework-KafkaLibrary/blob/1f05193958488a5d2e5de19a398ada9edab30d87/KafkaLibrary/__init__.py#L14-L30 |
ravendb/ravendb-python-client | pyravendb/subscriptions/document_subscriptions.py | DocumentSubscriptions.drop_connection | def drop_connection(self, name, database=None):
"""
Force server to close current client subscription connection to the server
@param str name: The name of the subscription
@param str database: The name of the database
"""
request_executor = self._store.get_request_execut... | python | def drop_connection(self, name, database=None):
"""
Force server to close current client subscription connection to the server
@param str name: The name of the subscription
@param str database: The name of the database
"""
request_executor = self._store.get_request_execut... | [
"def",
"drop_connection",
"(",
"self",
",",
"name",
",",
"database",
"=",
"None",
")",
":",
"request_executor",
"=",
"self",
".",
"_store",
".",
"get_request_executor",
"(",
"database",
")",
"command",
"=",
"DropSubscriptionConnectionCommand",
"(",
"name",
")",
... | Force server to close current client subscription connection to the server
@param str name: The name of the subscription
@param str database: The name of the database | [
"Force",
"server",
"to",
"close",
"current",
"client",
"subscription",
"connection",
"to",
"the",
"server"
] | train | https://github.com/ravendb/ravendb-python-client/blob/383739db2594303e3cc469134aa16156f6f80acd/pyravendb/subscriptions/document_subscriptions.py#L64-L72 |
colab/colab | colab/utils/runner.py | execute_from_command_line | def execute_from_command_line(argv=None):
"""
A simple method that runs a ManagementUtility.
"""
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "colab.settings")
from django.conf import settings
if not hasattr(settings, 'SECRET_KEY') and 'initconfig' in sys.argv:
command = initconfig.C... | python | def execute_from_command_line(argv=None):
"""
A simple method that runs a ManagementUtility.
"""
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "colab.settings")
from django.conf import settings
if not hasattr(settings, 'SECRET_KEY') and 'initconfig' in sys.argv:
command = initconfig.C... | [
"def",
"execute_from_command_line",
"(",
"argv",
"=",
"None",
")",
":",
"os",
".",
"environ",
".",
"setdefault",
"(",
"\"DJANGO_SETTINGS_MODULE\"",
",",
"\"colab.settings\"",
")",
"from",
"django",
".",
"conf",
"import",
"settings",
"if",
"not",
"hasattr",
"(",
... | A simple method that runs a ManagementUtility. | [
"A",
"simple",
"method",
"that",
"runs",
"a",
"ManagementUtility",
"."
] | train | https://github.com/colab/colab/blob/2ad099231e620bec647363b27d38006eca71e13b/colab/utils/runner.py#L9-L21 |
colab/colab | colab/home/views.py | dashboard | def dashboard(request):
"""Dashboard page"""
user = None
if request.user.is_authenticated():
user = User.objects.get(username=request.user)
latest_results, count_types = get_collaboration_data(user)
latest_results.sort(key=lambda elem: elem.modified, reverse=True)
context = {
... | python | def dashboard(request):
"""Dashboard page"""
user = None
if request.user.is_authenticated():
user = User.objects.get(username=request.user)
latest_results, count_types = get_collaboration_data(user)
latest_results.sort(key=lambda elem: elem.modified, reverse=True)
context = {
... | [
"def",
"dashboard",
"(",
"request",
")",
":",
"user",
"=",
"None",
"if",
"request",
".",
"user",
".",
"is_authenticated",
"(",
")",
":",
"user",
"=",
"User",
".",
"objects",
".",
"get",
"(",
"username",
"=",
"request",
".",
"user",
")",
"latest_results... | Dashboard page | [
"Dashboard",
"page"
] | train | https://github.com/colab/colab/blob/2ad099231e620bec647363b27d38006eca71e13b/colab/home/views.py#L9-L23 |
xingjiepan/cylinder_fitting | cylinder_fitting/geometry.py | normalize | def normalize(v):
'''Normalize a vector based on its 2 norm.'''
if 0 == np.linalg.norm(v):
return v
return v / np.linalg.norm(v) | python | def normalize(v):
'''Normalize a vector based on its 2 norm.'''
if 0 == np.linalg.norm(v):
return v
return v / np.linalg.norm(v) | [
"def",
"normalize",
"(",
"v",
")",
":",
"if",
"0",
"==",
"np",
".",
"linalg",
".",
"norm",
"(",
"v",
")",
":",
"return",
"v",
"return",
"v",
"/",
"np",
".",
"linalg",
".",
"norm",
"(",
"v",
")"
] | Normalize a vector based on its 2 norm. | [
"Normalize",
"a",
"vector",
"based",
"on",
"its",
"2",
"norm",
"."
] | train | https://github.com/xingjiepan/cylinder_fitting/blob/f96d79732bc49cbc0cb4b39f008af7ce42aeb213/cylinder_fitting/geometry.py#L4-L8 |
xingjiepan/cylinder_fitting | cylinder_fitting/geometry.py | rotation_matrix_from_axis_and_angle | def rotation_matrix_from_axis_and_angle(u, theta):
'''Calculate a rotation matrix from an axis and an angle.'''
x = u[0]
y = u[1]
z = u[2]
s = np.sin(theta)
c = np.cos(theta)
return np.array([[c + x**2 * (1 - c), x * y * (1 - c) - z * s, x * z * (1 - c) + y * s],
... | python | def rotation_matrix_from_axis_and_angle(u, theta):
'''Calculate a rotation matrix from an axis and an angle.'''
x = u[0]
y = u[1]
z = u[2]
s = np.sin(theta)
c = np.cos(theta)
return np.array([[c + x**2 * (1 - c), x * y * (1 - c) - z * s, x * z * (1 - c) + y * s],
... | [
"def",
"rotation_matrix_from_axis_and_angle",
"(",
"u",
",",
"theta",
")",
":",
"x",
"=",
"u",
"[",
"0",
"]",
"y",
"=",
"u",
"[",
"1",
"]",
"z",
"=",
"u",
"[",
"2",
"]",
"s",
"=",
"np",
".",
"sin",
"(",
"theta",
")",
"c",
"=",
"np",
".",
"c... | Calculate a rotation matrix from an axis and an angle. | [
"Calculate",
"a",
"rotation",
"matrix",
"from",
"an",
"axis",
"and",
"an",
"angle",
"."
] | train | https://github.com/xingjiepan/cylinder_fitting/blob/f96d79732bc49cbc0cb4b39f008af7ce42aeb213/cylinder_fitting/geometry.py#L10-L21 |
xingjiepan/cylinder_fitting | cylinder_fitting/geometry.py | point_line_distance | def point_line_distance(p, l_p, l_v):
'''Calculate the distance between a point and a line defined
by a point and a direction vector.
'''
l_v = normalize(l_v)
u = p - l_p
return np.linalg.norm(u - np.dot(u, l_v) * l_v) | python | def point_line_distance(p, l_p, l_v):
'''Calculate the distance between a point and a line defined
by a point and a direction vector.
'''
l_v = normalize(l_v)
u = p - l_p
return np.linalg.norm(u - np.dot(u, l_v) * l_v) | [
"def",
"point_line_distance",
"(",
"p",
",",
"l_p",
",",
"l_v",
")",
":",
"l_v",
"=",
"normalize",
"(",
"l_v",
")",
"u",
"=",
"p",
"-",
"l_p",
"return",
"np",
".",
"linalg",
".",
"norm",
"(",
"u",
"-",
"np",
".",
"dot",
"(",
"u",
",",
"l_v",
... | Calculate the distance between a point and a line defined
by a point and a direction vector. | [
"Calculate",
"the",
"distance",
"between",
"a",
"point",
"and",
"a",
"line",
"defined",
"by",
"a",
"point",
"and",
"a",
"direction",
"vector",
"."
] | train | https://github.com/xingjiepan/cylinder_fitting/blob/f96d79732bc49cbc0cb4b39f008af7ce42aeb213/cylinder_fitting/geometry.py#L23-L29 |
ravendb/ravendb-python-client | pyravendb/store/session_query.py | Query.raw_query | def raw_query(self, query, query_parameters=None):
"""
To get all the document that equal to the query
@param str query: The rql query
@param dict query_parameters: Add query parameters to the query {key : value}
"""
self.assert_no_raw_query()
if len(self._where... | python | def raw_query(self, query, query_parameters=None):
"""
To get all the document that equal to the query
@param str query: The rql query
@param dict query_parameters: Add query parameters to the query {key : value}
"""
self.assert_no_raw_query()
if len(self._where... | [
"def",
"raw_query",
"(",
"self",
",",
"query",
",",
"query_parameters",
"=",
"None",
")",
":",
"self",
".",
"assert_no_raw_query",
"(",
")",
"if",
"len",
"(",
"self",
".",
"_where_tokens",
")",
"!=",
"0",
"or",
"len",
"(",
"self",
".",
"_select_tokens",
... | To get all the document that equal to the query
@param str query: The rql query
@param dict query_parameters: Add query parameters to the query {key : value} | [
"To",
"get",
"all",
"the",
"document",
"that",
"equal",
"to",
"the",
"query"
] | train | https://github.com/ravendb/ravendb-python-client/blob/383739db2594303e3cc469134aa16156f6f80acd/pyravendb/store/session_query.py#L383-L401 |
ravendb/ravendb-python-client | pyravendb/store/session_query.py | Query.where_equals | def where_equals(self, field_name, value, exact=False):
"""
To get all the document that equal to the value in the given field_name
@param str field_name: The field name in the index you want to query.
@param value: The value will be the fields value you want to query
@param boo... | python | def where_equals(self, field_name, value, exact=False):
"""
To get all the document that equal to the value in the given field_name
@param str field_name: The field name in the index you want to query.
@param value: The value will be the fields value you want to query
@param boo... | [
"def",
"where_equals",
"(",
"self",
",",
"field_name",
",",
"value",
",",
"exact",
"=",
"False",
")",
":",
"if",
"field_name",
"is",
"None",
":",
"raise",
"ValueError",
"(",
"\"None field_name is invalid\"",
")",
"field_name",
"=",
"Query",
".",
"escape_if_nee... | To get all the document that equal to the value in the given field_name
@param str field_name: The field name in the index you want to query.
@param value: The value will be the fields value you want to query
@param bool exact: If True getting exact match of the query | [
"To",
"get",
"all",
"the",
"document",
"that",
"equal",
"to",
"the",
"value",
"in",
"the",
"given",
"field_name"
] | train | https://github.com/ravendb/ravendb-python-client/blob/383739db2594303e3cc469134aa16156f6f80acd/pyravendb/store/session_query.py#L403-L427 |
ravendb/ravendb-python-client | pyravendb/store/session_query.py | Query.where | def where(self, exact=False, **kwargs):
"""
To get all the document that equal to the value within kwargs with the specific key
@param bool exact: If True getting exact match of the query
@param kwargs: the keys of the kwargs will be the fields name in the index you want to query.
... | python | def where(self, exact=False, **kwargs):
"""
To get all the document that equal to the value within kwargs with the specific key
@param bool exact: If True getting exact match of the query
@param kwargs: the keys of the kwargs will be the fields name in the index you want to query.
... | [
"def",
"where",
"(",
"self",
",",
"exact",
"=",
"False",
",",
"*",
"*",
"kwargs",
")",
":",
"for",
"field_name",
"in",
"kwargs",
":",
"if",
"isinstance",
"(",
"kwargs",
"[",
"field_name",
"]",
",",
"list",
")",
":",
"self",
".",
"where_in",
"(",
"f... | To get all the document that equal to the value within kwargs with the specific key
@param bool exact: If True getting exact match of the query
@param kwargs: the keys of the kwargs will be the fields name in the index you want to query.
The value will be the the fields value you want to query
... | [
"To",
"get",
"all",
"the",
"document",
"that",
"equal",
"to",
"the",
"value",
"within",
"kwargs",
"with",
"the",
"specific",
"key"
] | train | https://github.com/ravendb/ravendb-python-client/blob/383739db2594303e3cc469134aa16156f6f80acd/pyravendb/store/session_query.py#L449-L463 |
ravendb/ravendb-python-client | pyravendb/store/session_query.py | Query.search | def search(self, field_name, search_terms, operator=QueryOperator.OR):
"""
For more complex text searching
@param str field_name: The field name in the index you want to query.
:type str
@param str search_terms: The terms you want to query
@param QueryOperator operator: ... | python | def search(self, field_name, search_terms, operator=QueryOperator.OR):
"""
For more complex text searching
@param str field_name: The field name in the index you want to query.
:type str
@param str search_terms: The terms you want to query
@param QueryOperator operator: ... | [
"def",
"search",
"(",
"self",
",",
"field_name",
",",
"search_terms",
",",
"operator",
"=",
"QueryOperator",
".",
"OR",
")",
":",
"if",
"field_name",
"is",
"None",
":",
"raise",
"ValueError",
"(",
"\"None field_name is invalid\"",
")",
"field_name",
"=",
"Quer... | For more complex text searching
@param str field_name: The field name in the index you want to query.
:type str
@param str search_terms: The terms you want to query
@param QueryOperator operator: OR or AND | [
"For",
"more",
"complex",
"text",
"searching"
] | train | https://github.com/ravendb/ravendb-python-client/blob/383739db2594303e3cc469134aa16156f6f80acd/pyravendb/store/session_query.py#L465-L487 |
ravendb/ravendb-python-client | pyravendb/store/session_query.py | Query.where_ends_with | def where_ends_with(self, field_name, value):
"""
To get all the document that ends with the value in the giving field_name
@param str field_name:The field name in the index you want to query.
@param str value: The value will be the fields value you want to query
"""
if ... | python | def where_ends_with(self, field_name, value):
"""
To get all the document that ends with the value in the giving field_name
@param str field_name:The field name in the index you want to query.
@param str value: The value will be the fields value you want to query
"""
if ... | [
"def",
"where_ends_with",
"(",
"self",
",",
"field_name",
",",
"value",
")",
":",
"if",
"field_name",
"is",
"None",
":",
"raise",
"ValueError",
"(",
"\"None field_name is invalid\"",
")",
"field_name",
"=",
"Query",
".",
"escape_if_needed",
"(",
"field_name",
")... | To get all the document that ends with the value in the giving field_name
@param str field_name:The field name in the index you want to query.
@param str value: The value will be the fields value you want to query | [
"To",
"get",
"all",
"the",
"document",
"that",
"ends",
"with",
"the",
"value",
"in",
"the",
"giving",
"field_name"
] | train | https://github.com/ravendb/ravendb-python-client/blob/383739db2594303e3cc469134aa16156f6f80acd/pyravendb/store/session_query.py#L489-L508 |
ravendb/ravendb-python-client | pyravendb/store/session_query.py | Query.where_in | def where_in(self, field_name, values, exact=False):
"""
Check that the field has one of the specified values
@param str field_name: Name of the field
@param str values: The values we wish to query
@param bool exact: Getting the exact query (ex. case sensitive)
"""
... | python | def where_in(self, field_name, values, exact=False):
"""
Check that the field has one of the specified values
@param str field_name: Name of the field
@param str values: The values we wish to query
@param bool exact: Getting the exact query (ex. case sensitive)
"""
... | [
"def",
"where_in",
"(",
"self",
",",
"field_name",
",",
"values",
",",
"exact",
"=",
"False",
")",
":",
"field_name",
"=",
"Query",
".",
"escape_if_needed",
"(",
"field_name",
")",
"self",
".",
"_add_operator_if_needed",
"(",
")",
"self",
".",
"negate_if_nee... | Check that the field has one of the specified values
@param str field_name: Name of the field
@param str values: The values we wish to query
@param bool exact: Getting the exact query (ex. case sensitive) | [
"Check",
"that",
"the",
"field",
"has",
"one",
"of",
"the",
"specified",
"values"
] | train | https://github.com/ravendb/ravendb-python-client/blob/383739db2594303e3cc469134aa16156f6f80acd/pyravendb/store/session_query.py#L531-L548 |
ravendb/ravendb-python-client | pyravendb/store/session_query.py | Query.to_facets | def to_facets(self, facets, start=0, page_size=None):
"""
Query the facets results for this query using the specified list of facets with the given start and pageSize
@param List[Facet] facets: List of facets
@param int start: Start index for paging
@param page_size: Paging Pag... | python | def to_facets(self, facets, start=0, page_size=None):
"""
Query the facets results for this query using the specified list of facets with the given start and pageSize
@param List[Facet] facets: List of facets
@param int start: Start index for paging
@param page_size: Paging Pag... | [
"def",
"to_facets",
"(",
"self",
",",
"facets",
",",
"start",
"=",
"0",
",",
"page_size",
"=",
"None",
")",
":",
"if",
"len",
"(",
"facets",
")",
"==",
"0",
":",
"raise",
"ValueError",
"(",
"\"Facets must contain at least one entry\"",
",",
"\"facets\"",
"... | Query the facets results for this query using the specified list of facets with the given start and pageSize
@param List[Facet] facets: List of facets
@param int start: Start index for paging
@param page_size: Paging PageSize. If set, overrides Facet.max_result | [
"Query",
"the",
"facets",
"results",
"for",
"this",
"query",
"using",
"the",
"specified",
"list",
"of",
"facets",
"with",
"the",
"given",
"start",
"and",
"pageSize"
] | train | https://github.com/ravendb/ravendb-python-client/blob/383739db2594303e3cc469134aa16156f6f80acd/pyravendb/store/session_query.py#L747-L764 |
xingjiepan/cylinder_fitting | cylinder_fitting/visualize.py | show_G_distribution | def show_G_distribution(data):
'''Show the distribution of the G function.'''
Xs, t = fitting.preprocess_data(data)
Theta, Phi = np.meshgrid(np.linspace(0, np.pi, 50), np.linspace(0, 2 * np.pi, 50))
G = []
for i in range(len(Theta)):
G.append([])
for j in range(len(Theta[i])):
... | python | def show_G_distribution(data):
'''Show the distribution of the G function.'''
Xs, t = fitting.preprocess_data(data)
Theta, Phi = np.meshgrid(np.linspace(0, np.pi, 50), np.linspace(0, 2 * np.pi, 50))
G = []
for i in range(len(Theta)):
G.append([])
for j in range(len(Theta[i])):
... | [
"def",
"show_G_distribution",
"(",
"data",
")",
":",
"Xs",
",",
"t",
"=",
"fitting",
".",
"preprocess_data",
"(",
"data",
")",
"Theta",
",",
"Phi",
"=",
"np",
".",
"meshgrid",
"(",
"np",
".",
"linspace",
"(",
"0",
",",
"np",
".",
"pi",
",",
"50",
... | Show the distribution of the G function. | [
"Show",
"the",
"distribution",
"of",
"the",
"G",
"function",
"."
] | train | https://github.com/xingjiepan/cylinder_fitting/blob/f96d79732bc49cbc0cb4b39f008af7ce42aeb213/cylinder_fitting/visualize.py#L11-L25 |
xingjiepan/cylinder_fitting | cylinder_fitting/visualize.py | show_fit | def show_fit(w_fit, C_fit, r_fit, Xs):
'''Plot the fitting given the fitted axis direction, the fitted
center, the fitted radius and the data points.
'''
fig = plt.figure()
ax = fig.gca(projection='3d')
# Plot the data points
ax.scatter([X[0] for X in Xs], [X[1] for X in Xs], [X[2... | python | def show_fit(w_fit, C_fit, r_fit, Xs):
'''Plot the fitting given the fitted axis direction, the fitted
center, the fitted radius and the data points.
'''
fig = plt.figure()
ax = fig.gca(projection='3d')
# Plot the data points
ax.scatter([X[0] for X in Xs], [X[1] for X in Xs], [X[2... | [
"def",
"show_fit",
"(",
"w_fit",
",",
"C_fit",
",",
"r_fit",
",",
"Xs",
")",
":",
"fig",
"=",
"plt",
".",
"figure",
"(",
")",
"ax",
"=",
"fig",
".",
"gca",
"(",
"projection",
"=",
"'3d'",
")",
"# Plot the data points",
"ax",
".",
"scatter",
"(",
"[... | Plot the fitting given the fitted axis direction, the fitted
center, the fitted radius and the data points. | [
"Plot",
"the",
"fitting",
"given",
"the",
"fitted",
"axis",
"direction",
"the",
"fitted",
"center",
"the",
"fitted",
"radius",
"and",
"the",
"data",
"points",
"."
] | train | https://github.com/xingjiepan/cylinder_fitting/blob/f96d79732bc49cbc0cb4b39f008af7ce42aeb213/cylinder_fitting/visualize.py#L27-L72 |
colab/colab | colab/utils/highlighting.py | ColabHighlighter.find_window | def find_window(self, highlight_locations):
"""Getting the HIGHLIGHT_NUM_CHARS_BEFORE_MATCH setting
to find how many characters before the first word found should
be removed from the window
"""
if len(self.text_block) <= self.max_length:
return (0, self.max_length)
... | python | def find_window(self, highlight_locations):
"""Getting the HIGHLIGHT_NUM_CHARS_BEFORE_MATCH setting
to find how many characters before the first word found should
be removed from the window
"""
if len(self.text_block) <= self.max_length:
return (0, self.max_length)
... | [
"def",
"find_window",
"(",
"self",
",",
"highlight_locations",
")",
":",
"if",
"len",
"(",
"self",
".",
"text_block",
")",
"<=",
"self",
".",
"max_length",
":",
"return",
"(",
"0",
",",
"self",
".",
"max_length",
")",
"num_chars_before",
"=",
"getattr",
... | Getting the HIGHLIGHT_NUM_CHARS_BEFORE_MATCH setting
to find how many characters before the first word found should
be removed from the window | [
"Getting",
"the",
"HIGHLIGHT_NUM_CHARS_BEFORE_MATCH",
"setting",
"to",
"find",
"how",
"many",
"characters",
"before",
"the",
"first",
"word",
"found",
"should",
"be",
"removed",
"from",
"the",
"window"
] | train | https://github.com/colab/colab/blob/2ad099231e620bec647363b27d38006eca71e13b/colab/utils/highlighting.py#L13-L38 |
colab/colab | colab/middlewares/cookie_middleware.py | CookieHandler.__set | def __set(self, key, real_value, coded_value):
"""Private method for setting a cookie's value"""
morse_set = self.get(key, StringMorsel())
morse_set.set(key, real_value, coded_value)
dict.__setitem__(self, key, morse_set) | python | def __set(self, key, real_value, coded_value):
"""Private method for setting a cookie's value"""
morse_set = self.get(key, StringMorsel())
morse_set.set(key, real_value, coded_value)
dict.__setitem__(self, key, morse_set) | [
"def",
"__set",
"(",
"self",
",",
"key",
",",
"real_value",
",",
"coded_value",
")",
":",
"morse_set",
"=",
"self",
".",
"get",
"(",
"key",
",",
"StringMorsel",
"(",
")",
")",
"morse_set",
".",
"set",
"(",
"key",
",",
"real_value",
",",
"coded_value",
... | Private method for setting a cookie's value | [
"Private",
"method",
"for",
"setting",
"a",
"cookie",
"s",
"value"
] | train | https://github.com/colab/colab/blob/2ad099231e620bec647363b27d38006eca71e13b/colab/middlewares/cookie_middleware.py#L67-L71 |
DerMitch/fritzbox-smarthome | fritzhome/fritz.py | FritzBox.login | def login(self):
"""
Try to login and set the internal session id.
Please note:
- Any failed login resets all existing session ids, even of
other users.
- SIDs expire after some time
"""
response = self.session.get(self.base_url + '/login_sid.lua', time... | python | def login(self):
"""
Try to login and set the internal session id.
Please note:
- Any failed login resets all existing session ids, even of
other users.
- SIDs expire after some time
"""
response = self.session.get(self.base_url + '/login_sid.lua', time... | [
"def",
"login",
"(",
"self",
")",
":",
"response",
"=",
"self",
".",
"session",
".",
"get",
"(",
"self",
".",
"base_url",
"+",
"'/login_sid.lua'",
",",
"timeout",
"=",
"10",
")",
"xml",
"=",
"ET",
".",
"fromstring",
"(",
"response",
".",
"text",
")",... | Try to login and set the internal session id.
Please note:
- Any failed login resets all existing session ids, even of
other users.
- SIDs expire after some time | [
"Try",
"to",
"login",
"and",
"set",
"the",
"internal",
"session",
"id",
"."
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/fritz.py#L53-L81 |
DerMitch/fritzbox-smarthome | fritzhome/fritz.py | FritzBox.calculate_response | def calculate_response(self, challenge, password):
"""Calculate response for the challenge-response authentication"""
to_hash = (challenge + "-" + password).encode("UTF-16LE")
hashed = hashlib.md5(to_hash).hexdigest()
return "{0}-{1}".format(challenge, hashed) | python | def calculate_response(self, challenge, password):
"""Calculate response for the challenge-response authentication"""
to_hash = (challenge + "-" + password).encode("UTF-16LE")
hashed = hashlib.md5(to_hash).hexdigest()
return "{0}-{1}".format(challenge, hashed) | [
"def",
"calculate_response",
"(",
"self",
",",
"challenge",
",",
"password",
")",
":",
"to_hash",
"=",
"(",
"challenge",
"+",
"\"-\"",
"+",
"password",
")",
".",
"encode",
"(",
"\"UTF-16LE\"",
")",
"hashed",
"=",
"hashlib",
".",
"md5",
"(",
"to_hash",
")... | Calculate response for the challenge-response authentication | [
"Calculate",
"response",
"for",
"the",
"challenge",
"-",
"response",
"authentication"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/fritz.py#L83-L87 |
DerMitch/fritzbox-smarthome | fritzhome/fritz.py | FritzBox.get_actors | def get_actors(self):
"""
Returns a list of Actor objects for querying SmartHome devices.
This is currently the only working method for getting temperature data.
"""
devices = self.homeautoswitch("getdevicelistinfos")
xml = ET.fromstring(devices)
actors = []
... | python | def get_actors(self):
"""
Returns a list of Actor objects for querying SmartHome devices.
This is currently the only working method for getting temperature data.
"""
devices = self.homeautoswitch("getdevicelistinfos")
xml = ET.fromstring(devices)
actors = []
... | [
"def",
"get_actors",
"(",
"self",
")",
":",
"devices",
"=",
"self",
".",
"homeautoswitch",
"(",
"\"getdevicelistinfos\"",
")",
"xml",
"=",
"ET",
".",
"fromstring",
"(",
"devices",
")",
"actors",
"=",
"[",
"]",
"for",
"device",
"in",
"xml",
".",
"findall"... | Returns a list of Actor objects for querying SmartHome devices.
This is currently the only working method for getting temperature data. | [
"Returns",
"a",
"list",
"of",
"Actor",
"objects",
"for",
"querying",
"SmartHome",
"devices",
"."
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/fritz.py#L93-L106 |
DerMitch/fritzbox-smarthome | fritzhome/fritz.py | FritzBox.get_actor_by_ain | def get_actor_by_ain(self, ain):
"""
Return a actor identified by it's ain or return None
"""
for actor in self.get_actors():
if actor.actor_id == ain:
return actor | python | def get_actor_by_ain(self, ain):
"""
Return a actor identified by it's ain or return None
"""
for actor in self.get_actors():
if actor.actor_id == ain:
return actor | [
"def",
"get_actor_by_ain",
"(",
"self",
",",
"ain",
")",
":",
"for",
"actor",
"in",
"self",
".",
"get_actors",
"(",
")",
":",
"if",
"actor",
".",
"actor_id",
"==",
"ain",
":",
"return",
"actor"
] | Return a actor identified by it's ain or return None | [
"Return",
"a",
"actor",
"identified",
"by",
"it",
"s",
"ain",
"or",
"return",
"None"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/fritz.py#L108-L114 |
DerMitch/fritzbox-smarthome | fritzhome/fritz.py | FritzBox.homeautoswitch | def homeautoswitch(self, cmd, ain=None, param=None):
"""
Call a switch method.
Should only be used by internal library functions.
"""
assert self.sid, "Not logged in"
params = {
'switchcmd': cmd,
'sid': self.sid,
}
if param is not N... | python | def homeautoswitch(self, cmd, ain=None, param=None):
"""
Call a switch method.
Should only be used by internal library functions.
"""
assert self.sid, "Not logged in"
params = {
'switchcmd': cmd,
'sid': self.sid,
}
if param is not N... | [
"def",
"homeautoswitch",
"(",
"self",
",",
"cmd",
",",
"ain",
"=",
"None",
",",
"param",
"=",
"None",
")",
":",
"assert",
"self",
".",
"sid",
",",
"\"Not logged in\"",
"params",
"=",
"{",
"'switchcmd'",
":",
"cmd",
",",
"'sid'",
":",
"self",
".",
"si... | Call a switch method.
Should only be used by internal library functions. | [
"Call",
"a",
"switch",
"method",
".",
"Should",
"only",
"be",
"used",
"by",
"internal",
"library",
"functions",
"."
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/fritz.py#L120-L138 |
DerMitch/fritzbox-smarthome | fritzhome/fritz.py | FritzBox.get_switch_actors | def get_switch_actors(self):
"""
Get information about all actors
This needs 1+(5n) requests where n = number of actors registered
Deprecated, use get_actors instead.
Returns a dict:
[ain] = {
'name': Name of actor,
'state': Powerstate (boolean)... | python | def get_switch_actors(self):
"""
Get information about all actors
This needs 1+(5n) requests where n = number of actors registered
Deprecated, use get_actors instead.
Returns a dict:
[ain] = {
'name': Name of actor,
'state': Powerstate (boolean)... | [
"def",
"get_switch_actors",
"(",
"self",
")",
":",
"actors",
"=",
"{",
"}",
"for",
"ain",
"in",
"self",
".",
"homeautoswitch",
"(",
"\"getswitchlist\"",
")",
".",
"split",
"(",
"','",
")",
":",
"actors",
"[",
"ain",
"]",
"=",
"{",
"'name'",
":",
"sel... | Get information about all actors
This needs 1+(5n) requests where n = number of actors registered
Deprecated, use get_actors instead.
Returns a dict:
[ain] = {
'name': Name of actor,
'state': Powerstate (boolean)
'present': Connected to server? (boo... | [
"Get",
"information",
"about",
"all",
"actors"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/fritz.py#L140-L168 |
DerMitch/fritzbox-smarthome | fritzhome/fritz.py | FritzBox.get_devices | def get_devices(self):
"""
Return a list of devices.
Deprecated, use get_actors instead.
"""
url = self.base_url + '/net/home_auto_query.lua'
response = self.session.get(url, params={
'sid': self.sid,
'command': 'AllOutletStates',
'xhr'... | python | def get_devices(self):
"""
Return a list of devices.
Deprecated, use get_actors instead.
"""
url = self.base_url + '/net/home_auto_query.lua'
response = self.session.get(url, params={
'sid': self.sid,
'command': 'AllOutletStates',
'xhr'... | [
"def",
"get_devices",
"(",
"self",
")",
":",
"url",
"=",
"self",
".",
"base_url",
"+",
"'/net/home_auto_query.lua'",
"response",
"=",
"self",
".",
"session",
".",
"get",
"(",
"url",
",",
"params",
"=",
"{",
"'sid'",
":",
"self",
".",
"sid",
",",
"'comm... | Return a list of devices.
Deprecated, use get_actors instead. | [
"Return",
"a",
"list",
"of",
"devices",
".",
"Deprecated",
"use",
"get_actors",
"instead",
"."
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/fritz.py#L189-L211 |
DerMitch/fritzbox-smarthome | fritzhome/fritz.py | FritzBox.get_consumption | def get_consumption(self, deviceid, timerange="10"):
"""
Return all available energy consumption data for the device.
You need to divice watt_values by 100 and volt_values by 1000
to get the "real" values.
:return: dict
"""
tranges = ("10", "24h", "month", "year"... | python | def get_consumption(self, deviceid, timerange="10"):
"""
Return all available energy consumption data for the device.
You need to divice watt_values by 100 and volt_values by 1000
to get the "real" values.
:return: dict
"""
tranges = ("10", "24h", "month", "year"... | [
"def",
"get_consumption",
"(",
"self",
",",
"deviceid",
",",
"timerange",
"=",
"\"10\"",
")",
":",
"tranges",
"=",
"(",
"\"10\"",
",",
"\"24h\"",
",",
"\"month\"",
",",
"\"year\"",
")",
"if",
"timerange",
"not",
"in",
"tranges",
":",
"raise",
"ValueError",... | Return all available energy consumption data for the device.
You need to divice watt_values by 100 and volt_values by 1000
to get the "real" values.
:return: dict | [
"Return",
"all",
"available",
"energy",
"consumption",
"data",
"for",
"the",
"device",
".",
"You",
"need",
"to",
"divice",
"watt_values",
"by",
"100",
"and",
"volt_values",
"by",
"1000",
"to",
"get",
"the",
"real",
"values",
"."
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/fritz.py#L213-L268 |
DerMitch/fritzbox-smarthome | fritzhome/fritz.py | FritzBox.get_logs | def get_logs(self):
"""
Return the system logs since the last reboot.
"""
assert BeautifulSoup, "Please install bs4 to use this method"
url = self.base_url + "/system/syslog.lua"
response = self.session.get(url, params={
'sid': self.sid,
'stylemod... | python | def get_logs(self):
"""
Return the system logs since the last reboot.
"""
assert BeautifulSoup, "Please install bs4 to use this method"
url = self.base_url + "/system/syslog.lua"
response = self.session.get(url, params={
'sid': self.sid,
'stylemod... | [
"def",
"get_logs",
"(",
"self",
")",
":",
"assert",
"BeautifulSoup",
",",
"\"Please install bs4 to use this method\"",
"url",
"=",
"self",
".",
"base_url",
"+",
"\"/system/syslog.lua\"",
"response",
"=",
"self",
".",
"session",
".",
"get",
"(",
"url",
",",
"para... | Return the system logs since the last reboot. | [
"Return",
"the",
"system",
"logs",
"since",
"the",
"last",
"reboot",
"."
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/fritz.py#L270-L295 |
kumar303/hawkrest | hawkrest/__init__.py | seen_nonce | def seen_nonce(id, nonce, timestamp):
"""
Returns True if the Hawk nonce has been seen already.
"""
key = '{id}:{n}:{ts}'.format(id=id, n=nonce, ts=timestamp)
if cache.get(key):
log.warning('replay attack? already processed nonce {k}'
.format(k=key))
return True
... | python | def seen_nonce(id, nonce, timestamp):
"""
Returns True if the Hawk nonce has been seen already.
"""
key = '{id}:{n}:{ts}'.format(id=id, n=nonce, ts=timestamp)
if cache.get(key):
log.warning('replay attack? already processed nonce {k}'
.format(k=key))
return True
... | [
"def",
"seen_nonce",
"(",
"id",
",",
"nonce",
",",
"timestamp",
")",
":",
"key",
"=",
"'{id}:{n}:{ts}'",
".",
"format",
"(",
"id",
"=",
"id",
",",
"n",
"=",
"nonce",
",",
"ts",
"=",
"timestamp",
")",
"if",
"cache",
".",
"get",
"(",
"key",
")",
":... | Returns True if the Hawk nonce has been seen already. | [
"Returns",
"True",
"if",
"the",
"Hawk",
"nonce",
"has",
"been",
"seen",
"already",
"."
] | train | https://github.com/kumar303/hawkrest/blob/df4de1a068dc2624bf716ed244ab55e8ad4fef7e/hawkrest/__init__.py#L187-L203 |
DerMitch/fritzbox-smarthome | fritzhome/__main__.py | cli | def cli(context, host, username, password):
"""
FritzBox SmartHome Tool
\b
Provides the following functions:
- A easy to use library for querying SmartHome actors
- This CLI tool for testing
- A carbon client for pipeing data into graphite
"""
context.obj = FritzBox(host, username, ... | python | def cli(context, host, username, password):
"""
FritzBox SmartHome Tool
\b
Provides the following functions:
- A easy to use library for querying SmartHome actors
- This CLI tool for testing
- A carbon client for pipeing data into graphite
"""
context.obj = FritzBox(host, username, ... | [
"def",
"cli",
"(",
"context",
",",
"host",
",",
"username",
",",
"password",
")",
":",
"context",
".",
"obj",
"=",
"FritzBox",
"(",
"host",
",",
"username",
",",
"password",
")"
] | FritzBox SmartHome Tool
\b
Provides the following functions:
- A easy to use library for querying SmartHome actors
- This CLI tool for testing
- A carbon client for pipeing data into graphite | [
"FritzBox",
"SmartHome",
"Tool"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/__main__.py#L25-L35 |
DerMitch/fritzbox-smarthome | fritzhome/__main__.py | actors | def actors(context):
"""Display a list of actors"""
fritz = context.obj
fritz.login()
for actor in fritz.get_actors():
click.echo("{} ({} {}; AIN {} )".format(
actor.name,
actor.manufacturer,
actor.productname,
actor.actor_id,
))
i... | python | def actors(context):
"""Display a list of actors"""
fritz = context.obj
fritz.login()
for actor in fritz.get_actors():
click.echo("{} ({} {}; AIN {} )".format(
actor.name,
actor.manufacturer,
actor.productname,
actor.actor_id,
))
i... | [
"def",
"actors",
"(",
"context",
")",
":",
"fritz",
"=",
"context",
".",
"obj",
"fritz",
".",
"login",
"(",
")",
"for",
"actor",
"in",
"fritz",
".",
"get_actors",
"(",
")",
":",
"click",
".",
"echo",
"(",
"\"{} ({} {}; AIN {} )\"",
".",
"format",
"(",
... | Display a list of actors | [
"Display",
"a",
"list",
"of",
"actors"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/__main__.py#L40-L62 |
DerMitch/fritzbox-smarthome | fritzhome/__main__.py | energy | def energy(context, features):
"""Display energy stats of all actors"""
fritz = context.obj
fritz.login()
for actor in fritz.get_actors():
if actor.temperature is not None:
click.echo("{} ({}): {:.2f} Watt current, {:.3f} wH total, {:.2f} °C".format(
actor.name.encod... | python | def energy(context, features):
"""Display energy stats of all actors"""
fritz = context.obj
fritz.login()
for actor in fritz.get_actors():
if actor.temperature is not None:
click.echo("{} ({}): {:.2f} Watt current, {:.3f} wH total, {:.2f} °C".format(
actor.name.encod... | [
"def",
"energy",
"(",
"context",
",",
"features",
")",
":",
"fritz",
"=",
"context",
".",
"obj",
"fritz",
".",
"login",
"(",
")",
"for",
"actor",
"in",
"fritz",
".",
"get_actors",
"(",
")",
":",
"if",
"actor",
".",
"temperature",
"is",
"not",
"None",... | Display energy stats of all actors | [
"Display",
"energy",
"stats",
"of",
"all",
"actors"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/__main__.py#L68-L92 |
DerMitch/fritzbox-smarthome | fritzhome/__main__.py | graphite | def graphite(context, server, port, interval, prefix):
"""Display energy stats of all actors"""
fritz = context.obj
fritz.login()
sid_ttl = time.time() + 600
# Find actors and create carbon keys
click.echo(" * Requesting actors list")
simple_chars = re.compile('[^A-Za-z0-9]+')
actors = ... | python | def graphite(context, server, port, interval, prefix):
"""Display energy stats of all actors"""
fritz = context.obj
fritz.login()
sid_ttl = time.time() + 600
# Find actors and create carbon keys
click.echo(" * Requesting actors list")
simple_chars = re.compile('[^A-Za-z0-9]+')
actors = ... | [
"def",
"graphite",
"(",
"context",
",",
"server",
",",
"port",
",",
"interval",
",",
"prefix",
")",
":",
"fritz",
"=",
"context",
".",
"obj",
"fritz",
".",
"login",
"(",
")",
"sid_ttl",
"=",
"time",
".",
"time",
"(",
")",
"+",
"600",
"# Find actors a... | Display energy stats of all actors | [
"Display",
"energy",
"stats",
"of",
"all",
"actors"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/__main__.py#L101-L157 |
DerMitch/fritzbox-smarthome | fritzhome/__main__.py | switch_on | def switch_on(context, ain):
"""Switch an actor's power to ON"""
context.obj.login()
actor = context.obj.get_actor_by_ain(ain)
if actor:
click.echo("Switching {} on".format(actor.name))
actor.switch_on()
else:
click.echo("Actor not found: {}".format(ain)) | python | def switch_on(context, ain):
"""Switch an actor's power to ON"""
context.obj.login()
actor = context.obj.get_actor_by_ain(ain)
if actor:
click.echo("Switching {} on".format(actor.name))
actor.switch_on()
else:
click.echo("Actor not found: {}".format(ain)) | [
"def",
"switch_on",
"(",
"context",
",",
"ain",
")",
":",
"context",
".",
"obj",
".",
"login",
"(",
")",
"actor",
"=",
"context",
".",
"obj",
".",
"get_actor_by_ain",
"(",
"ain",
")",
"if",
"actor",
":",
"click",
".",
"echo",
"(",
"\"Switching {} on\""... | Switch an actor's power to ON | [
"Switch",
"an",
"actor",
"s",
"power",
"to",
"ON"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/__main__.py#L163-L171 |
DerMitch/fritzbox-smarthome | fritzhome/__main__.py | switch_state | def switch_state(context, ain):
"""Get an actor's power state"""
context.obj.login()
actor = context.obj.get_actor_by_ain(ain)
if actor:
click.echo("State for {} is: {}".format(ain,'ON' if actor.get_state() else 'OFF'))
else:
click.echo("Actor not found: {}".format(ain)) | python | def switch_state(context, ain):
"""Get an actor's power state"""
context.obj.login()
actor = context.obj.get_actor_by_ain(ain)
if actor:
click.echo("State for {} is: {}".format(ain,'ON' if actor.get_state() else 'OFF'))
else:
click.echo("Actor not found: {}".format(ain)) | [
"def",
"switch_state",
"(",
"context",
",",
"ain",
")",
":",
"context",
".",
"obj",
".",
"login",
"(",
")",
"actor",
"=",
"context",
".",
"obj",
".",
"get_actor_by_ain",
"(",
"ain",
")",
"if",
"actor",
":",
"click",
".",
"echo",
"(",
"\"State for {} is... | Get an actor's power state | [
"Get",
"an",
"actor",
"s",
"power",
"state"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/__main__.py#L191-L198 |
DerMitch/fritzbox-smarthome | fritzhome/__main__.py | switch_toggle | def switch_toggle(context, ain):
"""Toggle an actor's power state"""
context.obj.login()
actor = context.obj.get_actor_by_ain(ain)
if actor:
if actor.get_state():
actor.switch_off()
click.echo("State for {} is now OFF".format(ain))
else:
actor.switch_o... | python | def switch_toggle(context, ain):
"""Toggle an actor's power state"""
context.obj.login()
actor = context.obj.get_actor_by_ain(ain)
if actor:
if actor.get_state():
actor.switch_off()
click.echo("State for {} is now OFF".format(ain))
else:
actor.switch_o... | [
"def",
"switch_toggle",
"(",
"context",
",",
"ain",
")",
":",
"context",
".",
"obj",
".",
"login",
"(",
")",
"actor",
"=",
"context",
".",
"obj",
".",
"get_actor_by_ain",
"(",
"ain",
")",
"if",
"actor",
":",
"if",
"actor",
".",
"get_state",
"(",
")",... | Toggle an actor's power state | [
"Toggle",
"an",
"actor",
"s",
"power",
"state"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/__main__.py#L204-L216 |
DerMitch/fritzbox-smarthome | fritzhome/__main__.py | logs | def logs(context, format):
"""Show system logs since last reboot"""
fritz = context.obj
fritz.login()
messages = fritz.get_logs()
if format == "plain":
for msg in messages:
merged = "{} {} {}".format(msg.date, msg.time, msg.message.encode("UTF-8"))
click.echo(merged)... | python | def logs(context, format):
"""Show system logs since last reboot"""
fritz = context.obj
fritz.login()
messages = fritz.get_logs()
if format == "plain":
for msg in messages:
merged = "{} {} {}".format(msg.date, msg.time, msg.message.encode("UTF-8"))
click.echo(merged)... | [
"def",
"logs",
"(",
"context",
",",
"format",
")",
":",
"fritz",
"=",
"context",
".",
"obj",
"fritz",
".",
"login",
"(",
")",
"messages",
"=",
"fritz",
".",
"get_logs",
"(",
")",
"if",
"format",
"==",
"\"plain\"",
":",
"for",
"msg",
"in",
"messages",... | Show system logs since last reboot | [
"Show",
"system",
"logs",
"since",
"last",
"reboot"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/__main__.py#L223-L238 |
DerMitch/fritzbox-smarthome | fritzhome/actor.py | Actor.get_power | def get_power(self):
"""
Returns the current power usage in milliWatts.
Attention: Returns None if the value can't be queried or is unknown.
"""
value = self.box.homeautoswitch("getswitchpower", self.actor_id)
return int(value) if value.isdigit() else None | python | def get_power(self):
"""
Returns the current power usage in milliWatts.
Attention: Returns None if the value can't be queried or is unknown.
"""
value = self.box.homeautoswitch("getswitchpower", self.actor_id)
return int(value) if value.isdigit() else None | [
"def",
"get_power",
"(",
"self",
")",
":",
"value",
"=",
"self",
".",
"box",
".",
"homeautoswitch",
"(",
"\"getswitchpower\"",
",",
"self",
".",
"actor_id",
")",
"return",
"int",
"(",
"value",
")",
"if",
"value",
".",
"isdigit",
"(",
")",
"else",
"None... | Returns the current power usage in milliWatts.
Attention: Returns None if the value can't be queried or is unknown. | [
"Returns",
"the",
"current",
"power",
"usage",
"in",
"milliWatts",
".",
"Attention",
":",
"Returns",
"None",
"if",
"the",
"value",
"can",
"t",
"be",
"queried",
"or",
"is",
"unknown",
"."
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/actor.py#L83-L89 |
DerMitch/fritzbox-smarthome | fritzhome/actor.py | Actor.get_energy | def get_energy(self):
"""
Returns the consumed energy since the start of the statistics in Wh.
Attention: Returns None if the value can't be queried or is unknown.
"""
value = self.box.homeautoswitch("getswitchenergy", self.actor_id)
return int(value) if value.isdigit() e... | python | def get_energy(self):
"""
Returns the consumed energy since the start of the statistics in Wh.
Attention: Returns None if the value can't be queried or is unknown.
"""
value = self.box.homeautoswitch("getswitchenergy", self.actor_id)
return int(value) if value.isdigit() e... | [
"def",
"get_energy",
"(",
"self",
")",
":",
"value",
"=",
"self",
".",
"box",
".",
"homeautoswitch",
"(",
"\"getswitchenergy\"",
",",
"self",
".",
"actor_id",
")",
"return",
"int",
"(",
"value",
")",
"if",
"value",
".",
"isdigit",
"(",
")",
"else",
"No... | Returns the consumed energy since the start of the statistics in Wh.
Attention: Returns None if the value can't be queried or is unknown. | [
"Returns",
"the",
"consumed",
"energy",
"since",
"the",
"start",
"of",
"the",
"statistics",
"in",
"Wh",
".",
"Attention",
":",
"Returns",
"None",
"if",
"the",
"value",
"can",
"t",
"be",
"queried",
"or",
"is",
"unknown",
"."
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/actor.py#L91-L97 |
DerMitch/fritzbox-smarthome | fritzhome/actor.py | Actor.get_temperature | def get_temperature(self):
"""
Returns the current environment temperature.
Attention: Returns None if the value can't be queried or is unknown.
"""
#raise NotImplementedError("This should work according to the AVM docs, but don't...")
value = self.box.homeautoswitch("get... | python | def get_temperature(self):
"""
Returns the current environment temperature.
Attention: Returns None if the value can't be queried or is unknown.
"""
#raise NotImplementedError("This should work according to the AVM docs, but don't...")
value = self.box.homeautoswitch("get... | [
"def",
"get_temperature",
"(",
"self",
")",
":",
"#raise NotImplementedError(\"This should work according to the AVM docs, but don't...\")",
"value",
"=",
"self",
".",
"box",
".",
"homeautoswitch",
"(",
"\"gettemperature\"",
",",
"self",
".",
"actor_id",
")",
"if",
"value... | Returns the current environment temperature.
Attention: Returns None if the value can't be queried or is unknown. | [
"Returns",
"the",
"current",
"environment",
"temperature",
".",
"Attention",
":",
"Returns",
"None",
"if",
"the",
"value",
"can",
"t",
"be",
"queried",
"or",
"is",
"unknown",
"."
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/actor.py#L99-L110 |
DerMitch/fritzbox-smarthome | fritzhome/actor.py | Actor.get_target_temperature | def get_target_temperature(self):
"""
Returns the actual target temperature.
Attention: Returns None if the value can't be queried or is unknown.
"""
value = self.box.homeautoswitch("gethkrtsoll", self.actor_id)
self.target_temperature = self.__get_temp(value)
ret... | python | def get_target_temperature(self):
"""
Returns the actual target temperature.
Attention: Returns None if the value can't be queried or is unknown.
"""
value = self.box.homeautoswitch("gethkrtsoll", self.actor_id)
self.target_temperature = self.__get_temp(value)
ret... | [
"def",
"get_target_temperature",
"(",
"self",
")",
":",
"value",
"=",
"self",
".",
"box",
".",
"homeautoswitch",
"(",
"\"gethkrtsoll\"",
",",
"self",
".",
"actor_id",
")",
"self",
".",
"target_temperature",
"=",
"self",
".",
"__get_temp",
"(",
"value",
")",
... | Returns the actual target temperature.
Attention: Returns None if the value can't be queried or is unknown. | [
"Returns",
"the",
"actual",
"target",
"temperature",
".",
"Attention",
":",
"Returns",
"None",
"if",
"the",
"value",
"can",
"t",
"be",
"queried",
"or",
"is",
"unknown",
"."
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/actor.py#L125-L132 |
DerMitch/fritzbox-smarthome | fritzhome/actor.py | Actor.set_temperature | def set_temperature(self, temp):
"""
Sets the temperature in celcius
"""
# Temperature is send to fritz.box a little weird
param = 16 + ( ( temp - 8 ) * 2 )
if param < 16:
param = 253
logger.info("Actor " + self.name + ": Temperature control set t... | python | def set_temperature(self, temp):
"""
Sets the temperature in celcius
"""
# Temperature is send to fritz.box a little weird
param = 16 + ( ( temp - 8 ) * 2 )
if param < 16:
param = 253
logger.info("Actor " + self.name + ": Temperature control set t... | [
"def",
"set_temperature",
"(",
"self",
",",
"temp",
")",
":",
"# Temperature is send to fritz.box a little weird",
"param",
"=",
"16",
"+",
"(",
"(",
"temp",
"-",
"8",
")",
"*",
"2",
")",
"if",
"param",
"<",
"16",
":",
"param",
"=",
"253",
"logger",
".",... | Sets the temperature in celcius | [
"Sets",
"the",
"temperature",
"in",
"celcius"
] | train | https://github.com/DerMitch/fritzbox-smarthome/blob/84cbd7c1b33e6256add041b0395ff5fccc01f103/fritzhome/actor.py#L134-L150 |
projectatomic/osbs-client | osbs/conf.py | Configuration.get_openshift_base_uri | def get_openshift_base_uri(self):
"""
https://<host>[:<port>]/
:return: str
"""
deprecated_key = "openshift_uri"
key = "openshift_url"
val = self._get_value(deprecated_key, self.conf_section, deprecated_key)
if val is not None:
warnings.warn("... | python | def get_openshift_base_uri(self):
"""
https://<host>[:<port>]/
:return: str
"""
deprecated_key = "openshift_uri"
key = "openshift_url"
val = self._get_value(deprecated_key, self.conf_section, deprecated_key)
if val is not None:
warnings.warn("... | [
"def",
"get_openshift_base_uri",
"(",
"self",
")",
":",
"deprecated_key",
"=",
"\"openshift_uri\"",
"key",
"=",
"\"openshift_url\"",
"val",
"=",
"self",
".",
"_get_value",
"(",
"deprecated_key",
",",
"self",
".",
"conf_section",
",",
"deprecated_key",
")",
"if",
... | https://<host>[:<port>]/
:return: str | [
"https",
":",
"//",
"<host",
">",
"[",
":",
"<port",
">",
"]",
"/"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/conf.py#L130-L142 |
projectatomic/osbs-client | osbs/conf.py | Configuration.get_builder_openshift_url | def get_builder_openshift_url(self):
""" url of OpenShift where builder will connect """
key = "builder_openshift_url"
url = self._get_deprecated(key, self.conf_section, key)
if url is None:
logger.warning("%r not found, falling back to get_openshift_base_uri()", key)
... | python | def get_builder_openshift_url(self):
""" url of OpenShift where builder will connect """
key = "builder_openshift_url"
url = self._get_deprecated(key, self.conf_section, key)
if url is None:
logger.warning("%r not found, falling back to get_openshift_base_uri()", key)
... | [
"def",
"get_builder_openshift_url",
"(",
"self",
")",
":",
"key",
"=",
"\"builder_openshift_url\"",
"url",
"=",
"self",
".",
"_get_deprecated",
"(",
"key",
",",
"self",
".",
"conf_section",
",",
"key",
")",
"if",
"url",
"is",
"None",
":",
"logger",
".",
"w... | url of OpenShift where builder will connect | [
"url",
"of",
"OpenShift",
"where",
"builder",
"will",
"connect"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/conf.py#L363-L370 |
projectatomic/osbs-client | osbs/conf.py | Configuration.generate_nodeselector_dict | def generate_nodeselector_dict(self, nodeselector_str):
"""
helper method for generating nodeselector dict
:param nodeselector_str:
:return: dict
"""
nodeselector = {}
if nodeselector_str and nodeselector_str != 'none':
constraints = [x.strip() for x i... | python | def generate_nodeselector_dict(self, nodeselector_str):
"""
helper method for generating nodeselector dict
:param nodeselector_str:
:return: dict
"""
nodeselector = {}
if nodeselector_str and nodeselector_str != 'none':
constraints = [x.strip() for x i... | [
"def",
"generate_nodeselector_dict",
"(",
"self",
",",
"nodeselector_str",
")",
":",
"nodeselector",
"=",
"{",
"}",
"if",
"nodeselector_str",
"and",
"nodeselector_str",
"!=",
"'none'",
":",
"constraints",
"=",
"[",
"x",
".",
"strip",
"(",
")",
"for",
"x",
"i... | helper method for generating nodeselector dict
:param nodeselector_str:
:return: dict | [
"helper",
"method",
"for",
"generating",
"nodeselector",
"dict",
":",
"param",
"nodeselector_str",
":",
":",
"return",
":",
"dict"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/conf.py#L565-L577 |
projectatomic/osbs-client | osbs/conf.py | Configuration.get_platform_node_selector | def get_platform_node_selector(self, platform):
"""
search the configuration for entries of the form node_selector.platform
:param platform: str, platform to search for, can be null
:return dict
"""
nodeselector = {}
if platform:
nodeselector_str = sel... | python | def get_platform_node_selector(self, platform):
"""
search the configuration for entries of the form node_selector.platform
:param platform: str, platform to search for, can be null
:return dict
"""
nodeselector = {}
if platform:
nodeselector_str = sel... | [
"def",
"get_platform_node_selector",
"(",
"self",
",",
"platform",
")",
":",
"nodeselector",
"=",
"{",
"}",
"if",
"platform",
":",
"nodeselector_str",
"=",
"self",
".",
"_get_value",
"(",
"\"node_selector.\"",
"+",
"platform",
",",
"self",
".",
"conf_section",
... | search the configuration for entries of the form node_selector.platform
:param platform: str, platform to search for, can be null
:return dict | [
"search",
"the",
"configuration",
"for",
"entries",
"of",
"the",
"form",
"node_selector",
".",
"platform",
":",
"param",
"platform",
":",
"str",
"platform",
"to",
"search",
"for",
"can",
"be",
"null",
":",
"return",
"dict"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/conf.py#L579-L591 |
thombashi/pytablereader | pytablereader/csv/core.py | CsvTableFileLoader.load | def load(self):
"""
Extract tabular data as |TableData| instances from a CSV file.
|load_source_desc_file|
:return:
Loaded table data.
|load_table_name_desc|
=================== ========================================
Format specifier ... | python | def load(self):
"""
Extract tabular data as |TableData| instances from a CSV file.
|load_source_desc_file|
:return:
Loaded table data.
|load_table_name_desc|
=================== ========================================
Format specifier ... | [
"def",
"load",
"(",
"self",
")",
":",
"self",
".",
"_validate",
"(",
")",
"self",
".",
"_logger",
".",
"logging_load",
"(",
")",
"self",
".",
"encoding",
"=",
"get_file_encoding",
"(",
"self",
".",
"source",
",",
"self",
".",
"encoding",
")",
"if",
"... | Extract tabular data as |TableData| instances from a CSV file.
|load_source_desc_file|
:return:
Loaded table data.
|load_table_name_desc|
=================== ========================================
Format specifier Value after the replacement
... | [
"Extract",
"tabular",
"data",
"as",
"|TableData|",
"instances",
"from",
"a",
"CSV",
"file",
".",
"|load_source_desc_file|"
] | train | https://github.com/thombashi/pytablereader/blob/bc3c057a2cc775bcce690e0e9019c2907b638101/pytablereader/csv/core.py#L145-L194 |
thombashi/pytablereader | pytablereader/csv/core.py | CsvTableTextLoader.load | def load(self):
"""
Extract tabular data as |TableData| instances from a CSV text object.
|load_source_desc_text|
:return:
Loaded table data.
|load_table_name_desc|
=================== ========================================
Format spec... | python | def load(self):
"""
Extract tabular data as |TableData| instances from a CSV text object.
|load_source_desc_text|
:return:
Loaded table data.
|load_table_name_desc|
=================== ========================================
Format spec... | [
"def",
"load",
"(",
"self",
")",
":",
"self",
".",
"_validate",
"(",
")",
"self",
".",
"_logger",
".",
"logging_load",
"(",
")",
"self",
".",
"_csv_reader",
"=",
"csv",
".",
"reader",
"(",
"six",
".",
"StringIO",
"(",
"self",
".",
"source",
".",
"s... | Extract tabular data as |TableData| instances from a CSV text object.
|load_source_desc_text|
:return:
Loaded table data.
|load_table_name_desc|
=================== ========================================
Format specifier Value after the replacemen... | [
"Extract",
"tabular",
"data",
"as",
"|TableData|",
"instances",
"from",
"a",
"CSV",
"text",
"object",
".",
"|load_source_desc_text|"
] | train | https://github.com/thombashi/pytablereader/blob/bc3c057a2cc775bcce690e0e9019c2907b638101/pytablereader/csv/core.py#L220-L258 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.set_params | def set_params(self, **kwargs):
"""
set parameters according to specification
these parameters are accepted:
:param pulp_secret: str, resource name of pulp secret
:param koji_target: str, koji tag with packages used to build the image
:param kojiroot: str, URL from whic... | python | def set_params(self, **kwargs):
"""
set parameters according to specification
these parameters are accepted:
:param pulp_secret: str, resource name of pulp secret
:param koji_target: str, koji tag with packages used to build the image
:param kojiroot: str, URL from whic... | [
"def",
"set_params",
"(",
"self",
",",
"*",
"*",
"kwargs",
")",
":",
"# Here we cater to the koji \"scratch\" build type, this will disable",
"# all plugins that might cause importing of data to koji",
"self",
".",
"scratch",
"=",
"kwargs",
".",
"pop",
"(",
"'scratch'",
","... | set parameters according to specification
these parameters are accepted:
:param pulp_secret: str, resource name of pulp secret
:param koji_target: str, koji tag with packages used to build the image
:param kojiroot: str, URL from which koji packages are fetched
:param kojihub: ... | [
"set",
"parameters",
"according",
"to",
"specification"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L72-L131 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.has_ist_trigger | def has_ist_trigger(self):
"""Return True if this BuildConfig has ImageStreamTag trigger."""
triggers = self.template['spec'].get('triggers', [])
if not triggers:
return False
for trigger in triggers:
if trigger['type'] == 'ImageChange' and \
t... | python | def has_ist_trigger(self):
"""Return True if this BuildConfig has ImageStreamTag trigger."""
triggers = self.template['spec'].get('triggers', [])
if not triggers:
return False
for trigger in triggers:
if trigger['type'] == 'ImageChange' and \
t... | [
"def",
"has_ist_trigger",
"(",
"self",
")",
":",
"triggers",
"=",
"self",
".",
"template",
"[",
"'spec'",
"]",
".",
"get",
"(",
"'triggers'",
",",
"[",
"]",
")",
"if",
"not",
"triggers",
":",
"return",
"False",
"for",
"trigger",
"in",
"triggers",
":",
... | Return True if this BuildConfig has ImageStreamTag trigger. | [
"Return",
"True",
"if",
"this",
"BuildConfig",
"has",
"ImageStreamTag",
"trigger",
"."
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L210-L219 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.set_secret_for_plugin | def set_secret_for_plugin(self, secret, plugin=None, mount_path=None):
"""
Sets secret for plugin, if no plugin specified
it will also set general secret
:param secret: str, secret name
:param plugin: tuple, (plugin type, plugin name, argument name)
:param mount_path: st... | python | def set_secret_for_plugin(self, secret, plugin=None, mount_path=None):
"""
Sets secret for plugin, if no plugin specified
it will also set general secret
:param secret: str, secret name
:param plugin: tuple, (plugin type, plugin name, argument name)
:param mount_path: st... | [
"def",
"set_secret_for_plugin",
"(",
"self",
",",
"secret",
",",
"plugin",
"=",
"None",
",",
"mount_path",
"=",
"None",
")",
":",
"has_plugin_conf",
"=",
"False",
"if",
"plugin",
"is",
"not",
"None",
":",
"has_plugin_conf",
"=",
"self",
".",
"dj",
".",
"... | Sets secret for plugin, if no plugin specified
it will also set general secret
:param secret: str, secret name
:param plugin: tuple, (plugin type, plugin name, argument name)
:param mount_path: str, mount path of secret | [
"Sets",
"secret",
"for",
"plugin",
"if",
"no",
"plugin",
"specified",
"it",
"will",
"also",
"set",
"general",
"secret"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L403-L445 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.set_secrets | def set_secrets(self, secrets):
"""
:param secrets: dict, {(plugin type, plugin name, argument name): secret name}
for example {('exit_plugins', 'koji_promote', 'koji_ssl_certs'): 'koji_ssl_certs', ...}
"""
secret_set = False
for (plugin, secret) in secrets.items():
... | python | def set_secrets(self, secrets):
"""
:param secrets: dict, {(plugin type, plugin name, argument name): secret name}
for example {('exit_plugins', 'koji_promote', 'koji_ssl_certs'): 'koji_ssl_certs', ...}
"""
secret_set = False
for (plugin, secret) in secrets.items():
... | [
"def",
"set_secrets",
"(",
"self",
",",
"secrets",
")",
":",
"secret_set",
"=",
"False",
"for",
"(",
"plugin",
",",
"secret",
")",
"in",
"secrets",
".",
"items",
"(",
")",
":",
"if",
"not",
"isinstance",
"(",
"plugin",
",",
"tuple",
")",
"or",
"len",... | :param secrets: dict, {(plugin type, plugin name, argument name): secret name}
for example {('exit_plugins', 'koji_promote', 'koji_ssl_certs'): 'koji_ssl_certs', ...} | [
":",
"param",
"secrets",
":",
"dict",
"{",
"(",
"plugin",
"type",
"plugin",
"name",
"argument",
"name",
")",
":",
"secret",
"name",
"}",
"for",
"example",
"{",
"(",
"exit_plugins",
"koji_promote",
"koji_ssl_certs",
")",
":",
"koji_ssl_certs",
"...",
"}"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L447-L467 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.remove_tag_and_push_registries | def remove_tag_and_push_registries(tag_and_push_registries, version):
"""
Remove matching entries from tag_and_push_registries (in-place)
:param tag_and_push_registries: dict, uri -> dict
:param version: str, 'version' to match against
"""
registries = [uri
... | python | def remove_tag_and_push_registries(tag_and_push_registries, version):
"""
Remove matching entries from tag_and_push_registries (in-place)
:param tag_and_push_registries: dict, uri -> dict
:param version: str, 'version' to match against
"""
registries = [uri
... | [
"def",
"remove_tag_and_push_registries",
"(",
"tag_and_push_registries",
",",
"version",
")",
":",
"registries",
"=",
"[",
"uri",
"for",
"uri",
",",
"regdict",
"in",
"tag_and_push_registries",
".",
"items",
"(",
")",
"if",
"regdict",
"[",
"'version'",
"]",
"==",... | Remove matching entries from tag_and_push_registries (in-place)
:param tag_and_push_registries: dict, uri -> dict
:param version: str, 'version' to match against | [
"Remove",
"matching",
"entries",
"from",
"tag_and_push_registries",
"(",
"in",
"-",
"place",
")"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L488-L500 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.adjust_for_registry_api_versions | def adjust_for_registry_api_versions(self):
"""
Enable/disable plugins depending on supported registry API versions
"""
versions = self.spec.registry_api_versions.value
if 'v2' not in versions:
raise OsbsValidationException('v1-only docker registry API is not support... | python | def adjust_for_registry_api_versions(self):
"""
Enable/disable plugins depending on supported registry API versions
"""
versions = self.spec.registry_api_versions.value
if 'v2' not in versions:
raise OsbsValidationException('v1-only docker registry API is not support... | [
"def",
"adjust_for_registry_api_versions",
"(",
"self",
")",
":",
"versions",
"=",
"self",
".",
"spec",
".",
"registry_api_versions",
".",
"value",
"if",
"'v2'",
"not",
"in",
"versions",
":",
"raise",
"OsbsValidationException",
"(",
"'v1-only docker registry API is no... | Enable/disable plugins depending on supported registry API versions | [
"Enable",
"/",
"disable",
"plugins",
"depending",
"on",
"supported",
"registry",
"API",
"versions"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L515-L544 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.adjust_for_triggers | def adjust_for_triggers(self):
"""Remove trigger-related plugins when needed
If there are no triggers defined, it's assumed the
feature is disabled and all trigger-related plugins
are removed.
If there are triggers defined, and this is a custom
base image, some trigger-... | python | def adjust_for_triggers(self):
"""Remove trigger-related plugins when needed
If there are no triggers defined, it's assumed the
feature is disabled and all trigger-related plugins
are removed.
If there are triggers defined, and this is a custom
base image, some trigger-... | [
"def",
"adjust_for_triggers",
"(",
"self",
")",
":",
"triggers",
"=",
"self",
".",
"template",
"[",
"'spec'",
"]",
".",
"get",
"(",
"'triggers'",
",",
"[",
"]",
")",
"remove_plugins",
"=",
"[",
"(",
"\"prebuild_plugins\"",
",",
"\"check_and_set_rebuild\"",
"... | Remove trigger-related plugins when needed
If there are no triggers defined, it's assumed the
feature is disabled and all trigger-related plugins
are removed.
If there are triggers defined, and this is a custom
base image, some trigger-related plugins do not apply.
Add... | [
"Remove",
"trigger",
"-",
"related",
"plugins",
"when",
"needed"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L546-L583 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.adjust_for_scratch | def adjust_for_scratch(self):
"""
Remove certain plugins in order to handle the "scratch build"
scenario. Scratch builds must not affect subsequent builds,
and should not be imported into Koji.
"""
if self.scratch:
self.template['spec'].pop('triggers', None)
... | python | def adjust_for_scratch(self):
"""
Remove certain plugins in order to handle the "scratch build"
scenario. Scratch builds must not affect subsequent builds,
and should not be imported into Koji.
"""
if self.scratch:
self.template['spec'].pop('triggers', None)
... | [
"def",
"adjust_for_scratch",
"(",
"self",
")",
":",
"if",
"self",
".",
"scratch",
":",
"self",
".",
"template",
"[",
"'spec'",
"]",
".",
"pop",
"(",
"'triggers'",
",",
"None",
")",
"remove_plugins",
"=",
"[",
"(",
"\"prebuild_plugins\"",
",",
"\"koji_paren... | Remove certain plugins in order to handle the "scratch build"
scenario. Scratch builds must not affect subsequent builds,
and should not be imported into Koji. | [
"Remove",
"certain",
"plugins",
"in",
"order",
"to",
"handle",
"the",
"scratch",
"build",
"scenario",
".",
"Scratch",
"builds",
"must",
"not",
"affect",
"subsequent",
"builds",
"and",
"should",
"not",
"be",
"imported",
"into",
"Koji",
"."
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L585-L622 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.adjust_for_custom_base_image | def adjust_for_custom_base_image(self):
"""
Disable plugins to handle builds depending on whether
or not this is a build from a custom base image.
"""
plugins = []
if self.is_custom_base_image():
# Plugins irrelevant to building base images.
plugin... | python | def adjust_for_custom_base_image(self):
"""
Disable plugins to handle builds depending on whether
or not this is a build from a custom base image.
"""
plugins = []
if self.is_custom_base_image():
# Plugins irrelevant to building base images.
plugin... | [
"def",
"adjust_for_custom_base_image",
"(",
"self",
")",
":",
"plugins",
"=",
"[",
"]",
"if",
"self",
".",
"is_custom_base_image",
"(",
")",
":",
"# Plugins irrelevant to building base images.",
"plugins",
".",
"append",
"(",
"(",
"\"prebuild_plugins\"",
",",
"\"pul... | Disable plugins to handle builds depending on whether
or not this is a build from a custom base image. | [
"Disable",
"plugins",
"to",
"handle",
"builds",
"depending",
"on",
"whether",
"or",
"not",
"this",
"is",
"a",
"build",
"from",
"a",
"custom",
"base",
"image",
"."
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L641-L660 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_koji | def render_koji(self):
"""
if there is yum repo specified, don't pick stuff from koji
"""
phase = 'prebuild_plugins'
plugin = 'koji'
if not self.dj.dock_json_has_plugin_conf(phase, plugin):
return
if self.spec.yum_repourls.value:
logger.in... | python | def render_koji(self):
"""
if there is yum repo specified, don't pick stuff from koji
"""
phase = 'prebuild_plugins'
plugin = 'koji'
if not self.dj.dock_json_has_plugin_conf(phase, plugin):
return
if self.spec.yum_repourls.value:
logger.in... | [
"def",
"render_koji",
"(",
"self",
")",
":",
"phase",
"=",
"'prebuild_plugins'",
"plugin",
"=",
"'koji'",
"if",
"not",
"self",
".",
"dj",
".",
"dock_json_has_plugin_conf",
"(",
"phase",
",",
"plugin",
")",
":",
"return",
"if",
"self",
".",
"spec",
".",
"... | if there is yum repo specified, don't pick stuff from koji | [
"if",
"there",
"is",
"yum",
"repo",
"specified",
"don",
"t",
"pick",
"stuff",
"from",
"koji"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L814-L841 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_bump_release | def render_bump_release(self):
"""
If the bump_release plugin is present, configure it
"""
phase = 'prebuild_plugins'
plugin = 'bump_release'
if not self.dj.dock_json_has_plugin_conf(phase, plugin):
return
if self.spec.release.value:
logge... | python | def render_bump_release(self):
"""
If the bump_release plugin is present, configure it
"""
phase = 'prebuild_plugins'
plugin = 'bump_release'
if not self.dj.dock_json_has_plugin_conf(phase, plugin):
return
if self.spec.release.value:
logge... | [
"def",
"render_bump_release",
"(",
"self",
")",
":",
"phase",
"=",
"'prebuild_plugins'",
"plugin",
"=",
"'bump_release'",
"if",
"not",
"self",
".",
"dj",
".",
"dock_json_has_plugin_conf",
"(",
"phase",
",",
"plugin",
")",
":",
"return",
"if",
"self",
".",
"s... | If the bump_release plugin is present, configure it | [
"If",
"the",
"bump_release",
"plugin",
"is",
"present",
"configure",
"it"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L843-L871 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_sendmail | def render_sendmail(self):
"""
if we have smtp_host and smtp_from, configure sendmail plugin,
else remove it
"""
phase = 'exit_plugins'
plugin = 'sendmail'
if not self.dj.dock_json_has_plugin_conf(phase, plugin):
return
if self.spec.smtp_host.... | python | def render_sendmail(self):
"""
if we have smtp_host and smtp_from, configure sendmail plugin,
else remove it
"""
phase = 'exit_plugins'
plugin = 'sendmail'
if not self.dj.dock_json_has_plugin_conf(phase, plugin):
return
if self.spec.smtp_host.... | [
"def",
"render_sendmail",
"(",
"self",
")",
":",
"phase",
"=",
"'exit_plugins'",
"plugin",
"=",
"'sendmail'",
"if",
"not",
"self",
".",
"dj",
".",
"dock_json_has_plugin_conf",
"(",
"phase",
",",
"plugin",
")",
":",
"return",
"if",
"self",
".",
"spec",
".",... | if we have smtp_host and smtp_from, configure sendmail plugin,
else remove it | [
"if",
"we",
"have",
"smtp_host",
"and",
"smtp_from",
"configure",
"sendmail",
"plugin",
"else",
"remove",
"it"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L986-L1032 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_fetch_maven_artifacts | def render_fetch_maven_artifacts(self):
"""Configure fetch_maven_artifacts plugin"""
phase = 'prebuild_plugins'
plugin = 'fetch_maven_artifacts'
if not self.dj.dock_json_has_plugin_conf(phase, plugin):
return
koji_hub = self.spec.kojihub.value
koji_root = sel... | python | def render_fetch_maven_artifacts(self):
"""Configure fetch_maven_artifacts plugin"""
phase = 'prebuild_plugins'
plugin = 'fetch_maven_artifacts'
if not self.dj.dock_json_has_plugin_conf(phase, plugin):
return
koji_hub = self.spec.kojihub.value
koji_root = sel... | [
"def",
"render_fetch_maven_artifacts",
"(",
"self",
")",
":",
"phase",
"=",
"'prebuild_plugins'",
"plugin",
"=",
"'fetch_maven_artifacts'",
"if",
"not",
"self",
".",
"dj",
".",
"dock_json_has_plugin_conf",
"(",
"phase",
",",
"plugin",
")",
":",
"return",
"koji_hub... | Configure fetch_maven_artifacts plugin | [
"Configure",
"fetch_maven_artifacts",
"plugin"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L1034-L1054 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_tag_from_config | def render_tag_from_config(self):
"""Configure tag_from_config plugin"""
phase = 'postbuild_plugins'
plugin = 'tag_from_config'
if not self.has_tag_suffixes_placeholder():
return
unique_tag = self.spec.image_tag.value.split(':')[-1]
tag_suffixes = {'unique': ... | python | def render_tag_from_config(self):
"""Configure tag_from_config plugin"""
phase = 'postbuild_plugins'
plugin = 'tag_from_config'
if not self.has_tag_suffixes_placeholder():
return
unique_tag = self.spec.image_tag.value.split(':')[-1]
tag_suffixes = {'unique': ... | [
"def",
"render_tag_from_config",
"(",
"self",
")",
":",
"phase",
"=",
"'postbuild_plugins'",
"plugin",
"=",
"'tag_from_config'",
"if",
"not",
"self",
".",
"has_tag_suffixes_placeholder",
"(",
")",
":",
"return",
"unique_tag",
"=",
"self",
".",
"spec",
".",
"imag... | Configure tag_from_config plugin | [
"Configure",
"tag_from_config",
"plugin"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L1056-L1078 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_pulp_pull | def render_pulp_pull(self):
"""
If a pulp registry is specified, use pulp_pull plugin
"""
# pulp_pull is a multi-phase plugin
phases = ('postbuild_plugins', 'exit_plugins')
plugin = 'pulp_pull'
for phase in phases:
if not self.dj.dock_json_has_plugin_c... | python | def render_pulp_pull(self):
"""
If a pulp registry is specified, use pulp_pull plugin
"""
# pulp_pull is a multi-phase plugin
phases = ('postbuild_plugins', 'exit_plugins')
plugin = 'pulp_pull'
for phase in phases:
if not self.dj.dock_json_has_plugin_c... | [
"def",
"render_pulp_pull",
"(",
"self",
")",
":",
"# pulp_pull is a multi-phase plugin",
"phases",
"=",
"(",
"'postbuild_plugins'",
",",
"'exit_plugins'",
")",
"plugin",
"=",
"'pulp_pull'",
"for",
"phase",
"in",
"phases",
":",
"if",
"not",
"self",
".",
"dj",
"."... | If a pulp registry is specified, use pulp_pull plugin | [
"If",
"a",
"pulp",
"registry",
"is",
"specified",
"use",
"pulp_pull",
"plugin"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L1080-L1105 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_pulp_sync | def render_pulp_sync(self):
"""
If a pulp registry is specified, use the pulp plugin as well as the
delete_from_registry to delete the image after sync
"""
if not self.dj.dock_json_has_plugin_conf('postbuild_plugins',
'pulp_sync'):... | python | def render_pulp_sync(self):
"""
If a pulp registry is specified, use the pulp plugin as well as the
delete_from_registry to delete the image after sync
"""
if not self.dj.dock_json_has_plugin_conf('postbuild_plugins',
'pulp_sync'):... | [
"def",
"render_pulp_sync",
"(",
"self",
")",
":",
"if",
"not",
"self",
".",
"dj",
".",
"dock_json_has_plugin_conf",
"(",
"'postbuild_plugins'",
",",
"'pulp_sync'",
")",
":",
"return",
"pulp_registry",
"=",
"self",
".",
"spec",
".",
"pulp_registry",
".",
"value... | If a pulp registry is specified, use the pulp plugin as well as the
delete_from_registry to delete the image after sync | [
"If",
"a",
"pulp",
"registry",
"is",
"specified",
"use",
"the",
"pulp",
"plugin",
"as",
"well",
"as",
"the",
"delete_from_registry",
"to",
"delete",
"the",
"image",
"after",
"sync"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L1134-L1213 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_pulp_tag | def render_pulp_tag(self):
"""
Configure the pulp_tag plugin.
"""
if not self.dj.dock_json_has_plugin_conf('postbuild_plugins',
'pulp_tag'):
return
pulp_registry = self.spec.pulp_registry.value
if pulp_registry... | python | def render_pulp_tag(self):
"""
Configure the pulp_tag plugin.
"""
if not self.dj.dock_json_has_plugin_conf('postbuild_plugins',
'pulp_tag'):
return
pulp_registry = self.spec.pulp_registry.value
if pulp_registry... | [
"def",
"render_pulp_tag",
"(",
"self",
")",
":",
"if",
"not",
"self",
".",
"dj",
".",
"dock_json_has_plugin_conf",
"(",
"'postbuild_plugins'",
",",
"'pulp_tag'",
")",
":",
"return",
"pulp_registry",
"=",
"self",
".",
"spec",
".",
"pulp_registry",
".",
"value",... | Configure the pulp_tag plugin. | [
"Configure",
"the",
"pulp_tag",
"plugin",
"."
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L1215-L1240 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_group_manifests | def render_group_manifests(self):
"""
Configure the group_manifests plugin. Group is always set to false for now.
"""
if not self.dj.dock_json_has_plugin_conf('postbuild_plugins', 'group_manifests'):
return
push_conf = self.dj.dock_json_get_plugin_conf('postbuild_plu... | python | def render_group_manifests(self):
"""
Configure the group_manifests plugin. Group is always set to false for now.
"""
if not self.dj.dock_json_has_plugin_conf('postbuild_plugins', 'group_manifests'):
return
push_conf = self.dj.dock_json_get_plugin_conf('postbuild_plu... | [
"def",
"render_group_manifests",
"(",
"self",
")",
":",
"if",
"not",
"self",
".",
"dj",
".",
"dock_json_has_plugin_conf",
"(",
"'postbuild_plugins'",
",",
"'group_manifests'",
")",
":",
"return",
"push_conf",
"=",
"self",
".",
"dj",
".",
"dock_json_get_plugin_conf... | Configure the group_manifests plugin. Group is always set to false for now. | [
"Configure",
"the",
"group_manifests",
"plugin",
".",
"Group",
"is",
"always",
"set",
"to",
"false",
"for",
"now",
"."
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L1269-L1301 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_import_image | def render_import_image(self, use_auth=None):
"""
Configure the import_image plugin
"""
# import_image is a multi-phase plugin
phases = ('postbuild_plugins', 'exit_plugins')
plugin = 'import_image'
for phase in phases:
if self.spec.imagestream_name.va... | python | def render_import_image(self, use_auth=None):
"""
Configure the import_image plugin
"""
# import_image is a multi-phase plugin
phases = ('postbuild_plugins', 'exit_plugins')
plugin = 'import_image'
for phase in phases:
if self.spec.imagestream_name.va... | [
"def",
"render_import_image",
"(",
"self",
",",
"use_auth",
"=",
"None",
")",
":",
"# import_image is a multi-phase plugin",
"phases",
"=",
"(",
"'postbuild_plugins'",
",",
"'exit_plugins'",
")",
"plugin",
"=",
"'import_image'",
"for",
"phase",
"in",
"phases",
":",
... | Configure the import_image plugin | [
"Configure",
"the",
"import_image",
"plugin"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L1303-L1333 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_customizations | def render_customizations(self):
"""
Customize prod_inner for site specific customizations
"""
disable_plugins = self.customize_conf.get('disable_plugins', [])
if not disable_plugins:
logger.debug("No site-specific plugins to disable")
else:
for p... | python | def render_customizations(self):
"""
Customize prod_inner for site specific customizations
"""
disable_plugins = self.customize_conf.get('disable_plugins', [])
if not disable_plugins:
logger.debug("No site-specific plugins to disable")
else:
for p... | [
"def",
"render_customizations",
"(",
"self",
")",
":",
"disable_plugins",
"=",
"self",
".",
"customize_conf",
".",
"get",
"(",
"'disable_plugins'",
",",
"[",
"]",
")",
"if",
"not",
"disable_plugins",
":",
"logger",
".",
"debug",
"(",
"\"No site-specific plugins ... | Customize prod_inner for site specific customizations | [
"Customize",
"prod_inner",
"for",
"site",
"specific",
"customizations"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L1375-L1420 |
projectatomic/osbs-client | osbs/build/build_request.py | BuildRequest.render_name | def render_name(self, name, image_tag, platform):
"""Sets the Build/BuildConfig object name"""
if self.scratch or self.isolated:
name = image_tag
# Platform name may contain characters not allowed by OpenShift.
if platform:
platform_suffix = '-{}'.for... | python | def render_name(self, name, image_tag, platform):
"""Sets the Build/BuildConfig object name"""
if self.scratch or self.isolated:
name = image_tag
# Platform name may contain characters not allowed by OpenShift.
if platform:
platform_suffix = '-{}'.for... | [
"def",
"render_name",
"(",
"self",
",",
"name",
",",
"image_tag",
",",
"platform",
")",
":",
"if",
"self",
".",
"scratch",
"or",
"self",
".",
"isolated",
":",
"name",
"=",
"image_tag",
"# Platform name may contain characters not allowed by OpenShift.",
"if",
"plat... | Sets the Build/BuildConfig object name | [
"Sets",
"the",
"Build",
"/",
"BuildConfig",
"object",
"name"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_request.py#L1425-L1444 |
projectatomic/osbs-client | osbs/cli/capture.py | setup_json_capture | def setup_json_capture(osbs, os_conf, capture_dir):
"""
Only used for setting up the testing framework.
"""
try:
os.mkdir(capture_dir)
except OSError:
pass
finally:
osbs.os._con.request = ResponseSaver(capture_dir,
os_conf.get... | python | def setup_json_capture(osbs, os_conf, capture_dir):
"""
Only used for setting up the testing framework.
"""
try:
os.mkdir(capture_dir)
except OSError:
pass
finally:
osbs.os._con.request = ResponseSaver(capture_dir,
os_conf.get... | [
"def",
"setup_json_capture",
"(",
"osbs",
",",
"os_conf",
",",
"capture_dir",
")",
":",
"try",
":",
"os",
".",
"mkdir",
"(",
"capture_dir",
")",
"except",
"OSError",
":",
"pass",
"finally",
":",
"osbs",
".",
"os",
".",
"_con",
".",
"request",
"=",
"Res... | Only used for setting up the testing framework. | [
"Only",
"used",
"for",
"setting",
"up",
"the",
"testing",
"framework",
"."
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/cli/capture.py#L96-L109 |
projectatomic/osbs-client | osbs/cli/render.py | get_terminal_size | def get_terminal_size():
"""
get size of console: rows x columns
:return: tuple, (int, int)
"""
try:
rows, columns = subprocess.check_output(['stty', 'size']).split()
except subprocess.CalledProcessError:
# not attached to terminal
logger.info("not attached to terminal")... | python | def get_terminal_size():
"""
get size of console: rows x columns
:return: tuple, (int, int)
"""
try:
rows, columns = subprocess.check_output(['stty', 'size']).split()
except subprocess.CalledProcessError:
# not attached to terminal
logger.info("not attached to terminal")... | [
"def",
"get_terminal_size",
"(",
")",
":",
"try",
":",
"rows",
",",
"columns",
"=",
"subprocess",
".",
"check_output",
"(",
"[",
"'stty'",
",",
"'size'",
"]",
")",
".",
"split",
"(",
")",
"except",
"subprocess",
".",
"CalledProcessError",
":",
"# not attac... | get size of console: rows x columns
:return: tuple, (int, int) | [
"get",
"size",
"of",
"console",
":",
"rows",
"x",
"columns"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/cli/render.py#L18-L31 |
projectatomic/osbs-client | osbs/cli/render.py | TableFormatter._longest_val_in_column | def _longest_val_in_column(self, col):
"""
get size of longest value in specific column
:param col: str, column name
:return int
"""
try:
# +2 is for implicit separator
return max([len(x[col]) for x in self.table if x[col]]) + 2
except Key... | python | def _longest_val_in_column(self, col):
"""
get size of longest value in specific column
:param col: str, column name
:return int
"""
try:
# +2 is for implicit separator
return max([len(x[col]) for x in self.table if x[col]]) + 2
except Key... | [
"def",
"_longest_val_in_column",
"(",
"self",
",",
"col",
")",
":",
"try",
":",
"# +2 is for implicit separator",
"return",
"max",
"(",
"[",
"len",
"(",
"x",
"[",
"col",
"]",
")",
"for",
"x",
"in",
"self",
".",
"table",
"if",
"x",
"[",
"col",
"]",
"]... | get size of longest value in specific column
:param col: str, column name
:return int | [
"get",
"size",
"of",
"longest",
"value",
"in",
"specific",
"column"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/cli/render.py#L59-L71 |
projectatomic/osbs-client | osbs/cli/render.py | TablePrinter._init | def _init(self):
"""
initialize all values based on provided input
:return: None
"""
self.col_count = len(self.col_list)
# list of lengths of longest entries in columns
self.col_longest = self.get_all_longest_col_lengths()
self.data_length = sum(self.col_... | python | def _init(self):
"""
initialize all values based on provided input
:return: None
"""
self.col_count = len(self.col_list)
# list of lengths of longest entries in columns
self.col_longest = self.get_all_longest_col_lengths()
self.data_length = sum(self.col_... | [
"def",
"_init",
"(",
"self",
")",
":",
"self",
".",
"col_count",
"=",
"len",
"(",
"self",
".",
"col_list",
")",
"# list of lengths of longest entries in columns",
"self",
".",
"col_longest",
"=",
"self",
".",
"get_all_longest_col_lengths",
"(",
")",
"self",
".",... | initialize all values based on provided input
:return: None | [
"initialize",
"all",
"values",
"based",
"on",
"provided",
"input"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/cli/render.py#L95-L122 |
projectatomic/osbs-client | osbs/cli/render.py | TablePrinter._count_sizes | def _count_sizes(self):
"""
count all values needed to display whole table
<><---terminal-width-----------><>
<> HEADER | HEADER2 | HEADER3 <>
<>---------+----------+---------<>
kudos to PostgreSQL developers
:return: None
"""
format_list = [... | python | def _count_sizes(self):
"""
count all values needed to display whole table
<><---terminal-width-----------><>
<> HEADER | HEADER2 | HEADER3 <>
<>---------+----------+---------<>
kudos to PostgreSQL developers
:return: None
"""
format_list = [... | [
"def",
"_count_sizes",
"(",
"self",
")",
":",
"format_list",
"=",
"[",
"]",
"header_sepa_format_list",
"=",
"[",
"]",
"# actual widths of columns",
"self",
".",
"col_widths",
"=",
"{",
"}",
"for",
"col",
"in",
"self",
".",
"col_list",
":",
"col_length",
"=",... | count all values needed to display whole table
<><---terminal-width-----------><>
<> HEADER | HEADER2 | HEADER3 <>
<>---------+----------+---------<>
kudos to PostgreSQL developers
:return: None | [
"count",
"all",
"values",
"needed",
"to",
"display",
"whole",
"table"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/cli/render.py#L124-L157 |
projectatomic/osbs-client | osbs/cli/render.py | TablePrinter.get_all_longest_col_lengths | def get_all_longest_col_lengths(self):
"""
iterate over all columns and get their longest values
:return: dict, {"column_name": 132}
"""
response = {}
for col in self.col_list:
response[col] = self._longest_val_in_column(col)
return response | python | def get_all_longest_col_lengths(self):
"""
iterate over all columns and get their longest values
:return: dict, {"column_name": 132}
"""
response = {}
for col in self.col_list:
response[col] = self._longest_val_in_column(col)
return response | [
"def",
"get_all_longest_col_lengths",
"(",
"self",
")",
":",
"response",
"=",
"{",
"}",
"for",
"col",
"in",
"self",
".",
"col_list",
":",
"response",
"[",
"col",
"]",
"=",
"self",
".",
"_longest_val_in_column",
"(",
"col",
")",
"return",
"response"
] | iterate over all columns and get their longest values
:return: dict, {"column_name": 132} | [
"iterate",
"over",
"all",
"columns",
"and",
"get",
"their",
"longest",
"values"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/cli/render.py#L159-L168 |
projectatomic/osbs-client | osbs/cli/render.py | TablePrinter._separate | def _separate(self):
"""
get a width of separator for current column
:return: int
"""
if self.total_free_space is None:
return 0
else:
sepa = self.default_column_space
# we need to distribute remainders
if self.default_colu... | python | def _separate(self):
"""
get a width of separator for current column
:return: int
"""
if self.total_free_space is None:
return 0
else:
sepa = self.default_column_space
# we need to distribute remainders
if self.default_colu... | [
"def",
"_separate",
"(",
"self",
")",
":",
"if",
"self",
".",
"total_free_space",
"is",
"None",
":",
"return",
"0",
"else",
":",
"sepa",
"=",
"self",
".",
"default_column_space",
"# we need to distribute remainders",
"if",
"self",
".",
"default_column_space_remain... | get a width of separator for current column
:return: int | [
"get",
"a",
"width",
"of",
"separator",
"for",
"current",
"column"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/cli/render.py#L170-L186 |
projectatomic/osbs-client | osbs/cli/render.py | TablePrinter.render | def render(self):
"""
print provided table
:return: None
"""
print(self.format_str.format(**self.header), file=sys.stderr)
print(self.header_format_str.format(**self.header_data), file=sys.stderr)
for row in self.data:
print(self.format_str.format(**r... | python | def render(self):
"""
print provided table
:return: None
"""
print(self.format_str.format(**self.header), file=sys.stderr)
print(self.header_format_str.format(**self.header_data), file=sys.stderr)
for row in self.data:
print(self.format_str.format(**r... | [
"def",
"render",
"(",
"self",
")",
":",
"print",
"(",
"self",
".",
"format_str",
".",
"format",
"(",
"*",
"*",
"self",
".",
"header",
")",
",",
"file",
"=",
"sys",
".",
"stderr",
")",
"print",
"(",
"self",
".",
"header_format_str",
".",
"format",
"... | print provided table
:return: None | [
"print",
"provided",
"table"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/cli/render.py#L188-L197 |
thombashi/pytablereader | pytablereader/json/formatter.py | JsonConverter._validate_source_data | def _validate_source_data(self):
"""
:raises ValidationError:
"""
try:
jsonschema.validate(self._buffer, self._schema)
except jsonschema.ValidationError as e:
raise ValidationError(e) | python | def _validate_source_data(self):
"""
:raises ValidationError:
"""
try:
jsonschema.validate(self._buffer, self._schema)
except jsonschema.ValidationError as e:
raise ValidationError(e) | [
"def",
"_validate_source_data",
"(",
"self",
")",
":",
"try",
":",
"jsonschema",
".",
"validate",
"(",
"self",
".",
"_buffer",
",",
"self",
".",
"_schema",
")",
"except",
"jsonschema",
".",
"ValidationError",
"as",
"e",
":",
"raise",
"ValidationError",
"(",
... | :raises ValidationError: | [
":",
"raises",
"ValidationError",
":"
] | train | https://github.com/thombashi/pytablereader/blob/bc3c057a2cc775bcce690e0e9019c2907b638101/pytablereader/json/formatter.py#L38-L46 |
thombashi/pytablereader | pytablereader/json/formatter.py | SingleJsonTableConverterC.to_table_data | def to_table_data(self):
"""
:raises ValueError:
:raises pytablereader.error.ValidationError:
"""
self._validate_source_data()
self._loader.inc_table_count()
yield TableData(
self._make_table_name(),
["key", "value"],
[record ... | python | def to_table_data(self):
"""
:raises ValueError:
:raises pytablereader.error.ValidationError:
"""
self._validate_source_data()
self._loader.inc_table_count()
yield TableData(
self._make_table_name(),
["key", "value"],
[record ... | [
"def",
"to_table_data",
"(",
"self",
")",
":",
"self",
".",
"_validate_source_data",
"(",
")",
"self",
".",
"_loader",
".",
"inc_table_count",
"(",
")",
"yield",
"TableData",
"(",
"self",
".",
"_make_table_name",
"(",
")",
",",
"[",
"\"key\"",
",",
"\"valu... | :raises ValueError:
:raises pytablereader.error.ValidationError: | [
":",
"raises",
"ValueError",
":",
":",
"raises",
"pytablereader",
".",
"error",
".",
"ValidationError",
":"
] | train | https://github.com/thombashi/pytablereader/blob/bc3c057a2cc775bcce690e0e9019c2907b638101/pytablereader/json/formatter.py#L139-L154 |
thombashi/pytablereader | pytablereader/json/formatter.py | MultipleJsonTableConverterA.to_table_data | def to_table_data(self):
"""
:raises ValueError:
:raises pytablereader.error.ValidationError:
"""
self._validate_source_data()
for table_key, json_records in six.iteritems(self._buffer):
attr_name_set = set()
for json_record in json_records:
... | python | def to_table_data(self):
"""
:raises ValueError:
:raises pytablereader.error.ValidationError:
"""
self._validate_source_data()
for table_key, json_records in six.iteritems(self._buffer):
attr_name_set = set()
for json_record in json_records:
... | [
"def",
"to_table_data",
"(",
"self",
")",
":",
"self",
".",
"_validate_source_data",
"(",
")",
"for",
"table_key",
",",
"json_records",
"in",
"six",
".",
"iteritems",
"(",
"self",
".",
"_buffer",
")",
":",
"attr_name_set",
"=",
"set",
"(",
")",
"for",
"j... | :raises ValueError:
:raises pytablereader.error.ValidationError: | [
":",
"raises",
"ValueError",
":",
":",
"raises",
"pytablereader",
".",
"error",
".",
"ValidationError",
":"
] | train | https://github.com/thombashi/pytablereader/blob/bc3c057a2cc775bcce690e0e9019c2907b638101/pytablereader/json/formatter.py#L186-L209 |
thombashi/pytablereader | pytablereader/json/formatter.py | MultipleJsonTableConverterB.to_table_data | def to_table_data(self):
"""
:raises ValueError:
:raises pytablereader.error.ValidationError:
"""
self._validate_source_data()
for table_key, json_records in six.iteritems(self._buffer):
headers = sorted(six.viewkeys(json_records))
self._loader.... | python | def to_table_data(self):
"""
:raises ValueError:
:raises pytablereader.error.ValidationError:
"""
self._validate_source_data()
for table_key, json_records in six.iteritems(self._buffer):
headers = sorted(six.viewkeys(json_records))
self._loader.... | [
"def",
"to_table_data",
"(",
"self",
")",
":",
"self",
".",
"_validate_source_data",
"(",
")",
"for",
"table_key",
",",
"json_records",
"in",
"six",
".",
"iteritems",
"(",
"self",
".",
"_buffer",
")",
":",
"headers",
"=",
"sorted",
"(",
"six",
".",
"view... | :raises ValueError:
:raises pytablereader.error.ValidationError: | [
":",
"raises",
"ValueError",
":",
":",
"raises",
"pytablereader",
".",
"error",
".",
"ValidationError",
":"
] | train | https://github.com/thombashi/pytablereader/blob/bc3c057a2cc775bcce690e0e9019c2907b638101/pytablereader/json/formatter.py#L227-L247 |
thombashi/pytablereader | pytablereader/json/formatter.py | MultipleJsonTableConverterC.to_table_data | def to_table_data(self):
"""
:raises ValueError:
:raises pytablereader.error.ValidationError:
"""
self._validate_source_data()
for table_key, json_records in six.iteritems(self._buffer):
self._loader.inc_table_count()
self._table_key = table_key
... | python | def to_table_data(self):
"""
:raises ValueError:
:raises pytablereader.error.ValidationError:
"""
self._validate_source_data()
for table_key, json_records in six.iteritems(self._buffer):
self._loader.inc_table_count()
self._table_key = table_key
... | [
"def",
"to_table_data",
"(",
"self",
")",
":",
"self",
".",
"_validate_source_data",
"(",
")",
"for",
"table_key",
",",
"json_records",
"in",
"six",
".",
"iteritems",
"(",
"self",
".",
"_buffer",
")",
":",
"self",
".",
"_loader",
".",
"inc_table_count",
"(... | :raises ValueError:
:raises pytablereader.error.ValidationError: | [
":",
"raises",
"ValueError",
":",
":",
"raises",
"pytablereader",
".",
"error",
".",
"ValidationError",
":"
] | train | https://github.com/thombashi/pytablereader/blob/bc3c057a2cc775bcce690e0e9019c2907b638101/pytablereader/json/formatter.py#L265-L283 |
projectatomic/osbs-client | osbs/build/build_requestv2.py | BuildRequestV2.set_params | def set_params(self, **kwargs):
"""
set parameters in the user parameters
these parameters are accepted:
:param git_uri: str, uri of the git repository for the source
:param git_ref: str, commit ID of the branch to be pulled
:param git_branch: str, branch name of the bra... | python | def set_params(self, **kwargs):
"""
set parameters in the user parameters
these parameters are accepted:
:param git_uri: str, uri of the git repository for the source
:param git_ref: str, commit ID of the branch to be pulled
:param git_branch: str, branch name of the bra... | [
"def",
"set_params",
"(",
"self",
",",
"*",
"*",
"kwargs",
")",
":",
"# Here we cater to the koji \"scratch\" build type, this will disable",
"# all plugins that might cause importing of data to koji",
"self",
".",
"scratch",
"=",
"kwargs",
".",
"get",
"(",
"'scratch'",
")"... | set parameters in the user parameters
these parameters are accepted:
:param git_uri: str, uri of the git repository for the source
:param git_ref: str, commit ID of the branch to be pulled
:param git_branch: str, branch name of the branch to be pulled
:param base_image: str, nam... | [
"set",
"parameters",
"in",
"the",
"user",
"parameters"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_requestv2.py#L42-L109 |
projectatomic/osbs-client | osbs/build/build_requestv2.py | BuildRequestV2.set_data_from_reactor_config | def set_data_from_reactor_config(self):
"""
Sets data from reactor config
"""
reactor_config_override = self.user_params.reactor_config_override.value
reactor_config_map = self.user_params.reactor_config_map.value
data = None
if reactor_config_override:
... | python | def set_data_from_reactor_config(self):
"""
Sets data from reactor config
"""
reactor_config_override = self.user_params.reactor_config_override.value
reactor_config_map = self.user_params.reactor_config_map.value
data = None
if reactor_config_override:
... | [
"def",
"set_data_from_reactor_config",
"(",
"self",
")",
":",
"reactor_config_override",
"=",
"self",
".",
"user_params",
".",
"reactor_config_override",
".",
"value",
"reactor_config_map",
"=",
"self",
".",
"user_params",
".",
"reactor_config_map",
".",
"value",
"dat... | Sets data from reactor config | [
"Sets",
"data",
"from",
"reactor",
"config"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_requestv2.py#L166-L208 |
projectatomic/osbs-client | osbs/build/build_requestv2.py | BuildRequestV2._set_required_secrets | def _set_required_secrets(self, required_secrets, token_secrets):
"""
Sets required secrets
"""
if self.user_params.build_type.value == BUILD_TYPE_ORCHESTRATOR:
required_secrets += token_secrets
if not required_secrets:
return
secrets = self.temp... | python | def _set_required_secrets(self, required_secrets, token_secrets):
"""
Sets required secrets
"""
if self.user_params.build_type.value == BUILD_TYPE_ORCHESTRATOR:
required_secrets += token_secrets
if not required_secrets:
return
secrets = self.temp... | [
"def",
"_set_required_secrets",
"(",
"self",
",",
"required_secrets",
",",
"token_secrets",
")",
":",
"if",
"self",
".",
"user_params",
".",
"build_type",
".",
"value",
"==",
"BUILD_TYPE_ORCHESTRATOR",
":",
"required_secrets",
"+=",
"token_secrets",
"if",
"not",
"... | Sets required secrets | [
"Sets",
"required",
"secrets"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/build_requestv2.py#L210-L237 |
projectatomic/osbs-client | osbs/build/plugins_configuration.py | PluginsTemplate.remove_plugin | def remove_plugin(self, phase, name, reason=None):
"""
if config contains plugin, remove it
"""
for p in self.template[phase]:
if p.get('name') == name:
self.template[phase].remove(p)
if reason:
logger.info('Removing {}:{}, ... | python | def remove_plugin(self, phase, name, reason=None):
"""
if config contains plugin, remove it
"""
for p in self.template[phase]:
if p.get('name') == name:
self.template[phase].remove(p)
if reason:
logger.info('Removing {}:{}, ... | [
"def",
"remove_plugin",
"(",
"self",
",",
"phase",
",",
"name",
",",
"reason",
"=",
"None",
")",
":",
"for",
"p",
"in",
"self",
".",
"template",
"[",
"phase",
"]",
":",
"if",
"p",
".",
"get",
"(",
"'name'",
")",
"==",
"name",
":",
"self",
".",
... | if config contains plugin, remove it | [
"if",
"config",
"contains",
"plugin",
"remove",
"it"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/plugins_configuration.py#L55-L64 |
projectatomic/osbs-client | osbs/build/plugins_configuration.py | PluginsTemplate.add_plugin | def add_plugin(self, phase, name, args, reason=None):
"""
if config has plugin, override it, else add it
"""
plugin_modified = False
for plugin in self.template[phase]:
if plugin['name'] == name:
plugin['args'] = args
plugin_modified =... | python | def add_plugin(self, phase, name, args, reason=None):
"""
if config has plugin, override it, else add it
"""
plugin_modified = False
for plugin in self.template[phase]:
if plugin['name'] == name:
plugin['args'] = args
plugin_modified =... | [
"def",
"add_plugin",
"(",
"self",
",",
"phase",
",",
"name",
",",
"args",
",",
"reason",
"=",
"None",
")",
":",
"plugin_modified",
"=",
"False",
"for",
"plugin",
"in",
"self",
".",
"template",
"[",
"phase",
"]",
":",
"if",
"plugin",
"[",
"'name'",
"]... | if config has plugin, override it, else add it | [
"if",
"config",
"has",
"plugin",
"override",
"it",
"else",
"add",
"it"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/plugins_configuration.py#L66-L80 |
projectatomic/osbs-client | osbs/build/plugins_configuration.py | PluginsTemplate.get_plugin_conf | def get_plugin_conf(self, phase, name):
"""
Return the configuration for a plugin.
Raises KeyError if there are no plugins of that type.
Raises IndexError if the named plugin is not listed.
"""
match = [x for x in self.template[phase] if x.get('name') == name]
re... | python | def get_plugin_conf(self, phase, name):
"""
Return the configuration for a plugin.
Raises KeyError if there are no plugins of that type.
Raises IndexError if the named plugin is not listed.
"""
match = [x for x in self.template[phase] if x.get('name') == name]
re... | [
"def",
"get_plugin_conf",
"(",
"self",
",",
"phase",
",",
"name",
")",
":",
"match",
"=",
"[",
"x",
"for",
"x",
"in",
"self",
".",
"template",
"[",
"phase",
"]",
"if",
"x",
".",
"get",
"(",
"'name'",
")",
"==",
"name",
"]",
"return",
"match",
"["... | Return the configuration for a plugin.
Raises KeyError if there are no plugins of that type.
Raises IndexError if the named plugin is not listed. | [
"Return",
"the",
"configuration",
"for",
"a",
"plugin",
"."
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/plugins_configuration.py#L82-L90 |
projectatomic/osbs-client | osbs/build/plugins_configuration.py | PluginsTemplate.has_plugin_conf | def has_plugin_conf(self, phase, name):
"""
Check whether a plugin is configured.
"""
try:
self.get_plugin_conf(phase, name)
return True
except (KeyError, IndexError):
return False | python | def has_plugin_conf(self, phase, name):
"""
Check whether a plugin is configured.
"""
try:
self.get_plugin_conf(phase, name)
return True
except (KeyError, IndexError):
return False | [
"def",
"has_plugin_conf",
"(",
"self",
",",
"phase",
",",
"name",
")",
":",
"try",
":",
"self",
".",
"get_plugin_conf",
"(",
"phase",
",",
"name",
")",
"return",
"True",
"except",
"(",
"KeyError",
",",
"IndexError",
")",
":",
"return",
"False"
] | Check whether a plugin is configured. | [
"Check",
"whether",
"a",
"plugin",
"is",
"configured",
"."
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/plugins_configuration.py#L92-L100 |
projectatomic/osbs-client | osbs/build/plugins_configuration.py | PluginsConfiguration.adjust_for_scratch | def adjust_for_scratch(self):
"""
Remove certain plugins in order to handle the "scratch build"
scenario. Scratch builds must not affect subsequent builds,
and should not be imported into Koji.
"""
if self.user_params.scratch.value:
remove_plugins = [
... | python | def adjust_for_scratch(self):
"""
Remove certain plugins in order to handle the "scratch build"
scenario. Scratch builds must not affect subsequent builds,
and should not be imported into Koji.
"""
if self.user_params.scratch.value:
remove_plugins = [
... | [
"def",
"adjust_for_scratch",
"(",
"self",
")",
":",
"if",
"self",
".",
"user_params",
".",
"scratch",
".",
"value",
":",
"remove_plugins",
"=",
"[",
"(",
"\"prebuild_plugins\"",
",",
"\"koji_parent\"",
")",
",",
"(",
"\"postbuild_plugins\"",
",",
"\"compress\"",... | Remove certain plugins in order to handle the "scratch build"
scenario. Scratch builds must not affect subsequent builds,
and should not be imported into Koji. | [
"Remove",
"certain",
"plugins",
"in",
"order",
"to",
"handle",
"the",
"scratch",
"build",
"scenario",
".",
"Scratch",
"builds",
"must",
"not",
"affect",
"subsequent",
"builds",
"and",
"should",
"not",
"be",
"imported",
"into",
"Koji",
"."
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/plugins_configuration.py#L149-L173 |
projectatomic/osbs-client | osbs/build/plugins_configuration.py | PluginsConfiguration.adjust_for_isolated | def adjust_for_isolated(self):
"""
Remove certain plugins in order to handle the "isolated build"
scenario.
"""
if self.user_params.isolated.value:
remove_plugins = [
("prebuild_plugins", "check_and_set_rebuild"),
("prebuild_plugins", "... | python | def adjust_for_isolated(self):
"""
Remove certain plugins in order to handle the "isolated build"
scenario.
"""
if self.user_params.isolated.value:
remove_plugins = [
("prebuild_plugins", "check_and_set_rebuild"),
("prebuild_plugins", "... | [
"def",
"adjust_for_isolated",
"(",
"self",
")",
":",
"if",
"self",
".",
"user_params",
".",
"isolated",
".",
"value",
":",
"remove_plugins",
"=",
"[",
"(",
"\"prebuild_plugins\"",
",",
"\"check_and_set_rebuild\"",
")",
",",
"(",
"\"prebuild_plugins\"",
",",
"\"s... | Remove certain plugins in order to handle the "isolated build"
scenario. | [
"Remove",
"certain",
"plugins",
"in",
"order",
"to",
"handle",
"the",
"isolated",
"build",
"scenario",
"."
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/plugins_configuration.py#L175-L187 |
projectatomic/osbs-client | osbs/build/plugins_configuration.py | PluginsConfiguration.adjust_for_flatpak | def adjust_for_flatpak(self):
"""
Remove plugins that don't work when building Flatpaks
"""
if self.user_params.flatpak.value:
remove_plugins = [
("prebuild_plugins", "resolve_composes"),
# We'll extract the filesystem anyways for a Flatpak ins... | python | def adjust_for_flatpak(self):
"""
Remove plugins that don't work when building Flatpaks
"""
if self.user_params.flatpak.value:
remove_plugins = [
("prebuild_plugins", "resolve_composes"),
# We'll extract the filesystem anyways for a Flatpak ins... | [
"def",
"adjust_for_flatpak",
"(",
"self",
")",
":",
"if",
"self",
".",
"user_params",
".",
"flatpak",
".",
"value",
":",
"remove_plugins",
"=",
"[",
"(",
"\"prebuild_plugins\"",
",",
"\"resolve_composes\"",
")",
",",
"# We'll extract the filesystem anyways for a Flatp... | Remove plugins that don't work when building Flatpaks | [
"Remove",
"plugins",
"that",
"don",
"t",
"work",
"when",
"building",
"Flatpaks"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/plugins_configuration.py#L189-L210 |
projectatomic/osbs-client | osbs/build/plugins_configuration.py | PluginsConfiguration.render_customizations | def render_customizations(self):
"""
Customize template for site user specified customizations
"""
disable_plugins = self.pt.customize_conf.get('disable_plugins', [])
if not disable_plugins:
logger.debug('No site-user specified plugins to disable')
else:
... | python | def render_customizations(self):
"""
Customize template for site user specified customizations
"""
disable_plugins = self.pt.customize_conf.get('disable_plugins', [])
if not disable_plugins:
logger.debug('No site-user specified plugins to disable')
else:
... | [
"def",
"render_customizations",
"(",
"self",
")",
":",
"disable_plugins",
"=",
"self",
".",
"pt",
".",
"customize_conf",
".",
"get",
"(",
"'disable_plugins'",
",",
"[",
"]",
")",
"if",
"not",
"disable_plugins",
":",
"logger",
".",
"debug",
"(",
"'No site-use... | Customize template for site user specified customizations | [
"Customize",
"template",
"for",
"site",
"user",
"specified",
"customizations"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/plugins_configuration.py#L239-L266 |
projectatomic/osbs-client | osbs/build/plugins_configuration.py | PluginsConfiguration.render_koji | def render_koji(self):
"""
if there is yum repo in user params, don't pick stuff from koji
"""
phase = 'prebuild_plugins'
plugin = 'koji'
if not self.pt.has_plugin_conf(phase, plugin):
return
if self.user_params.yum_repourls.value:
self.pt... | python | def render_koji(self):
"""
if there is yum repo in user params, don't pick stuff from koji
"""
phase = 'prebuild_plugins'
plugin = 'koji'
if not self.pt.has_plugin_conf(phase, plugin):
return
if self.user_params.yum_repourls.value:
self.pt... | [
"def",
"render_koji",
"(",
"self",
")",
":",
"phase",
"=",
"'prebuild_plugins'",
"plugin",
"=",
"'koji'",
"if",
"not",
"self",
".",
"pt",
".",
"has_plugin_conf",
"(",
"phase",
",",
"plugin",
")",
":",
"return",
"if",
"self",
".",
"user_params",
".",
"yum... | if there is yum repo in user params, don't pick stuff from koji | [
"if",
"there",
"is",
"yum",
"repo",
"in",
"user",
"params",
"don",
"t",
"pick",
"stuff",
"from",
"koji"
] | train | https://github.com/projectatomic/osbs-client/blob/571fe035dab3a7c02e1dccd5d65ffd75be750458/osbs/build/plugins_configuration.py#L285-L298 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.