Home
last modified time | relevance | path

Searched refs:root_ref (Results 1 – 25 of 177) sorted by relevance

12345678

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/experiments/concerns/
H A Dproject_commit_count.rb8 root_ref = raw_repo&.root_ref
10 return default_count unless root_ref
12 Gitlab::GitalyClient::CommitService.new(raw_repo).commit_count(root_ref, {
/dports/sysutils/conan/conan-1.44.0/conans/model/
H A Dgraph_info.py14 def __init__(self, profile_host=None, profile_build=None, options=None, root_ref=None): argument
17 self.root = root_ref
44 root_ref = ConanFileReference(root["name"], root["version"], root["user"], root["channel"],
47 return GraphInfo(options=options, root_ref=root_ref)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/views/projects/branches/
H A D_branch.html.haml10 - if branch.name == @repository.root_ref
13 …2{ title: s_('Branches|Merged into %{default_branch}') % { default_branch: @repository.root_ref } }
28 - if branch.name != @repository.root_ref
38 …- if merge_project && create_mr_button?(from: @repository.root_ref, to: branch.name, source_projec…
39 …= link_to create_mr_path(from: @repository.root_ref, to: branch.name, source_project: @project, ta…
42 - if branch.name != @repository.root_ref
43 = link_to project_compare_index_path(@project, from: @repository.root_ref, to: branch.name),
55 - if branch.name == @project.repository.root_ref
H A D_delete_branch_modal_button.html.haml1 - if branch.name == @project.repository.root_ref
9 default_branch_name: @project.repository.root_ref,
17 default_branch_name: @project.repository.root_ref,
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/cpp2/frozen/test/
H A DCompatibility.cpp45 if (test.root_ref()) { in TEST_P()
47 *test.root_ref(), in TEST_P()
63 EXPECT_EQ(*test.root_ref(), root.thaw()); in TEST_P()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/
H A Dgit_reparent_branch.py22 root_ref = root()
29 help='Reparent to the configured root branch (%s).' % root_ref)
39 new_parent = root_ref
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/features/projects/
H A Dactive_tabs_spec.rb53 root_ref = project.repository.root_ref
54 visit project_tree_path(project, root_ref)
/dports/graphics/embree/embree-3.13.2/kernels/subdiv/
H A Dsubdivpatch1base.h76 root_ref = SharedLazyTessellationCache::Tag(); in resetRootRef()
80 return (SharedLazyTessellationCache::CacheEntry&) root_ref; in entry()
93 SharedLazyTessellationCache::Tag root_ref;
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/checks/
H A Dsnippet_check.rb13 def initialize(change, default_branch:, root_ref:, logger:) argument
19 @root_ref = root_ref
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/models/
H A Drepository.rb116 find_commit(ref || root_ref)
302 raw_repository.languages(root_ref)
373 if !branch_name || branch_name == root_ref
526 def root_ref method in Repository
527 raw_repository&.root_ref
555 root_ref ? raw_repository.commit_count(root_ref) : 0
663 @head_commit ||= commit(self.root_ref)
899 @root_ref_sha ||= commit(root_ref).sha
960 actual_ref = ref || root_ref
989 actual_ref = ref || root_ref
/dports/graphics/radius-engine/radius-engine-1.1/
H A Dr_script.c250 …er_node_list(r_state_t *rs, const r_script_node_t *nodes, int root_index, r_object_ref_t *root_ref) in r_script_register_node_list() argument
320 status = r_object_table_ref_write(rs, NULL, root_ref, lua_gettop(ls)); in r_script_register_node_list()
324 … status = r_object_function_ref_write(rs, NULL, root_ref, lua_gettop(ls)); in r_script_register_node_list()
344 …node_internal(r_state_t *rs, const r_script_node_t *node, int root_index, r_object_ref_t *root_ref) in r_script_register_node_internal() argument
354 status = r_script_register_node_list(rs, nodes, root_index, root_ref); in r_script_register_node_internal()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/support/shared_examples/
H A Dsnippet_blob_shared_examples.rb7 let(:ref) { blob.repository.root_ref }
28 let(:ref) { blob.repository.root_ref }
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/factories/
H A Dgo_module_commits.rb22 start_branch: project.repository.root_ref || 'master',
23 branch_name: project.repository.root_ref || 'master',
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/checks/
H A Dsnippet_check_spec.rb16 …SnippetCheck.new(changes, default_branch: default_branch, root_ref: snippet.repository.root_ref, l…
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/models/concerns/
H A Dhas_repository.rb39 repository.root_ref == branch
75 @default_branch ||= repository.empty? ? default_branch_from_preferences : repository.root_ref
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/features/projects/files/
H A Duser_edits_files_spec.rb11 let(:project_tree_path_root_ref) { project_tree_path(project, project.repository.root_ref) }
12 let(:project2_tree_path_root_ref) { project_tree_path(project2, project2.repository.root_ref) }
26 visit project_tree_path(project, project.repository.root_ref)
60 binary_file = File.join(project.repository.root_ref, 'files/images/logo-black.png')
H A Duser_deletes_files_spec.rb13 let(:project_tree_path_root_ref) { project_tree_path(project, project.repository.root_ref) }
14 let(:project2_tree_path_root_ref) { project_tree_path(project2, project2.repository.root_ref) }
H A Duser_replaces_files_spec.rb15 let(:project_tree_path_root_ref) { project_tree_path(project, project.repository.root_ref) }
16 let(:project2_tree_path_root_ref) { project_tree_path(project2, project2.repository.root_ref) }
/dports/editors/libreoffice6/libreoffice-6.4.7.2/external/liborcus/
H A D0001-add-xml-path.patch89 + element_ref root_ref(mp_impl->mp_root->name, &mp_impl->mp_root->prop);
90 + if (pstring(mp_impl->m_parent_impl.get_element_str(root_ref.name)) != parts[0])
94 + scopes.push_back(root_ref);
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/
H A Dgit_access_snippet.rb121 …Check.new(change, default_branch: snippet.default_branch, root_ref: snippet.repository.root_ref, l…
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/cache/ci/
H A Dproject_pipeline_status.rb72 self.ref = project.repository.root_ref
82 if commit.sha == sha && project.repository.root_ref == ref
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/helpers/
H A Dsnippets_helper_spec.rb14 let(:ref) { blob.repository.root_ref }
41 let(:ref) { blob.repository.root_ref }
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/helpers/routing/
H A Dprojects_helper.rb6 …tree_path(project.namespace, project, ref || @ref || project.repository.root_ref, *args) # rubocop…
10 …mits_path(project.namespace, project, ref || @ref || project.repository.root_ref, *args) # rubocop…
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/views/projects/commits/
H A Dshow.html.haml21 …- elsif create_mr_button?(from: @repository.root_ref, to: @ref, source_project: @project, target_p…
23 …= link_to _("Create merge request"), create_mr_path(from: @repository.root_ref, to: @ref, source_p…
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/controllers/projects/design_management/designs/
H A Draw_images_controller_spec.rb112 let(:expected_ref) { project.design_repository.root_ref }
150 …let(:lfs_oid) { project.design_repository.blob_at(design.repository.root_ref, design.full_path).lf…

12345678