Home
last modified time | relevance | path

Searched refs:variables_hash (Results 1 – 25 of 57) sorted by relevance

123

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/
H A Dexpand_variables.rb28 variables_hash = nil
31 variables_hash ||= transform_variables(variables)
32 yield(variables_hash, Regexp.last_match)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/ci/pipeline/expression/lexeme/
H A Dvariable_spec.rb43 variables_hash = { VARIABLE: 'my variable' }.with_indifferent_access
45 expect(variables_hash).not_to receive(:with_indifferent_access)
46 expect(lexeme.evaluate(variables_hash)).to eq 'my variable'
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/ci/config/external/
H A Drules_spec.rb11 let(:context) { double(variables_hash: {}) }
23 let(:context) { double(variables_hash: { 'MY_VAR' => 'hello' }) }
29 let(:context) { double(variables_hash: { 'MY_VAR' => 'invalid' }) }
H A Dcontext_spec.rb20 … it { expect(subject.variables_hash).to be_instance_of(ActiveSupport::HashWithIndifferentAccess) }
21 it { expect(subject.variables_hash).to include('a' => 'b') }
31 … it { expect(subject.variables_hash).to be_instance_of(ActiveSupport::HashWithIndifferentAccess) }
/dports/www/kannel/gateway-1.4.4/wmlscript/
H A Dws.c440 compiler->variables_hash = ws_variable_hash_create(); in compile_stream()
441 if (compiler->variables_hash == NULL) { in compile_stream()
501 ws_hash_destroy(compiler->variables_hash); in compile_stream()
502 compiler->variables_hash = NULL; in compile_stream()
538 ws_hash_destroy(compiler->variables_hash); in compile_stream()
539 compiler->variables_hash = NULL; in compile_stream()
H A Dwsint.h246 WsHashPtr variables_hash; member
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/ci/build/context/
H A Dbuild_spec.rb36 subject { context.variables_hash }
38 … it { expect(context.variables_hash).to be_instance_of(ActiveSupport::HashWithIndifferentAccess) }
H A Dglobal_spec.rb35 subject { context.variables_hash }
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/services/prometheus/
H A Dproxy_variable_substitution_service.rb130 @full_context ||= predefined_context(result).reverse_merge(variables_hash)
137 def variables_hash method in Prometheus.ProxyVariableSubstitutionService
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/ci/build/policy/
H A Dvariables_spec.rb19 variables_hash: ci_build.scoped_variables.to_hash
94 variables_hash: ci_build.scoped_variables.to_hash
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/ci/build/rules/rule/clause/
H A Dif.rb13 @expression, context.variables_hash).truthful?
H A Dchanges.rb26 ExpandVariables.expand_existing(glob, -> { context.variables_hash })
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/ci/build/policy/
H A Dvariables.rb13 variables = context.variables_hash
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/ci/build/rules/
H A Drule_spec.rb9 variables_hash: ci_build.scoped_variables.to_hash
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/ci/build/context/
H A Dbase.rb20 def variables_hash method in Gitlab.Ci.Build.Context.Base
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/ci/build/rules/rule/clause/
H A Dchanges_spec.rb41 allow(context).to receive(:variables_hash).and_return(variables_hash)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/ci/config/external/
H A Dcontext.rb44 def variables_hash method in Gitlab.Ci.Config.External.Context
H A Dmapper.rb182 ExpandVariables.expand(data, -> { context.variables_hash })
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/mysys/
H A Dmy_default.cc108 static std::map<string, my_variable_sources> variables_hash; variable
1433 ret = variables_hash.insert( in update_variable_source()
1442 if (ret.second == false) variables_hash[var_name] = source; in update_variable_source()
1464 variables_hash.find(src_name); in set_variable_source()
1465 if (it != variables_hash.end()) { in set_variable_source()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/ci/build/
H A Drules_spec.rb12 variables_hash: ci_build.scoped_variables.to_hash
/dports/www/nginx-full/njs-0.7.1/src/
H A Dnjs_vm.h146 njs_rbtree_t *variables_hash; member
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/ci/pipeline/seed/
H A Dbuild.rb212 ExpandVariables.expand_existing(tag, -> { evaluate_context.variables_hash })
/dports/www/nginx-full/lua-nginx-module-0.10.19/src/
H A Dngx_http_lua_variable.c123 v = ngx_hash_find(&cmcf->variables_hash, hash, lowcase_buf, name_len); in ngx_http_lua_ffi_var_set()
/dports/security/modsecurity3-nginx/nginx-1.20.0/src/stream/
H A Dngx_stream.h157 ngx_hash_t variables_hash; member
/dports/www/nginx-full/nginx-1.20.2/src/stream/
H A Dngx_stream.h157 ngx_hash_t variables_hash; member

123