repo stringclasses 235 values | path stringlengths 11 168 | func_name stringlengths 12 143 | original_string stringlengths 83 6.91k | language stringclasses 1 value | code stringlengths 83 6.91k | code_tokens listlengths 15 1.01k | docstring stringlengths 5 25.7k | docstring_tokens listlengths 1 427 | sha stringclasses 235 values | url stringlengths 99 268 | partition stringclasses 1 value | summary stringlengths 7 202 | input_ids listlengths 502 502 | token_type_ids listlengths 502 502 | attention_mask listlengths 502 502 | labels listlengths 502 502 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
colszowka/simplecov | lib/simplecov/profiles.rb | SimpleCov.Profiles.load | def load(name)
name = name.to_sym
raise "Could not find SimpleCov Profile called '#{name}'" unless key?(name)
SimpleCov.configure(&self[name])
end | ruby | def load(name)
name = name.to_sym
raise "Could not find SimpleCov Profile called '#{name}'" unless key?(name)
SimpleCov.configure(&self[name])
end | [
"def",
"load",
"(",
"name",
")",
"name",
"=",
"name",
".",
"to_sym",
"raise",
"\"Could not find SimpleCov Profile called '#{name}'\"",
"unless",
"key?",
"(",
"name",
")",
"SimpleCov",
".",
"configure",
"(",
"self",
"[",
"name",
"]",
")",
"end"
] | Applies the profile of given name on SimpleCov.configure | [
"Applies",
"the",
"profile",
"of",
"given",
"name",
"on",
"SimpleCov",
".",
"configure"
] | 8f6978a2513f10c4dd8d7dd7eed666fe3f2b55c2 | https://github.com/colszowka/simplecov/blob/8f6978a2513f10c4dd8d7dd7eed666fe3f2b55c2/lib/simplecov/profiles.rb#L27-L31 | train | Load a Profile | [
30522,
13366,
7170,
1006,
2171,
1007,
2171,
1027,
2171,
1012,
2000,
1035,
25353,
2213,
5333,
1000,
2071,
2025,
2424,
3722,
3597,
2615,
6337,
2170,
1005,
1001,
1063,
2171,
1065,
1005,
1000,
4983,
3145,
1029,
1006,
2171,
1007,
3722,
3597,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_event_grid/lib/2018-01-01/generated/azure_mgmt_event_grid/event_subscriptions.rb | Azure::EventGrid::Mgmt::V2018_01_01.EventSubscriptions.delete | def delete(scope, event_subscription_name, custom_headers:nil)
response = delete_async(scope, event_subscription_name, custom_headers:custom_headers).value!
nil
end | ruby | def delete(scope, event_subscription_name, custom_headers:nil)
response = delete_async(scope, event_subscription_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete",
"(",
"scope",
",",
"event_subscription_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_async",
"(",
"scope",
",",
"event_subscription_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Delete an event subscription
Delete an existing event subscription
@param scope [String] The scope of the event subscription. The scope can be a
subscription, or a resource group, or a top level resource belonging to a
resource provider namespace, or an EventGrid topic. For example, use
'/subscriptions/{subscriptionId}/' for a subscription,
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a
resource group, and
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}'
for a resource, and
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}'
for an EventGrid topic.
@param event_subscription_name [String] Name of the event subscription
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Delete",
"an",
"event",
"subscription"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_event_grid/lib/2018-01-01/generated/azure_mgmt_event_grid/event_subscriptions.rb#L241-L244 | train | Deletes an event subscription. | [
30522,
13366,
3972,
12870,
1006,
9531,
1010,
2724,
1035,
15002,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
3972,
12870,
1035,
2004,
6038,
2278,
1006,
9531,
1010,
2724,
1035,
15002,
1035,
2171,
1010,
7661,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
square/connect-ruby-sdk | lib/square_connect/models/create_checkout_request.rb | SquareConnect.CreateCheckoutRequest.redirect_url= | def redirect_url=(redirect_url)
if !redirect_url.nil? && redirect_url.to_s.length > 800
fail ArgumentError, "invalid value for 'redirect_url', the character length must be smaller than or equal to 800."
end
@redirect_url = redirect_url
end | ruby | def redirect_url=(redirect_url)
if !redirect_url.nil? && redirect_url.to_s.length > 800
fail ArgumentError, "invalid value for 'redirect_url', the character length must be smaller than or equal to 800."
end
@redirect_url = redirect_url
end | [
"def",
"redirect_url",
"=",
"(",
"redirect_url",
")",
"if",
"!",
"redirect_url",
".",
"nil?",
"&&",
"redirect_url",
".",
"to_s",
".",
"length",
">",
"800",
"fail",
"ArgumentError",
",",
"\"invalid value for 'redirect_url', the character length must be smaller than or equa... | Custom attribute writer method with validation
@param [Object] redirect_url Value to be assigned | [
"Custom",
"attribute",
"writer",
"method",
"with",
"validation"
] | 798eb9ded716f23b9f1518386f1c311a34bca8bf | https://github.com/square/connect-ruby-sdk/blob/798eb9ded716f23b9f1518386f1c311a34bca8bf/lib/square_connect/models/create_checkout_request.rb#L216-L223 | train | Set the redirect_url of the page. | [
30522,
13366,
2417,
7442,
6593,
1035,
24471,
2140,
1027,
1006,
2417,
7442,
6593,
1035,
24471,
2140,
1007,
2065,
999,
2417,
7442,
6593,
1035,
24471,
2140,
1012,
9152,
2140,
1029,
1004,
1004,
2417,
7442,
6593,
1035,
24471,
2140,
1012,
2000,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/queues.rb | Azure::ServiceBus::Mgmt::V2015_08_01.Queues.list_keys | def list_keys(resource_group_name, namespace_name, queue_name, authorization_rule_name, custom_headers:nil)
response = list_keys_async(resource_group_name, namespace_name, queue_name, authorization_rule_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_keys(resource_group_name, namespace_name, queue_name, authorization_rule_name, custom_headers:nil)
response = list_keys_async(resource_group_name, namespace_name, queue_name, authorization_rule_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_keys",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"queue_name",
",",
"authorization_rule_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_keys_async",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"queue_name",
... | Primary and secondary connection strings to the queue.
@param resource_group_name [String] Name of the Resource group within the
Azure subscription.
@param namespace_name [String] The namespace name
@param queue_name [String] The queue name.
@param authorization_rule_name [String] The authorization rule name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ResourceListKeys] operation results. | [
"Primary",
"and",
"secondary",
"connection",
"strings",
"to",
"the",
"queue",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/queues.rb#L1006-L1009 | train | Gets the list of all the keys associated with the specified queue. | [
30522,
13366,
2862,
1035,
6309,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
3415,
15327,
1035,
2171,
1010,
24240,
1035,
2171,
1010,
20104,
1035,
3627,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
2862,
1035,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
mongodb/mongo-ruby-driver | lib/mongo/collection.rb | Mongo.Collection.insert_many | def insert_many(documents, options = {})
inserts = documents.map{ |doc| { :insert_one => doc }}
bulk_write(inserts, options)
end | ruby | def insert_many(documents, options = {})
inserts = documents.map{ |doc| { :insert_one => doc }}
bulk_write(inserts, options)
end | [
"def",
"insert_many",
"(",
"documents",
",",
"options",
"=",
"{",
"}",
")",
"inserts",
"=",
"documents",
".",
"map",
"{",
"|",
"doc",
"|",
"{",
":insert_one",
"=>",
"doc",
"}",
"}",
"bulk_write",
"(",
"inserts",
",",
"options",
")",
"end"
] | Insert the provided documents into the collection.
@example Insert documents into the collection.
collection.insert_many([{ name: 'test' }])
@param [ Array<Hash> ] documents The documents to insert.
@param [ Hash ] options The insert options.
@option options [ Session ] :session The session to use for the operation.
@return [ Result ] The database response wrapper.
@since 2.0.0 | [
"Insert",
"the",
"provided",
"documents",
"into",
"the",
"collection",
"."
] | dca26d0870cb3386fad9ccc1d17228097c1fe1c8 | https://github.com/mongodb/mongo-ruby-driver/blob/dca26d0870cb3386fad9ccc1d17228097c1fe1c8/lib/mongo/collection.rb#L507-L510 | train | Insert many documents into the database. | [
30522,
13366,
19274,
1035,
2116,
1006,
5491,
1010,
7047,
1027,
1063,
1065,
1007,
19274,
2015,
1027,
5491,
1012,
4949,
1063,
1064,
9986,
1064,
1063,
1024,
19274,
1035,
2028,
1027,
1028,
9986,
1065,
1065,
9625,
1035,
4339,
1006,
19274,
2015,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
sds/overcommit | lib/overcommit/hook_signer.rb | Overcommit.HookSigner.signature | def signature
hook_config = @config.for_hook(@hook_name, @context.hook_class_name).
dup.
tap { |config| IGNORED_CONFIG_KEYS.each { |k| config.delete(k) } }
content_to_sign =
if signable_file?(hook_path) && Overcommit::GitRepo.tracked?(hook_path)
hook_contents
end
Digest::SHA256.hexdigest(content_to_sign.to_s + hook_config.to_s)
end | ruby | def signature
hook_config = @config.for_hook(@hook_name, @context.hook_class_name).
dup.
tap { |config| IGNORED_CONFIG_KEYS.each { |k| config.delete(k) } }
content_to_sign =
if signable_file?(hook_path) && Overcommit::GitRepo.tracked?(hook_path)
hook_contents
end
Digest::SHA256.hexdigest(content_to_sign.to_s + hook_config.to_s)
end | [
"def",
"signature",
"hook_config",
"=",
"@config",
".",
"for_hook",
"(",
"@hook_name",
",",
"@context",
".",
"hook_class_name",
")",
".",
"dup",
".",
"tap",
"{",
"|",
"config",
"|",
"IGNORED_CONFIG_KEYS",
".",
"each",
"{",
"|",
"k",
"|",
"config",
".",
"... | Calculates a hash of a hook using a combination of its configuration and
file contents.
This way, if either the plugin code changes or its configuration changes,
the hash will change and we can alert the user to this change. | [
"Calculates",
"a",
"hash",
"of",
"a",
"hook",
"using",
"a",
"combination",
"of",
"its",
"configuration",
"and",
"file",
"contents",
"."
] | 35d60adb41da942178b789560968e3ad030b0ac7 | https://github.com/sds/overcommit/blob/35d60adb41da942178b789560968e3ad030b0ac7/lib/overcommit/hook_signer.rb#L87-L98 | train | Returns the signature of the hook | [
30522,
13366,
8085,
8103,
1035,
9530,
8873,
2290,
1027,
1030,
9530,
8873,
2290,
1012,
2005,
1035,
8103,
1006,
1030,
8103,
1035,
2171,
1010,
1030,
6123,
1012,
8103,
1035,
2465,
1035,
2171,
1007,
1012,
4241,
2361,
1012,
11112,
1063,
1064,
9... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | runtime/ms_rest_azure/lib/ms_rest_azure/azure_service_client.rb | MsRestAzure.AzureServiceClient.get_long_running_operation_result | def get_long_running_operation_result(azure_response, custom_deserialization_block, final_state_via = FinalStateVia::DEFAULT)
check_for_status_code_failure(azure_response)
http_method = azure_response.request.method
polling_state = PollingState.new(azure_response, @long_running_operation_retry_timeout)
request = azure_response.request
if !AsyncOperationStatus.is_terminal_status(polling_state.status)
task = Concurrent::TimerTask.new do
begin
if !polling_state.azure_async_operation_header_link.nil?
update_state_from_azure_async_operation_header(polling_state.get_request(headers: request.headers, base_uri: request.base_uri, user_agent_extended: user_agent_extended), polling_state)
elsif !polling_state.location_header_link.nil?
update_state_from_location_header(polling_state.get_request(headers: request.headers, base_uri: request.base_uri, user_agent_extended: user_agent_extended), polling_state, custom_deserialization_block, final_state_via)
elsif http_method === :put
get_request = MsRest::HttpOperationRequest.new(request.base_uri, request.build_path.to_s, :get, {query_params: request.query_params, headers: request.headers, user_agent_extended: user_agent_extended})
update_state_from_get_resource_operation(get_request, polling_state, custom_deserialization_block)
else
task.shutdown
if final_state_via == FinalStateVia::LOCATION
if !polling_state.response.body.to_s.empty?
body = JSON.load(polling_state.response.body)
polling_state.resource = custom_deserialization_block.call(body)
else
fail AzureOperationError, 'Location header is missing from long running operation'
end
else
fail AzureOperationError, 'Location header is missing from long running operation'
end
end
if AsyncOperationStatus.is_terminal_status(polling_state.status)
task.shutdown
end
rescue Exception => e
task.shutdown
e
end
end
polling_delay = polling_state.get_delay
polling_delay = 0.1 if polling_delay.nil? || polling_delay == 0
task.execution_interval = polling_delay
task.execute
task.wait_for_termination
polling_error = task.value
fail polling_error if polling_error.is_a?(Exception)
end
if AsyncOperationStatus.is_successful_status(polling_state.status)
# Process long-running PUT/PATCH
if (http_method === :put || http_method === :patch) && polling_state.resource.nil?
get_request = MsRest::HttpOperationRequest.new(request.base_uri, request.build_path.to_s, :get, {query_params: request.query_params, headers: request.headers})
update_state_from_get_resource_operation(get_request, polling_state, custom_deserialization_block)
end
if final_state_via == FinalStateVia::LOCATION
if((http_method === :post || http_method === :delete) && !polling_state.location_header_link.nil?)
update_state_from_location_header(polling_state.get_request(headers: request.headers, base_uri: request.base_uri, user_agent_extended: user_agent_extended), polling_state, custom_deserialization_block, final_state_via)
end
end
# Process long-running POST/DELETE operation with schema defined on success status codes
if (http_method === :post || http_method === :delete) && custom_deserialization_block && polling_state.response
unless polling_state.response.body.to_s.empty?
body = JSON.load(polling_state.response.body)
polling_state.resource = custom_deserialization_block.call(body)
end
end
end
if AsyncOperationStatus.is_failed_status(polling_state.status)
fail polling_state.get_operation_error
end
polling_state.get_operation_response
end | ruby | def get_long_running_operation_result(azure_response, custom_deserialization_block, final_state_via = FinalStateVia::DEFAULT)
check_for_status_code_failure(azure_response)
http_method = azure_response.request.method
polling_state = PollingState.new(azure_response, @long_running_operation_retry_timeout)
request = azure_response.request
if !AsyncOperationStatus.is_terminal_status(polling_state.status)
task = Concurrent::TimerTask.new do
begin
if !polling_state.azure_async_operation_header_link.nil?
update_state_from_azure_async_operation_header(polling_state.get_request(headers: request.headers, base_uri: request.base_uri, user_agent_extended: user_agent_extended), polling_state)
elsif !polling_state.location_header_link.nil?
update_state_from_location_header(polling_state.get_request(headers: request.headers, base_uri: request.base_uri, user_agent_extended: user_agent_extended), polling_state, custom_deserialization_block, final_state_via)
elsif http_method === :put
get_request = MsRest::HttpOperationRequest.new(request.base_uri, request.build_path.to_s, :get, {query_params: request.query_params, headers: request.headers, user_agent_extended: user_agent_extended})
update_state_from_get_resource_operation(get_request, polling_state, custom_deserialization_block)
else
task.shutdown
if final_state_via == FinalStateVia::LOCATION
if !polling_state.response.body.to_s.empty?
body = JSON.load(polling_state.response.body)
polling_state.resource = custom_deserialization_block.call(body)
else
fail AzureOperationError, 'Location header is missing from long running operation'
end
else
fail AzureOperationError, 'Location header is missing from long running operation'
end
end
if AsyncOperationStatus.is_terminal_status(polling_state.status)
task.shutdown
end
rescue Exception => e
task.shutdown
e
end
end
polling_delay = polling_state.get_delay
polling_delay = 0.1 if polling_delay.nil? || polling_delay == 0
task.execution_interval = polling_delay
task.execute
task.wait_for_termination
polling_error = task.value
fail polling_error if polling_error.is_a?(Exception)
end
if AsyncOperationStatus.is_successful_status(polling_state.status)
# Process long-running PUT/PATCH
if (http_method === :put || http_method === :patch) && polling_state.resource.nil?
get_request = MsRest::HttpOperationRequest.new(request.base_uri, request.build_path.to_s, :get, {query_params: request.query_params, headers: request.headers})
update_state_from_get_resource_operation(get_request, polling_state, custom_deserialization_block)
end
if final_state_via == FinalStateVia::LOCATION
if((http_method === :post || http_method === :delete) && !polling_state.location_header_link.nil?)
update_state_from_location_header(polling_state.get_request(headers: request.headers, base_uri: request.base_uri, user_agent_extended: user_agent_extended), polling_state, custom_deserialization_block, final_state_via)
end
end
# Process long-running POST/DELETE operation with schema defined on success status codes
if (http_method === :post || http_method === :delete) && custom_deserialization_block && polling_state.response
unless polling_state.response.body.to_s.empty?
body = JSON.load(polling_state.response.body)
polling_state.resource = custom_deserialization_block.call(body)
end
end
end
if AsyncOperationStatus.is_failed_status(polling_state.status)
fail polling_state.get_operation_error
end
polling_state.get_operation_response
end | [
"def",
"get_long_running_operation_result",
"(",
"azure_response",
",",
"custom_deserialization_block",
",",
"final_state_via",
"=",
"FinalStateVia",
"::",
"DEFAULT",
")",
"check_for_status_code_failure",
"(",
"azure_response",
")",
"http_method",
"=",
"azure_response",
".",
... | Retrieves the result of 'POST','DELETE','PUT' or 'PATCH' operation. Performs polling of required.
@param azure_response [MsRestAzure::AzureOperationResponse] response from Azure service.
@param custom_deserialization_block [Proc] custom logic for response deserialization.
@param final_state_via [MsRestAzure::FinalStateVia] Final State via value
@return [MsRest::HttpOperationResponse] the response. | [
"Retrieves",
"the",
"result",
"of",
"POST",
"DELETE",
"PUT",
"or",
"PATCH",
"operation",
".",
"Performs",
"polling",
"of",
"required",
".",
"@param",
"azure_response",
"[",
"MsRestAzure",
"::",
"AzureOperationResponse",
"]",
"response",
"from",
"Azure",
"service",... | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/runtime/ms_rest_azure/lib/ms_rest_azure/azure_service_client.rb#L37-L116 | train | Get long running operation result | [
30522,
13366,
2131,
1035,
2146,
1035,
2770,
1035,
3169,
1035,
2765,
1006,
24296,
1035,
3433,
1010,
7661,
1035,
4078,
11610,
22731,
1035,
3796,
1010,
2345,
1035,
2110,
1035,
3081,
1027,
4399,
12259,
9035,
1024,
1024,
12398,
1007,
4638,
1035,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | data/azure_cognitiveservices_luisruntime/lib/2.0/generated/azure_cognitiveservices_luisruntime/prediction.rb | Azure::CognitiveServices::LuisRuntime::V2_0.Prediction.resolve | def resolve(app_id, query, timezone_offset:nil, verbose:nil, staging:nil, spell_check:nil, bing_spell_check_subscription_key:nil, log:nil, custom_headers:nil)
response = resolve_async(app_id, query, timezone_offset:timezone_offset, verbose:verbose, staging:staging, spell_check:spell_check, bing_spell_check_subscription_key:bing_spell_check_subscription_key, log:log, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def resolve(app_id, query, timezone_offset:nil, verbose:nil, staging:nil, spell_check:nil, bing_spell_check_subscription_key:nil, log:nil, custom_headers:nil)
response = resolve_async(app_id, query, timezone_offset:timezone_offset, verbose:verbose, staging:staging, spell_check:spell_check, bing_spell_check_subscription_key:bing_spell_check_subscription_key, log:log, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"resolve",
"(",
"app_id",
",",
"query",
",",
"timezone_offset",
":",
"nil",
",",
"verbose",
":",
"nil",
",",
"staging",
":",
"nil",
",",
"spell_check",
":",
"nil",
",",
"bing_spell_check_subscription_key",
":",
"nil",
",",
"log",
":",
"nil",
",",
... | Gets predictions for a given utterance, in the form of intents and entities.
The current maximum query size is 500 characters.
@param app_id The LUIS application ID (Guid).
@param query [String] The utterance to predict.
@param timezone_offset [Float] The timezone offset for the location of the
request.
@param verbose [Boolean] If true, return all intents instead of just the top
scoring intent.
@param staging [Boolean] Use the staging endpoint slot.
@param spell_check [Boolean] Enable spell checking.
@param bing_spell_check_subscription_key [String] The subscription key to use
when enabling Bing spell check
@param log [Boolean] Log query (default is true)
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [LuisResult] operation results. | [
"Gets",
"predictions",
"for",
"a",
"given",
"utterance",
"in",
"the",
"form",
"of",
"intents",
"and",
"entities",
".",
"The",
"current",
"maximum",
"query",
"size",
"is",
"500",
"characters",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_luisruntime/lib/2.0/generated/azure_cognitiveservices_luisruntime/prediction.rb#L44-L47 | train | Resolve an App Id Query to a list of documents. | [
30522,
13366,
10663,
1006,
10439,
1035,
8909,
1010,
23032,
1010,
2051,
15975,
1035,
16396,
1024,
9152,
2140,
1010,
12034,
9232,
1024,
9152,
2140,
1010,
15308,
1024,
9152,
2140,
1010,
6297,
1035,
4638,
1024,
9152,
2140,
1010,
17620,
1035,
62... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_web/lib/2015-08-01/generated/azure_mgmt_web/app_service_certificate_orders.rb | Azure::Web::Mgmt::V2015_08_01.AppServiceCertificateOrders.update | def update(resource_group_name, certificate_order_name, certificate_distinguished_name, custom_headers:nil)
response = update_async(resource_group_name, certificate_order_name, certificate_distinguished_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def update(resource_group_name, certificate_order_name, certificate_distinguished_name, custom_headers:nil)
response = update_async(resource_group_name, certificate_order_name, certificate_distinguished_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"update",
"(",
"resource_group_name",
",",
"certificate_order_name",
",",
"certificate_distinguished_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"update_async",
"(",
"resource_group_name",
",",
"certificate_order_name",
",",
"certificate_distingui... | Create or update a certificate purchase order.
Create or update a certificate purchase order.
@param resource_group_name [String] Name of the resource group to which the
resource belongs.
@param certificate_order_name [String] Name of the certificate order.
@param certificate_distinguished_name
[AppServiceCertificateOrderPatchResource] Distinguished name to to use for
the certificate order.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [AppServiceCertificateOrder] operation results. | [
"Create",
"or",
"update",
"a",
"certificate",
"purchase",
"order",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2015-08-01/generated/azure_mgmt_web/app_service_certificate_orders.rb#L570-L573 | train | Updates a certificate order certificate distinguished name. | [
30522,
13366,
10651,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
8196,
1035,
2344,
1035,
2171,
1010,
8196,
1035,
5182,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
10651,
1035,
2004,
6038,
2278,
1006,
7692,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
randym/axlsx | lib/axlsx/workbook/worksheet/worksheet.rb | Axlsx.Worksheet.outline_level_columns | def outline_level_columns(start_index, end_index, level = 1, collapsed = true)
outline column_info, (start_index..end_index), level, collapsed
end | ruby | def outline_level_columns(start_index, end_index, level = 1, collapsed = true)
outline column_info, (start_index..end_index), level, collapsed
end | [
"def",
"outline_level_columns",
"(",
"start_index",
",",
"end_index",
",",
"level",
"=",
"1",
",",
"collapsed",
"=",
"true",
")",
"outline",
"column_info",
",",
"(",
"start_index",
"..",
"end_index",
")",
",",
"level",
",",
"collapsed",
"end"
] | shortcut level to specify the outline level for a series of columns
Oulining is what lets you add collapse and expand to a data set.
@param [Integer] start_index The zero based index of the first column of outlining.
@param [Integer] end_index The zero based index of the last column to be outlined
@param [integer] level The level of outline to apply
@param [Integer] collapsed The initial collapsed state of the outline group | [
"shortcut",
"level",
"to",
"specify",
"the",
"outline",
"level",
"for",
"a",
"series",
"of",
"columns",
"Oulining",
"is",
"what",
"lets",
"you",
"add",
"collapse",
"and",
"expand",
"to",
"a",
"data",
"set",
"."
] | c593a08b2a929dac7aa8dc418b55e26b4c49dc34 | https://github.com/randym/axlsx/blob/c593a08b2a929dac7aa8dc418b55e26b4c49dc34/lib/axlsx/workbook/worksheet/worksheet.rb#L637-L639 | train | Returns the outline column_info for the specified range of columns | [
30522,
13366,
12685,
1035,
2504,
1035,
7753,
1006,
2707,
1035,
5950,
1010,
2203,
1035,
5950,
1010,
2504,
1027,
1015,
1010,
7798,
1027,
2995,
1007,
12685,
5930,
1035,
18558,
1010,
1006,
2707,
1035,
5950,
1012,
1012,
2203,
1035,
5950,
1007,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_marketplace_ordering/lib/2015-06-01/generated/azure_mgmt_marketplace_ordering/marketplace_agreements.rb | Azure::MarketplaceOrdering::Mgmt::V2015_06_01.MarketplaceAgreements.create | def create(publisher_id, offer_id, plan_id, parameters, custom_headers:nil)
response = create_async(publisher_id, offer_id, plan_id, parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def create(publisher_id, offer_id, plan_id, parameters, custom_headers:nil)
response = create_async(publisher_id, offer_id, plan_id, parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"create",
"(",
"publisher_id",
",",
"offer_id",
",",
"plan_id",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_async",
"(",
"publisher_id",
",",
"offer_id",
",",
"plan_id",
",",
"parameters",
",",
"custom_headers",
"... | Save marketplace terms.
@param publisher_id [String] Publisher identifier string of image being
deployed.
@param offer_id [String] Offer identifier string of image being deployed.
@param plan_id [String] Plan identifier string of image being deployed.
@param parameters [AgreementTerms] Parameters supplied to the Create
Marketplace Terms operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [AgreementTerms] operation results. | [
"Save",
"marketplace",
"terms",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_marketplace_ordering/lib/2015-06-01/generated/azure_mgmt_marketplace_ordering/marketplace_agreements.rb#L138-L141 | train | Creates a new elastic search plan. | [
30522,
13366,
3443,
1006,
6674,
1035,
8909,
1010,
3749,
1035,
8909,
1010,
2933,
1035,
8909,
1010,
11709,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
3443,
1035,
2004,
6038,
2278,
1006,
6674,
1035,
8909,
1010,
3749,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
rails/spring | lib/spring/json.rb | Spring.OkJson.encode | def encode(x)
case x
when Hash then objenc(x)
when Array then arrenc(x)
else
raise Error, 'root value must be an Array or a Hash'
end
end | ruby | def encode(x)
case x
when Hash then objenc(x)
when Array then arrenc(x)
else
raise Error, 'root value must be an Array or a Hash'
end
end | [
"def",
"encode",
"(",
"x",
")",
"case",
"x",
"when",
"Hash",
"then",
"objenc",
"(",
"x",
")",
"when",
"Array",
"then",
"arrenc",
"(",
"x",
")",
"else",
"raise",
"Error",
",",
"'root value must be an Array or a Hash'",
"end",
"end"
] | Encodes x into a json text. It may contain only
Array, Hash, String, Numeric, true, false, nil.
(Note, this list excludes Symbol.)
X itself must be an Array or a Hash.
No other value can be encoded, and an error will
be raised if x contains any other value, such as
Nan, Infinity, Symbol, and Proc, or if a Hash key
is not a String.
Strings contained in x must be valid UTF-8. | [
"Encodes",
"x",
"into",
"a",
"json",
"text",
".",
"It",
"may",
"contain",
"only",
"Array",
"Hash",
"String",
"Numeric",
"true",
"false",
"nil",
".",
"(",
"Note",
"this",
"list",
"excludes",
"Symbol",
".",
")",
"X",
"itself",
"must",
"be",
"an",
"Array"... | e7a36afa436fcc59b6945f68dbc08f1076e65585 | https://github.com/rails/spring/blob/e7a36afa436fcc59b6945f68dbc08f1076e65585/lib/spring/json.rb#L87-L94 | train | Encode the given value to the root value. | [
30522,
13366,
4372,
16044,
1006,
1060,
1007,
2553,
1060,
2043,
23325,
2059,
27885,
6460,
12273,
1006,
1060,
1007,
2043,
9140,
2059,
12098,
7389,
2278,
1006,
1060,
1007,
2842,
5333,
7561,
1010,
1005,
7117,
3643,
2442,
2022,
2019,
9140,
2030,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/virtual_machine_extensions.rb | Azure::Compute::Mgmt::V2018_04_01.VirtualMachineExtensions.create_or_update | def create_or_update(resource_group_name, vm_name, vm_extension_name, extension_parameters, custom_headers:nil)
response = create_or_update_async(resource_group_name, vm_name, vm_extension_name, extension_parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def create_or_update(resource_group_name, vm_name, vm_extension_name, extension_parameters, custom_headers:nil)
response = create_or_update_async(resource_group_name, vm_name, vm_extension_name, extension_parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"create_or_update",
"(",
"resource_group_name",
",",
"vm_name",
",",
"vm_extension_name",
",",
"extension_parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_or_update_async",
"(",
"resource_group_name",
",",
"vm_name",
",",
"vm_extensio... | The operation to create or update the extension.
@param resource_group_name [String] The name of the resource group.
@param vm_name [String] The name of the virtual machine where the extension
should be created or updated.
@param vm_extension_name [String] The name of the virtual machine extension.
@param extension_parameters [VirtualMachineExtension] Parameters supplied to
the Create Virtual Machine Extension operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [VirtualMachineExtension] operation results. | [
"The",
"operation",
"to",
"create",
"or",
"update",
"the",
"extension",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/virtual_machine_extensions.rb#L38-L41 | train | Creates or updates an extension. | [
30522,
13366,
3443,
1035,
2030,
1035,
10651,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
1058,
2213,
1035,
2171,
1010,
1058,
2213,
1035,
30524,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
3443,
1035,
2030,
1035,
10651,
1035,
2004,
6038,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/notification_recipient_user.rb | Azure::ApiManagement::Mgmt::V2018_01_01.NotificationRecipientUser.delete_with_http_info | def delete_with_http_info(resource_group_name, service_name, notification_name, uid, custom_headers:nil)
delete_async(resource_group_name, service_name, notification_name, uid, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, service_name, notification_name, uid, custom_headers:nil)
delete_async(resource_group_name, service_name, notification_name, uid, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"notification_name",
",",
"uid",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"notification_name",
",",
"uid",
",",
... | Removes the API Management user from the list of Notification.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param notification_name [NotificationName] Notification Name Identifier.
Possible values include: 'RequestPublisherNotificationMessage',
'PurchasePublisherNotificationMessage', 'NewApplicationNotificationMessage',
'BCC', 'NewIssuePublisherNotificationMessage', 'AccountClosedPublisher',
'QuotaLimitApproachingPublisherNotificationMessage'
@param uid [String] User identifier. Must be unique in the current API
Management service instance.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Removes",
"the",
"API",
"Management",
"user",
"from",
"the",
"list",
"of",
"Notification",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/notification_recipient_user.rb#L422-L424 | train | Deletes the notification from the notification group. | [
30522,
13366,
3972,
12870,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
2326,
1035,
2171,
1010,
26828,
1035,
2171,
1010,
21318,
2094,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3972,
12870,
1035... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.list_deployments_at_subscription_next | def list_deployments_at_subscription_next(next_page_link, custom_headers:nil)
response = list_deployments_at_subscription_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_deployments_at_subscription_next(next_page_link, custom_headers:nil)
response = list_deployments_at_subscription_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_deployments_at_subscription_next",
"(",
"next_page_link",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_deployments_at_subscription_next_async",
"(",
"next_page_link",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".... | Gets all deployments for a remediation at subscription scope.
@param next_page_link [String] The NextLink from the previous successful call
to List operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [RemediationDeploymentsListResult] operation results. | [
"Gets",
"all",
"deployments",
"for",
"a",
"remediation",
"at",
"subscription",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L2533-L2536 | train | Gets the list of deployments at subscription scope. | [
30522,
13366,
2862,
1035,
10813,
2015,
1035,
2012,
1035,
15002,
1035,
2279,
1006,
2279,
1035,
3931,
1035,
4957,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
2862,
1035,
10813,
2015,
1035,
2012,
1035,
15002,
1035,
2279,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb | Azure::ServiceFabric::V6_2_0_9.ServiceFabricClientAPIs.get_all_entities_backed_up_by_policy | def get_all_entities_backed_up_by_policy(backup_policy_name, continuation_token:nil, max_results:0, timeout:60, custom_headers:nil)
response = get_all_entities_backed_up_by_policy_async(backup_policy_name, continuation_token:continuation_token, max_results:max_results, timeout:timeout, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_all_entities_backed_up_by_policy(backup_policy_name, continuation_token:nil, max_results:0, timeout:60, custom_headers:nil)
response = get_all_entities_backed_up_by_policy_async(backup_policy_name, continuation_token:continuation_token, max_results:max_results, timeout:timeout, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_all_entities_backed_up_by_policy",
"(",
"backup_policy_name",
",",
"continuation_token",
":",
"nil",
",",
"max_results",
":",
"0",
",",
"timeout",
":",
"60",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_all_entities_backed_up_by_policy_async... | Gets the list of backup entities that are associated with this policy.
Returns a list of Service Fabric application, service or partition which are
associated with this backup policy.
@param backup_policy_name [String] The name of the backup policy.
@param continuation_token [String] The continuation token parameter is used
to obtain next set of results. A continuation token with a non empty value is
included in the response of the API when the results from the system do not
fit in a single response. When this value is passed to the next API call, the
API returns next set of results. If there are no further results then the
continuation token does not contain a value. The value of this parameter
should not be URL encoded.
@param max_results [Integer] The maximum number of results to be returned as
part of the paged queries. This parameter defines the upper bound on the
number of results returned. The results returned can be less than the
specified maximum results if they do not fit in the message as per the max
message size restrictions defined in the configuration. If this parameter is
zero or not specified, the paged queries includes as many results as possible
that fit in the return message.
@param timeout [Integer] The server timeout for performing the operation in
seconds. This timeout specifies the time duration that the client is willing
to wait for the requested operation to complete. The default value for this
parameter is 60 seconds.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [PagedBackupEntityList] operation results. | [
"Gets",
"the",
"list",
"of",
"backup",
"entities",
"that",
"are",
"associated",
"with",
"this",
"policy",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L22699-L22702 | train | Gets all entities backed up by backup policy. | [
30522,
13366,
2131,
1035,
2035,
1035,
11422,
1035,
6153,
1035,
2039,
1035,
2011,
1035,
3343,
1006,
10200,
1035,
3343,
1035,
2171,
1010,
13633,
1035,
19204,
1024,
9152,
2140,
1010,
4098,
1035,
3463,
1024,
1014,
1010,
2051,
5833,
1024,
3438,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/agent_registration_information.rb | Azure::Automation::Mgmt::V2015_10_31.AgentRegistrationInformation.regenerate_key_with_http_info | def regenerate_key_with_http_info(resource_group_name, automation_account_name, parameters, custom_headers:nil)
regenerate_key_async(resource_group_name, automation_account_name, parameters, custom_headers:custom_headers).value!
end | ruby | def regenerate_key_with_http_info(resource_group_name, automation_account_name, parameters, custom_headers:nil)
regenerate_key_async(resource_group_name, automation_account_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"regenerate_key_with_http_info",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"regenerate_key_async",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"parameters",
",",
"custom... | Regenerate a primary or secondary agent registration key
@param resource_group_name [String] Name of an Azure Resource group.
@param automation_account_name [String] The name of the automation account.
@param parameters [AgentRegistrationRegenerateKeyParameter] The name of the
agent registration key to be regenerated
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Regenerate",
"a",
"primary",
"or",
"secondary",
"agent",
"registration",
"key"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/agent_registration_information.rb#L148-L150 | train | Regenerate the key for the specified automation account. | [
30522,
13366,
19723,
24454,
3686,
1035,
3145,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
19309,
1035,
4070,
1035,
2171,
1010,
11709,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
19723,
24454,
36... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_compute/lib/2019-03-01/generated/azure_mgmt_compute/galleries.rb | Azure::Compute::Mgmt::V2019_03_01.Galleries.create_or_update | def create_or_update(resource_group_name, gallery_name, gallery, custom_headers:nil)
response = create_or_update_async(resource_group_name, gallery_name, gallery, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def create_or_update(resource_group_name, gallery_name, gallery, custom_headers:nil)
response = create_or_update_async(resource_group_name, gallery_name, gallery, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"create_or_update",
"(",
"resource_group_name",
",",
"gallery_name",
",",
"gallery",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_or_update_async",
"(",
"resource_group_name",
",",
"gallery_name",
",",
"gallery",
",",
"custom_headers",
":cus... | Create or update a Shared Image Gallery.
@param resource_group_name [String] The name of the resource group.
@param gallery_name [String] The name of the Shared Image Gallery. The
allowed characters are alphabets and numbers with dots and periods allowed in
the middle. The maximum length is 80 characters.
@param gallery [Gallery] Parameters supplied to the create or update Shared
Image Gallery operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Gallery] operation results. | [
"Create",
"or",
"update",
"a",
"Shared",
"Image",
"Gallery",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2019-03-01/generated/azure_mgmt_compute/galleries.rb#L38-L41 | train | Creates or updates a gallery. | [
30522,
13366,
3443,
1035,
2030,
1035,
10651,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
3916,
1035,
2171,
1010,
3916,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
3443,
1035,
2030,
1035,
10651,
1035,
2004,
6038,
2278,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
rails/rails | actionpack/lib/action_controller/metal/conditional_get.rb | ActionController.ConditionalGet.http_cache_forever | def http_cache_forever(public: false)
expires_in 100.years, public: public
yield if stale?(etag: request.fullpath,
last_modified: Time.new(2011, 1, 1).utc,
public: public)
end | ruby | def http_cache_forever(public: false)
expires_in 100.years, public: public
yield if stale?(etag: request.fullpath,
last_modified: Time.new(2011, 1, 1).utc,
public: public)
end | [
"def",
"http_cache_forever",
"(",
"public",
":",
"false",
")",
"expires_in",
"100",
".",
"years",
",",
"public",
":",
"public",
"yield",
"if",
"stale?",
"(",
"etag",
":",
"request",
".",
"fullpath",
",",
"last_modified",
":",
"Time",
".",
"new",
"(",
"20... | Cache or yield the block. The cache is supposed to never expire.
You can use this method when you have an HTTP response that never changes,
and the browser and proxies should cache it indefinitely.
* +public+: By default, HTTP responses are private, cached only on the
user's web browser. To allow proxies to cache the response, set +true+ to
indicate that they can serve the cached response to all users. | [
"Cache",
"or",
"yield",
"the",
"block",
".",
"The",
"cache",
"is",
"supposed",
"to",
"never",
"expire",
"."
] | 85a8bc644be69908f05740a5886ec19cd3679df5 | https://github.com/rails/rails/blob/85a8bc644be69908f05740a5886ec19cd3679df5/actionpack/lib/action_controller/metal/conditional_get.rb#L267-L273 | train | Returns a block that yields if the request is stale. | [
30522,
13366,
8299,
1035,
17053,
1035,
5091,
1006,
2270,
1024,
6270,
1007,
4654,
20781,
2015,
1035,
1999,
2531,
1012,
2086,
1010,
2270,
1024,
2270,
10750,
2065,
26729,
1029,
1006,
27859,
2290,
1024,
5227,
1012,
2440,
15069,
1010,
2197,
1035... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
haml/haml | lib/haml/engine.rb | Haml.Engine.render_proc | def render_proc(scope = Object.new, *local_names)
if scope.is_a?(Binding)
scope_object = eval("self", scope)
else
scope_object = scope
scope = scope_object.instance_eval{binding}
end
begin
str = @temple_engine.precompiled_with_ambles(local_names)
eval(
"Proc.new { |*_haml_locals| _haml_locals = _haml_locals[0] || {}; #{str}}\n",
scope,
@options.filename,
@options.line
)
rescue ::SyntaxError => e
raise SyntaxError, e.message
end
end | ruby | def render_proc(scope = Object.new, *local_names)
if scope.is_a?(Binding)
scope_object = eval("self", scope)
else
scope_object = scope
scope = scope_object.instance_eval{binding}
end
begin
str = @temple_engine.precompiled_with_ambles(local_names)
eval(
"Proc.new { |*_haml_locals| _haml_locals = _haml_locals[0] || {}; #{str}}\n",
scope,
@options.filename,
@options.line
)
rescue ::SyntaxError => e
raise SyntaxError, e.message
end
end | [
"def",
"render_proc",
"(",
"scope",
"=",
"Object",
".",
"new",
",",
"*",
"local_names",
")",
"if",
"scope",
".",
"is_a?",
"(",
"Binding",
")",
"scope_object",
"=",
"eval",
"(",
"\"self\"",
",",
"scope",
")",
"else",
"scope_object",
"=",
"scope",
"scope",... | Returns a proc that, when called,
renders the template and returns the result as a string.
`scope` works the same as it does for render.
The first argument of the returned proc is a hash of local variable names to values.
However, due to an unfortunate Ruby quirk,
the local variables which can be assigned must be pre-declared.
This is done with the `local_names` argument.
For example:
# This works
Haml::Engine.new("%p= foo").render_proc(Object.new, :foo).call :foo => "Hello!"
#=> "<p>Hello!</p>"
# This doesn't
Haml::Engine.new("%p= foo").render_proc.call :foo => "Hello!"
#=> NameError: undefined local variable or method `foo'
The proc doesn't take a block; any yields in the template will fail.
@param scope [Binding, Object] The context in which the template is evaluated
@param local_names [Array<Symbol>] The names of the locals that can be passed to the proc
@return [Proc] The proc that will run the template | [
"Returns",
"a",
"proc",
"that",
"when",
"called",
"renders",
"the",
"template",
"and",
"returns",
"the",
"result",
"as",
"a",
"string",
"."
] | 9aa0fbe4a91b999978927be569d2ad0cd39076f1 | https://github.com/haml/haml/blob/9aa0fbe4a91b999978927be569d2ad0cd39076f1/lib/haml/engine.rb#L163-L182 | train | Returns a Proc object for rendering the template. | [
30522,
13366,
17552,
1035,
4013,
2278,
1006,
9531,
1027,
4874,
1012,
2047,
1010,
1008,
2334,
1035,
3415,
1007,
2065,
9531,
1012,
2003,
1035,
1037,
1029,
1006,
8031,
1007,
9531,
1035,
4874,
1027,
9345,
2140,
1006,
1000,
2969,
1000,
1010,
9... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
randym/axlsx | lib/axlsx/workbook/worksheet/cell.rb | Axlsx.Cell.cell_type_from_value | def cell_type_from_value(v)
if v.is_a?(Date)
:date
elsif v.is_a?(Time)
:time
elsif v.is_a?(TrueClass) || v.is_a?(FalseClass)
:boolean
elsif v.to_s =~ Axlsx::NUMERIC_REGEX
:integer
elsif v.to_s =~ Axlsx::FLOAT_REGEX
:float
elsif v.to_s =~ Axlsx::ISO_8601_REGEX
:iso_8601
elsif v.is_a? RichText
:richtext
else
:string
end
end | ruby | def cell_type_from_value(v)
if v.is_a?(Date)
:date
elsif v.is_a?(Time)
:time
elsif v.is_a?(TrueClass) || v.is_a?(FalseClass)
:boolean
elsif v.to_s =~ Axlsx::NUMERIC_REGEX
:integer
elsif v.to_s =~ Axlsx::FLOAT_REGEX
:float
elsif v.to_s =~ Axlsx::ISO_8601_REGEX
:iso_8601
elsif v.is_a? RichText
:richtext
else
:string
end
end | [
"def",
"cell_type_from_value",
"(",
"v",
")",
"if",
"v",
".",
"is_a?",
"(",
"Date",
")",
":date",
"elsif",
"v",
".",
"is_a?",
"(",
"Time",
")",
":time",
"elsif",
"v",
".",
"is_a?",
"(",
"TrueClass",
")",
"||",
"v",
".",
"is_a?",
"(",
"FalseClass",
... | Determines the cell type based on the cell value.
@note This is only used when a cell is created but no :type option is specified, the following rules apply:
1. If the value is an instance of Date, the type is set to :date
2. If the value is an instance of Time, the type is set to :time
3. If the value is an instance of TrueClass or FalseClass, the type is set to :boolean
4. :float and :integer types are determined by regular expression matching.
5. Anything that does not meet either of the above is determined to be :string.
@return [Symbol] The determined type | [
"Determines",
"the",
"cell",
"type",
"based",
"on",
"the",
"cell",
"value",
"."
] | c593a08b2a929dac7aa8dc418b55e26b4c49dc34 | https://github.com/randym/axlsx/blob/c593a08b2a929dac7aa8dc418b55e26b4c49dc34/lib/axlsx/workbook/worksheet/cell.rb#L426-L444 | train | Returns cell type from cell value | [
30522,
13366,
3526,
1035,
2828,
1035,
2013,
1035,
3643,
1006,
1058,
1007,
2065,
1058,
1012,
2003,
1035,
1037,
1029,
1006,
3058,
1007,
1024,
3058,
3449,
5332,
2546,
1058,
1012,
2003,
1035,
1037,
1029,
1006,
2051,
1007,
1024,
2051,
3449,
53... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_event_grid/lib/2019-02-01-preview/generated/azure_mgmt_event_grid/topics.rb | Azure::EventGrid::Mgmt::V2019_02_01_preview.Topics.regenerate_key_with_http_info | def regenerate_key_with_http_info(resource_group_name, topic_name, regenerate_key_request, custom_headers:nil)
regenerate_key_async(resource_group_name, topic_name, regenerate_key_request, custom_headers:custom_headers).value!
end | ruby | def regenerate_key_with_http_info(resource_group_name, topic_name, regenerate_key_request, custom_headers:nil)
regenerate_key_async(resource_group_name, topic_name, regenerate_key_request, custom_headers:custom_headers).value!
end | [
"def",
"regenerate_key_with_http_info",
"(",
"resource_group_name",
",",
"topic_name",
",",
"regenerate_key_request",
",",
"custom_headers",
":",
"nil",
")",
"regenerate_key_async",
"(",
"resource_group_name",
",",
"topic_name",
",",
"regenerate_key_request",
",",
"custom_h... | Regenerate key for a topic
Regenerate a shared access key for a topic
@param resource_group_name [String] The name of the resource group within the
user's subscription.
@param topic_name [String] Name of the topic
@param regenerate_key_request [TopicRegenerateKeyRequest] Request body to
regenerate key
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Regenerate",
"key",
"for",
"a",
"topic"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_event_grid/lib/2019-02-01-preview/generated/azure_mgmt_event_grid/topics.rb#L600-L602 | train | Regenerate the key for the specified topic. | [
30522,
13366,
19723,
24454,
3686,
1035,
3145,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
8476,
1035,
2171,
1010,
19723,
24454,
3686,
1035,
3145,
1035,
5227,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2016-10-10/generated/azure_mgmt_api_management/product_apis.rb | Azure::ApiManagement::Mgmt::V2016_10_10.ProductApis.list_by_products_with_http_info | def list_by_products_with_http_info(resource_group_name, service_name, product_id, filter:nil, top:nil, skip:nil, custom_headers:nil)
list_by_products_async(resource_group_name, service_name, product_id, filter:filter, top:top, skip:skip, custom_headers:custom_headers).value!
end | ruby | def list_by_products_with_http_info(resource_group_name, service_name, product_id, filter:nil, top:nil, skip:nil, custom_headers:nil)
list_by_products_async(resource_group_name, service_name, product_id, filter:filter, top:top, skip:skip, custom_headers:custom_headers).value!
end | [
"def",
"list_by_products_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"product_id",
",",
"filter",
":",
"nil",
",",
"top",
":",
"nil",
",",
"skip",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"list_by_products_async",
"(",
"reso... | Lists a collection of the APIs associated with a product.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param product_id [String] Product identifier. Must be unique in the current
API Management service instance.
@param filter [String] | Field | Supported operators | Supported
functions |
|-------------|------------------------|---------------------------------------------|
| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith,
endswith |
| name | ge, le, eq, ne, gt, lt | substringof, contains, startswith,
endswith |
| description | ge, le, eq, ne, gt, lt | substringof, contains, startswith,
endswith |
| serviceUrl | ge, le, eq, ne, gt, lt | substringof, contains, startswith,
endswith |
| path | ge, le, eq, ne, gt, lt | substringof, contains, startswith,
endswith |
@param top [Integer] Number of records to return.
@param skip [Integer] Number of records to skip.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Lists",
"a",
"collection",
"of",
"the",
"APIs",
"associated",
"with",
"a",
"product",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2016-10-10/generated/azure_mgmt_api_management/product_apis.rb#L85-L87 | train | Gets the list of product vectors. | [
30522,
13366,
2862,
1035,
2011,
1035,
3688,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
2326,
1035,
2171,
1010,
4031,
1035,
8909,
1010,
11307,
1024,
9152,
2140,
1010,
2327,
1024,
9152,
2140,
1010,
13558,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
plum-umd/rdl | lib/rdl/typecheck.rb | RDL::Typecheck.Env.merge | def merge(other)
result = Env.new
result.env = @env.merge(other.env)
return result
end | ruby | def merge(other)
result = Env.new
result.env = @env.merge(other.env)
return result
end | [
"def",
"merge",
"(",
"other",
")",
"result",
"=",
"Env",
".",
"new",
"result",
".",
"env",
"=",
"@env",
".",
"merge",
"(",
"other",
".",
"env",
")",
"return",
"result",
"end"
] | merges bindings in self with bindings in other, preferring bindings in other if there is a common key | [
"merges",
"bindings",
"in",
"self",
"with",
"bindings",
"in",
"other",
"preferring",
"bindings",
"in",
"other",
"if",
"there",
"is",
"a",
"common",
"key"
] | c00134413f7a600fd395e7e7cd8b01f57f850830 | https://github.com/plum-umd/rdl/blob/c00134413f7a600fd395e7e7cd8b01f57f850830/lib/rdl/typecheck.rb#L97-L101 | train | Merge two Env objects together. | [
30522,
13366,
13590,
1006,
2060,
1007,
2765,
1027,
4372,
2615,
1012,
2047,
2765,
1012,
4372,
2615,
1027,
1030,
4372,
2615,
1012,
13590,
1006,
2060,
1012,
4372,
2615,
1007,
2709,
2765,
2203,
102,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_compute/lib/2016-04-30-preview/generated/azure_mgmt_compute/virtual_machines.rb | Azure::Compute::Mgmt::V2016_04_30_preview.VirtualMachines.begin_capture | def begin_capture(resource_group_name, vm_name, parameters, custom_headers:nil)
response = begin_capture_async(resource_group_name, vm_name, parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def begin_capture(resource_group_name, vm_name, parameters, custom_headers:nil)
response = begin_capture_async(resource_group_name, vm_name, parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"begin_capture",
"(",
"resource_group_name",
",",
"vm_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_capture_async",
"(",
"resource_group_name",
",",
"vm_name",
",",
"parameters",
",",
"custom_headers",
":custom_header... | Captures the VM by copying virtual hard disks of the VM and outputs a
template that can be used to create similar VMs.
@param resource_group_name [String] The name of the resource group.
@param vm_name [String] The name of the virtual machine.
@param parameters [VirtualMachineCaptureParameters] Parameters supplied to
the Capture Virtual Machine operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [VirtualMachineCaptureResult] operation results. | [
"Captures",
"the",
"VM",
"by",
"copying",
"virtual",
"hard",
"disks",
"of",
"the",
"VM",
"and",
"outputs",
"a",
"template",
"that",
"can",
"be",
"used",
"to",
"create",
"similar",
"VMs",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2016-04-30-preview/generated/azure_mgmt_compute/virtual_machines.rb#L992-L995 | train | Capture virtual machine. | [
30522,
13366,
4088,
1035,
5425,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
1058,
2213,
1035,
2171,
1010,
11709,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
4088,
1035,
5425,
1035,
2004,
6038,
2278,
1006,
7692,
1035,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
JsonApiClient/json_api_client | lib/json_api_client/connection.rb | JsonApiClient.Connection.use | def use(middleware, *args, &block)
return if faraday.builder.locked?
faraday.builder.insert_before(Middleware::ParseJson, middleware, *args, &block)
end | ruby | def use(middleware, *args, &block)
return if faraday.builder.locked?
faraday.builder.insert_before(Middleware::ParseJson, middleware, *args, &block)
end | [
"def",
"use",
"(",
"middleware",
",",
"*",
"args",
",",
"&",
"block",
")",
"return",
"if",
"faraday",
".",
"builder",
".",
"locked?",
"faraday",
".",
"builder",
".",
"insert_before",
"(",
"Middleware",
"::",
"ParseJson",
",",
"middleware",
",",
"args",
"... | insert middleware before ParseJson - middleware executed in reverse order -
inserted middleware will run after json parsed | [
"insert",
"middleware",
"before",
"ParseJson",
"-",
"middleware",
"executed",
"in",
"reverse",
"order",
"-",
"inserted",
"middleware",
"will",
"run",
"after",
"json",
"parsed"
] | e4b763f5579c4fae4b03dcc935b20627f5c14eaa | https://github.com/JsonApiClient/json_api_client/blob/e4b763f5579c4fae4b03dcc935b20627f5c14eaa/lib/json_api_client/connection.rb#L24-L27 | train | Use middleware to be used in the middleware chain | [
30522,
13366,
2224,
1006,
2690,
8059,
1010,
1008,
12098,
5620,
1010,
1004,
3796,
1007,
2709,
2065,
2521,
28039,
1012,
12508,
1012,
5299,
1029,
2521,
28039,
1012,
12508,
1012,
19274,
1035,
2077,
1006,
2690,
8059,
1024,
1024,
11968,
3366,
225... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_filters.rb | Azure::Network::Mgmt::V2018_07_01.RouteFilters.update | def update(resource_group_name, route_filter_name, route_filter_parameters, custom_headers:nil)
response = update_async(resource_group_name, route_filter_name, route_filter_parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def update(resource_group_name, route_filter_name, route_filter_parameters, custom_headers:nil)
response = update_async(resource_group_name, route_filter_name, route_filter_parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"update",
"(",
"resource_group_name",
",",
"route_filter_name",
",",
"route_filter_parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"update_async",
"(",
"resource_group_name",
",",
"route_filter_name",
",",
"route_filter_parameters",
",",
"cu... | Updates a route filter in a specified resource group.
@param resource_group_name [String] The name of the resource group.
@param route_filter_name [String] The name of the route filter.
@param route_filter_parameters [PatchRouteFilter] Parameters supplied to the
update route filter operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [RouteFilter] operation results. | [
"Updates",
"a",
"route",
"filter",
"in",
"a",
"specified",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_filters.rb#L218-L221 | train | Updates a route filter. | [
30522,
13366,
10651,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
2799,
1035,
11307,
1035,
2171,
1010,
2799,
1035,
11307,
1035,
11709,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
10651,
1035,
2004,
6038,
2278,
1006,
7692... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
randym/axlsx | lib/axlsx/drawing/scatter_series.rb | Axlsx.ScatterSeries.to_xml_string | def to_xml_string(str = '')
super(str) do
# needs to override the super color here to push in ln/and something else!
if color
str << '<c:spPr><a:solidFill>'
str << ('<a:srgbClr val="' << color << '"/>')
str << '</a:solidFill>'
str << '<a:ln><a:solidFill>'
str << ('<a:srgbClr val="' << color << '"/></a:solidFill></a:ln>')
str << '</c:spPr>'
str << '<c:marker>'
str << '<c:spPr><a:solidFill>'
str << ('<a:srgbClr val="' << color << '"/>')
str << '</a:solidFill>'
str << '<a:ln><a:solidFill>'
str << ('<a:srgbClr val="' << color << '"/></a:solidFill></a:ln>')
str << '</c:spPr>'
str << '</c:marker>'
end
if ln_width
str << '<c:spPr>'
str << '<a:ln w="' << ln_width.to_s << '"/>'
str << '</c:spPr>'
end
@xData.to_xml_string(str) unless @xData.nil?
@yData.to_xml_string(str) unless @yData.nil?
str << ('<c:smooth val="' << ((smooth) ? '1' : '0') << '"/>')
end
str
end | ruby | def to_xml_string(str = '')
super(str) do
# needs to override the super color here to push in ln/and something else!
if color
str << '<c:spPr><a:solidFill>'
str << ('<a:srgbClr val="' << color << '"/>')
str << '</a:solidFill>'
str << '<a:ln><a:solidFill>'
str << ('<a:srgbClr val="' << color << '"/></a:solidFill></a:ln>')
str << '</c:spPr>'
str << '<c:marker>'
str << '<c:spPr><a:solidFill>'
str << ('<a:srgbClr val="' << color << '"/>')
str << '</a:solidFill>'
str << '<a:ln><a:solidFill>'
str << ('<a:srgbClr val="' << color << '"/></a:solidFill></a:ln>')
str << '</c:spPr>'
str << '</c:marker>'
end
if ln_width
str << '<c:spPr>'
str << '<a:ln w="' << ln_width.to_s << '"/>'
str << '</c:spPr>'
end
@xData.to_xml_string(str) unless @xData.nil?
@yData.to_xml_string(str) unless @yData.nil?
str << ('<c:smooth val="' << ((smooth) ? '1' : '0') << '"/>')
end
str
end | [
"def",
"to_xml_string",
"(",
"str",
"=",
"''",
")",
"super",
"(",
"str",
")",
"do",
"# needs to override the super color here to push in ln/and something else!",
"if",
"color",
"str",
"<<",
"'<c:spPr><a:solidFill>'",
"str",
"<<",
"(",
"'<a:srgbClr val=\"'",
"<<",
"color... | Serializes the object
@param [String] str
@return [String] | [
"Serializes",
"the",
"object"
] | c593a08b2a929dac7aa8dc418b55e26b4c49dc34 | https://github.com/randym/axlsx/blob/c593a08b2a929dac7aa8dc418b55e26b4c49dc34/lib/axlsx/drawing/scatter_series.rb#L67-L96 | train | Returns the XML string for this object. | [
30522,
13366,
2000,
1035,
20950,
1035,
5164,
1006,
2358,
2099,
1027,
1005,
1005,
1007,
3565,
1006,
2358,
2099,
1007,
2079,
1001,
3791,
2000,
2058,
15637,
1996,
3565,
3609,
2182,
2000,
5245,
1999,
1048,
2078,
1013,
1998,
2242,
2842,
999,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/diagnostics.rb | Azure::Web::Mgmt::V2018_02_01.Diagnostics.get_site_diagnostic_category_slot | def get_site_diagnostic_category_slot(resource_group_name, site_name, diagnostic_category, slot, custom_headers:nil)
response = get_site_diagnostic_category_slot_async(resource_group_name, site_name, diagnostic_category, slot, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_site_diagnostic_category_slot(resource_group_name, site_name, diagnostic_category, slot, custom_headers:nil)
response = get_site_diagnostic_category_slot_async(resource_group_name, site_name, diagnostic_category, slot, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_site_diagnostic_category_slot",
"(",
"resource_group_name",
",",
"site_name",
",",
"diagnostic_category",
",",
"slot",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_site_diagnostic_category_slot_async",
"(",
"resource_group_name",
",",
"site_name... | Get Diagnostics Category
Get Diagnostics Category
@param resource_group_name [String] Name of the resource group to which the
resource belongs.
@param site_name [String] Site Name
@param diagnostic_category [String] Diagnostic Category
@param slot [String] Slot Name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [DiagnosticCategory] operation results. | [
"Get",
"Diagnostics",
"Category"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/diagnostics.rb#L1717-L1720 | train | Gets the diagnostic category for a site. | [
30522,
13366,
2131,
1035,
2609,
1035,
16474,
1035,
4696,
1035,
10453,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
2609,
1035,
2171,
1010,
16474,
1035,
4696,
1010,
10453,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
2131,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_machine_learning/lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb | Azure::MachineLearning::Mgmt::V2017_01_01.WebServices.begin_create_regional_properties_with_http_info | def begin_create_regional_properties_with_http_info(resource_group_name, web_service_name, region, custom_headers:nil)
begin_create_regional_properties_async(resource_group_name, web_service_name, region, custom_headers:custom_headers).value!
end | ruby | def begin_create_regional_properties_with_http_info(resource_group_name, web_service_name, region, custom_headers:nil)
begin_create_regional_properties_async(resource_group_name, web_service_name, region, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_regional_properties_with_http_info",
"(",
"resource_group_name",
",",
"web_service_name",
",",
"region",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_regional_properties_async",
"(",
"resource_group_name",
",",
"web_service_name",
",",
"region",
... | Creates an encrypted credentials parameter blob for the specified region. To
get the web service from a region other than the region in which it has been
created, you must first call Create Regional Web Services Properties to
create a copy of the encrypted credential parameter blob in that region. You
only need to do this before the first time that you get the web service in
the new region.
@param resource_group_name [String] Name of the resource group in which the
web service is located.
@param web_service_name [String] The name of the web service.
@param region [String] The region for which encrypted credential parameters
are created.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"an",
"encrypted",
"credentials",
"parameter",
"blob",
"for",
"the",
"specified",
"region",
".",
"To",
"get",
"the",
"web",
"service",
"from",
"a",
"region",
"other",
"than",
"the",
"region",
"in",
"which",
"it",
"has",
"been",
"created",
"you",
... | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_machine_learning/lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb#L977-L979 | train | Creates a regional properties for the specified web service. | [
30522,
13366,
4088,
1035,
3443,
1035,
3164,
1035,
5144,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
4773,
1035,
2326,
1035,
2171,
1010,
2555,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
4088,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_search/lib/2015-08-19/generated/azure_mgmt_search/query_keys.rb | Azure::Search::Mgmt::V2015_08_19.QueryKeys.list_by_search_service | def list_by_search_service(resource_group_name, search_service_name, search_management_request_options:nil, custom_headers:nil)
response = list_by_search_service_async(resource_group_name, search_service_name, search_management_request_options:search_management_request_options, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_by_search_service(resource_group_name, search_service_name, search_management_request_options:nil, custom_headers:nil)
response = list_by_search_service_async(resource_group_name, search_service_name, search_management_request_options:search_management_request_options, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_by_search_service",
"(",
"resource_group_name",
",",
"search_service_name",
",",
"search_management_request_options",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_search_service_async",
"(",
"resource_group_name",
",",
"search_s... | Returns the list of query API keys for the given Azure Search service.
@param resource_group_name [String] The name of the resource group within the
current subscription. You can obtain this value from the Azure Resource
Manager API or the portal.
@param search_service_name [String] The name of the Azure Search service
associated with the specified resource group.
@param search_management_request_options [SearchManagementRequestOptions]
Additional parameters for the operation
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ListQueryKeysResult] operation results. | [
"Returns",
"the",
"list",
"of",
"query",
"API",
"keys",
"for",
"the",
"given",
"Azure",
"Search",
"service",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_search/lib/2015-08-19/generated/azure_mgmt_search/query_keys.rb#L158-L161 | train | Gets the list of all the available advisors. | [
30522,
13366,
2862,
1035,
2011,
1035,
3945,
1035,
2326,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
3945,
1035,
2326,
1035,
2171,
1010,
3945,
1035,
2968,
1035,
5227,
1035,
7047,
1024,
9152,
2140,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
fastlane/fastlane | sigh/lib/sigh/download_all.rb | Sigh.DownloadAll.download_all | def download_all(download_xcode_profiles: false)
UI.message("Starting login with user '#{Sigh.config[:username]}'")
Spaceship.login(Sigh.config[:username], nil)
Spaceship.select_team
UI.message("Successfully logged in")
Spaceship.provisioning_profile.all(xcode: download_xcode_profiles).each do |profile|
if profile.valid?
UI.message("Downloading profile '#{profile.name}'...")
download_profile(profile)
else
UI.important("Skipping invalid/expired profile '#{profile.name}'")
end
end
if download_xcode_profiles
UI.message("This run also included all Xcode managed provisioning profiles, as you used the `--download_xcode_profiles` flag")
else
UI.message("All Xcode managed provisioning profiles were ignored on this, to include them use the `--download_xcode_profiles` flag")
end
end | ruby | def download_all(download_xcode_profiles: false)
UI.message("Starting login with user '#{Sigh.config[:username]}'")
Spaceship.login(Sigh.config[:username], nil)
Spaceship.select_team
UI.message("Successfully logged in")
Spaceship.provisioning_profile.all(xcode: download_xcode_profiles).each do |profile|
if profile.valid?
UI.message("Downloading profile '#{profile.name}'...")
download_profile(profile)
else
UI.important("Skipping invalid/expired profile '#{profile.name}'")
end
end
if download_xcode_profiles
UI.message("This run also included all Xcode managed provisioning profiles, as you used the `--download_xcode_profiles` flag")
else
UI.message("All Xcode managed provisioning profiles were ignored on this, to include them use the `--download_xcode_profiles` flag")
end
end | [
"def",
"download_all",
"(",
"download_xcode_profiles",
":",
"false",
")",
"UI",
".",
"message",
"(",
"\"Starting login with user '#{Sigh.config[:username]}'\"",
")",
"Spaceship",
".",
"login",
"(",
"Sigh",
".",
"config",
"[",
":username",
"]",
",",
"nil",
")",
"Sp... | Download all valid provisioning profiles | [
"Download",
"all",
"valid",
"provisioning",
"profiles"
] | 457c5d647c77f0e078dafa5129da616914e002c5 | https://github.com/fastlane/fastlane/blob/457c5d647c77f0e078dafa5129da616914e002c5/sigh/lib/sigh/download_all.rb#L9-L29 | train | Downloads all Xcode managed provisioning profiles | [
30522,
13366,
8816,
1035,
2035,
1006,
8816,
1035,
1060,
16044,
1035,
17879,
1024,
6270,
1007,
21318,
1012,
4471,
1006,
1000,
3225,
8833,
2378,
2007,
5310,
1005,
1001,
1063,
6682,
1012,
9530,
8873,
2290,
1031,
1024,
5310,
18442,
1033,
1065,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
rails/sprockets | lib/sprockets/uri_utils.rb | Sprockets.URIUtils.join_uri | def join_uri(scheme, userinfo, host, port, registry, path, opaque, query, fragment)
URI::Generic.new(scheme, userinfo, host, port, registry, path, opaque, query, fragment).to_s
end | ruby | def join_uri(scheme, userinfo, host, port, registry, path, opaque, query, fragment)
URI::Generic.new(scheme, userinfo, host, port, registry, path, opaque, query, fragment).to_s
end | [
"def",
"join_uri",
"(",
"scheme",
",",
"userinfo",
",",
"host",
",",
"port",
",",
"registry",
",",
"path",
",",
"opaque",
",",
"query",
",",
"fragment",
")",
"URI",
"::",
"Generic",
".",
"new",
"(",
"scheme",
",",
"userinfo",
",",
"host",
",",
"port"... | Internal: Join URI component parts into String.
Returns String. | [
"Internal",
":",
"Join",
"URI",
"component",
"parts",
"into",
"String",
"."
] | 9e3f0d8e98c44f57e67bc138db87bb8469bf5ddd | https://github.com/rails/sprockets/blob/9e3f0d8e98c44f57e67bc138db87bb8469bf5ddd/lib/sprockets/uri_utils.rb#L36-L38 | train | Returns a new URI object with the given parameters joined with the given parameters. | [
30522,
13366,
3693,
1035,
24471,
2072,
1006,
5679,
1010,
5310,
2378,
14876,
1010,
3677,
1010,
3417,
1010,
15584,
1010,
4130,
1010,
28670,
1010,
23032,
1010,
15778,
1007,
24471,
2072,
1024,
1024,
12391,
1012,
2047,
1006,
5679,
1010,
5310,
23... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
thoughtbot/high_voltage | lib/high_voltage/page_finder.rb | HighVoltage.PageFinder.find | def find
path = clean_content_pathname.join(page_id.tr("\\", "/")).cleanpath.to_s
if !path.start_with?("#{clean_content_pathname}/")
raise InvalidPageIdError.new "Invalid page id: #{page_id}"
end
path
rescue ArgumentError
raise InvalidPageIdError.new "Invalid page id: #{page_id}"
end | ruby | def find
path = clean_content_pathname.join(page_id.tr("\\", "/")).cleanpath.to_s
if !path.start_with?("#{clean_content_pathname}/")
raise InvalidPageIdError.new "Invalid page id: #{page_id}"
end
path
rescue ArgumentError
raise InvalidPageIdError.new "Invalid page id: #{page_id}"
end | [
"def",
"find",
"path",
"=",
"clean_content_pathname",
".",
"join",
"(",
"page_id",
".",
"tr",
"(",
"\"\\\\\"",
",",
"\"/\"",
")",
")",
".",
"cleanpath",
".",
"to_s",
"if",
"!",
"path",
".",
"start_with?",
"(",
"\"#{clean_content_pathname}/\"",
")",
"raise",
... | Produce a template path to the page, in a format understood by
`render :template => find` | [
"Produce",
"a",
"template",
"path",
"to",
"the",
"page",
"in",
"a",
"format",
"understood",
"by",
"render",
":",
"template",
"=",
">",
"find"
] | c103df84316297f3cdb6a064ad7ebb47a4b3b35a | https://github.com/thoughtbot/high_voltage/blob/c103df84316297f3cdb6a064ad7ebb47a4b3b35a/lib/high_voltage/page_finder.rb#L11-L19 | train | Find the correct index for the given page id. | [
30522,
13366,
2424,
4130,
1027,
4550,
1035,
4180,
1035,
4130,
18442,
1012,
3693,
1006,
3931,
1035,
8909,
1012,
19817,
1006,
1000,
1032,
1032,
1000,
1010,
1000,
1013,
1000,
1007,
1007,
1012,
4550,
15069,
1012,
2000,
1035,
1055,
2065,
999,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_consumption/lib/2018-03-31/generated/azure_mgmt_consumption/get_balances_by_billing_account.rb | Azure::Consumption::Mgmt::V2018_03_31.GetBalancesByBillingAccount.by_billing_period | def by_billing_period(billing_account_id, billing_period_name, custom_headers:nil)
response = by_billing_period_async(billing_account_id, billing_period_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def by_billing_period(billing_account_id, billing_period_name, custom_headers:nil)
response = by_billing_period_async(billing_account_id, billing_period_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"by_billing_period",
"(",
"billing_account_id",
",",
"billing_period_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"by_billing_period_async",
"(",
"billing_account_id",
",",
"billing_period_name",
",",
"custom_headers",
":custom_headers",
")",
"."... | Gets the balances for a scope by billing period and billingAccountId.
Balances are available via this API only for May 1, 2014 or later.
@param billing_account_id [String] BillingAccount ID
@param billing_period_name [String] Billing Period Name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Balance] operation results. | [
"Gets",
"the",
"balances",
"for",
"a",
"scope",
"by",
"billing",
"period",
"and",
"billingAccountId",
".",
"Balances",
"are",
"available",
"via",
"this",
"API",
"only",
"for",
"May",
"1",
"2014",
"or",
"later",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_consumption/lib/2018-03-31/generated/azure_mgmt_consumption/get_balances_by_billing_account.rb#L36-L39 | train | Gets the list of all the available ad hoc terms. | [
30522,
13366,
2011,
1035,
25640,
1035,
2558,
1006,
25640,
1035,
4070,
1035,
8909,
1010,
25640,
1035,
2558,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
2011,
1035,
25640,
1035,
2558,
1035,
2004,
6038,
2278,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
lostisland/faraday | lib/faraday/request.rb | Faraday.Request.marshal_dump | def marshal_dump
{
method: method,
body: body,
headers: headers,
path: path,
params: params,
options: options
}
end | ruby | def marshal_dump
{
method: method,
body: body,
headers: headers,
path: path,
params: params,
options: options
}
end | [
"def",
"marshal_dump",
"{",
"method",
":",
"method",
",",
"body",
":",
"body",
",",
"headers",
":",
"headers",
",",
"path",
":",
"path",
",",
"params",
":",
"params",
",",
"options",
":",
"options",
"}",
"end"
] | Marshal serialization support.
@return [Hash] the hash ready to be serialized in Marshal. | [
"Marshal",
"serialization",
"support",
"."
] | 3abe9d1eea4bdf61cdf7b76ff9f1ae7e09482e70 | https://github.com/lostisland/faraday/blob/3abe9d1eea4bdf61cdf7b76ff9f1ae7e09482e70/lib/faraday/request.rb#L117-L126 | train | Marshal the object for a
SearchResult object | [
30522,
13366,
8610,
1035,
15653,
1063,
4118,
1024,
4118,
1010,
2303,
1024,
2303,
1010,
20346,
2015,
1024,
20346,
2015,
1010,
4130,
1024,
4130,
1010,
11498,
5244,
1024,
11498,
5244,
1010,
7047,
1024,
7047,
1065,
2203,
102,
0,
0,
0,
0,
0,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
square/connect-ruby-sdk | lib/square_connect/models/inventory_adjustment.rb | SquareConnect.InventoryAdjustment.from_state= | def from_state=(from_state)
validator = EnumAttributeValidator.new('String', ["CUSTOM", "IN_STOCK", "SOLD", "RETURNED_BY_CUSTOMER", "RESERVED_FOR_SALE", "SOLD_ONLINE", "ORDERED_FROM_VENDOR", "RECEIVED_FROM_VENDOR", "IN_TRANSIT_TO", "NONE", "WASTE", "UNLINKED_RETURN"])
unless validator.valid?(from_state)
fail ArgumentError, "invalid value for 'from_state', must be one of #{validator.allowable_values}."
end
@from_state = from_state
end | ruby | def from_state=(from_state)
validator = EnumAttributeValidator.new('String', ["CUSTOM", "IN_STOCK", "SOLD", "RETURNED_BY_CUSTOMER", "RESERVED_FOR_SALE", "SOLD_ONLINE", "ORDERED_FROM_VENDOR", "RECEIVED_FROM_VENDOR", "IN_TRANSIT_TO", "NONE", "WASTE", "UNLINKED_RETURN"])
unless validator.valid?(from_state)
fail ArgumentError, "invalid value for 'from_state', must be one of #{validator.allowable_values}."
end
@from_state = from_state
end | [
"def",
"from_state",
"=",
"(",
"from_state",
")",
"validator",
"=",
"EnumAttributeValidator",
".",
"new",
"(",
"'String'",
",",
"[",
"\"CUSTOM\"",
",",
"\"IN_STOCK\"",
",",
"\"SOLD\"",
",",
"\"RETURNED_BY_CUSTOMER\"",
",",
"\"RESERVED_FOR_SALE\"",
",",
"\"SOLD_ONLIN... | Custom attribute writer method checking allowed values (enum).
@param [Object] from_state Object to be assigned | [
"Custom",
"attribute",
"writer",
"method",
"checking",
"allowed",
"values",
"(",
"enum",
")",
"."
] | 798eb9ded716f23b9f1518386f1c311a34bca8bf | https://github.com/square/connect-ruby-sdk/blob/798eb9ded716f23b9f1518386f1c311a34bca8bf/lib/square_connect/models/inventory_adjustment.rb#L231-L237 | train | Set the from_state of the record. | [
30522,
13366,
2013,
1035,
2110,
1027,
1006,
2013,
1035,
2110,
1007,
9398,
8844,
1027,
4372,
12248,
4779,
3089,
8569,
2618,
10175,
8524,
4263,
1012,
2047,
1006,
1005,
5164,
1005,
1010,
1031,
1000,
7661,
1000,
1010,
1000,
1999,
1035,
4518,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb | Azure::ServiceFabric::V6_2_0_9.ServiceFabricClientAPIs.update_cluster_upgrade | def update_cluster_upgrade(update_cluster_upgrade_description, timeout:60, custom_headers:nil)
response = update_cluster_upgrade_async(update_cluster_upgrade_description, timeout:timeout, custom_headers:custom_headers).value!
nil
end | ruby | def update_cluster_upgrade(update_cluster_upgrade_description, timeout:60, custom_headers:nil)
response = update_cluster_upgrade_async(update_cluster_upgrade_description, timeout:timeout, custom_headers:custom_headers).value!
nil
end | [
"def",
"update_cluster_upgrade",
"(",
"update_cluster_upgrade_description",
",",
"timeout",
":",
"60",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"update_cluster_upgrade_async",
"(",
"update_cluster_upgrade_description",
",",
"timeout",
":",
"timeout",
",",
... | Update the upgrade parameters of a Service Fabric cluster upgrade.
Update the upgrade parameters used during a Service Fabric cluster upgrade.
@param update_cluster_upgrade_description [UpdateClusterUpgradeDescription]
Parameters for updating a cluster upgrade.
@param timeout [Integer] The server timeout for performing the operation in
seconds. This timeout specifies the time duration that the client is willing
to wait for the requested operation to complete. The default value for this
parameter is 60 seconds.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Update",
"the",
"upgrade",
"parameters",
"of",
"a",
"Service",
"Fabric",
"cluster",
"upgrade",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L2997-L3000 | train | Updates the cluster upgrade. | [
30522,
13366,
10651,
1035,
9324,
1035,
12200,
1006,
10651,
1035,
9324,
1035,
12200,
1035,
6412,
1010,
2051,
5833,
1024,
3438,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
10651,
1035,
9324,
1035,
12200,
1035,
2004,
603... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb | Azure::ServiceFabric::V6_2_0_9.ServiceFabricClientAPIs.get_service_event_list | def get_service_event_list(service_id, start_time_utc, end_time_utc, timeout:60, events_types_filter:nil, exclude_analysis_events:nil, skip_correlation_lookup:nil, custom_headers:nil)
response = get_service_event_list_async(service_id, start_time_utc, end_time_utc, timeout:timeout, events_types_filter:events_types_filter, exclude_analysis_events:exclude_analysis_events, skip_correlation_lookup:skip_correlation_lookup, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_service_event_list(service_id, start_time_utc, end_time_utc, timeout:60, events_types_filter:nil, exclude_analysis_events:nil, skip_correlation_lookup:nil, custom_headers:nil)
response = get_service_event_list_async(service_id, start_time_utc, end_time_utc, timeout:timeout, events_types_filter:events_types_filter, exclude_analysis_events:exclude_analysis_events, skip_correlation_lookup:skip_correlation_lookup, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_service_event_list",
"(",
"service_id",
",",
"start_time_utc",
",",
"end_time_utc",
",",
"timeout",
":",
"60",
",",
"events_types_filter",
":",
"nil",
",",
"exclude_analysis_events",
":",
"nil",
",",
"skip_correlation_lookup",
":",
"nil",
",",
"custom_he... | Gets a Service-related events.
The response is list of ServiceEvent objects.
@param service_id [String] The identity of the service. This is typically the
full name of the service without the 'fabric:' URI scheme.
Starting from version 6.0, hierarchical names are delimited with the "~"
character.
For example, if the service name is "fabric:/myapp/app1/svc1", the service
identity would be "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous
versions.
@param start_time_utc [String] The start time of a lookup query in ISO UTC
yyyy-MM-ddTHH:mm:ssZ.
@param end_time_utc [String] The end time of a lookup query in ISO UTC
yyyy-MM-ddTHH:mm:ssZ.
@param timeout [Integer] The server timeout for performing the operation in
seconds. This timeout specifies the time duration that the client is willing
to wait for the requested operation to complete. The default value for this
parameter is 60 seconds.
@param events_types_filter [String] This is a comma separated string
specifying the types of FabricEvents that should only be included in the
response.
@param exclude_analysis_events [Boolean] This param disables the retrieval of
AnalysisEvents if true is passed.
@param skip_correlation_lookup [Boolean] This param disables the search of
CorrelatedEvents information if true is passed. otherwise the
CorrelationEvents get processed and HasCorrelatedEvents field in every
FabricEvent gets populated.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Array] operation results. | [
"Gets",
"a",
"Service",
"-",
"related",
"events",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L28197-L28200 | train | Gets the list of events for a service. | [
30522,
13366,
2131,
1035,
2326,
1035,
2724,
1035,
2862,
1006,
2326,
1035,
8909,
1010,
2707,
1035,
2051,
1035,
11396,
1010,
2203,
1035,
2051,
1035,
11396,
1010,
2051,
5833,
1024,
3438,
1010,
2824,
1035,
4127,
1035,
11307,
1024,
9152,
2140,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
chloerei/alipay | lib/alipay/client.rb | Alipay.Client.sign | def sign(params)
string = params_to_string(params)
case @sign_type
when 'RSA'
::Alipay::Sign::RSA.sign(@app_private_key, string)
when 'RSA2'
::Alipay::Sign::RSA2.sign(@app_private_key, string)
else
raise "Unsupported sign_type: #{@sign_type}"
end
end | ruby | def sign(params)
string = params_to_string(params)
case @sign_type
when 'RSA'
::Alipay::Sign::RSA.sign(@app_private_key, string)
when 'RSA2'
::Alipay::Sign::RSA2.sign(@app_private_key, string)
else
raise "Unsupported sign_type: #{@sign_type}"
end
end | [
"def",
"sign",
"(",
"params",
")",
"string",
"=",
"params_to_string",
"(",
"params",
")",
"case",
"@sign_type",
"when",
"'RSA'",
"::",
"Alipay",
"::",
"Sign",
"::",
"RSA",
".",
"sign",
"(",
"@app_private_key",
",",
"string",
")",
"when",
"'RSA2'",
"::",
... | Generate sign for params. | [
"Generate",
"sign",
"for",
"params",
"."
] | a525989b659da970e08bc8fcd1b004453bfed89f | https://github.com/chloerei/alipay/blob/a525989b659da970e08bc8fcd1b004453bfed89f/lib/alipay/client.rb#L133-L144 | train | Sign the params | [
30522,
13366,
3696,
1006,
11498,
5244,
1007,
5164,
1027,
11498,
5244,
1035,
2000,
1035,
5164,
1006,
11498,
5244,
1007,
2553,
1030,
3696,
1035,
2828,
2043,
1005,
12667,
2050,
1005,
1024,
1024,
4862,
4502,
2100,
1024,
1024,
3696,
1024,
1024,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_hdinsight/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/script_actions.rb | Azure::Hdinsight::Mgmt::V2015_03_01_preview.ScriptActions.list_persisted_scripts_as_lazy | def list_persisted_scripts_as_lazy(resource_group_name, cluster_name, custom_headers:nil)
response = list_persisted_scripts_async(resource_group_name, cluster_name, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_persisted_scripts_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end | ruby | def list_persisted_scripts_as_lazy(resource_group_name, cluster_name, custom_headers:nil)
response = list_persisted_scripts_async(resource_group_name, cluster_name, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_persisted_scripts_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end | [
"def",
"list_persisted_scripts_as_lazy",
"(",
"resource_group_name",
",",
"cluster_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_persisted_scripts_async",
"(",
"resource_group_name",
",",
"cluster_name",
",",
"custom_headers",
":custom_headers",
")",... | Lists all the persisted script actions for the specified cluster.
@param resource_group_name [String] The name of the resource group.
@param cluster_name [String] The name of the cluster.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ScriptActionsList] which provide lazy access to pages of the
response. | [
"Lists",
"all",
"the",
"persisted",
"script",
"actions",
"for",
"the",
"specified",
"cluster",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_hdinsight/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/script_actions.rb#L396-L405 | train | Gets the persisted scripts for the specified HDInsight cluster. | [
30522,
13366,
2862,
1035,
19035,
1035,
14546,
1035,
2004,
1035,
13971,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
9324,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
2862,
1035,
19035,
1035,
14546,
1035,
2004... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
square/connect-ruby-sdk | lib/square_connect/models/catalog_tax.rb | SquareConnect.CatalogTax.valid? | def valid?
calculation_phase_validator = EnumAttributeValidator.new('String', ["TAX_SUBTOTAL_PHASE", "TAX_TOTAL_PHASE"])
return false unless calculation_phase_validator.valid?(@calculation_phase)
inclusion_type_validator = EnumAttributeValidator.new('String', ["ADDITIVE", "INCLUSIVE"])
return false unless inclusion_type_validator.valid?(@inclusion_type)
return true
end | ruby | def valid?
calculation_phase_validator = EnumAttributeValidator.new('String', ["TAX_SUBTOTAL_PHASE", "TAX_TOTAL_PHASE"])
return false unless calculation_phase_validator.valid?(@calculation_phase)
inclusion_type_validator = EnumAttributeValidator.new('String', ["ADDITIVE", "INCLUSIVE"])
return false unless inclusion_type_validator.valid?(@inclusion_type)
return true
end | [
"def",
"valid?",
"calculation_phase_validator",
"=",
"EnumAttributeValidator",
".",
"new",
"(",
"'String'",
",",
"[",
"\"TAX_SUBTOTAL_PHASE\"",
",",
"\"TAX_TOTAL_PHASE\"",
"]",
")",
"return",
"false",
"unless",
"calculation_phase_validator",
".",
"valid?",
"(",
"@calcul... | Check to see if the all the properties in the model are valid
@return true if the model is valid | [
"Check",
"to",
"see",
"if",
"the",
"all",
"the",
"properties",
"in",
"the",
"model",
"are",
"valid"
] | 798eb9ded716f23b9f1518386f1c311a34bca8bf | https://github.com/square/connect-ruby-sdk/blob/798eb9ded716f23b9f1518386f1c311a34bca8bf/lib/square_connect/models/catalog_tax.rb#L122-L128 | train | Returns true if the object is valid for this object. | [
30522,
13366,
9398,
1029,
17208,
1035,
4403,
1035,
9398,
8844,
1027,
4372,
12248,
4779,
3089,
8569,
2618,
10175,
8524,
4263,
1012,
2047,
1006,
1005,
5164,
1005,
1010,
1031,
1000,
4171,
1035,
4942,
3406,
9080,
1035,
4403,
1000,
1010,
1000,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
sensu/sensu | lib/sensu/daemon.rb | Sensu.Daemon.unexpected_error | def unexpected_error(error)
if @settings && @settings[:sensu][:global_error_handler]
backtrace = error.backtrace.join("\n")
if @logger
@logger.warn("global catch-all error handling enabled")
@logger.fatal("unexpected error - please address this immediately", {
:error => error.to_s,
:error_class => error.class,
:backtrace => backtrace
})
else
puts "global catch-all error handling enabled"
puts "unexpected error - please address this immediately: #{error.to_s}\n#{error.class}\n#{backtrace}"
end
else
raise error
end
end | ruby | def unexpected_error(error)
if @settings && @settings[:sensu][:global_error_handler]
backtrace = error.backtrace.join("\n")
if @logger
@logger.warn("global catch-all error handling enabled")
@logger.fatal("unexpected error - please address this immediately", {
:error => error.to_s,
:error_class => error.class,
:backtrace => backtrace
})
else
puts "global catch-all error handling enabled"
puts "unexpected error - please address this immediately: #{error.to_s}\n#{error.class}\n#{backtrace}"
end
else
raise error
end
end | [
"def",
"unexpected_error",
"(",
"error",
")",
"if",
"@settings",
"&&",
"@settings",
"[",
":sensu",
"]",
"[",
":global_error_handler",
"]",
"backtrace",
"=",
"error",
".",
"backtrace",
".",
"join",
"(",
"\"\\n\"",
")",
"if",
"@logger",
"@logger",
".",
"warn",... | Initialize the Sensu process. Set the start time, initial
service state, double the maximum number of EventMachine timers,
set up the logger, and load settings. This method will load
extensions and setup Sensu Spawn if the Sensu process is not the
Sensu API. This method can and optionally daemonize the process
and/or create a PID file.
@param options [Hash]
Handle an unexpected error. This method is used for EM global
catch-all error handling, accepting an error object. Error
handling is opt-in via a configuration option, e.g. `"sensu":
{"global_error_handler": true}`. If a user does not opt-in, the
provided error will be raised (uncaught). If a user opts-in via
configuration, the error will be logged and ignored :itsfine:.
@param error [Object] | [
"Initialize",
"the",
"Sensu",
"process",
".",
"Set",
"the",
"start",
"time",
"initial",
"service",
"state",
"double",
"the",
"maximum",
"number",
"of",
"EventMachine",
"timers",
"set",
"up",
"the",
"logger",
"and",
"load",
"settings",
".",
"This",
"method",
... | 51319e4b58c8d9986f101ad71ff729aa3e51e951 | https://github.com/sensu/sensu/blob/51319e4b58c8d9986f101ad71ff729aa3e51e951/lib/sensu/daemon.rb#L75-L92 | train | handle the error | [
30522,
13366,
9223,
1035,
7561,
1006,
7561,
1007,
2065,
1030,
10906,
1004,
1004,
1030,
10906,
1031,
1024,
12411,
6342,
1033,
1031,
1024,
3795,
1035,
7561,
1035,
28213,
1033,
2067,
6494,
3401,
1027,
7561,
1012,
2067,
6494,
3401,
1012,
3693,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
httprb/http | lib/http/connection.rb | HTTP.Connection.read_more | def read_more(size)
return if @parser.finished?
value = @socket.readpartial(size, @buffer)
if value == :eof
@parser << ""
:eof
elsif value
@parser << value
end
rescue IOError, SocketError, SystemCallError => ex
raise ConnectionError, "error reading from socket: #{ex}", ex.backtrace
end | ruby | def read_more(size)
return if @parser.finished?
value = @socket.readpartial(size, @buffer)
if value == :eof
@parser << ""
:eof
elsif value
@parser << value
end
rescue IOError, SocketError, SystemCallError => ex
raise ConnectionError, "error reading from socket: #{ex}", ex.backtrace
end | [
"def",
"read_more",
"(",
"size",
")",
"return",
"if",
"@parser",
".",
"finished?",
"value",
"=",
"@socket",
".",
"readpartial",
"(",
"size",
",",
"@buffer",
")",
"if",
"value",
"==",
":eof",
"@parser",
"<<",
"\"\"",
":eof",
"elsif",
"value",
"@parser",
"... | Feeds some more data into parser
@return [void] | [
"Feeds",
"some",
"more",
"data",
"into",
"parser"
] | f37a10ea4fab3ee411907ea2e4251ddf0ca33a93 | https://github.com/httprb/http/blob/f37a10ea4fab3ee411907ea2e4251ddf0ca33a93/lib/http/connection.rb#L209-L221 | train | Read more data from the socket. | [
30522,
13366,
3191,
1035,
2062,
1006,
2946,
1007,
2709,
2065,
1030,
11968,
8043,
1012,
2736,
1029,
3643,
1027,
1030,
22278,
1012,
3191,
19362,
20925,
1006,
2946,
1010,
1030,
17698,
1007,
2065,
3643,
1027,
1027,
1024,
1041,
11253,
1030,
1196... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_managed_applications/lib/2018-06-01/generated/azure_mgmt_managed_applications/application_definitions.rb | Azure::ManagedApplications::Mgmt::V2018_06_01.ApplicationDefinitions.begin_delete | def begin_delete(resource_group_name, application_definition_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, application_definition_name, custom_headers:custom_headers).value!
nil
end | ruby | def begin_delete(resource_group_name, application_definition_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, application_definition_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"begin_delete",
"(",
"resource_group_name",
",",
"application_definition_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_delete_async",
"(",
"resource_group_name",
",",
"application_definition_name",
",",
"custom_headers",
":custom_headers",
")... | Deletes the managed application definition.
@param resource_group_name [String] The name of the resource group. The name
is case insensitive.
@param application_definition_name [String] The name of the managed
application definition to delete.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"the",
"managed",
"application",
"definition",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_managed_applications/lib/2018-06-01/generated/azure_mgmt_managed_applications/application_definitions.rb#L512-L515 | train | Deletes the specified application definition. | [
30522,
13366,
4088,
1035,
3972,
12870,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
4646,
1035,
6210,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
4088,
1035,
3972,
12870,
1035,
2004,
6038,
2278,
1006,
7692,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
sds/scss-lint | lib/scss_lint/linter.rb | SCSSLint.Linter.visit | def visit(node)
# Visit the selector of a rule if parsed rules are available
if node.is_a?(Sass::Tree::RuleNode) && node.parsed_rules
visit_selector(node.parsed_rules)
end
@comment_processor.before_node_visit(node) if @engine.any_control_commands
super
@comment_processor.after_node_visit(node) if @engine.any_control_commands
end | ruby | def visit(node)
# Visit the selector of a rule if parsed rules are available
if node.is_a?(Sass::Tree::RuleNode) && node.parsed_rules
visit_selector(node.parsed_rules)
end
@comment_processor.before_node_visit(node) if @engine.any_control_commands
super
@comment_processor.after_node_visit(node) if @engine.any_control_commands
end | [
"def",
"visit",
"(",
"node",
")",
"# Visit the selector of a rule if parsed rules are available",
"if",
"node",
".",
"is_a?",
"(",
"Sass",
"::",
"Tree",
"::",
"RuleNode",
")",
"&&",
"node",
".",
"parsed_rules",
"visit_selector",
"(",
"node",
".",
"parsed_rules",
"... | Modified so we can also visit selectors in linters
@param node [Sass::Tree::Node, Sass::Script::Tree::Node,
Sass::Script::Value::Base] | [
"Modified",
"so",
"we",
"can",
"also",
"visit",
"selectors",
"in",
"linters"
] | e99afe4ede041a431a06e585c12ce82f6ad50116 | https://github.com/sds/scss-lint/blob/e99afe4ede041a431a06e585c12ce82f6ad50116/lib/scss_lint/linter.rb#L136-L145 | train | Visit the given node | [
30522,
13366,
3942,
1006,
13045,
1007,
1001,
3942,
1996,
27000,
1997,
1037,
3627,
2065,
11968,
6924,
3513,
2024,
2800,
2065,
13045,
1012,
2003,
1035,
1037,
1029,
1006,
21871,
2015,
1024,
1024,
3392,
1024,
1024,
3627,
3630,
3207,
1007,
1004,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/tag.rb | Azure::ApiManagement::Mgmt::V2018_01_01.Tag.detach_from_operation_with_http_info | def detach_from_operation_with_http_info(resource_group_name, service_name, api_id, operation_id, tag_id, if_match, custom_headers:nil)
detach_from_operation_async(resource_group_name, service_name, api_id, operation_id, tag_id, if_match, custom_headers:custom_headers).value!
end | ruby | def detach_from_operation_with_http_info(resource_group_name, service_name, api_id, operation_id, tag_id, if_match, custom_headers:nil)
detach_from_operation_async(resource_group_name, service_name, api_id, operation_id, tag_id, if_match, custom_headers:custom_headers).value!
end | [
"def",
"detach_from_operation_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"api_id",
",",
"operation_id",
",",
"tag_id",
",",
"if_match",
",",
"custom_headers",
":",
"nil",
")",
"detach_from_operation_async",
"(",
"resource_group_name",
",",
"s... | Detach the tag from the Operation.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param api_id [String] API revision identifier. Must be unique in the current
API Management service instance. Non-current revision has ;rev=n as a suffix
where n is the revision number.
@param operation_id [String] Operation identifier within an API. Must be
unique in the current API Management service instance.
@param tag_id [String] Tag identifier. Must be unique in the current API
Management service instance.
@param if_match [String] ETag of the Entity. ETag should match the current
entity state from the header response of the GET request or it should be *
for unconditional update.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Detach",
"the",
"tag",
"from",
"the",
"Operation",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/tag.rb#L1908-L1910 | train | Detaches the specified resource from the specified API operation. | [
30522,
13366,
20010,
6776,
1035,
2013,
1035,
3169,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
2326,
1035,
2171,
1010,
17928,
1035,
8909,
1010,
3169,
1035,
8909,
1010,
6415,
1035,
8909,
1010,
2065,
1035,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
adimichele/hubspot-ruby | lib/hubspot/form.rb | Hubspot.Form.fields | def fields(opts={})
bypass_cache = opts.delete(:bypass_cache) { false }
field_name = opts.delete(:only) { nil }
if field_name
field_name = field_name.to_s
if bypass_cache || @fields.nil? || @fields.empty?
response = Hubspot::Connection.get_json(FIELD_PATH, { form_guid: @guid, field_name: field_name })
response
else
@fields.detect { |f| f['name'] == field_name }
end
else
if bypass_cache || @fields.nil? || @fields.empty?
response = Hubspot::Connection.get_json(FIELDS_PATH, { form_guid: @guid })
@fields = response
end
@fields
end
end | ruby | def fields(opts={})
bypass_cache = opts.delete(:bypass_cache) { false }
field_name = opts.delete(:only) { nil }
if field_name
field_name = field_name.to_s
if bypass_cache || @fields.nil? || @fields.empty?
response = Hubspot::Connection.get_json(FIELD_PATH, { form_guid: @guid, field_name: field_name })
response
else
@fields.detect { |f| f['name'] == field_name }
end
else
if bypass_cache || @fields.nil? || @fields.empty?
response = Hubspot::Connection.get_json(FIELDS_PATH, { form_guid: @guid })
@fields = response
end
@fields
end
end | [
"def",
"fields",
"(",
"opts",
"=",
"{",
"}",
")",
"bypass_cache",
"=",
"opts",
".",
"delete",
"(",
":bypass_cache",
")",
"{",
"false",
"}",
"field_name",
"=",
"opts",
".",
"delete",
"(",
":only",
")",
"{",
"nil",
"}",
"if",
"field_name",
"field_name",
... | {https://developers.hubspot.com/docs/methods/forms/get_fields}
{https://developers.hubspot.com/docs/methods/forms/get_field} | [
"{",
"https",
":",
"//",
"developers",
".",
"hubspot",
".",
"com",
"/",
"docs",
"/",
"methods",
"/",
"forms",
"/",
"get_fields",
"}",
"{",
"https",
":",
"//",
"developers",
".",
"hubspot",
".",
"com",
"/",
"docs",
"/",
"methods",
"/",
"forms",
"/",
... | 8eb0a64dd0c14c79e631e81bfdc169583e775a46 | https://github.com/adimichele/hubspot-ruby/blob/8eb0a64dd0c14c79e631e81bfdc169583e775a46/lib/hubspot/form.rb#L43-L62 | train | Returns the fields of this form | [
30522,
13366,
4249,
1006,
23569,
2015,
1027,
1063,
1065,
1007,
11826,
1035,
17053,
1027,
23569,
2015,
1012,
3972,
12870,
1006,
1024,
11826,
30524,
1064,
1064,
1030,
4249,
1012,
9152,
2140,
1029,
1064,
1064,
1030,
4249,
1012,
4064,
1029,
343... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
chef/ohai | lib/ohai/provides_map.rb | Ohai.ProvidesMap.find_closest_providers_for | def find_closest_providers_for(attributes)
plugins = []
attributes.each do |attribute|
parts = normalize_and_validate(attribute)
raise Ohai::Exceptions::AttributeNotFound, "No such attribute: \'#{attribute}\'" unless @map[parts[0]]
attrs = select_closest_subtree(@map, attribute)
raise Ohai::Exceptions::ProviderNotFound, "Cannot find plugin providing attribute: \'#{attribute}\'" unless attrs
plugins += attrs[:_plugins]
end
plugins.uniq
end | ruby | def find_closest_providers_for(attributes)
plugins = []
attributes.each do |attribute|
parts = normalize_and_validate(attribute)
raise Ohai::Exceptions::AttributeNotFound, "No such attribute: \'#{attribute}\'" unless @map[parts[0]]
attrs = select_closest_subtree(@map, attribute)
raise Ohai::Exceptions::ProviderNotFound, "Cannot find plugin providing attribute: \'#{attribute}\'" unless attrs
plugins += attrs[:_plugins]
end
plugins.uniq
end | [
"def",
"find_closest_providers_for",
"(",
"attributes",
")",
"plugins",
"=",
"[",
"]",
"attributes",
".",
"each",
"do",
"|",
"attribute",
"|",
"parts",
"=",
"normalize_and_validate",
"(",
"attribute",
")",
"raise",
"Ohai",
"::",
"Exceptions",
"::",
"AttributeNot... | This function is used to fetch the plugins from
'depends "languages"' statements in plugins.
It gathers plugins providing each of the attributes listed, or the
plugins providing the closest parent attribute | [
"This",
"function",
"is",
"used",
"to",
"fetch",
"the",
"plugins",
"from",
"depends",
"languages",
"statements",
"in",
"plugins",
".",
"It",
"gathers",
"plugins",
"providing",
"each",
"of",
"the",
"attributes",
"listed",
"or",
"the",
"plugins",
"providing",
"t... | 8d66449940f04237586b2f928231c6b26e2cc19a | https://github.com/chef/ohai/blob/8d66449940f04237586b2f928231c6b26e2cc19a/lib/ohai/provides_map.rb#L93-L103 | train | Find the closest plugins for the given attributes. | [
30522,
13366,
2424,
1035,
7541,
1035,
11670,
1035,
2005,
1006,
12332,
1007,
13354,
7076,
1027,
1031,
1033,
12332,
1012,
2169,
2079,
1064,
17961,
1064,
3033,
1027,
3671,
4697,
1035,
1998,
1035,
9398,
3686,
1006,
17961,
1007,
5333,
2821,
4886... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
hashicorp/vault-ruby | lib/vault/api/logical.rb | Vault.Logical.write | def write(path, data = {}, options = {})
headers = extract_headers!(options)
json = client.put("/v1/#{encode_path(path)}", JSON.fast_generate(data), headers)
if json.nil?
return true
else
return Secret.decode(json)
end
end | ruby | def write(path, data = {}, options = {})
headers = extract_headers!(options)
json = client.put("/v1/#{encode_path(path)}", JSON.fast_generate(data), headers)
if json.nil?
return true
else
return Secret.decode(json)
end
end | [
"def",
"write",
"(",
"path",
",",
"data",
"=",
"{",
"}",
",",
"options",
"=",
"{",
"}",
")",
"headers",
"=",
"extract_headers!",
"(",
"options",
")",
"json",
"=",
"client",
".",
"put",
"(",
"\"/v1/#{encode_path(path)}\"",
",",
"JSON",
".",
"fast_generate... | Write the secret at the given path with the given data. Note that the
data must be a {Hash}!
@example
Vault.logical.write("secret/password", value: "secret") #=> #<Vault::Secret lease_id="">
@param [String] path
the path to write
@param [Hash] data
the data to write
@return [Secret] | [
"Write",
"the",
"secret",
"at",
"the",
"given",
"path",
"with",
"the",
"given",
"data",
".",
"Note",
"that",
"the",
"data",
"must",
"be",
"a",
"{",
"Hash",
"}",
"!"
] | 02f0532a802ba1a2a0d8703a4585dab76eb9d864 | https://github.com/hashicorp/vault-ruby/blob/02f0532a802ba1a2a0d8703a4585dab76eb9d864/lib/vault/api/logical.rb#L66-L74 | train | Write data to a file | [
30522,
13366,
4339,
1006,
4130,
1010,
2951,
1027,
1063,
1065,
1010,
7047,
1027,
1063,
1065,
1007,
20346,
2015,
1027,
14817,
1035,
20346,
2015,
999,
1006,
7047,
1007,
1046,
3385,
1027,
7396,
1012,
2404,
1006,
1000,
1013,
1058,
2487,
1013,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
sumoheavy/jira-ruby | lib/jira/base.rb | JIRA.Base.set_attrs_from_response | def set_attrs_from_response(response)
unless response.body.nil? || (response.body.length < 2)
json = self.class.parse_json(response.body)
set_attrs(json)
end
end | ruby | def set_attrs_from_response(response)
unless response.body.nil? || (response.body.length < 2)
json = self.class.parse_json(response.body)
set_attrs(json)
end
end | [
"def",
"set_attrs_from_response",
"(",
"response",
")",
"unless",
"response",
".",
"body",
".",
"nil?",
"||",
"(",
"response",
".",
"body",
".",
"length",
"<",
"2",
")",
"json",
"=",
"self",
".",
"class",
".",
"parse_json",
"(",
"response",
".",
"body",
... | Sets the attributes hash from a HTTPResponse object from JIRA if it is
not nil or is not a json response. | [
"Sets",
"the",
"attributes",
"hash",
"from",
"a",
"HTTPResponse",
"object",
"from",
"JIRA",
"if",
"it",
"is",
"not",
"nil",
"or",
"is",
"not",
"a",
"json",
"response",
"."
] | 25e896f227ab81c528e9678708cb546d2f62f018 | https://github.com/sumoheavy/jira-ruby/blob/25e896f227ab81c528e9678708cb546d2f62f018/lib/jira/base.rb#L380-L385 | train | Set attributes from the response | [
30522,
13366,
2275,
1035,
2012,
16344,
2015,
1035,
2013,
1035,
3433,
1006,
3433,
1007,
4983,
3433,
1012,
2303,
1012,
9152,
2140,
1029,
1064,
1064,
1006,
3433,
1012,
2303,
1012,
3091,
1026,
1016,
1007,
1046,
3385,
1027,
2969,
1012,
2465,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
randym/axlsx | lib/axlsx/util/options_parser.rb | Axlsx.OptionsParser.parse_options | def parse_options(options={})
options.each do |key, value|
key = :"#{key}="
self.send(key, value) if !value.nil? && self.respond_to?(key)
end
end | ruby | def parse_options(options={})
options.each do |key, value|
key = :"#{key}="
self.send(key, value) if !value.nil? && self.respond_to?(key)
end
end | [
"def",
"parse_options",
"(",
"options",
"=",
"{",
"}",
")",
"options",
".",
"each",
"do",
"|",
"key",
",",
"value",
"|",
"key",
"=",
":\"",
"#{",
"key",
"}",
"\"",
"self",
".",
"send",
"(",
"key",
",",
"value",
")",
"if",
"!",
"value",
".",
"ni... | Parses an options hash by calling any defined method by the same
name of the key postfixed with an '='
@param [Hash] options Options to parse. | [
"Parses",
"an",
"options",
"hash",
"by",
"calling",
"any",
"defined",
"method",
"by",
"the",
"same",
"name",
"of",
"the",
"key",
"postfixed",
"with",
"an",
"="
] | c593a08b2a929dac7aa8dc418b55e26b4c49dc34 | https://github.com/randym/axlsx/blob/c593a08b2a929dac7aa8dc418b55e26b4c49dc34/lib/axlsx/util/options_parser.rb#L9-L14 | train | Parse the options | [
30522,
13366,
11968,
3366,
1035,
7047,
1006,
7047,
1027,
1063,
1065,
1007,
7047,
1012,
2169,
2079,
1064,
3145,
1010,
3643,
1064,
3145,
1027,
1024,
1000,
1001,
1063,
3145,
1065,
1027,
1000,
2969,
1012,
4604,
1006,
3145,
1010,
3643,
1007,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | data/azure_cognitiveservices_luisauthoring/lib/2.0/generated/azure_cognitiveservices_luisauthoring/model.rb | Azure::CognitiveServices::LuisAuthoring::V2_0.Model.get_entity | def get_entity(app_id, version_id, entity_id, custom_headers:nil)
response = get_entity_async(app_id, version_id, entity_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_entity(app_id, version_id, entity_id, custom_headers:nil)
response = get_entity_async(app_id, version_id, entity_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_entity",
"(",
"app_id",
",",
"version_id",
",",
"entity_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_entity_async",
"(",
"app_id",
",",
"version_id",
",",
"entity_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!"... | Gets information about an entity model in a version of the application.
@param app_id The application ID.
@param version_id [String] The version ID.
@param entity_id The entity extractor ID.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [EntityExtractor] operation results. | [
"Gets",
"information",
"about",
"an",
"entity",
"model",
"in",
"a",
"version",
"of",
"the",
"application",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_luisauthoring/lib/2.0/generated/azure_cognitiveservices_luisauthoring/model.rb#L2132-L2135 | train | Gets the entity definition of the entity. | [
30522,
13366,
2131,
1035,
9178,
1006,
10439,
1035,
8909,
1010,
2544,
1035,
8909,
1010,
9178,
1035,
8909,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
2131,
1035,
9178,
1035,
2004,
6038,
2278,
1006,
10439,
1035,
8909,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
castwide/solargraph | lib/solargraph/api_map.rb | Solargraph.ApiMap.query_symbols | def query_symbols query
result = []
source_map_hash.values.each do |s|
result.concat s.query_symbols(query)
end
result
end | ruby | def query_symbols query
result = []
source_map_hash.values.each do |s|
result.concat s.query_symbols(query)
end
result
end | [
"def",
"query_symbols",
"query",
"result",
"=",
"[",
"]",
"source_map_hash",
".",
"values",
".",
"each",
"do",
"|",
"s",
"|",
"result",
".",
"concat",
"s",
".",
"query_symbols",
"(",
"query",
")",
"end",
"result",
"end"
] | Get an array of all symbols in the workspace that match the query.
@param query [String]
@return [Array<Pin::Base>] | [
"Get",
"an",
"array",
"of",
"all",
"symbols",
"in",
"the",
"workspace",
"that",
"match",
"the",
"query",
"."
] | 47badb5d151aca775ccbe6c470236089eae7839d | https://github.com/castwide/solargraph/blob/47badb5d151aca775ccbe6c470236089eae7839d/lib/solargraph/api_map.rb#L423-L429 | train | Query the symbols in the source map | [
30522,
13366,
23032,
1035,
9255,
23032,
2765,
1027,
1031,
1033,
3120,
1035,
4949,
1035,
23325,
1012,
5300,
1012,
2169,
2079,
1064,
1055,
1064,
2765,
1012,
9530,
11266,
1055,
1012,
23032,
1035,
9255,
1006,
23032,
1007,
2203,
2765,
2203,
102,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
danger/danger | lib/danger/ci_source/circle_api.rb | Danger.CircleAPI.fetch_build | def fetch_build(repo_slug, build_number, token)
url = "project/#{repo_slug}/#{build_number}"
params = { "circle-token" => token }
response = client.get url, params, accept: "application/json"
json = JSON.parse(response.body, symbolize_names: true)
json
end | ruby | def fetch_build(repo_slug, build_number, token)
url = "project/#{repo_slug}/#{build_number}"
params = { "circle-token" => token }
response = client.get url, params, accept: "application/json"
json = JSON.parse(response.body, symbolize_names: true)
json
end | [
"def",
"fetch_build",
"(",
"repo_slug",
",",
"build_number",
",",
"token",
")",
"url",
"=",
"\"project/#{repo_slug}/#{build_number}\"",
"params",
"=",
"{",
"\"circle-token\"",
"=>",
"token",
"}",
"response",
"=",
"client",
".",
"get",
"url",
",",
"params",
",",
... | Make the API call, and parse the JSON | [
"Make",
"the",
"API",
"call",
"and",
"parse",
"the",
"JSON"
] | 0d6d09f2d949c287fe75202d947374042b0679f4 | https://github.com/danger/danger/blob/0d6d09f2d949c287fe75202d947374042b0679f4/lib/danger/ci_source/circle_api.rb#L43-L49 | train | Fetch a build from a project | [
30522,
13366,
18584,
1035,
3857,
1006,
16360,
2080,
1035,
23667,
1010,
3857,
1035,
2193,
1010,
19204,
1007,
24471,
2140,
1027,
1000,
2622,
1013,
1001,
1063,
16360,
2080,
1035,
23667,
1065,
1013,
30524,
1013,
1046,
3385,
1000,
1046,
3385,
10... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
sds/overcommit | lib/overcommit/git_repo.rb | Overcommit.GitRepo.submodules | def submodules(options = {})
ref = options[:ref]
modules = []
IniParse.parse(`git show #{ref}:.gitmodules 2> #{File::NULL}`).each do |section|
# git < 1.8.5 does not update the .gitmodules file with submodule
# changes, so when we are looking at the current state of the work tree,
# we need to check if the submodule actually exists via another method,
# since the .gitmodules file we parsed does not represent reality.
if ref.nil? && GIT_VERSION < '1.8.5'
result = Overcommit::Utils.execute(%W[
git submodule status #{section['path']}
])
next unless result.success?
end
modules << Submodule.new(section['path'], section['url'])
end
modules
rescue IniParse::IniParseError => ex
raise Overcommit::Exceptions::GitSubmoduleError,
"Unable to read submodule information from #{ref}:.gitmodules file: #{ex.message}"
end | ruby | def submodules(options = {})
ref = options[:ref]
modules = []
IniParse.parse(`git show #{ref}:.gitmodules 2> #{File::NULL}`).each do |section|
# git < 1.8.5 does not update the .gitmodules file with submodule
# changes, so when we are looking at the current state of the work tree,
# we need to check if the submodule actually exists via another method,
# since the .gitmodules file we parsed does not represent reality.
if ref.nil? && GIT_VERSION < '1.8.5'
result = Overcommit::Utils.execute(%W[
git submodule status #{section['path']}
])
next unless result.success?
end
modules << Submodule.new(section['path'], section['url'])
end
modules
rescue IniParse::IniParseError => ex
raise Overcommit::Exceptions::GitSubmoduleError,
"Unable to read submodule information from #{ref}:.gitmodules file: #{ex.message}"
end | [
"def",
"submodules",
"(",
"options",
"=",
"{",
"}",
")",
"ref",
"=",
"options",
"[",
":ref",
"]",
"modules",
"=",
"[",
"]",
"IniParse",
".",
"parse",
"(",
"`",
"#{",
"ref",
"}",
"#{",
"File",
"::",
"NULL",
"}",
"`",
")",
".",
"each",
"do",
"|",... | Returns the current set of registered submodules.
@param options [Hash]
@return [Array<Overcommit::GitRepo::Submodule>] | [
"Returns",
"the",
"current",
"set",
"of",
"registered",
"submodules",
"."
] | 35d60adb41da942178b789560968e3ad030b0ac7 | https://github.com/sds/overcommit/blob/35d60adb41da942178b789560968e3ad030b0ac7/lib/overcommit/git_repo.rb#L237-L260 | train | Returns a list of all the submodules in the current working tree. | [
30522,
13366,
4942,
5302,
8566,
4244,
1006,
7047,
1027,
1063,
1065,
1007,
25416,
1027,
7047,
1031,
1024,
25416,
1033,
14184,
1027,
1031,
1033,
1999,
11514,
11650,
2063,
1012,
11968,
3366,
1006,
1036,
21025,
2102,
2265,
1001,
1063,
25416,
10... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/express_route_connections.rb | Azure::Network::Mgmt::V2018_08_01.ExpressRouteConnections.begin_create_or_update | def begin_create_or_update(resource_group_name, express_route_gateway_name, connection_name, put_express_route_connection_parameters, custom_headers:nil)
response = begin_create_or_update_async(resource_group_name, express_route_gateway_name, connection_name, put_express_route_connection_parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def begin_create_or_update(resource_group_name, express_route_gateway_name, connection_name, put_express_route_connection_parameters, custom_headers:nil)
response = begin_create_or_update_async(resource_group_name, express_route_gateway_name, connection_name, put_express_route_connection_parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"begin_create_or_update",
"(",
"resource_group_name",
",",
"express_route_gateway_name",
",",
"connection_name",
",",
"put_express_route_connection_parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_create_or_update_async",
"(",
"resource_group_... | Creates a connection between an ExpressRoute gateway and an ExpressRoute
circuit.
@param resource_group_name [String] The name of the resource group.
@param express_route_gateway_name [String] The name of the ExpressRoute
gateway.
@param connection_name [String] The name of the connection subresource.
@param put_express_route_connection_parameters [ExpressRouteConnection]
Parameters required in an ExpressRouteConnection PUT operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ExpressRouteConnection] operation results. | [
"Creates",
"a",
"connection",
"between",
"an",
"ExpressRoute",
"gateway",
"and",
"an",
"ExpressRoute",
"circuit",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/express_route_connections.rb#L326-L329 | train | Creates or updates an express route gateway connection. | [
30522,
13366,
4088,
1035,
3443,
1035,
2030,
1035,
10651,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
4671,
1035,
2799,
1035,
11909,
1035,
2171,
1010,
4434,
1035,
2171,
1010,
2404,
1035,
4671,
1035,
2799,
1035,
4434,
1035,
11709,
1010,
7661,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
aws/aws-sdk-ruby | gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/resource.rb | Aws::AutoScaling.Resource.tags | def tags(options = {})
batches = Enumerator.new do |y|
resp = @client.describe_tags(options)
resp.each_page do |page|
batch = []
page.data.tags.each do |t|
batch << Tag.new(
key: t.key,
resource_id: t.resource_id,
resource_type: t.resource_type,
data: t,
client: @client
)
end
y.yield(batch)
end
end
Tag::Collection.new(batches)
end | ruby | def tags(options = {})
batches = Enumerator.new do |y|
resp = @client.describe_tags(options)
resp.each_page do |page|
batch = []
page.data.tags.each do |t|
batch << Tag.new(
key: t.key,
resource_id: t.resource_id,
resource_type: t.resource_type,
data: t,
client: @client
)
end
y.yield(batch)
end
end
Tag::Collection.new(batches)
end | [
"def",
"tags",
"(",
"options",
"=",
"{",
"}",
")",
"batches",
"=",
"Enumerator",
".",
"new",
"do",
"|",
"y",
"|",
"resp",
"=",
"@client",
".",
"describe_tags",
"(",
"options",
")",
"resp",
".",
"each_page",
"do",
"|",
"page",
"|",
"batch",
"=",
"["... | @example Request syntax with placeholder values
tags = auto_scaling.tags({
filters: [
{
name: "XmlString",
values: ["XmlString"],
},
],
})
@param [Hash] options ({})
@option options [Array<Types::Filter>] :filters
One or more filters to scope the tags to return. The maximum number of
filters per filter type (for example, `auto-scaling-group`) is 1000.
@return [Tag::Collection] | [
"@example",
"Request",
"syntax",
"with",
"placeholder",
"values"
] | e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d | https://github.com/aws/aws-sdk-ruby/blob/e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d/gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/resource.rb#L784-L802 | train | Returns a list of all tags in the cluster | [
30522,
13366,
22073,
1006,
7047,
1027,
1063,
1065,
1007,
14108,
2229,
1027,
4372,
17897,
16259,
1012,
2047,
2079,
1064,
1061,
1064,
24501,
2361,
1027,
1030,
7396,
1012,
6235,
1035,
22073,
1006,
7047,
1007,
24501,
2361,
1012,
2169,
1035,
305... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_scheduler/lib/2016-03-01/generated/azure_mgmt_scheduler/job_collections.rb | Azure::Scheduler::Mgmt::V2016_03_01.JobCollections.disable | def disable(resource_group_name, job_collection_name, custom_headers:nil)
response = disable_async(resource_group_name, job_collection_name, custom_headers:custom_headers).value!
nil
end | ruby | def disable(resource_group_name, job_collection_name, custom_headers:nil)
response = disable_async(resource_group_name, job_collection_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"disable",
"(",
"resource_group_name",
",",
"job_collection_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"disable_async",
"(",
"resource_group_name",
",",
"job_collection_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"n... | Disables all of the jobs in the job collection.
@param resource_group_name [String] The resource group name.
@param job_collection_name [String] The job collection name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Disables",
"all",
"of",
"the",
"jobs",
"in",
"the",
"job",
"collection",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_scheduler/lib/2016-03-01/generated/azure_mgmt_scheduler/job_collections.rb#L594-L597 | train | Disables a job collection. | [
30522,
13366,
4487,
19150,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
3105,
1035,
3074,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
4487,
19150,
1035,
2004,
6038,
2278,
1006,
7692,
1035,
2177,
1035,
2171,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
fastlane/fastlane | sigh/lib/sigh/runner.rb | Sigh.Runner.ensure_app_exists! | def ensure_app_exists!
return if Spaceship::App.find(Sigh.config[:app_identifier], mac: Sigh.config[:platform].to_s == 'macos')
print_produce_command(Sigh.config)
UI.user_error!("Could not find App with App Identifier '#{Sigh.config[:app_identifier]}'")
end | ruby | def ensure_app_exists!
return if Spaceship::App.find(Sigh.config[:app_identifier], mac: Sigh.config[:platform].to_s == 'macos')
print_produce_command(Sigh.config)
UI.user_error!("Could not find App with App Identifier '#{Sigh.config[:app_identifier]}'")
end | [
"def",
"ensure_app_exists!",
"return",
"if",
"Spaceship",
"::",
"App",
".",
"find",
"(",
"Sigh",
".",
"config",
"[",
":app_identifier",
"]",
",",
"mac",
":",
"Sigh",
".",
"config",
"[",
":platform",
"]",
".",
"to_s",
"==",
"'macos'",
")",
"print_produce_co... | Makes sure the current App ID exists. If not, it will show an appropriate error message | [
"Makes",
"sure",
"the",
"current",
"App",
"ID",
"exists",
".",
"If",
"not",
"it",
"will",
"show",
"an",
"appropriate",
"error",
"message"
] | 457c5d647c77f0e078dafa5129da616914e002c5 | https://github.com/fastlane/fastlane/blob/457c5d647c77f0e078dafa5129da616914e002c5/sigh/lib/sigh/runner.rb#L265-L269 | train | Ensure that the App with the App Identifier is present in the App Specification. | [
30522,
13366,
5676,
1035,
10439,
1035,
6526,
999,
2709,
2065,
25516,
1024,
1024,
10439,
1012,
2424,
1006,
6682,
1012,
9530,
8873,
2290,
1031,
1024,
10439,
1035,
8909,
4765,
18095,
1033,
1010,
6097,
1024,
6682,
1012,
9530,
8873,
2290,
1031,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb | Azure::ServiceFabric::V6_2_0_9.ServiceFabricClientAPIs.commit_image_store_upload_session_with_http_info | def commit_image_store_upload_session_with_http_info(session_id, timeout:60, custom_headers:nil)
commit_image_store_upload_session_async(session_id, timeout:timeout, custom_headers:custom_headers).value!
end | ruby | def commit_image_store_upload_session_with_http_info(session_id, timeout:60, custom_headers:nil)
commit_image_store_upload_session_async(session_id, timeout:timeout, custom_headers:custom_headers).value!
end | [
"def",
"commit_image_store_upload_session_with_http_info",
"(",
"session_id",
",",
"timeout",
":",
"60",
",",
"custom_headers",
":",
"nil",
")",
"commit_image_store_upload_session_async",
"(",
"session_id",
",",
"timeout",
":",
"timeout",
",",
"custom_headers",
":custom_h... | Commit an image store upload session.
When all file chunks have been uploaded, the upload session needs to be
committed explicitly to complete the upload. Image store preserves the upload
session until the expiration time, which is 30 minutes after the last chunk
received.
@param session_id A GUID generated by the user for a file uploading. It
identifies an image store upload session which keeps track of all file chunks
until it is committed.
@param timeout [Integer] The server timeout for performing the operation in
seconds. This timeout specifies the time duration that the client is willing
to wait for the requested operation to complete. The default value for this
parameter is 60 seconds.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Commit",
"an",
"image",
"store",
"upload",
"session",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L19862-L19864 | train | Commit an image store upload session. | [
30522,
13366,
10797,
1035,
3746,
1035,
3573,
1035,
2039,
11066,
1035,
5219,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
5219,
1035,
8909,
1010,
2051,
5833,
1024,
3438,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
10797,
1035,
3746,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
aws/aws-sdk-ruby | gems/aws-sdk-s3/lib/aws-sdk-s3/bucket_logging.rb | Aws::S3.BucketLogging.put | def put(options = {})
options = options.merge(bucket: @bucket_name)
resp = @client.put_bucket_logging(options)
resp.data
end | ruby | def put(options = {})
options = options.merge(bucket: @bucket_name)
resp = @client.put_bucket_logging(options)
resp.data
end | [
"def",
"put",
"(",
"options",
"=",
"{",
"}",
")",
"options",
"=",
"options",
".",
"merge",
"(",
"bucket",
":",
"@bucket_name",
")",
"resp",
"=",
"@client",
".",
"put_bucket_logging",
"(",
"options",
")",
"resp",
".",
"data",
"end"
] | @!group Actions
@example Request syntax with placeholder values
bucket_logging.put({
bucket_logging_status: { # required
logging_enabled: {
target_bucket: "TargetBucket", # required
target_grants: [
{
grantee: {
display_name: "DisplayName",
email_address: "EmailAddress",
id: "ID",
type: "CanonicalUser", # required, accepts CanonicalUser, AmazonCustomerByEmail, Group
uri: "URI",
},
permission: "FULL_CONTROL", # accepts FULL_CONTROL, READ, WRITE
},
],
target_prefix: "TargetPrefix", # required
},
},
content_md5: "ContentMD5",
})
@param [Hash] options ({})
@option options [required, Types::BucketLoggingStatus] :bucket_logging_status
@option options [String] :content_md5
@return [EmptyStructure] | [
"@!group",
"Actions",
"@example",
"Request",
"syntax",
"with",
"placeholder",
"values"
] | e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d | https://github.com/aws/aws-sdk-ruby/blob/e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d/gems/aws-sdk-s3/lib/aws-sdk-s3/bucket_logging.rb#L200-L204 | train | Put the logging to the bucket | [
30522,
13366,
2404,
1006,
7047,
1027,
1063,
1065,
1007,
7047,
1027,
7047,
1012,
13590,
1006,
13610,
1024,
1030,
13610,
1035,
2171,
1007,
24501,
2361,
1027,
1030,
7396,
1012,
2404,
1035,
13610,
1035,
15899,
1006,
7047,
1007,
24501,
2361,
101... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/express_route_connections.rb | Azure::Network::Mgmt::V2018_08_01.ExpressRouteConnections.begin_delete | def begin_delete(resource_group_name, express_route_gateway_name, connection_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, express_route_gateway_name, connection_name, custom_headers:custom_headers).value!
nil
end | ruby | def begin_delete(resource_group_name, express_route_gateway_name, connection_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, express_route_gateway_name, connection_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"begin_delete",
"(",
"resource_group_name",
",",
"express_route_gateway_name",
",",
"connection_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_delete_async",
"(",
"resource_group_name",
",",
"express_route_gateway_name",
",",
"connection_name"... | Deletes a connection to a ExpressRoute circuit.
@param resource_group_name [String] The name of the resource group.
@param express_route_gateway_name [String] The name of the ExpressRoute
gateway.
@param connection_name [String] The name of the connection subresource.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"a",
"connection",
"to",
"a",
"ExpressRoute",
"circuit",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/express_route_connections.rb#L448-L451 | train | Deletes a ExpressRoute gateway connection. | [
30522,
13366,
4088,
1035,
3972,
12870,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
4671,
1035,
2799,
1035,
11909,
1035,
2171,
1010,
4434,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
4088,
1035,
3972,
12870,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
nathanvda/cocoon | lib/cocoon/view_helpers.rb | Cocoon.ViewHelpers.render_association | def render_association(association, f, new_object, form_name, render_options={}, custom_partial=nil)
partial = get_partial_path(custom_partial, association)
locals = render_options.delete(:locals) || {}
ancestors = f.class.ancestors.map{|c| c.to_s}
method_name = ancestors.include?('SimpleForm::FormBuilder') ? :simple_fields_for : (ancestors.include?('Formtastic::FormBuilder') ? :semantic_fields_for : :fields_for)
f.send(method_name, association, new_object, {:child_index => "new_#{association}"}.merge(render_options)) do |builder|
partial_options = {form_name.to_sym => builder, :dynamic => true}.merge(locals)
render(partial, partial_options)
end
end | ruby | def render_association(association, f, new_object, form_name, render_options={}, custom_partial=nil)
partial = get_partial_path(custom_partial, association)
locals = render_options.delete(:locals) || {}
ancestors = f.class.ancestors.map{|c| c.to_s}
method_name = ancestors.include?('SimpleForm::FormBuilder') ? :simple_fields_for : (ancestors.include?('Formtastic::FormBuilder') ? :semantic_fields_for : :fields_for)
f.send(method_name, association, new_object, {:child_index => "new_#{association}"}.merge(render_options)) do |builder|
partial_options = {form_name.to_sym => builder, :dynamic => true}.merge(locals)
render(partial, partial_options)
end
end | [
"def",
"render_association",
"(",
"association",
",",
"f",
",",
"new_object",
",",
"form_name",
",",
"render_options",
"=",
"{",
"}",
",",
"custom_partial",
"=",
"nil",
")",
"partial",
"=",
"get_partial_path",
"(",
"custom_partial",
",",
"association",
")",
"l... | :nodoc: | [
":",
"nodoc",
":"
] | ec18c446a5475aa4959c699c797ee0fe9b0c9136 | https://github.com/nathanvda/cocoon/blob/ec18c446a5475aa4959c699c797ee0fe9b0c9136/lib/cocoon/view_helpers.rb#L45-L54 | train | Renders the association | [
30522,
13366,
17552,
1035,
2523,
1006,
2523,
1010,
1042,
1010,
2047,
1035,
4874,
1010,
2433,
1035,
2171,
1010,
17552,
1035,
7047,
1027,
1063,
1065,
1010,
7661,
1035,
7704,
1027,
9152,
2140,
1007,
7704,
1027,
2131,
1035,
7704,
1035,
4130,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
fastlane/fastlane | frameit/lib/frameit/editor.rb | Frameit.Editor.build_text_images | def build_text_images(max_width, max_height, stack_title)
words = [:keyword, :title].keep_if { |a| fetch_text(a) } # optional keyword/title
results = {}
trim_boxes = {}
top_vertical_trim_offset = Float::INFINITY # Init at a large value, as the code will search for a minimal value.
bottom_vertical_trim_offset = 0
words.each do |key|
# Create empty background
empty_path = File.join(Frameit::ROOT, "lib/assets/empty.png")
text_image = MiniMagick::Image.open(empty_path)
image_height = max_height # gets trimmed afterwards anyway, and on the iPad the `y` would get cut
text_image.combine_options do |i|
# Oversize as the text might be larger than the actual image. We're trimming afterwards anyway
i.resize("#{max_width * 5.0}x#{image_height}!") # `!` says it should ignore the ratio
end
current_font = font(key)
text = fetch_text(key)
UI.verbose("Using #{current_font} as font the #{key} of #{screenshot.path}") if current_font
UI.verbose("Adding text '#{text}'")
text.gsub!('\n', "\n")
text.gsub!(/(?<!\\)(')/) { |s| "\\#{s}" } # escape unescaped apostrophes with a backslash
interline_spacing = fetch_config['interline_spacing']
# Add the actual title
text_image.combine_options do |i|
i.font(current_font) if current_font
i.gravity("Center")
i.pointsize(actual_font_size)
i.draw("text 0,0 '#{text}'")
i.interline_spacing(interline_spacing) if interline_spacing
i.fill(fetch_config[key.to_s]['color'])
end
results[key] = text_image
# Natively trimming the image with .trim will result in the loss of the common baseline between the text in all images when side-by-side (e.g. stack_title is false).
# Hence retrieve the calculated trim bounding box without actually trimming:
calculated_trim_box = text_image.identify do |b|
b.format("%@") # CALCULATED: trim bounding box (without actually trimming), see: http://www.imagemagick.org/script/escape.php
end
# Create a Trimbox object from the MiniMagick .identify string with syntax "<width>x<height>+<offset_x>+<offset_y>":
trim_box = Frameit::Trimbox.new(calculated_trim_box)
# Get the minimum top offset of the trim box:
if trim_box.offset_y < top_vertical_trim_offset
top_vertical_trim_offset = trim_box.offset_y
end
# Get the maximum bottom offset of the trim box, this is the top offset + height:
if (trim_box.offset_y + trim_box.height) > bottom_vertical_trim_offset
bottom_vertical_trim_offset = trim_box.offset_y + trim_box.height
end
# Store for the crop action:
trim_boxes[key] = trim_box
end
# Crop text images:
words.each do |key|
# Get matching trim box:
trim_box = trim_boxes[key]
# For side-by-side text images (e.g. stack_title is false) adjust the trim box based on top_vertical_trim_offset and bottom_vertical_trim_offset to maintain the text baseline:
unless stack_title
# Determine the trim area by maintaining the same vertical top offset based on the smallest value from all trim boxes (top_vertical_trim_offset).
# When the vertical top offset is larger than the smallest vertical top offset, the trim box needs to be adjusted:
if trim_box.offset_y > top_vertical_trim_offset
# Increase the height of the trim box with the difference in vertical top offset:
trim_box.height += trim_box.offset_y - top_vertical_trim_offset
# Change the vertical top offset to match that of the others:
trim_box.offset_y = top_vertical_trim_offset
UI.verbose("Trim box for key \"#{key}\" is adjusted to align top: #{trim_box}\n")
end
# Check if the height needs to be adjusted to reach the bottom offset:
if (trim_box.offset_y + trim_box.height) < bottom_vertical_trim_offset
# Set the height of the trim box to the difference between vertical bottom and top offset:
trim_box.height = bottom_vertical_trim_offset - trim_box.offset_y
UI.verbose("Trim box for key \"#{key}\" is adjusted to align bottom: #{trim_box}\n")
end
end
# Crop image with (adjusted) trim box parameters in MiniMagick string format:
results[key].crop(trim_box.string_format)
end
results
end | ruby | def build_text_images(max_width, max_height, stack_title)
words = [:keyword, :title].keep_if { |a| fetch_text(a) } # optional keyword/title
results = {}
trim_boxes = {}
top_vertical_trim_offset = Float::INFINITY # Init at a large value, as the code will search for a minimal value.
bottom_vertical_trim_offset = 0
words.each do |key|
# Create empty background
empty_path = File.join(Frameit::ROOT, "lib/assets/empty.png")
text_image = MiniMagick::Image.open(empty_path)
image_height = max_height # gets trimmed afterwards anyway, and on the iPad the `y` would get cut
text_image.combine_options do |i|
# Oversize as the text might be larger than the actual image. We're trimming afterwards anyway
i.resize("#{max_width * 5.0}x#{image_height}!") # `!` says it should ignore the ratio
end
current_font = font(key)
text = fetch_text(key)
UI.verbose("Using #{current_font} as font the #{key} of #{screenshot.path}") if current_font
UI.verbose("Adding text '#{text}'")
text.gsub!('\n', "\n")
text.gsub!(/(?<!\\)(')/) { |s| "\\#{s}" } # escape unescaped apostrophes with a backslash
interline_spacing = fetch_config['interline_spacing']
# Add the actual title
text_image.combine_options do |i|
i.font(current_font) if current_font
i.gravity("Center")
i.pointsize(actual_font_size)
i.draw("text 0,0 '#{text}'")
i.interline_spacing(interline_spacing) if interline_spacing
i.fill(fetch_config[key.to_s]['color'])
end
results[key] = text_image
# Natively trimming the image with .trim will result in the loss of the common baseline between the text in all images when side-by-side (e.g. stack_title is false).
# Hence retrieve the calculated trim bounding box without actually trimming:
calculated_trim_box = text_image.identify do |b|
b.format("%@") # CALCULATED: trim bounding box (without actually trimming), see: http://www.imagemagick.org/script/escape.php
end
# Create a Trimbox object from the MiniMagick .identify string with syntax "<width>x<height>+<offset_x>+<offset_y>":
trim_box = Frameit::Trimbox.new(calculated_trim_box)
# Get the minimum top offset of the trim box:
if trim_box.offset_y < top_vertical_trim_offset
top_vertical_trim_offset = trim_box.offset_y
end
# Get the maximum bottom offset of the trim box, this is the top offset + height:
if (trim_box.offset_y + trim_box.height) > bottom_vertical_trim_offset
bottom_vertical_trim_offset = trim_box.offset_y + trim_box.height
end
# Store for the crop action:
trim_boxes[key] = trim_box
end
# Crop text images:
words.each do |key|
# Get matching trim box:
trim_box = trim_boxes[key]
# For side-by-side text images (e.g. stack_title is false) adjust the trim box based on top_vertical_trim_offset and bottom_vertical_trim_offset to maintain the text baseline:
unless stack_title
# Determine the trim area by maintaining the same vertical top offset based on the smallest value from all trim boxes (top_vertical_trim_offset).
# When the vertical top offset is larger than the smallest vertical top offset, the trim box needs to be adjusted:
if trim_box.offset_y > top_vertical_trim_offset
# Increase the height of the trim box with the difference in vertical top offset:
trim_box.height += trim_box.offset_y - top_vertical_trim_offset
# Change the vertical top offset to match that of the others:
trim_box.offset_y = top_vertical_trim_offset
UI.verbose("Trim box for key \"#{key}\" is adjusted to align top: #{trim_box}\n")
end
# Check if the height needs to be adjusted to reach the bottom offset:
if (trim_box.offset_y + trim_box.height) < bottom_vertical_trim_offset
# Set the height of the trim box to the difference between vertical bottom and top offset:
trim_box.height = bottom_vertical_trim_offset - trim_box.offset_y
UI.verbose("Trim box for key \"#{key}\" is adjusted to align bottom: #{trim_box}\n")
end
end
# Crop image with (adjusted) trim box parameters in MiniMagick string format:
results[key].crop(trim_box.string_format)
end
results
end | [
"def",
"build_text_images",
"(",
"max_width",
",",
"max_height",
",",
"stack_title",
")",
"words",
"=",
"[",
":keyword",
",",
":title",
"]",
".",
"keep_if",
"{",
"|",
"a",
"|",
"fetch_text",
"(",
"a",
")",
"}",
"# optional keyword/title",
"results",
"=",
"... | This will build up to 2 individual images with the title and optional keyword, which will then be added to the real image | [
"This",
"will",
"build",
"up",
"to",
"2",
"individual",
"images",
"with",
"the",
"title",
"and",
"optional",
"keyword",
"which",
"will",
"then",
"be",
"added",
"to",
"the",
"real",
"image"
] | 457c5d647c77f0e078dafa5129da616914e002c5 | https://github.com/fastlane/fastlane/blob/457c5d647c77f0e078dafa5129da616914e002c5/frameit/lib/frameit/editor.rb#L396-L489 | train | Builds the text image for the given stack title. | [
30522,
13366,
3857,
1035,
3793,
1035,
4871,
1006,
4098,
1035,
9381,
1010,
4098,
1035,
4578,
1010,
9991,
1035,
2516,
1007,
2616,
1027,
1031,
1024,
3145,
18351,
1010,
1024,
2516,
1033,
1012,
2562,
1035,
2065,
1063,
1064,
1037,
1064,
18584,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
middleman/middleman | middleman-core/lib/middleman-core/template_context.rb | Middleman.TemplateContext.wrap_layout | def wrap_layout(layout_name, &block)
# Save current buffer for later
buf_was = save_buffer
# Find a layout for this file
layout_file = ::Middleman::TemplateRenderer.locate_layout(@app, layout_name, current_engine)
# Get the layout engine
extension = File.extname(layout_file[:relative_path])
engine = extension[1..-1].to_sym
# Store last engine for later (could be inside nested renders)
self.current_engine = engine
engine_was = current_engine
# By default, no content is captured
content = ''
# Attempt to capture HTML from block
begin
content = capture_html(&block) if block_given?
ensure
# Reset stored buffer, regardless of success
restore_buffer(buf_was)
end
@vertices <<= ::Middleman::Dependencies::FileVertex.from_source_file(@app, layout_file)
# Render the layout, with the contents of the block inside.
concat_safe_content render_file(layout_file, @locs, @opts) { content }
ensure
# Reset engine back to template's value, regardless of success
self.current_engine = engine_was
end | ruby | def wrap_layout(layout_name, &block)
# Save current buffer for later
buf_was = save_buffer
# Find a layout for this file
layout_file = ::Middleman::TemplateRenderer.locate_layout(@app, layout_name, current_engine)
# Get the layout engine
extension = File.extname(layout_file[:relative_path])
engine = extension[1..-1].to_sym
# Store last engine for later (could be inside nested renders)
self.current_engine = engine
engine_was = current_engine
# By default, no content is captured
content = ''
# Attempt to capture HTML from block
begin
content = capture_html(&block) if block_given?
ensure
# Reset stored buffer, regardless of success
restore_buffer(buf_was)
end
@vertices <<= ::Middleman::Dependencies::FileVertex.from_source_file(@app, layout_file)
# Render the layout, with the contents of the block inside.
concat_safe_content render_file(layout_file, @locs, @opts) { content }
ensure
# Reset engine back to template's value, regardless of success
self.current_engine = engine_was
end | [
"def",
"wrap_layout",
"(",
"layout_name",
",",
"&",
"block",
")",
"# Save current buffer for later",
"buf_was",
"=",
"save_buffer",
"# Find a layout for this file",
"layout_file",
"=",
"::",
"Middleman",
"::",
"TemplateRenderer",
".",
"locate_layout",
"(",
"@app",
",",
... | Allow layouts to be wrapped in the contents of other layouts.
@param [String, Symbol] layout_name
@return [void] | [
"Allow",
"layouts",
"to",
"be",
"wrapped",
"in",
"the",
"contents",
"of",
"other",
"layouts",
"."
] | a0dd9f78094813162895511e8516e0c5507cee50 | https://github.com/middleman/middleman/blob/a0dd9f78094813162895511e8516e0c5507cee50/middleman-core/lib/middleman-core/template_context.rb#L81-L114 | train | Wrap a layout with a block | [
30522,
13366,
10236,
1035,
9621,
1006,
9621,
1035,
2171,
1010,
1004,
3796,
1007,
1001,
3828,
2783,
17698,
2005,
2101,
20934,
2546,
1035,
2001,
1027,
3828,
1035,
17698,
1001,
2424,
1037,
9621,
2005,
2023,
5371,
9621,
1035,
5371,
1027,
1024,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
refile/refile | lib/refile/rails/attachment_helper.rb | Refile.AttachmentHelper.attachment_field | def attachment_field(object_name, method, object:, **options)
options[:data] ||= {}
definition = object.send(:"#{method}_attachment_definition")
options[:accept] = definition.accept
if options[:direct]
url = Refile.attachment_upload_url(object, method, host: options[:host], prefix: options[:prefix])
options[:data].merge!(direct: true, as: "file", url: url)
end
if options[:presigned] and definition.cache.respond_to?(:presign)
url = Refile.attachment_presign_url(object, method, host: options[:host], prefix: options[:prefix])
options[:data].merge!(direct: true, presigned: true, url: url)
end
options[:data][:reference] = SecureRandom.hex
options[:include_hidden] = false
attachment_cache_field(object_name, method, object: object, **options) + file_field(object_name, method, options)
end | ruby | def attachment_field(object_name, method, object:, **options)
options[:data] ||= {}
definition = object.send(:"#{method}_attachment_definition")
options[:accept] = definition.accept
if options[:direct]
url = Refile.attachment_upload_url(object, method, host: options[:host], prefix: options[:prefix])
options[:data].merge!(direct: true, as: "file", url: url)
end
if options[:presigned] and definition.cache.respond_to?(:presign)
url = Refile.attachment_presign_url(object, method, host: options[:host], prefix: options[:prefix])
options[:data].merge!(direct: true, presigned: true, url: url)
end
options[:data][:reference] = SecureRandom.hex
options[:include_hidden] = false
attachment_cache_field(object_name, method, object: object, **options) + file_field(object_name, method, options)
end | [
"def",
"attachment_field",
"(",
"object_name",
",",
"method",
",",
"object",
":",
",",
"**",
"options",
")",
"options",
"[",
":data",
"]",
"||=",
"{",
"}",
"definition",
"=",
"object",
".",
"send",
"(",
":\"",
"#{",
"method",
"}",
"\"",
")",
"options",... | Generates a form field which can be used with records which have
attachments. This will generate both a file field as well as a hidden
field which tracks the id of the file in the cache before it is
permanently stored.
@param object_name The name of the object to generate a field for
@param method The name of the field
@param [Hash] options
@option options [Object] object Set by the form builder, currently required for direct/presigned uploads to work.
@option options [Boolean] direct If set to true, adds the appropriate data attributes for direct uploads with refile.js.
@option options [Boolean] presign If set to true, adds the appropriate data attributes for presigned uploads with refile.js.
@return [ActiveSupport::SafeBuffer] The generated form field | [
"Generates",
"a",
"form",
"field",
"which",
"can",
"be",
"used",
"with",
"records",
"which",
"have",
"attachments",
".",
"This",
"will",
"generate",
"both",
"a",
"file",
"field",
"as",
"well",
"as",
"a",
"hidden",
"field",
"which",
"tracks",
"the",
"id",
... | e910f5ca5a9060c307bd0a5e813f1fec73219ed5 | https://github.com/refile/refile/blob/e910f5ca5a9060c307bd0a5e813f1fec73219ed5/lib/refile/rails/attachment_helper.rb#L75-L95 | train | Returns the field for an attachment | [
30522,
13366,
14449,
1035,
2492,
1006,
4874,
1035,
2171,
1010,
4118,
1010,
4874,
1024,
1010,
1008,
1008,
7047,
1007,
7047,
1031,
1024,
2951,
1033,
1064,
1064,
1027,
1063,
1065,
6210,
1027,
4874,
1012,
4604,
1006,
1024,
1000,
1001,
1063,
4... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/application_security_groups.rb | Azure::Network::Mgmt::V2019_02_01.ApplicationSecurityGroups.begin_delete | def begin_delete(resource_group_name, application_security_group_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, application_security_group_name, custom_headers:custom_headers).value!
nil
end | ruby | def begin_delete(resource_group_name, application_security_group_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, application_security_group_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"begin_delete",
"(",
"resource_group_name",
",",
"application_security_group_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_delete_async",
"(",
"resource_group_name",
",",
"application_security_group_name",
",",
"custom_headers",
":custom_header... | Deletes the specified application security group.
@param resource_group_name [String] The name of the resource group.
@param application_security_group_name [String] The name of the application
security group.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"the",
"specified",
"application",
"security",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/application_security_groups.rb#L437-L440 | train | Deletes the specified application security group. | [
30522,
13366,
4088,
1035,
3972,
12870,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
4646,
1035,
3036,
1035,
2177,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
4088,
1035,
3972,
12870,
1035,
2004,
6038,
2278,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
randym/axlsx | lib/axlsx/drawing/bar_series.rb | Axlsx.BarSeries.to_xml_string | def to_xml_string(str = '')
super(str) do
colors.each_with_index do |c, index|
str << '<c:dPt>'
str << ('<c:idx val="' << index.to_s << '"/>')
str << '<c:spPr><a:solidFill>'
str << ('<a:srgbClr val="' << c << '"/>')
str << '</a:solidFill></c:spPr></c:dPt>'
end
@labels.to_xml_string(str) unless @labels.nil?
@data.to_xml_string(str) unless @data.nil?
# this is actually only required for shapes other than box
str << ('<c:shape val="' << shape.to_s << '"></c:shape>')
end
end | ruby | def to_xml_string(str = '')
super(str) do
colors.each_with_index do |c, index|
str << '<c:dPt>'
str << ('<c:idx val="' << index.to_s << '"/>')
str << '<c:spPr><a:solidFill>'
str << ('<a:srgbClr val="' << c << '"/>')
str << '</a:solidFill></c:spPr></c:dPt>'
end
@labels.to_xml_string(str) unless @labels.nil?
@data.to_xml_string(str) unless @data.nil?
# this is actually only required for shapes other than box
str << ('<c:shape val="' << shape.to_s << '"></c:shape>')
end
end | [
"def",
"to_xml_string",
"(",
"str",
"=",
"''",
")",
"super",
"(",
"str",
")",
"do",
"colors",
".",
"each_with_index",
"do",
"|",
"c",
",",
"index",
"|",
"str",
"<<",
"'<c:dPt>'",
"str",
"<<",
"(",
"'<c:idx val=\"'",
"<<",
"index",
".",
"to_s",
"<<",
... | Serializes the object
@param [String] str
@return [String] | [
"Serializes",
"the",
"object"
] | c593a08b2a929dac7aa8dc418b55e26b4c49dc34 | https://github.com/randym/axlsx/blob/c593a08b2a929dac7aa8dc418b55e26b4c49dc34/lib/axlsx/drawing/bar_series.rb#L54-L70 | train | Convert the object to XML string. | [
30522,
13366,
2000,
1035,
20950,
1035,
5164,
1006,
2358,
2099,
1027,
1005,
1005,
1007,
3565,
1006,
2358,
2099,
1007,
2079,
6087,
1012,
2169,
1035,
2007,
1035,
5950,
2079,
1064,
1039,
1010,
5950,
1064,
2358,
2099,
1026,
1026,
1005,
1026,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | data/azure_cognitiveservices_customvisiontraining/lib/3.0/generated/azure_cognitiveservices_customvisiontraining/customvisiontraining_client.rb | Azure::CognitiveServices::Customvisiontraining::V3_0.CustomvisiontrainingClient.create_images_from_data_with_http_info | def create_images_from_data_with_http_info(project_id, image_data, tag_ids:nil, custom_headers:nil)
create_images_from_data_async(project_id, image_data, tag_ids:tag_ids, custom_headers:custom_headers).value!
end | ruby | def create_images_from_data_with_http_info(project_id, image_data, tag_ids:nil, custom_headers:nil)
create_images_from_data_async(project_id, image_data, tag_ids:tag_ids, custom_headers:custom_headers).value!
end | [
"def",
"create_images_from_data_with_http_info",
"(",
"project_id",
",",
"image_data",
",",
"tag_ids",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"create_images_from_data_async",
"(",
"project_id",
",",
"image_data",
",",
"tag_ids",
":tag_ids",
",",
"custom_h... | Add the provided images to the set of training images.
This API accepts body content as multipart/form-data and
application/octet-stream. When using multipart
multiple image files can be sent at once, with a maximum of 64 files
@param project_id The project id.
@param image_data Binary image data. Supported formats are JPEG, GIF, PNG,
and BMP. Supports images up to 6MB.
@param tag_ids The tags ids with which to tag each image. Limited to 20.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Add",
"the",
"provided",
"images",
"to",
"the",
"set",
"of",
"training",
"images",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_customvisiontraining/lib/3.0/generated/azure_cognitiveservices_customvisiontraining/customvisiontraining_client.rb#L1398-L1400 | train | Creates a list of images from the image data. | [
30522,
13366,
3443,
1035,
4871,
1035,
2013,
1035,
2951,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
2622,
1035,
8909,
1010,
3746,
1035,
2951,
1010,
6415,
1035,
8909,
2015,
1024,
9152,
2140,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/diagnostics.rb | Azure::Web::Mgmt::V2018_02_01.Diagnostics.list_site_diagnostic_categories_next | def list_site_diagnostic_categories_next(next_page_link, custom_headers:nil)
response = list_site_diagnostic_categories_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_site_diagnostic_categories_next(next_page_link, custom_headers:nil)
response = list_site_diagnostic_categories_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_site_diagnostic_categories_next",
"(",
"next_page_link",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_site_diagnostic_categories_next_async",
"(",
"next_page_link",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",... | Get Diagnostics Categories
Get Diagnostics Categories
@param next_page_link [String] The NextLink from the previous successful call
to List operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [DiagnosticCategoryCollection] operation results. | [
"Get",
"Diagnostics",
"Categories"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/diagnostics.rb#L2722-L2725 | train | Gets the site diagnostic categories. | [
30522,
13366,
2862,
1035,
2609,
1035,
16474,
1035,
7236,
1035,
2279,
1006,
2279,
1035,
3931,
1035,
4957,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
2862,
1035,
2609,
1035,
16474,
1035,
7236,
1035,
2279,
1035,
2004,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
aws/aws-sdk-ruby | gems/aws-sdk-rds/lib/aws-sdk-rds/db_cluster.rb | Aws::RDS.DBCluster.snapshots | def snapshots(options = {})
batches = Enumerator.new do |y|
batch = []
options = options.merge(db_cluster_identifier: @id)
resp = @client.describe_db_cluster_snapshots(options)
resp.data.db_cluster_snapshots.each do |d|
batch << DBClusterSnapshot.new(
cluster_id: @id,
snapshot_id: d.db_cluster_snapshot_identifier,
data: d,
client: @client
)
end
y.yield(batch)
end
DBClusterSnapshot::Collection.new(batches)
end | ruby | def snapshots(options = {})
batches = Enumerator.new do |y|
batch = []
options = options.merge(db_cluster_identifier: @id)
resp = @client.describe_db_cluster_snapshots(options)
resp.data.db_cluster_snapshots.each do |d|
batch << DBClusterSnapshot.new(
cluster_id: @id,
snapshot_id: d.db_cluster_snapshot_identifier,
data: d,
client: @client
)
end
y.yield(batch)
end
DBClusterSnapshot::Collection.new(batches)
end | [
"def",
"snapshots",
"(",
"options",
"=",
"{",
"}",
")",
"batches",
"=",
"Enumerator",
".",
"new",
"do",
"|",
"y",
"|",
"batch",
"=",
"[",
"]",
"options",
"=",
"options",
".",
"merge",
"(",
"db_cluster_identifier",
":",
"@id",
")",
"resp",
"=",
"@clie... | @example Request syntax with placeholder values
snapshots = db_cluster.snapshots({
db_cluster_snapshot_identifier: "String",
snapshot_type: "String",
filters: [
{
name: "String", # required
values: ["String"], # required
},
],
max_records: 1,
marker: "String",
include_shared: false,
include_public: false,
})
@param [Hash] options ({})
@option options [String] :db_cluster_snapshot_identifier
A specific DB cluster snapshot identifier to describe. This parameter
can't be used in conjunction with the `DBClusterIdentifier`
parameter. This value is stored as a lowercase string.
Constraints:
* If supplied, must match the identifier of an existing
DBClusterSnapshot.
* If this identifier is for an automated snapshot, the `SnapshotType`
parameter must also be specified.
@option options [String] :snapshot_type
The type of DB cluster snapshots to be returned. You can specify one
of the following values:
* `automated` - Return all DB cluster snapshots that have been
automatically taken by Amazon RDS for my AWS account.
* `manual` - Return all DB cluster snapshots that have been taken by
my AWS account.
* `shared` - Return all manual DB cluster snapshots that have been
shared to my AWS account.
* `public` - Return all DB cluster snapshots that have been marked as
public.
If you don't specify a `SnapshotType` value, then both automated and
manual DB cluster snapshots are returned. You can include shared DB
cluster snapshots with these results by setting the `IncludeShared`
parameter to `true`. You can include public DB cluster snapshots with
these results by setting the `IncludePublic` parameter to `true`.
The `IncludeShared` and `IncludePublic` parameters don't apply for
`SnapshotType` values of `manual` or `automated`. The `IncludePublic`
parameter doesn't apply when `SnapshotType` is set to `shared`. The
`IncludeShared` parameter doesn't apply when `SnapshotType` is set to
`public`.
@option options [Array<Types::Filter>] :filters
This parameter is not currently supported.
@option options [Integer] :max_records
The maximum number of records to include in the response. If more
records exist than the specified `MaxRecords` value, a pagination
token called a marker is included in the response so that the
remaining results can be retrieved.
Default: 100
Constraints: Minimum 20, maximum 100.
@option options [String] :marker
An optional pagination token provided by a previous
`DescribeDBClusterSnapshots` request. If this parameter is specified,
the response includes only records beyond the marker, up to the value
specified by `MaxRecords`.
@option options [Boolean] :include_shared
True to include shared manual DB cluster snapshots from other AWS
accounts that this AWS account has been given permission to copy or
restore, and otherwise false. The default is `false`.
You can give an AWS account permission to restore a manual DB cluster
snapshot from another AWS account by the
ModifyDBClusterSnapshotAttribute API action.
@option options [Boolean] :include_public
True to include manual DB cluster snapshots that are public and can be
copied or restored by any AWS account, and otherwise false. The
default is `false`. The default is false.
You can share a manual DB cluster snapshot as public by using the
ModifyDBClusterSnapshotAttribute API action.
@return [DBClusterSnapshot::Collection] | [
"@example",
"Request",
"syntax",
"with",
"placeholder",
"values"
] | e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d | https://github.com/aws/aws-sdk-ruby/blob/e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d/gems/aws-sdk-rds/lib/aws-sdk-rds/db_cluster.rb#L1536-L1552 | train | Returns a collection of all the snapshots in the cluster. | [
30522,
13366,
20057,
12326,
2015,
1006,
7047,
1027,
1063,
1065,
1007,
14108,
2229,
1027,
4372,
17897,
16259,
1012,
2047,
2079,
1064,
1061,
1064,
14108,
1027,
1031,
1033,
7047,
1027,
7047,
1012,
13590,
1006,
16962,
1035,
9324,
1035,
8909,
47... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | data/azure_cognitiveservices_imagesearch/lib/1.0/generated/azure_cognitiveservices_imagesearch/images_operations.rb | Azure::CognitiveServices::ImageSearch::V1_0.ImagesOperations.details | def details(query, accept_language:nil, content_type:nil, user_agent:nil, client_id:nil, client_ip:nil, location:nil, crop_bottom:nil, crop_left:nil, crop_right:nil, crop_top:nil, crop_type:nil, country_code:nil, id:nil, image_url:nil, insights_token:nil, modules:nil, market:nil, safe_search:nil, set_lang:nil, custom_headers:nil)
response = details_async(query, accept_language:accept_language, content_type:content_type, user_agent:user_agent, client_id:client_id, client_ip:client_ip, location:location, crop_bottom:crop_bottom, crop_left:crop_left, crop_right:crop_right, crop_top:crop_top, crop_type:crop_type, country_code:country_code, id:id, image_url:image_url, insights_token:insights_token, modules:modules, market:market, safe_search:safe_search, set_lang:set_lang, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def details(query, accept_language:nil, content_type:nil, user_agent:nil, client_id:nil, client_ip:nil, location:nil, crop_bottom:nil, crop_left:nil, crop_right:nil, crop_top:nil, crop_type:nil, country_code:nil, id:nil, image_url:nil, insights_token:nil, modules:nil, market:nil, safe_search:nil, set_lang:nil, custom_headers:nil)
response = details_async(query, accept_language:accept_language, content_type:content_type, user_agent:user_agent, client_id:client_id, client_ip:client_ip, location:location, crop_bottom:crop_bottom, crop_left:crop_left, crop_right:crop_right, crop_top:crop_top, crop_type:crop_type, country_code:country_code, id:id, image_url:image_url, insights_token:insights_token, modules:modules, market:market, safe_search:safe_search, set_lang:set_lang, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"details",
"(",
"query",
",",
"accept_language",
":",
"nil",
",",
"content_type",
":",
"nil",
",",
"user_agent",
":",
"nil",
",",
"client_id",
":",
"nil",
",",
"client_ip",
":",
"nil",
",",
"location",
":",
"nil",
",",
"crop_bottom",
":",
"nil",
... | The Image Detail Search API lets you search on Bing and get back insights
about an image, such as webpages that include the image. This section
provides technical details about the query parameters and headers that you
use to request insights of images and the JSON response objects that contain
them. For examples that show how to make requests, see [Searching the Web for
Images](https://docs.microsoft.com/azure/cognitive-services/bing-image-search/search-the-web).
@param query [String] The user's search query term. The term cannot be empty.
The term may contain [Bing Advanced
Operators](http://msdn.microsoft.com/library/ff795620.aspx). For example, to
limit images to a specific domain, use the
[site:](http://msdn.microsoft.com/library/ff795613.aspx) operator. To help
improve relevance of an insights query (see
[insightsToken](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#insightstoken)),
you should always include the user's query term. Use this parameter only with
the Image Search API.Do not specify this parameter when calling the Trending
Images API.
@param accept_language [String] A comma-delimited list of one or more
languages to use for user interface strings. The list is in decreasing order
of preference. For additional information, including expected format, see
[RFC2616](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). This
header and the
[setLang](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#setlang)
query parameter are mutually exclusive; do not specify both. If you set this
header, you must also specify the
[cc](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#cc)
query parameter. To determine the market to return results for, Bing uses the
first supported language it finds from the list and combines it with the cc
parameter value. If the list does not include a supported language, Bing
finds the closest language and market that supports the request or it uses an
aggregated or default market for the results. To determine the market that
Bing used, see the BingAPIs-Market header. Use this header and the cc query
parameter only if you specify multiple languages. Otherwise, use the
[mkt](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#mkt)
and
[setLang](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#setlang)
query parameters. A user interface string is a string that's used as a label
in a user interface. There are few user interface strings in the JSON
response objects. Any links to Bing.com properties in the response objects
apply the specified language.
@param content_type [String] Optional request header. If you set the
[modules](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#modulesrequested)
query parameter to RecognizedEntities, you may specify the binary of an image
in the body of a POST request. If you specify the image in the body of a POST
request, you must specify this header and set its value to
multipart/form-data. The maximum image size is 1 MB.
@param user_agent [String] The user agent originating the request. Bing uses
the user agent to provide mobile users with an optimized experience. Although
optional, you are encouraged to always specify this header. The user-agent
should be the same string that any commonly used browser sends. For
information about user agents, see [RFC
2616](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). The following
are examples of user-agent strings. Windows Phone: Mozilla/5.0 (compatible;
MSIE 10.0; Windows Phone 8.0; Trident/6.0; IEMobile/10.0; ARM; Touch; NOKIA;
Lumia 822). Android: Mozilla / 5.0 (Linux; U; Android 2.3.5; en - us; SCH -
I500 Build / GINGERBREAD) AppleWebKit / 533.1 (KHTML; like Gecko) Version /
4.0 Mobile Safari / 533.1. iPhone: Mozilla / 5.0 (iPhone; CPU iPhone OS 6_1
like Mac OS X) AppleWebKit / 536.26 (KHTML; like Gecko) Mobile / 10B142
iPhone4; 1 BingWeb / 3.03.1428.20120423. PC: Mozilla / 5.0 (Windows NT 6.3;
WOW64; Trident / 7.0; Touch; rv:11.0) like Gecko. iPad: Mozilla / 5.0 (iPad;
CPU OS 7_0 like Mac OS X) AppleWebKit / 537.51.1 (KHTML, like Gecko) Version
/ 7.0 Mobile / 11A465 Safari / 9537.53
@param client_id [String] Bing uses this header to provide users with
consistent behavior across Bing API calls. Bing often flights new features
and improvements, and it uses the client ID as a key for assigning traffic on
different flights. If you do not use the same client ID for a user across
multiple requests, then Bing may assign the user to multiple conflicting
flights. Being assigned to multiple conflicting flights can lead to an
inconsistent user experience. For example, if the second request has a
different flight assignment than the first, the experience may be unexpected.
Also, Bing can use the client ID to tailor web results to that client ID’s
search history, providing a richer experience for the user. Bing also uses
this header to help improve result rankings by analyzing the activity
generated by a client ID. The relevance improvements help with better quality
of results delivered by Bing APIs and in turn enables higher click-through
rates for the API consumer. IMPORTANT: Although optional, you should consider
this header required. Persisting the client ID across multiple requests for
the same end user and device combination enables 1) the API consumer to
receive a consistent user experience, and 2) higher click-through rates via
better quality of results from the Bing APIs. Each user that uses your
application on the device must have a unique, Bing generated client ID. If
you do not include this header in the request, Bing generates an ID and
returns it in the X-MSEdge-ClientID response header. The only time that you
should NOT include this header in a request is the first time the user uses
your app on that device. Use the client ID for each Bing API request that
your app makes for this user on the device. Persist the client ID. To persist
the ID in a browser app, use a persistent HTTP cookie to ensure the ID is
used across all sessions. Do not use a session cookie. For other apps such as
mobile apps, use the device's persistent storage to persist the ID. The next
time the user uses your app on that device, get the client ID that you
persisted. Bing responses may or may not include this header. If the response
includes this header, capture the client ID and use it for all subsequent
Bing requests for the user on that device. If you include the
X-MSEdge-ClientID, you must not include cookies in the request.
@param client_ip [String] The IPv4 or IPv6 address of the client device. The
IP address is used to discover the user's location. Bing uses the location
information to determine safe search behavior. Although optional, you are
encouraged to always specify this header and the X-Search-Location header. Do
not obfuscate the address (for example, by changing the last octet to 0).
Obfuscating the address results in the location not being anywhere near the
device's actual location, which may result in Bing serving erroneous results.
@param location [String] A semicolon-delimited list of key/value pairs that
describe the client's geographical location. Bing uses the location
information to determine safe search behavior and to return relevant local
content. Specify the key/value pair as <key>:<value>. The following are the
keys that you use to specify the user's location. lat (required): The
latitude of the client's location, in degrees. The latitude must be greater
than or equal to -90.0 and less than or equal to +90.0. Negative values
indicate southern latitudes and positive values indicate northern latitudes.
long (required): The longitude of the client's location, in degrees. The
longitude must be greater than or equal to -180.0 and less than or equal to
+180.0. Negative values indicate western longitudes and positive values
indicate eastern longitudes. re (required): The radius, in meters, which
specifies the horizontal accuracy of the coordinates. Pass the value returned
by the device's location service. Typical values might be 22m for GPS/Wi-Fi,
380m for cell tower triangulation, and 18,000m for reverse IP lookup. ts
(optional): The UTC UNIX timestamp of when the client was at the location.
(The UNIX timestamp is the number of seconds since January 1, 1970.) head
(optional): The client's relative heading or direction of travel. Specify the
direction of travel as degrees from 0 through 360, counting clockwise
relative to true north. Specify this key only if the sp key is nonzero. sp
(optional): The horizontal velocity (speed), in meters per second, that the
client device is traveling. alt (optional): The altitude of the client
device, in meters. are (optional): The radius, in meters, that specifies the
vertical accuracy of the coordinates. Specify this key only if you specify
the alt key. Although many of the keys are optional, the more information
that you provide, the more accurate the location results are. Although
optional, you are encouraged to always specify the user's geographical
location. Providing the location is especially important if the client's IP
address does not accurately reflect the user's physical location (for
example, if the client uses VPN). For optimal results, you should include
this header and the X-MSEdge-ClientIP header, but at a minimum, you should
include this header.
@param crop_bottom [Float] The bottom coordinate of the region to crop. The
coordinate is a fractional value of the original image's height and is
measured from the top, left corner of the image. Specify the coordinate as a
value from 0.0 through 1.0. Use this parameter only with the Insights API. Do
not specify this parameter when calling the Images, Trending Images, or Web
Search APIs.
@param crop_left [Float] The left coordinate of the region to crop. The
coordinate is a fractional value of the original image's height and is
measured from the top, left corner of the image. Specify the coordinate as a
value from 0.0 through 1.0. Use this parameter only with the Insights API. Do
not specify this parameter when calling the Images, Trending Images, or Web
Search APIs.
@param crop_right [Float] The right coordinate of the region to crop. The
coordinate is a fractional value of the original image's height and is
measured from the top, left corner of the image. Specify the coordinate as a
value from 0.0 through 1.0. Use this parameter only with the Insights API. Do
not specify this parameter when calling the Images, Trending Images, or Web
Search APIs.
@param crop_top [Float] The top coordinate of the region to crop. The
coordinate is a fractional value of the original image's height and is
measured from the top, left corner of the image. Specify the coordinate as a
value from 0.0 through 1.0. Use this parameter only with the Insights API. Do
not specify this parameter when calling the Images, Trending Images, or Web
Search APIs.
@param crop_type [ImageCropType] The crop type to use when cropping the image
based on the coordinates specified in the cal, cat, car, and cab parameters.
The following are the possible values. 0: Rectangular (default). Use this
parameter only with the Insights API. Do not specify this parameter when
calling the Images, Trending Images, or Web Search APIs. Possible values
include: 'Rectangular'
@param country_code [String] A 2-character country code of the country where
the results come from. For a list of possible values, see [Market
Codes](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#market-codes).
If you set this parameter, you must also specify the
[Accept-Language](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#acceptlanguage)
header. Bing uses the first supported language it finds from the languages
list, and combine that language with the country code that you specify to
determine the market to return results for. If the languages list does not
include a supported language, Bing finds the closest language and market that
supports the request, or it may use an aggregated or default market for the
results instead of a specified one. You should use this query parameter and
the Accept-Language query parameter only if you specify multiple languages;
otherwise, you should use the mkt and setLang query parameters. This
parameter and the
[mkt](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#mkt)
query parameter are mutually exclusive—do not specify both.
@param id [String] An ID that uniquely identifies an image. Use this
parameter to ensure that the specified image is the first image in the list
of images that Bing returns. The
[Image](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#image)
object's imageId field contains the ID that you set this parameter to.
@param image_url [String] The URL of an image that you want to get insights
of. Use this parameter as an alternative to using the insightsToken parameter
to specify the image. You may also specify the image by placing the binary of
the image in the body of a POST request. If you use the binary option, see
the
[Content-Type](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#contenttype)
header. The maximum supported image size is 1 MB. Use this parameter only
with the Insights API. Do not specify this parameter when calling the Images,
Trending Images, or Web Search APIs.
@param insights_token [String] An image token. The
[Image](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#image)
object's
[imageInsightsToken](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#image-imageinsightstoken)
contains the token. Specify this parameter to get additional information
about an image, such as a caption or shopping source. For a list of the
additional information about an image that you can get, see the
[modules](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#modulesrequested)
query parameter. Use this parameter only with the Insights API. Do not
specify this parameter when calling the Images, Trending Images, or Web
Search APIs.
@param modules [Array<ImageInsightModule>] A comma-delimited list of insights
to request. The following are the possible case-insensitive values. All:
Return all insights, if available, except RecognizedEntities. BRQ: Best
representative query. The query term that best describes the image. Caption:
A caption that provides information about the image. If the caption contains
entities, the response may include links to images of those entities.
Collections: A list of related images. Recipes: A list of recipes for cooking
the food shown in the images. PagesIncluding: A list of webpages that include
the image. RecognizedEntities: A list of entities (people) that were
recognized in the image. NOTE: You may not specify this module with any other
module. If you specify it with other modules, the response doesn't include
recognized entities. RelatedSearches: A list of related searches made by
others. ShoppingSources: A list of merchants where you can buy related
offerings. SimilarImages: A list of images that are visually similar to the
original image. SimilarProducts: A list of images that contain a product that
is similar to a product found in the original image. Tags: Provides
characteristics of the type of content found in the image. For example, if
the image is of a person, the tags might indicate the person's gender and
type of clothes they're wearing. If you specify a module and there is no data
for the module, the response object doesn't include the related field. For
example, if you specify Caption and it does not exist, the response doesn't
include the imageCaption field. To include related searches, the request must
include the original query string. Although the original query string is not
required for similar images or products, you should always include it because
it can help improve relevance and the results. Use this parameter only with
the Insights API. Do not specify this parameter when calling the Images,
Trending Images, or Web Search APIs.
@param market [String] The market where the results come from. Typically, mkt
is the country where the user is making the request from. However, it could
be a different country if the user is not located in a country where Bing
delivers results. The market must be in the form <language code>-<country
code>. For example, en-US. The string is case insensitive. For a list of
possible market values, see [Market
Codes](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#market-codes).
NOTE: If known, you are encouraged to always specify the market. Specifying
the market helps Bing route the request and return an appropriate and optimal
response. If you specify a market that is not listed in [Market
Codes](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#market-codes),
Bing uses a best fit market code based on an internal mapping that is subject
to change. This parameter and the
[cc](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#cc)
query parameter are mutually exclusive—do not specify both.
@param safe_search [SafeSearch] Filter images for adult content. The
following are the possible filter values. Off: May return images with adult
content. If the request is through the Image Search API, the response
includes thumbnail images that are clear (non-fuzzy). However, if the request
is through the Web Search API, the response includes thumbnail images that
are pixelated (fuzzy). Moderate: If the request is through the Image Search
API, the response doesn't include images with adult content. If the request
is through the Web Search API, the response may include images with adult
content (the thumbnail images are pixelated (fuzzy)). Strict: Do not return
images with adult content. The default is Moderate. If the request comes from
a market that Bing's adult policy requires that safeSearch is set to Strict,
Bing ignores the safeSearch value and uses Strict. If you use the site: query
operator, there is the chance that the response may contain adult content
regardless of what the safeSearch query parameter is set to. Use site: only
if you are aware of the content on the site and your scenario supports the
possibility of adult content. Possible values include: 'Off', 'Moderate',
'Strict'
@param set_lang [String] The language to use for user interface strings.
Specify the language using the ISO 639-1 2-letter language code. For example,
the language code for English is EN. The default is EN (English). Although
optional, you should always specify the language. Typically, you set setLang
to the same language specified by mkt unless the user wants the user
interface strings displayed in a different language. This parameter and the
[Accept-Language](https://docs.microsoft.com/en-us/rest/api/cognitiveservices/bing-images-api-v7-reference#acceptlanguage)
header are mutually exclusive; do not specify both. A user interface string
is a string that's used as a label in a user interface. There are few user
interface strings in the JSON response objects. Also, any links to Bing.com
properties in the response objects apply the specified language.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ImageInsights] operation results. | [
"The",
"Image",
"Detail",
"Search",
"API",
"lets",
"you",
"search",
"on",
"Bing",
"and",
"get",
"back",
"insights",
"about",
"an",
"image",
"such",
"as",
"webpages",
"that",
"include",
"the",
"image",
".",
"This",
"section",
"provides",
"technical",
"details... | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_imagesearch/lib/1.0/generated/azure_cognitiveservices_imagesearch/images_operations.rb#L1302-L1305 | train | Returns the list of the available images for the specified search. | [
30522,
13366,
4751,
1006,
23032,
1010,
5138,
1035,
2653,
1024,
9152,
2140,
1010,
4180,
1035,
2828,
1024,
9152,
2140,
1010,
5310,
1035,
4005,
1024,
9152,
2140,
1010,
7396,
1035,
8909,
1024,
9152,
2140,
1010,
7396,
1035,
12997,
1024,
9152,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/diagnostics.rb | Azure::Web::Mgmt::V2018_02_01.Diagnostics.list_site_detectors_next | def list_site_detectors_next(next_page_link, custom_headers:nil)
response = list_site_detectors_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_site_detectors_next(next_page_link, custom_headers:nil)
response = list_site_detectors_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_site_detectors_next",
"(",
"next_page_link",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_site_detectors_next_async",
"(",
"next_page_link",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
... | Get Detectors
Get Detectors
@param next_page_link [String] The NextLink from the previous successful call
to List operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [DiagnosticDetectorCollection] operation results. | [
"Get",
"Detectors"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/diagnostics.rb#L2910-L2913 | train | Gets the list of site detectors. | [
30522,
13366,
2862,
1035,
2609,
1035,
25971,
1035,
2279,
1006,
2279,
1035,
3931,
1035,
4957,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
2862,
1035,
2609,
1035,
25971,
1035,
2279,
1035,
2004,
6038,
2278,
1006,
2279,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
boazsegev/combine_pdf | lib/combine_pdf/page_methods.rb | CombinePDF.Page_Methods.graphic_state | def graphic_state(graphic_state_dictionary = {})
# if the graphic state exists, return it's name
resources[:ExtGState] ||= {}
gs_res = resources[:ExtGState][:referenced_object] || resources[:ExtGState]
gs_res.each do |k, v|
return k if v.is_a?(Hash) && v == graphic_state_dictionary
end
# set graphic state type
graphic_state_dictionary[:Type] = :ExtGState
# set a secure name for the graphic state
name = SecureRandom.hex(9).to_sym
# add object to reasource
gs_res[name] = graphic_state_dictionary
# return name
name
end | ruby | def graphic_state(graphic_state_dictionary = {})
# if the graphic state exists, return it's name
resources[:ExtGState] ||= {}
gs_res = resources[:ExtGState][:referenced_object] || resources[:ExtGState]
gs_res.each do |k, v|
return k if v.is_a?(Hash) && v == graphic_state_dictionary
end
# set graphic state type
graphic_state_dictionary[:Type] = :ExtGState
# set a secure name for the graphic state
name = SecureRandom.hex(9).to_sym
# add object to reasource
gs_res[name] = graphic_state_dictionary
# return name
name
end | [
"def",
"graphic_state",
"(",
"graphic_state_dictionary",
"=",
"{",
"}",
")",
"# if the graphic state exists, return it's name",
"resources",
"[",
":ExtGState",
"]",
"||=",
"{",
"}",
"gs_res",
"=",
"resources",
"[",
":ExtGState",
"]",
"[",
":referenced_object",
"]",
... | register or get a registered graphic state dictionary.
the method returns the name of the graphos state, for use in a content stream. | [
"register",
"or",
"get",
"a",
"registered",
"graphic",
"state",
"dictionary",
".",
"the",
"method",
"returns",
"the",
"name",
"of",
"the",
"graphos",
"state",
"for",
"use",
"in",
"a",
"content",
"stream",
"."
] | 09054051019c069f551f3e60be789577c0f93900 | https://github.com/boazsegev/combine_pdf/blob/09054051019c069f551f3e60be789577c0f93900/lib/combine_pdf/page_methods.rb#L754-L769 | train | Returns the name of the graphic state | [
30522,
13366,
8425,
1035,
2110,
1006,
8425,
1035,
2110,
1035,
9206,
1027,
1063,
1065,
1007,
1001,
2065,
1996,
8425,
2110,
6526,
1010,
2709,
2009,
1005,
1055,
2171,
4219,
1031,
1024,
4654,
2102,
5620,
12259,
1033,
1064,
1064,
1027,
1063,
1... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
aws/aws-sdk-ruby | gems/aws-sdk-rds/lib/aws-sdk-rds/db_engine_version.rb | Aws::RDS.DBEngineVersion.option_groups | def option_groups(options = {})
batches = Enumerator.new do |y|
options = options.merge(
engine_name: @engine,
major_engine_version: @version
)
resp = @client.describe_option_groups(options)
resp.each_page do |page|
batch = []
page.data.option_groups_list.each do |o|
batch << OptionGroup.new(
name: o.option_group_name,
data: o,
client: @client
)
end
y.yield(batch)
end
end
OptionGroup::Collection.new(batches)
end | ruby | def option_groups(options = {})
batches = Enumerator.new do |y|
options = options.merge(
engine_name: @engine,
major_engine_version: @version
)
resp = @client.describe_option_groups(options)
resp.each_page do |page|
batch = []
page.data.option_groups_list.each do |o|
batch << OptionGroup.new(
name: o.option_group_name,
data: o,
client: @client
)
end
y.yield(batch)
end
end
OptionGroup::Collection.new(batches)
end | [
"def",
"option_groups",
"(",
"options",
"=",
"{",
"}",
")",
"batches",
"=",
"Enumerator",
".",
"new",
"do",
"|",
"y",
"|",
"options",
"=",
"options",
".",
"merge",
"(",
"engine_name",
":",
"@engine",
",",
"major_engine_version",
":",
"@version",
")",
"re... | @example Request syntax with placeholder values
option_groups = db_engine_version.option_groups({
option_group_name: "String",
filters: [
{
name: "String", # required
values: ["String"], # required
},
],
})
@param [Hash] options ({})
@option options [String] :option_group_name
The name of the option group to describe. Can't be supplied together
with EngineName or MajorEngineVersion.
@option options [Array<Types::Filter>] :filters
This parameter is not currently supported.
@return [OptionGroup::Collection] | [
"@example",
"Request",
"syntax",
"with",
"placeholder",
"values"
] | e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d | https://github.com/aws/aws-sdk-ruby/blob/e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d/gems/aws-sdk-rds/lib/aws-sdk-rds/db_engine_version.rb#L324-L344 | train | Returns an Enumerator of OptionGroup objects. | [
30522,
13366,
5724,
1035,
2967,
1006,
7047,
1027,
1063,
1065,
1007,
14108,
2229,
1027,
4372,
17897,
16259,
1012,
2047,
2079,
1064,
1061,
1064,
7047,
1027,
7047,
1012,
13590,
1006,
3194,
1035,
2171,
1024,
1030,
3194,
1010,
2350,
1035,
3194,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
sinatra/sinatra | sinatra-contrib/lib/sinatra/config_file.rb | Sinatra.ConfigFile.environment_keys? | def environment_keys?(hash)
hash.is_a?(Hash) && hash.any? { |k, _| environments.include?(k.to_s) }
end | ruby | def environment_keys?(hash)
hash.is_a?(Hash) && hash.any? { |k, _| environments.include?(k.to_s) }
end | [
"def",
"environment_keys?",
"(",
"hash",
")",
"hash",
".",
"is_a?",
"(",
"Hash",
")",
"&&",
"hash",
".",
"any?",
"{",
"|",
"k",
",",
"_",
"|",
"environments",
".",
"include?",
"(",
"k",
".",
"to_s",
")",
"}",
"end"
] | Returns true if supplied with a hash that has any recognized
+environments+ in its root keys. | [
"Returns",
"true",
"if",
"supplied",
"with",
"a",
"hash",
"that",
"has",
"any",
"recognized",
"+",
"environments",
"+",
"in",
"its",
"root",
"keys",
"."
] | 1aa64f9858edc3f93cc8d46e26f724c1ae103b1c | https://github.com/sinatra/sinatra/blob/1aa64f9858edc3f93cc8d46e26f724c1ae103b1c/sinatra-contrib/lib/sinatra/config_file.rb#L166-L168 | train | Returns true if the environment keys are in the environment list | [
30522,
13366,
4044,
1035,
6309,
1029,
1006,
23325,
1007,
23325,
1012,
2003,
1035,
1037,
1029,
1006,
23325,
1007,
1004,
1004,
23325,
1012,
2151,
1029,
1063,
1064,
1047,
1010,
1035,
1064,
10058,
1012,
2421,
1029,
1006,
1047,
1012,
2000,
1035,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
aws/aws-sdk-ruby | gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb | Aws::EC2.Volume.attach_to_instance | def attach_to_instance(options = {})
options = options.merge(volume_id: @id)
resp = @client.attach_volume(options)
resp.data
end | ruby | def attach_to_instance(options = {})
options = options.merge(volume_id: @id)
resp = @client.attach_volume(options)
resp.data
end | [
"def",
"attach_to_instance",
"(",
"options",
"=",
"{",
"}",
")",
"options",
"=",
"options",
".",
"merge",
"(",
"volume_id",
":",
"@id",
")",
"resp",
"=",
"@client",
".",
"attach_volume",
"(",
"options",
")",
"resp",
".",
"data",
"end"
] | @!group Actions
@example Request syntax with placeholder values
volume.attach_to_instance({
device: "String", # required
instance_id: "String", # required
dry_run: false,
})
@param [Hash] options ({})
@option options [required, String] :device
The device name (for example, `/dev/sdh` or `xvdh`).
@option options [required, String] :instance_id
The ID of the instance.
@option options [Boolean] :dry_run
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response.
If you have the required permissions, the error response is
`DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
@return [Types::VolumeAttachment] | [
"@!group",
"Actions",
"@example",
"Request",
"syntax",
"with",
"placeholder",
"values"
] | e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d | https://github.com/aws/aws-sdk-ruby/blob/e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d/gems/aws-sdk-ec2/lib/aws-sdk-ec2/volume.rb#L274-L278 | train | Attach this volume to an instance | [
30522,
13366,
22476,
1035,
2000,
1035,
6013,
1006,
7047,
1027,
1063,
1065,
1007,
7047,
1027,
7047,
1012,
13590,
1006,
3872,
1035,
8909,
1024,
1030,
8909,
1007,
24501,
2361,
1027,
1030,
7396,
1012,
22476,
1035,
3872,
1006,
7047,
1007,
24501,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
aws/aws-sdk-ruby | gems/aws-sdk-glacier/lib/aws-sdk-glacier/account.rb | Aws::Glacier.Account.vaults | def vaults(options = {})
batches = Enumerator.new do |y|
options = options.merge(account_id: @id)
resp = @client.list_vaults(options)
resp.each_page do |page|
batch = []
page.data.vault_list.each do |v|
batch << Vault.new(
account_id: @id,
name: v.vault_name,
data: v,
client: @client
)
end
y.yield(batch)
end
end
Vault::Collection.new(batches)
end | ruby | def vaults(options = {})
batches = Enumerator.new do |y|
options = options.merge(account_id: @id)
resp = @client.list_vaults(options)
resp.each_page do |page|
batch = []
page.data.vault_list.each do |v|
batch << Vault.new(
account_id: @id,
name: v.vault_name,
data: v,
client: @client
)
end
y.yield(batch)
end
end
Vault::Collection.new(batches)
end | [
"def",
"vaults",
"(",
"options",
"=",
"{",
"}",
")",
"batches",
"=",
"Enumerator",
".",
"new",
"do",
"|",
"y",
"|",
"options",
"=",
"options",
".",
"merge",
"(",
"account_id",
":",
"@id",
")",
"resp",
"=",
"@client",
".",
"list_vaults",
"(",
"options... | @example Request syntax with placeholder values
account.vaults()
@param [Hash] options ({})
@return [Vault::Collection] | [
"@example",
"Request",
"syntax",
"with",
"placeholder",
"values"
] | e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d | https://github.com/aws/aws-sdk-ruby/blob/e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d/gems/aws-sdk-glacier/lib/aws-sdk-glacier/account.rb#L194-L212 | train | Returns a collection of Vault objects. | [
30522,
13366,
28658,
1006,
7047,
1027,
1063,
1065,
1007,
14108,
2229,
1027,
4372,
17897,
16259,
1012,
2047,
2079,
1064,
1061,
1064,
7047,
1027,
7047,
1012,
13590,
1006,
4070,
1035,
8909,
1024,
1030,
8909,
1007,
24501,
2361,
1027,
1030,
7396... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/assets.rb | Azure::MediaServices::Mgmt::V2018_07_01.Assets.get_with_http_info | def get_with_http_info(resource_group_name, account_name, asset_name, custom_headers:nil)
get_async(resource_group_name, account_name, asset_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, account_name, asset_name, custom_headers:nil)
get_async(resource_group_name, account_name, asset_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"asset_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"asset_name",
",",
"custom_headers",
":custom_headers",
")",
"."... | Get an Asset
Get the details of an Asset in the Media Services account
@param resource_group_name [String] The name of the resource group within the
Azure subscription.
@param account_name [String] The Media Services account name.
@param asset_name [String] The Asset name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Get",
"an",
"Asset"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/assets.rb#L179-L181 | train | Gets the specified index of the specified asset. | [
30522,
13366,
2131,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
4070,
1035,
2171,
1010,
11412,
1035,
30524,
1035,
2171,
1010,
4070,
1035,
2171,
1010,
11412,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb | Azure::ServiceFabric::V6_2_0_9.ServiceFabricClientAPIs.report_cluster_health_with_http_info | def report_cluster_health_with_http_info(health_information, immediate:false, timeout:60, custom_headers:nil)
report_cluster_health_async(health_information, immediate:immediate, timeout:timeout, custom_headers:custom_headers).value!
end | ruby | def report_cluster_health_with_http_info(health_information, immediate:false, timeout:60, custom_headers:nil)
report_cluster_health_async(health_information, immediate:immediate, timeout:timeout, custom_headers:custom_headers).value!
end | [
"def",
"report_cluster_health_with_http_info",
"(",
"health_information",
",",
"immediate",
":",
"false",
",",
"timeout",
":",
"60",
",",
"custom_headers",
":",
"nil",
")",
"report_cluster_health_async",
"(",
"health_information",
",",
"immediate",
":",
"immediate",
"... | Sends a health report on the Service Fabric cluster.
Sends a health report on a Service Fabric cluster. The report must contain
the information about the source of the health report and property on which
it is reported.
The report is sent to a Service Fabric gateway node, which forwards to the
health store.
The report may be accepted by the gateway, but rejected by the health store
after extra validation.
For example, the health store may reject the report because of an invalid
parameter, like a stale sequence number.
To see whether the report was applied in the health store, run
GetClusterHealth and check that the report appears in the HealthEvents
section.
@param health_information [HealthInformation] Describes the health
information for the health report. This information needs to be present in
all of the health reports sent to the health manager.
@param immediate [Boolean] A flag which indicates whether the report should
be sent immediately.
A health report is sent to a Service Fabric gateway Application, which
forwards to the health store.
If Immediate is set to true, the report is sent immediately from HTTP Gateway
to the health store, regardless of the fabric client settings that the HTTP
Gateway Application is using.
This is useful for critical reports that should be sent as soon as possible.
Depending on timing and other conditions, sending the report may still fail,
for example if the HTTP Gateway is closed or the message doesn't reach the
Gateway.
If Immediate is set to false, the report is sent based on the health client
settings from the HTTP Gateway. Therefore, it will be batched according to
the HealthReportSendInterval configuration.
This is the recommended setting because it allows the health client to
optimize health reporting messages to health store as well as health report
processing.
By default, reports are not sent immediately.
@param timeout [Integer] The server timeout for performing the operation in
seconds. This timeout specifies the time duration that the client is willing
to wait for the requested operation to complete. The default value for this
parameter is 60 seconds.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Sends",
"a",
"health",
"report",
"on",
"the",
"Service",
"Fabric",
"cluster",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L1428-L1430 | train | Report cluster health. | [
30522,
13366,
3189,
1035,
9324,
1035,
2740,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
2740,
1035,
2592,
1010,
6234,
1024,
6270,
1010,
2051,
5833,
1024,
3438,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3189,
1035,
9324,
1035,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
castwide/solargraph | lib/solargraph/workspace.rb | Solargraph.Workspace.generate_require_paths | def generate_require_paths
return configured_require_paths unless gemspec?
result = []
gemspecs.each do |file|
base = File.dirname(file)
# @todo Evaluating gemspec files violates the goal of not running
# workspace code, but this is how Gem::Specification.load does it
# anyway.
begin
spec = eval(File.read(file), binding, file)
next unless Gem::Specification === spec
result.concat(spec.require_paths.map { |path| File.join(base, path) })
rescue Exception => e
# Don't die if we have an error during eval-ing a gem spec.
# Concat the default lib directory instead.
Solargraph.logger.warn "Error reading #{file}: [#{e.class}] #{e.message}"
result.push File.join(base, 'lib')
end
end
result.concat config.require_paths
result.push File.join(directory, 'lib') if result.empty?
result
end | ruby | def generate_require_paths
return configured_require_paths unless gemspec?
result = []
gemspecs.each do |file|
base = File.dirname(file)
# @todo Evaluating gemspec files violates the goal of not running
# workspace code, but this is how Gem::Specification.load does it
# anyway.
begin
spec = eval(File.read(file), binding, file)
next unless Gem::Specification === spec
result.concat(spec.require_paths.map { |path| File.join(base, path) })
rescue Exception => e
# Don't die if we have an error during eval-ing a gem spec.
# Concat the default lib directory instead.
Solargraph.logger.warn "Error reading #{file}: [#{e.class}] #{e.message}"
result.push File.join(base, 'lib')
end
end
result.concat config.require_paths
result.push File.join(directory, 'lib') if result.empty?
result
end | [
"def",
"generate_require_paths",
"return",
"configured_require_paths",
"unless",
"gemspec?",
"result",
"=",
"[",
"]",
"gemspecs",
".",
"each",
"do",
"|",
"file",
"|",
"base",
"=",
"File",
".",
"dirname",
"(",
"file",
")",
"# @todo Evaluating gemspec files violates t... | Generate require paths from gemspecs if they exist or assume the default
lib directory.
@return [Array<String>] | [
"Generate",
"require",
"paths",
"from",
"gemspecs",
"if",
"they",
"exist",
"or",
"assume",
"the",
"default",
"lib",
"directory",
"."
] | 47badb5d151aca775ccbe6c470236089eae7839d | https://github.com/castwide/solargraph/blob/47badb5d151aca775ccbe6c470236089eae7839d/lib/solargraph/workspace.rb#L150-L172 | train | Generate the require paths for the gemspec. | [
30522,
13366,
9699,
1035,
5478,
1035,
10425,
2709,
26928,
1035,
5478,
1035,
10425,
4983,
20296,
5051,
2278,
1029,
2765,
1027,
1031,
1033,
20296,
5051,
6169,
1012,
2169,
2079,
1064,
5371,
1064,
2918,
1027,
5371,
1012,
16101,
18442,
1006,
537... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
aws/aws-sdk-ruby | build_tools/aws-sdk-code-generator/lib/aws-sdk-code-generator/hash_formatter.rb | AwsSdkCodeGenerator.HashFormatter.format | def format(obj)
result = hash(obj, i: @indent, inline:@inline)
result = unwrap(result, obj.size) if !@wrap
result = result.strip if @inline && result.lines.to_a.length == 1
result
end | ruby | def format(obj)
result = hash(obj, i: @indent, inline:@inline)
result = unwrap(result, obj.size) if !@wrap
result = result.strip if @inline && result.lines.to_a.length == 1
result
end | [
"def",
"format",
"(",
"obj",
")",
"result",
"=",
"hash",
"(",
"obj",
",",
"i",
":",
"@indent",
",",
"inline",
":",
"@inline",
")",
"result",
"=",
"unwrap",
"(",
"result",
",",
"obj",
".",
"size",
")",
"if",
"!",
"@wrap",
"result",
"=",
"result",
... | @option options [Boolean] :wrap (true) When `true`, the formatted hash will
be wrapped with curly braces.
@option options [Boolean] :inline (false) When `true` the formatted hash will
contain no newlines.
@option options [Boolean] :quote_strings (false) By default, all hash string values
must contain their own quotes. If you pass `true`, then all hash string
values will be inspected via `#inspect` which will auto-quote them. | [
"@option",
"options",
"[",
"Boolean",
"]",
":",
"wrap",
"(",
"true",
")",
"When",
"true",
"the",
"formatted",
"hash",
"will",
"be",
"wrapped",
"with",
"curly",
"braces",
"."
] | e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d | https://github.com/aws/aws-sdk-ruby/blob/e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d/build_tools/aws-sdk-code-generator/lib/aws-sdk-code-generator/hash_formatter.rb#L21-L26 | train | Returns a string representation of the object. | [
30522,
13366,
4289,
1006,
27885,
3501,
1007,
2765,
1027,
23325,
1006,
27885,
3501,
1010,
1045,
1024,
1030,
27427,
4765,
1010,
23881,
1024,
1030,
23881,
1007,
2765,
1027,
4895,
13088,
9331,
1006,
2765,
1010,
27885,
3501,
1012,
2946,
1007,
20... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_serialconsole/lib/2018-05-01/generated/azure_mgmt_serialconsole/console.rb | Azure::Serialconsole::Mgmt::V2018_05_01.Console.disable_console | def disable_console(custom_headers:nil)
response = disable_console_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def disable_console(custom_headers:nil)
response = disable_console_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"disable_console",
"(",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"disable_console_async",
"(",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Disables Serial Console for a subscription
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SetDisabledResult] operation results. | [
"Disables",
"Serial",
"Console",
"for",
"a",
"subscription"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_serialconsole/lib/2018-05-01/generated/azure_mgmt_serialconsole/console.rb#L118-L121 | train | Disables console. | [
30522,
13366,
4487,
19150,
1035,
10122,
1006,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
4487,
19150,
1035,
10122,
1035,
2004,
6038,
2278,
1006,
7661,
1035,
20346,
2015,
1024,
7661,
1035,
20346,
2015,
1007,
1012,
3643,
999... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb | Azure::ServiceFabric::V6_2_0_9.ServiceFabricClientAPIs.unprovision_application_type_with_http_info | def unprovision_application_type_with_http_info(application_type_name, unprovision_application_type_description_info, timeout:60, custom_headers:nil)
unprovision_application_type_async(application_type_name, unprovision_application_type_description_info, timeout:timeout, custom_headers:custom_headers).value!
end | ruby | def unprovision_application_type_with_http_info(application_type_name, unprovision_application_type_description_info, timeout:60, custom_headers:nil)
unprovision_application_type_async(application_type_name, unprovision_application_type_description_info, timeout:timeout, custom_headers:custom_headers).value!
end | [
"def",
"unprovision_application_type_with_http_info",
"(",
"application_type_name",
",",
"unprovision_application_type_description_info",
",",
"timeout",
":",
"60",
",",
"custom_headers",
":",
"nil",
")",
"unprovision_application_type_async",
"(",
"application_type_name",
",",
... | Removes or unregisters a Service Fabric application type from the cluster.
Removes or unregisters a Service Fabric application type from the cluster.
This operation can only be performed if all application instances of the
application type has been deleted. Once the application type is unregistered,
no new application instances can be created for this particular application
type.
@param application_type_name [String] The name of the application type.
@param unprovision_application_type_description_info
[UnprovisionApplicationTypeDescriptionInfo] The relative path for the
application package in the image store specified during the prior copy
operation.
@param timeout [Integer] The server timeout for performing the operation in
seconds. This timeout specifies the time duration that the client is willing
to wait for the requested operation to complete. The default value for this
parameter is 60 seconds.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Removes",
"or",
"unregisters",
"a",
"Service",
"Fabric",
"application",
"type",
"from",
"the",
"cluster",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.2.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L5232-L5234 | train | Unprovisions the specified application type. | [
30522,
13366,
4895,
21572,
17084,
1035,
4646,
1035,
2828,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
4646,
1035,
2828,
1035,
2171,
1010,
4895,
21572,
17084,
1035,
4646,
1035,
2828,
1035,
6412,
1035,
18558,
1010,
2051,
5833,
1024,
3438,
1010... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_iot_hub/lib/2017-01-19/generated/azure_mgmt_iot_hub/iot_hub_resource.rb | Azure::IotHub::Mgmt::V2017_01_19.IotHubResource.get_keys_for_key_name_with_http_info | def get_keys_for_key_name_with_http_info(resource_group_name, resource_name, key_name, custom_headers:nil)
get_keys_for_key_name_async(resource_group_name, resource_name, key_name, custom_headers:custom_headers).value!
end | ruby | def get_keys_for_key_name_with_http_info(resource_group_name, resource_name, key_name, custom_headers:nil)
get_keys_for_key_name_async(resource_group_name, resource_name, key_name, custom_headers:custom_headers).value!
end | [
"def",
"get_keys_for_key_name_with_http_info",
"(",
"resource_group_name",
",",
"resource_name",
",",
"key_name",
",",
"custom_headers",
":",
"nil",
")",
"get_keys_for_key_name_async",
"(",
"resource_group_name",
",",
"resource_name",
",",
"key_name",
",",
"custom_headers",... | Get a shared access policy by name from an IoT hub. For more information,
see: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-security.
Get a shared access policy by name from an IoT hub. For more information,
see: https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-security.
@param resource_group_name [String] The name of the resource group that
contains the IoT hub.
@param resource_name [String] The name of the IoT hub.
@param key_name [String] The name of the shared access policy.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Get",
"a",
"shared",
"access",
"policy",
"by",
"name",
"from",
"an",
"IoT",
"hub",
".",
"For",
"more",
"information",
"see",
":",
"https",
":",
"//",
"docs",
".",
"microsoft",
".",
"com",
"/",
"azure",
"/",
"iot",
"-",
"hub",
"/",
"iot",
"-",
"hub... | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_iot_hub/lib/2017-01-19/generated/azure_mgmt_iot_hub/iot_hub_resource.rb#L1631-L1633 | train | Gets the keys for the specified key. | [
30522,
13366,
2131,
1035,
6309,
1035,
2005,
1035,
3145,
1035,
2171,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
7692,
1035,
2171,
1010,
3145,
1035,
2171,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_netapp/lib/2017-08-15-preview/generated/azure_mgmt_netapp/snapshots.rb | Azure::NetApp::Mgmt::V2017_08_15_preview.Snapshots.begin_delete_with_http_info | def begin_delete_with_http_info(resource_group_name, account_name, pool_name, volume_name, snapshot_name, custom_headers:nil)
begin_delete_async(resource_group_name, account_name, pool_name, volume_name, snapshot_name, custom_headers:custom_headers).value!
end | ruby | def begin_delete_with_http_info(resource_group_name, account_name, pool_name, volume_name, snapshot_name, custom_headers:nil)
begin_delete_async(resource_group_name, account_name, pool_name, volume_name, snapshot_name, custom_headers:custom_headers).value!
end | [
"def",
"begin_delete_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"pool_name",
",",
"volume_name",
",",
"snapshot_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_delete_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"pool_n... | Delete snapshot
@param resource_group_name [String] The name of the resource group.
@param account_name [String] The name of the NetApp account
@param pool_name [String] The name of the capacity pool
@param volume_name [String] The name of the volume
@param snapshot_name [String] The name of the mount target
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Delete",
"snapshot"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_netapp/lib/2017-08-15-preview/generated/azure_mgmt_netapp/snapshots.rb#L597-L599 | train | Deletes a snapshot of a specified volume. | [
30522,
13366,
4088,
1035,
3972,
12870,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
4070,
1035,
2171,
1010,
4770,
1035,
2171,
1010,
3872,
1035,
2171,
1010,
20057,
12326,
1035,
2171,
1010,
7661,
1035,
20346,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
decidim/decidim | decidim-core/app/helpers/decidim/orders_helper.rb | Decidim.OrdersHelper.order_link | def order_link(order, options = {})
link_to t("#{options[:i18n_scope]}.#{order}"), url_for(params.to_unsafe_h.merge(page: nil, order: order)), data: { order: order }, remote: true
end | ruby | def order_link(order, options = {})
link_to t("#{options[:i18n_scope]}.#{order}"), url_for(params.to_unsafe_h.merge(page: nil, order: order)), data: { order: order }, remote: true
end | [
"def",
"order_link",
"(",
"order",
",",
"options",
"=",
"{",
"}",
")",
"link_to",
"t",
"(",
"\"#{options[:i18n_scope]}.#{order}\"",
")",
",",
"url_for",
"(",
"params",
".",
"to_unsafe_h",
".",
"merge",
"(",
"page",
":",
"nil",
",",
"order",
":",
"order",
... | Public: Returns a resource url merging current params with order
order - The name of the order criteria. i.e. 'random'
options - An optional hash of options
* i18n_scope - The scope of the i18n translations | [
"Public",
":",
"Returns",
"a",
"resource",
"url",
"merging",
"current",
"params",
"with",
"order"
] | 6e2b14e559a63088669904e3c5c49a5180700cf7 | https://github.com/decidim/decidim/blob/6e2b14e559a63088669904e3c5c49a5180700cf7/decidim-core/app/helpers/decidim/orders_helper.rb#L25-L27 | train | Returns link to order | [
30522,
13366,
2344,
1035,
4957,
1006,
2344,
1010,
7047,
1027,
1063,
1065,
1007,
4957,
1035,
2000,
1056,
1006,
1000,
1001,
1063,
7047,
1031,
1024,
1045,
15136,
2078,
1035,
9531,
1033,
1065,
1012,
1001,
1063,
2344,
1065,
1000,
1007,
1010,
2... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
projectcypress/health-data-standards | lib/hqmf-parser/2.0/data_criteria_helpers/dc_base_extract.rb | HQMF2.DataCriteriaBaseExtractions.extract_derivation_operator | def extract_derivation_operator
codes = @entry.xpath("./*/cda:outboundRelationship[@typeCode='COMP']/cda:conjunctionCode/@code",
HQMF2::Document::NAMESPACES)
codes.inject(nil) do |d_op, code|
if d_op && d_op != CONJUNCTION_CODE_TO_DERIVATION_OP[code.value]
fail 'More than one derivation operator in data criteria'
end
CONJUNCTION_CODE_TO_DERIVATION_OP[code.value]
end
end | ruby | def extract_derivation_operator
codes = @entry.xpath("./*/cda:outboundRelationship[@typeCode='COMP']/cda:conjunctionCode/@code",
HQMF2::Document::NAMESPACES)
codes.inject(nil) do |d_op, code|
if d_op && d_op != CONJUNCTION_CODE_TO_DERIVATION_OP[code.value]
fail 'More than one derivation operator in data criteria'
end
CONJUNCTION_CODE_TO_DERIVATION_OP[code.value]
end
end | [
"def",
"extract_derivation_operator",
"codes",
"=",
"@entry",
".",
"xpath",
"(",
"\"./*/cda:outboundRelationship[@typeCode='COMP']/cda:conjunctionCode/@code\"",
",",
"HQMF2",
"::",
"Document",
"::",
"NAMESPACES",
")",
"codes",
".",
"inject",
"(",
"nil",
")",
"do",
"|",
... | Extracts the derivation operator to be used by the data criteria, and fails out if it finds more than one (should
not be valid) | [
"Extracts",
"the",
"derivation",
"operator",
"to",
"be",
"used",
"by",
"the",
"data",
"criteria",
"and",
"fails",
"out",
"if",
"it",
"finds",
"more",
"than",
"one",
"(",
"should",
"not",
"be",
"valid",
")"
] | 252d4f0927c513eacde6b9ea41b76faa1423c34b | https://github.com/projectcypress/health-data-standards/blob/252d4f0927c513eacde6b9ea41b76faa1423c34b/lib/hqmf-parser/2.0/data_criteria_helpers/dc_base_extract.rb#L31-L40 | train | Extract derivation operator from the data criteria | [
30522,
13366,
14817,
1035,
29280,
1035,
6872,
9537,
1027,
1030,
4443,
1012,
26726,
8988,
1006,
1000,
1012,
1013,
1008,
1013,
3729,
2050,
1024,
2041,
15494,
16570,
10708,
5605,
1031,
1030,
2828,
16044,
1027,
1005,
4012,
2361,
1005,
1033,
101... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_reservations/lib/2019-04-01-preview/generated/azure_mgmt_reservations/reservation_order.rb | Azure::Reservations::Mgmt::V2019_04_01_preview.ReservationOrder.begin_purchase | def begin_purchase(reservation_order_id, body, custom_headers:nil)
response = begin_purchase_async(reservation_order_id, body, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def begin_purchase(reservation_order_id, body, custom_headers:nil)
response = begin_purchase_async(reservation_order_id, body, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"begin_purchase",
"(",
"reservation_order_id",
",",
"body",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_purchase_async",
"(",
"reservation_order_id",
",",
"body",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".... | Purchase `ReservationOrder`
Purchase `ReservationOrder` and create resource under the specified URI.
@param reservation_order_id [String] Order Id of the reservation
@param body [PurchaseRequest] Information needed for calculate or purchase
reservation
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ReservationOrderResponse] operation results. | [
"Purchase",
"ReservationOrder"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_reservations/lib/2019-04-01-preview/generated/azure_mgmt_reservations/reservation_order.rb#L369-L372 | train | Purchases a reservation order. | [
30522,
13366,
4088,
1035,
5309,
1006,
11079,
1035,
2344,
1035,
8909,
1010,
2303,
1010,
7661,
1035,
20346,
2015,
1024,
9152,
2140,
1007,
3433,
1027,
4088,
1035,
5309,
1035,
2004,
6038,
2278,
1006,
11079,
1035,
2344,
1035,
8909,
1010,
2303,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
meew0/discordrb | lib/discordrb/data/channel.rb | Discordrb.Channel.history_ids | def history_ids(amount, before_id = nil, after_id = nil, around_id = nil)
logs = API::Channel.messages(@bot.token, @id, amount, before_id, after_id, around_id)
JSON.parse(logs).map { |message| message['id'].to_i }
end | ruby | def history_ids(amount, before_id = nil, after_id = nil, around_id = nil)
logs = API::Channel.messages(@bot.token, @id, amount, before_id, after_id, around_id)
JSON.parse(logs).map { |message| message['id'].to_i }
end | [
"def",
"history_ids",
"(",
"amount",
",",
"before_id",
"=",
"nil",
",",
"after_id",
"=",
"nil",
",",
"around_id",
"=",
"nil",
")",
"logs",
"=",
"API",
"::",
"Channel",
".",
"messages",
"(",
"@bot",
".",
"token",
",",
"@id",
",",
"amount",
",",
"befor... | Retrieves message history, but only message IDs for use with prune.
@note For internal use only
@!visibility private | [
"Retrieves",
"message",
"history",
"but",
"only",
"message",
"IDs",
"for",
"use",
"with",
"prune",
"."
] | 764298a1ff0be69a1853b510d736f21c2b91a2fe | https://github.com/meew0/discordrb/blob/764298a1ff0be69a1853b510d736f21c2b91a2fe/lib/discordrb/data/channel.rb#L537-L540 | train | Returns an array of history IDs for this channel. | [
30522,
13366,
2381,
1035,
8909,
2015,
1006,
3815,
1010,
2077,
1035,
8909,
1027,
9152,
2140,
1010,
2044,
1035,
8909,
1027,
9152,
2140,
1010,
2105,
1035,
8909,
1027,
9152,
2140,
1007,
15664,
1027,
17928,
1024,
1024,
3149,
1012,
7696,
1006,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_node_configuration_operations.rb | Azure::Automation::Mgmt::V2015_10_31.DscNodeConfigurationOperations.create_or_update_with_http_info | def create_or_update_with_http_info(resource_group_name, automation_account_name, node_configuration_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, automation_account_name, node_configuration_name, parameters, custom_headers:custom_headers).value!
end | ruby | def create_or_update_with_http_info(resource_group_name, automation_account_name, node_configuration_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, automation_account_name, node_configuration_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"node_configuration_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_async",
"(",
"resource_group_name",
",",
"automation_account_name",... | Create the node configuration identified by node configuration name.
@param resource_group_name [String] Name of an Azure Resource group.
@param automation_account_name [String] The name of the automation account.
@param node_configuration_name [String] The create or update parameters for
configuration.
@param parameters [DscNodeConfigurationCreateOrUpdateParameters] The create
or update parameters for configuration.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Create",
"the",
"node",
"configuration",
"identified",
"by",
"node",
"configuration",
"name",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_node_configuration_operations.rb#L244-L246 | train | Creates or updates a node configuration. | [
30522,
13366,
3443,
1035,
2030,
1035,
10651,
1035,
2007,
1035,
8299,
1035,
18558,
1006,
7692,
1035,
2177,
1035,
2171,
1010,
19309,
1035,
4070,
1035,
2171,
1010,
13045,
1035,
9563,
1035,
2171,
1010,
11709,
1010,
7661,
1035,
20346,
2015,
1024... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
aws/aws-sdk-ruby | gems/aws-sdk-ec2/lib/aws-sdk-ec2/resource.rb | Aws::EC2.Resource.network_acls | def network_acls(options = {})
batches = Enumerator.new do |y|
resp = @client.describe_network_acls(options)
resp.each_page do |page|
batch = []
page.data.network_acls.each do |n|
batch << NetworkAcl.new(
id: n.network_acl_id,
data: n,
client: @client
)
end
y.yield(batch)
end
end
NetworkAcl::Collection.new(batches)
end | ruby | def network_acls(options = {})
batches = Enumerator.new do |y|
resp = @client.describe_network_acls(options)
resp.each_page do |page|
batch = []
page.data.network_acls.each do |n|
batch << NetworkAcl.new(
id: n.network_acl_id,
data: n,
client: @client
)
end
y.yield(batch)
end
end
NetworkAcl::Collection.new(batches)
end | [
"def",
"network_acls",
"(",
"options",
"=",
"{",
"}",
")",
"batches",
"=",
"Enumerator",
".",
"new",
"do",
"|",
"y",
"|",
"resp",
"=",
"@client",
".",
"describe_network_acls",
"(",
"options",
")",
"resp",
".",
"each_page",
"do",
"|",
"page",
"|",
"batc... | @example Request syntax with placeholder values
network_acls = ec2.network_acls({
filters: [
{
name: "String",
values: ["String"],
},
],
dry_run: false,
network_acl_ids: ["String"],
})
@param [Hash] options ({})
@option options [Array<Types::Filter>] :filters
One or more filters.
* `association.association-id` - The ID of an association ID for the
ACL.
* `association.network-acl-id` - The ID of the network ACL involved in
the association.
* `association.subnet-id` - The ID of the subnet involved in the
association.
* `default` - Indicates whether the ACL is the default network ACL for
the VPC.
* `entry.cidr` - The IPv4 CIDR range specified in the entry.
* `entry.icmp.code` - The ICMP code specified in the entry, if any.
* `entry.icmp.type` - The ICMP type specified in the entry, if any.
* `entry.ipv6-cidr` - The IPv6 CIDR range specified in the entry.
* `entry.port-range.from` - The start of the port range specified in
the entry.
* `entry.port-range.to` - The end of the port range specified in the
entry.
* `entry.protocol` - The protocol specified in the entry (`tcp` \|
`udp` \| `icmp` or a protocol number).
* `entry.rule-action` - Allows or denies the matching traffic (`allow`
\| `deny`).
* `entry.rule-number` - The number of an entry (in other words, rule)
in the set of ACL entries.
* `network-acl-id` - The ID of the network ACL.
* `owner-id` - The ID of the AWS account that owns the network ACL.
* `tag`\:<key> - The key/value combination of a tag assigned to
the resource. Use the tag key in the filter name and the tag value
as the filter value. For example, to find all resources that have a
tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
for the filter name and `TeamA` for the filter value.
* `tag-key` - The key of a tag assigned to the resource. Use this
filter to find all resources assigned a tag with a specific key,
regardless of the tag value.
* `vpc-id` - The ID of the VPC for the network ACL.
@option options [Boolean] :dry_run
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response.
If you have the required permissions, the error response is
`DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
@option options [Array<String>] :network_acl_ids
One or more network ACL IDs.
Default: Describes all your network ACLs.
@return [NetworkAcl::Collection] | [
"@example",
"Request",
"syntax",
"with",
"placeholder",
"values"
] | e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d | https://github.com/aws/aws-sdk-ruby/blob/e28b8d320ddf7b6ee0161bdd9d00fb786d99b63d/gems/aws-sdk-ec2/lib/aws-sdk-ec2/resource.rb#L2018-L2034 | train | Returns an array of NetworkAcl objects | [
30522,
13366,
2897,
1035,
9353,
4877,
1006,
7047,
1027,
1063,
1065,
1007,
14108,
2229,
1027,
4372,
17897,
16259,
1012,
2047,
2079,
1064,
1061,
1064,
24501,
2361,
1027,
1030,
7396,
1012,
6235,
1035,
2897,
1035,
9353,
4877,
1006,
7047,
1007,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
puppetlabs/puppet | lib/puppet/util/logging.rb | Puppet::Util.Logging.puppet_deprecation_warning | def puppet_deprecation_warning(message, options = {})
key = options[:key]
file = options[:file]
line = options[:line]
#TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
raise Puppet::DevError, _("Need either :file and :line, or :key") if (key.nil?) && (file.nil? || line.nil?)
key ||= "#{file}:#{line}"
issue_deprecation_warning(message, key, file, line, false)
end | ruby | def puppet_deprecation_warning(message, options = {})
key = options[:key]
file = options[:file]
line = options[:line]
#TRANSLATORS the literals ":file", ":line", and ":key" should not be translated
raise Puppet::DevError, _("Need either :file and :line, or :key") if (key.nil?) && (file.nil? || line.nil?)
key ||= "#{file}:#{line}"
issue_deprecation_warning(message, key, file, line, false)
end | [
"def",
"puppet_deprecation_warning",
"(",
"message",
",",
"options",
"=",
"{",
"}",
")",
"key",
"=",
"options",
"[",
":key",
"]",
"file",
"=",
"options",
"[",
":file",
"]",
"line",
"=",
"options",
"[",
":line",
"]",
"#TRANSLATORS the literals \":file\", \":lin... | Logs a warning whose origin comes from Puppet source rather than somewhere
internal within Puppet. Otherwise the same as deprecation_warning()
@param message [String] The message to log (logs via warning)
@param options [Hash]
@option options [String] :file File we are warning from
@option options [Integer] :line Line number we are warning from
@option options [String] :key (:file + :line) Alternative key used to mark
warning as unique
Either :file and :line and/or :key must be passed. | [
"Logs",
"a",
"warning",
"whose",
"origin",
"comes",
"from",
"Puppet",
"source",
"rather",
"than",
"somewhere",
"internal",
"within",
"Puppet",
".",
"Otherwise",
"the",
"same",
"as",
"deprecation_warning",
"()"
] | 4baeed97cbb7571ddc6635f0a24debe2e8b22cd3 | https://github.com/puppetlabs/puppet/blob/4baeed97cbb7571ddc6635f0a24debe2e8b22cd3/lib/puppet/util/logging.rb#L145-L154 | train | Issue a deprecation warning to a specific file and line. | [
30522,
13366,
13997,
1035,
2139,
28139,
10719,
1035,
5432,
1006,
4471,
1010,
7047,
1027,
1063,
1065,
1007,
3145,
1027,
7047,
1031,
1024,
3145,
1033,
5371,
1027,
7047,
1031,
1024,
5371,
1033,
2240,
1027,
7047,
1031,
1024,
2240,
1033,
1001,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
decidim/decidim | decidim-core/app/commands/decidim/remove_user_from_group.rb | Decidim.RemoveUserFromGroup.call | def call
return broadcast(:invalid) if membership.blank?
return broadcast(:invalid) if membership.user_group != user_group
transaction do
remove_membership
send_notification
end
broadcast(:ok)
end | ruby | def call
return broadcast(:invalid) if membership.blank?
return broadcast(:invalid) if membership.user_group != user_group
transaction do
remove_membership
send_notification
end
broadcast(:ok)
end | [
"def",
"call",
"return",
"broadcast",
"(",
":invalid",
")",
"if",
"membership",
".",
"blank?",
"return",
"broadcast",
"(",
":invalid",
")",
"if",
"membership",
".",
"user_group",
"!=",
"user_group",
"transaction",
"do",
"remove_membership",
"send_notification",
"e... | Public: Initializes the command.
membership - the UserGroupMembership to be accepted.
Executes the command. Broadcasts these events:
- :ok when everything is valid.
- :invalid if we couldn't proceed.
Returns nothing. | [
"Public",
":",
"Initializes",
"the",
"command",
"."
] | 6e2b14e559a63088669904e3c5c49a5180700cf7 | https://github.com/decidim/decidim/blob/6e2b14e559a63088669904e3c5c49a5180700cf7/decidim-core/app/commands/decidim/remove_user_from_group.rb#L20-L30 | train | Calls the notification of the specified object. | [
30522,
13366,
2655,
2709,
3743,
1006,
1024,
19528,
1007,
2065,
5779,
1012,
8744,
1029,
2709,
3743,
1006,
1024,
19528,
1007,
2065,
5779,
1012,
5310,
1035,
2177,
999,
1027,
5310,
1035,
2177,
12598,
2079,
6366,
1035,
5779,
4604,
1035,
26828,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Azure/azure-sdk-for-ruby | runtime/ms_rest_azure/lib/ms_rest_azure/credentials/topic_credentials.rb | MsRestAzure.TopicCredentials.sign_request | def sign_request(request)
super(request)
if (request.respond_to?(:request_headers))
request.request_headers['aeg-sas-key'] = @topic_key
elsif request.respond_to?(:headers)
request.headers['aeg-sas-key'] = @topic_key
else
fail ArgumentError, 'Incorrect request object was provided'
end
end | ruby | def sign_request(request)
super(request)
if (request.respond_to?(:request_headers))
request.request_headers['aeg-sas-key'] = @topic_key
elsif request.respond_to?(:headers)
request.headers['aeg-sas-key'] = @topic_key
else
fail ArgumentError, 'Incorrect request object was provided'
end
end | [
"def",
"sign_request",
"(",
"request",
")",
"super",
"(",
"request",
")",
"if",
"(",
"request",
".",
"respond_to?",
"(",
":request_headers",
")",
")",
"request",
".",
"request_headers",
"[",
"'aeg-sas-key'",
"]",
"=",
"@topic_key",
"elsif",
"request",
".",
"... | Creates and initialize new instance of the TopicCredentials class.
@param topic_key [String] topic key | [
"Creates",
"and",
"initialize",
"new",
"instance",
"of",
"the",
"TopicCredentials",
"class",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/runtime/ms_rest_azure/lib/ms_rest_azure/credentials/topic_credentials.rb#L27-L37 | train | Sign the request object | [
30522,
13366,
3696,
1035,
5227,
1006,
5227,
1007,
3565,
1006,
5227,
1007,
2065,
1006,
5227,
1012,
6869,
1035,
2000,
1029,
1006,
1024,
5227,
1035,
20346,
2015,
1007,
1007,
5227,
1012,
5227,
1035,
20346,
2015,
1031,
1005,
29347,
2290,
1011,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
cucumber/aruba | lib/aruba/aruba_path.rb | Aruba.ArubaPath.minimum_disk_space_used | def minimum_disk_space_used
# TODO: replace Aruba.config.physical_block_size
# with something like Aruba.config.fs_allocation_unit
dev_bsize = Aruba.config.physical_block_size
stat = File::Stat.new(to_s)
blocks = stat.blocks
return (blocks * dev_bsize) if blocks
typical_fs_unit = 4096
typical_dev_bsize = 512 # google dev_bsize for more info
block_multiplier = typical_fs_unit / typical_dev_bsize
fs_unit_size = dev_bsize * block_multiplier
fs_units = (stat.size + fs_unit_size - 1) / fs_unit_size
fs_units = 1 if fs_units.zero?
fs_units * fs_unit_size
end | ruby | def minimum_disk_space_used
# TODO: replace Aruba.config.physical_block_size
# with something like Aruba.config.fs_allocation_unit
dev_bsize = Aruba.config.physical_block_size
stat = File::Stat.new(to_s)
blocks = stat.blocks
return (blocks * dev_bsize) if blocks
typical_fs_unit = 4096
typical_dev_bsize = 512 # google dev_bsize for more info
block_multiplier = typical_fs_unit / typical_dev_bsize
fs_unit_size = dev_bsize * block_multiplier
fs_units = (stat.size + fs_unit_size - 1) / fs_unit_size
fs_units = 1 if fs_units.zero?
fs_units * fs_unit_size
end | [
"def",
"minimum_disk_space_used",
"# TODO: replace Aruba.config.physical_block_size",
"# with something like Aruba.config.fs_allocation_unit",
"dev_bsize",
"=",
"Aruba",
".",
"config",
".",
"physical_block_size",
"stat",
"=",
"File",
"::",
"Stat",
".",
"new",
"(",
"to_s",
")"... | TODO: Aruba.config.physical_block_size could be allowed to be nil
(So the unit size can be autodetected)
Report minimum disk space used
This estimates the minimum bytes allocated by the path.
E.g. a 1-byte text file on a typical EXT-3 filesystem takes up 4096 bytes
(could be more if it was truncated or less for sparse files).
Both `File::Stat` and the `stat()` system call will report 8 `blocks`
(each "usually" represents 512 bytes). So 8 * 512 is exactly 4096 bytes.
(The "magic" 512 bye implied makes the value of "blocks" so confusing).
Currently Aruba allows you to set what's called the `physical_block_size`,
which is a bit misleading - it's the "512" value. So if you somehow have a
"filesystem unit size" of 8192 (instead of a typical 4KB), set the
`physical_block_size` to 1024 (yes, divide by 8: 8192/8 = 1024).
Ideally, Aruba should provide e.g. `Aruba.config.fs_allocation_unit`
(with 4096 as the default), so you wouldn't have to "divide by 8".
(typical_fs_unit / typical_dev_bsize = 4096 / 512 = 8)
@return [Integer]
Total bytes allocate
TODO: this is recommended over the above "blocks" | [
"TODO",
":",
"Aruba",
".",
"config",
".",
"physical_block_size",
"could",
"be",
"allowed",
"to",
"be",
"nil",
"(",
"So",
"the",
"unit",
"size",
"can",
"be",
"autodetected",
")",
"Report",
"minimum",
"disk",
"space",
"used"
] | add17615322f575588aef1fccce875396cdf36e9 | https://github.com/cucumber/aruba/blob/add17615322f575588aef1fccce875396cdf36e9/lib/aruba/aruba_path.rb#L122-L140 | train | Returns the minimum disk space used by the filesystem. | [
30522,
13366,
6263,
1035,
9785,
1035,
2686,
1035,
2109,
1001,
28681,
2080,
1024,
5672,
12098,
19761,
1012,
9530,
8873,
2290,
1012,
3558,
1035,
3796,
1035,
2946,
1001,
2007,
2242,
2066,
12098,
19761,
1012,
9530,
8873,
2290,
1012,
1042,
2015,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
sensu/sensu | lib/sensu/utilities.rb | Sensu.Utilities.attributes_match? | def attributes_match?(object, match_attributes, support_eval=true, object_attributes=nil)
object_attributes ||= object
match_attributes.all? do |key, value_one|
value_two = object_attributes[key]
case
when value_one == value_two
true
when value_one.is_a?(Hash) && value_two.is_a?(Hash)
attributes_match?(object, value_one, support_eval, value_two)
when value_one.to_s == value_two.to_s
true
when value_one.is_a?(String) && value_one.start_with?(EVAL_PREFIX) && support_eval
eval_attribute_value(object, value_one, value_two)
else
false
end
end
end | ruby | def attributes_match?(object, match_attributes, support_eval=true, object_attributes=nil)
object_attributes ||= object
match_attributes.all? do |key, value_one|
value_two = object_attributes[key]
case
when value_one == value_two
true
when value_one.is_a?(Hash) && value_two.is_a?(Hash)
attributes_match?(object, value_one, support_eval, value_two)
when value_one.to_s == value_two.to_s
true
when value_one.is_a?(String) && value_one.start_with?(EVAL_PREFIX) && support_eval
eval_attribute_value(object, value_one, value_two)
else
false
end
end
end | [
"def",
"attributes_match?",
"(",
"object",
",",
"match_attributes",
",",
"support_eval",
"=",
"true",
",",
"object_attributes",
"=",
"nil",
")",
"object_attributes",
"||=",
"object",
"match_attributes",
".",
"all?",
"do",
"|",
"key",
",",
"value_one",
"|",
"valu... | Determine if all attribute values match those of the
corresponding object attributes. Attributes match if the value
objects are equivalent, are both hashes with matching key/value
pairs (recursive), have equal string values, or evaluate to true
(Ruby eval).
@param object [Hash]
@param match_attributes [Object]
@param support_eval [TrueClass, FalseClass]
@param object_attributes [Object]
@return [TrueClass, FalseClass] | [
"Determine",
"if",
"all",
"attribute",
"values",
"match",
"those",
"of",
"the",
"corresponding",
"object",
"attributes",
".",
"Attributes",
"match",
"if",
"the",
"value",
"objects",
"are",
"equivalent",
"are",
"both",
"hashes",
"with",
"matching",
"key",
"/",
... | 51319e4b58c8d9986f101ad71ff729aa3e51e951 | https://github.com/sensu/sensu/blob/51319e4b58c8d9986f101ad71ff729aa3e51e951/lib/sensu/utilities.rb#L304-L321 | train | Returns true if the object matches the attributes of the match_attributes | [
30522,
13366,
12332,
1035,
2674,
1029,
1006,
4874,
1010,
2674,
1035,
12332,
1010,
2490,
1035,
9345,
2140,
1027,
2995,
1010,
4874,
1035,
12332,
1027,
9152,
2140,
1007,
4874,
1035,
12332,
1064,
1064,
1027,
4874,
2674,
1035,
12332,
1012,
2035,... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
jekyll/jekyll | lib/jekyll/cache.rb | Jekyll.Cache.dump | def dump(path, value)
return unless disk_cache_enabled?
FileUtils.mkdir_p(File.dirname(path))
File.open(path, "wb") do |cached_file|
Marshal.dump(value, cached_file)
end
end | ruby | def dump(path, value)
return unless disk_cache_enabled?
FileUtils.mkdir_p(File.dirname(path))
File.open(path, "wb") do |cached_file|
Marshal.dump(value, cached_file)
end
end | [
"def",
"dump",
"(",
"path",
",",
"value",
")",
"return",
"unless",
"disk_cache_enabled?",
"FileUtils",
".",
"mkdir_p",
"(",
"File",
".",
"dirname",
"(",
"path",
")",
")",
"File",
".",
"open",
"(",
"path",
",",
"\"wb\"",
")",
"do",
"|",
"cached_file",
"... | rubocop:enable Security/MarshalLoad
Given a path and a value, save value to disk at path.
This should NEVER be called in Safe Mode
Returns nothing. | [
"rubocop",
":",
"enable",
"Security",
"/",
"MarshalLoad",
"Given",
"a",
"path",
"and",
"a",
"value",
"save",
"value",
"to",
"disk",
"at",
"path",
".",
"This",
"should",
"NEVER",
"be",
"called",
"in",
"Safe",
"Mode"
] | fd74fe3e93a1fb506fa6621a2e271d7b9c5c3e3b | https://github.com/jekyll/jekyll/blob/fd74fe3e93a1fb506fa6621a2e271d7b9c5c3e3b/lib/jekyll/cache.rb#L181-L188 | train | Dump the given value to a file | [
30522,
13366,
15653,
1006,
4130,
1010,
3643,
1007,
2709,
4983,
9785,
1035,
17053,
1035,
9124,
1029,
5371,
21823,
4877,
1012,
12395,
4305,
2099,
1035,
1052,
1006,
5371,
1012,
16101,
18442,
1006,
4130,
1007,
1007,
5371,
1012,
2330,
1006,
4130... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
sunspot/sunspot | sunspot/lib/sunspot/composite_setup.rb | Sunspot.CompositeSetup.text_fields | def text_fields(field_name)
if text_fields = text_fields_hash[field_name.to_sym]
text_fields.to_a
else
raise(
UnrecognizedFieldError,
"No text field configured for #{@types * ', '} with name '#{field_name}'"
)
end
end | ruby | def text_fields(field_name)
if text_fields = text_fields_hash[field_name.to_sym]
text_fields.to_a
else
raise(
UnrecognizedFieldError,
"No text field configured for #{@types * ', '} with name '#{field_name}'"
)
end
end | [
"def",
"text_fields",
"(",
"field_name",
")",
"if",
"text_fields",
"=",
"text_fields_hash",
"[",
"field_name",
".",
"to_sym",
"]",
"text_fields",
".",
"to_a",
"else",
"raise",
"(",
"UnrecognizedFieldError",
",",
"\"No text field configured for #{@types * ', '} with name '... | Get a text field object by its public name. A field will be returned if
it is configured for any of the enclosed types.
==== Returns
Sunspot::FulltextField:: Text field with the given public name
==== Raises
UnrecognizedFieldError::
If no field with that name is configured for any of the enclosed types. | [
"Get",
"a",
"text",
"field",
"object",
"by",
"its",
"public",
"name",
".",
"A",
"field",
"will",
"be",
"returned",
"if",
"it",
"is",
"configured",
"for",
"any",
"of",
"the",
"enclosed",
"types",
"."
] | 31dd76cd7a14a4ef7bd541de97483d8cd72ff685 | https://github.com/sunspot/sunspot/blob/31dd76cd7a14a4ef7bd541de97483d8cd72ff685/sunspot/lib/sunspot/composite_setup.rb#L51-L60 | train | Returns the array of text fields for the given field name. | [
30522,
13366,
3793,
1035,
4249,
1006,
2492,
1035,
2171,
1007,
2065,
3793,
1035,
4249,
1027,
3793,
1035,
4249,
1035,
23325,
1031,
2492,
1035,
2171,
1012,
2000,
1035,
25353,
2213,
1033,
3793,
1035,
4249,
1012,
2000,
1035,
1037,
2842,
5333,
... | [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.