Home
last modified time | relevance | path

Searched refs:current_branch (Results 1 – 25 of 579) sorted by relevance

12345678910>>...24

/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pycharm/
H A D_jb_serial_tree_manager.py12 self.current_branch = []
25 if branch_as_list == self.current_branch:
29 current_branch_len = len(self.current_branch)
43 self.current_branch.append(new_node_name)
67 return [("open", self.current_branch + relative_path[0:1])]
69 if self.current_branch:
71 return [("close", self.current_branch)]
88 self.current_branch.pop()
95 return [("close", self.current_branch)]
99 return self.current_branch[:-1] if self.current_branch else None
[all …]
/dports/databases/opentsdb/opentsdb-2.3.0/src/tree/
H A DTreeBuilder.java109 private Branch current_branch; field in TreeBuilder
225 } else if (current_branch == null) { in processTimeseriesMeta()
237 Branch cb = current_branch; in processTimeseriesMeta()
296 Branch cb = current_branch; in processTimeseriesMeta()
676 if (current_branch == null || current_branch.getDisplayName() == null || in processRuleset()
679 current_branch = previous_branch; in processRuleset()
697 current_branch = previous_branch; in processRuleset()
715 current_branch = previous_branch; in processRuleset()
730 current_branch = previous_branch; in processRuleset()
1081 current_branch.setDisplayName(format); in setCurrentName()
[all …]
/dports/science/py-obspy/obspy-1.2.2/obspy/taup/
H A Dseismic_phase.py105 self.current_branch = None
208 self.current_branch = tau_model.source_branch
331 if self.current_branch >= discon_branch:
443 tau_model, self.current_branch,
448 tau_model, self.current_branch,
599 tau_model, self.current_branch,
609 tau_model, self.current_branch,
618 tau_model, self.current_branch,
623 tau_model, self.current_branch,
633 tau_model, self.current_branch,
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/sigs.k8s.io/controller-runtime/hack/release/
H A Dcommon.sh67 local current_branch=$(git rev-parse --abbrev-ref HEAD)
68 if ! git::is-release-branch-name ${current_branch}; then
69 echo "branch ${current_branch} does not appear to be a release branch (release-X)" >&2
79 local current_branch=$(git branch --show-current -q)
102 git checkout -q ${current_branch}
113 git checkout ${current_branch}
117 git checkout -q ${current_branch}
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/depot_tools/
H A Dgit_upstream_diff.py19 current_branch = git.current_branch()
26 parser.add_argument('--branch', default=current_branch,
33 opts.branch = current_branch
51 if opts.branch != current_branch:
/dports/print/py-frescobaldi/frescobaldi-3.1.3/frescobaldi_app/vcs/
H A Dgitrepo.py117 current_branch = None
122 current_branch = branch
127 return (branches, current_branch)
147 def current_branch(self): member in Repo
151 current_branch = self._branches(local=True)[1]
152 if not current_branch:
154 return current_branch
/dports/devel/R-cran-git2r/git2r/R/
H A Dpull.R96 current_branch <- repository_head(repo) functionVar
98 if (is.null(current_branch))
100 if (!is_local(current_branch))
102 upstream_branch <- branch_get_upstream(current_branch)
/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/outofcore/include/pcl/outofcore/impl/
H A Doctree_base.hpp575 current_branch[0] = root_node_; in buildLOD()
576 assert (current_branch.back () != 0); in buildLOD()
577 this->buildLODRecursive (current_branch); in buildLOD()
598 if (!current_branch.back ()) in buildLODRecursive()
605 assert (current_branch.back ()->getDepth () == this->getDepth ()); in buildLODRecursive()
607 BranchNode* leaf = current_branch.back (); in buildLODRecursive()
617 BranchNode* target_parent = current_branch[level-1]; in buildLODRecursive()
663 current_branch.back ()->clearData (); in buildLODRecursive()
665 std::vector<BranchNode*> next_branch (current_branch); in buildLODRecursive()
667 if (current_branch.back ()->hasUnloadedChildren ()) in buildLODRecursive()
[all …]
/dports/x11-toolkits/plib/plib-1.8.5/src/ssg/
H A DssgLoadTRI.cxx112 ssgBranch* current_branch = NULL ; in ssgLoadTRI() local
121 current_branch = new ssgTransform () ; in ssgLoadTRI()
122 current_branch -> addKid ( vtab ) ; in ssgLoadTRI()
127 return current_branch ; in ssgLoadTRI()
H A DssgLoadAC.cxx322 ssgEntity *old_cb = current_branch ; in do_object()
328 current_branch -> addKid ( tr ) ; in do_object()
329 current_branch = tr ; in do_object()
515 current_branch = (ssgBranch *) old_cb ; in do_object()
525 current_branch -> setName ( s ) ; in do_name()
553 current_branch -> addKid ( br ) ; in do_data()
554 current_branch = br ; in do_data()
795 current_branch -> addKid ( leaf ) ; in do_refs()
891 current_branch = NULL ; in ssgLoadAC()
909 current_branch = new ssgTransform () ; in ssgLoadAC()
[all …]
/dports/devel/anjuta/anjuta-3.34.0/plugins/git/
H A Dgit-branches-pane.c94 GList *current_branch; in on_local_branch_list_command_data_arrived() local
102 current_branch = git_branch_list_command_get_output (GIT_BRANCH_LIST_COMMAND (command)); in on_local_branch_list_command_data_arrived()
104 while (current_branch) in on_local_branch_list_command_data_arrived()
106 branch = current_branch->data; in on_local_branch_list_command_data_arrived()
120 current_branch = g_list_next (current_branch); in on_local_branch_list_command_data_arrived()
129 GList *current_branch; in on_remote_branch_list_command_data_arrived() local
137 current_branch = git_branch_list_command_get_output (GIT_BRANCH_LIST_COMMAND (command)); in on_remote_branch_list_command_data_arrived()
139 while (current_branch) in on_remote_branch_list_command_data_arrived()
141 branch = current_branch->data; in on_remote_branch_list_command_data_arrived()
157 current_branch = g_list_next (current_branch); in on_remote_branch_list_command_data_arrived()
/dports/multimedia/kodi/xbmc-19.3-Matrix/cmake/scripts/common/
H A DCheckCommits.cmake44 OUTPUT_VARIABLE current_branch)
46 string(REGEX REPLACE "(\r?\n)+$" "" current_branch "${current_branch}")
69 execute_process(COMMAND ${GIT_EXECUTABLE} checkout ${current_branch})
75 execute_process(COMMAND ${GIT_EXECUTABLE} checkout ${current_branch})
/dports/security/john/john-1.9.0-jumbo-1/run/
H A Drexgen2rules.pl273 my @current_branch;
277 @current_branch = combine [@current_branch], [@p];
283 $$_[0][$current_group] = $$_[1] for @current_branch;
286 push @all, @current_branch;
287 @current_branch = ();
/dports/devel/git-svn/git-2.34.1/git-gui/lib/
H A Dbranch_rename.tcl11 global current_branch use_ttk NS
20 set oldname $current_branch
73 global current_branch
127 if {$current_branch eq $oldname} {
128 set current_branch $newname
/dports/devel/git-gui/git-2.34.1/git-gui/lib/
H A Dbranch_rename.tcl11 global current_branch use_ttk NS
20 set oldname $current_branch
73 global current_branch
127 if {$current_branch eq $oldname} {
128 set current_branch $newname
/dports/devel/git-p4/git-2.34.1/git-gui/lib/
H A Dbranch_rename.tcl11 global current_branch use_ttk NS
20 set oldname $current_branch
73 global current_branch
127 if {$current_branch eq $oldname} {
128 set current_branch $newname
/dports/devel/git/git-2.34.1/git-gui/lib/
H A Dbranch_rename.tcl11 global current_branch use_ttk NS
20 set oldname $current_branch
73 global current_branch
127 if {$current_branch eq $oldname} {
128 set current_branch $newname
/dports/devel/git-cvs/git-2.34.1/git-gui/lib/
H A Dbranch_rename.tcl11 global current_branch use_ttk NS
20 set oldname $current_branch
73 global current_branch
127 if {$current_branch eq $oldname} {
128 set current_branch $newname
/dports/devel/cgit/cgit-1.2.3/git/git-gui/lib/
H A Dbranch_rename.tcl11 global current_branch use_ttk NS
20 set oldname $current_branch
73 global current_branch
127 if {$current_branch eq $oldname} {
128 set current_branch $newname
/dports/devel/p5-App-GitGot/App-GitGot-1.339/t/lib/Test/App/GitGot/Repo/
H A DGit.pm23 dies_ok { $test->{full}->current_branch } 'will die';
26 is( $test->{min}->current_branch , 'master' , 'expected answer' );
32 dies_ok { $test->{full}->current_branch } 'will die';
/dports/games/torcs/torcs-1.3.7/src/modules/graphic/ssggraph/
H A Dgrloadac.cpp90 static ssgBranch *current_branch = NULL ; variable
402 ssgEntity *old_cb = current_branch ; in do_object()
421 current_branch -> addKid ( tr ) ; in do_object()
422 current_branch = tr ; in do_object()
472 current_branch -> setName ( s ) ; in do_name()
496 current_branch -> addKid ( br ) ; in do_data()
497 current_branch = br ; in do_data()
967 current_branch->addKid(leaf); in do_refs()
1078 current_branch -> addKid ( leaf ) ; in do_kids()
1208 current_branch = NULL ; in myssgLoadAC()
[all …]
/dports/devel/hyperscan/boost_1_75_0/boost/geometry/index/detail/rtree/visitors/
H A Ddistance_query.hpp345 internal_stack_element() : current_branch(0) {} in internal_stack_element()
351 current_branch = o.current_branch; in operator =()
356 typename active_branch_list_type::size_type current_branch; member
411 …typename active_branch_list_type::size_type & current_branch = internal_stack.back().current_branc… in increment() local
413 if ( branches.size() <= current_branch ) in increment()
432 is_node_prunable(neighbors.back().first, branches[current_branch].first) ) in increment()
441 ++current_branch; in increment()
442 rtree::apply_visitor(*this, *(branches[current_branch - 1].second)); in increment()
577 if ( first->branches.size() <= first->current_branch ) in calc_closest_node_distance()
580 node_distance_type curr_dist = first->branches[first->current_branch].first; in calc_closest_node_distance()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/geometry/index/detail/rtree/visitors/
H A Ddistance_query.hpp325 internal_stack_element() : current_branch(0) {} in internal_stack_element()
331 current_branch = o.current_branch; in operator =()
336 typename active_branch_list_type::size_type current_branch; member
390 …typename active_branch_list_type::size_type & current_branch = internal_stack.back().current_branc… in increment() local
392 if ( branches.size() <= current_branch ) in increment()
411 is_node_prunable(neighbors.back().first, branches[current_branch].first) ) in increment()
420 ++current_branch; in increment()
421 rtree::apply_visitor(*this, *(branches[current_branch - 1].second)); in increment()
548 if ( first->branches.size() <= first->current_branch ) in calc_closest_node_distance()
551 node_distance_type curr_dist = first->branches[first->current_branch].first; in calc_closest_node_distance()
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/geometry/index/detail/rtree/visitors/
H A Ddistance_query.hpp345 internal_stack_element() : current_branch(0) {} in internal_stack_element()
351 current_branch = o.current_branch; in operator =()
356 typename active_branch_list_type::size_type current_branch; member
411 …typename active_branch_list_type::size_type & current_branch = internal_stack.back().current_branc… in increment() local
413 if ( branches.size() <= current_branch ) in increment()
432 is_node_prunable(neighbors.back().first, branches[current_branch].first) ) in increment()
441 ++current_branch; in increment()
442 rtree::apply_visitor(*this, *(branches[current_branch - 1].second)); in increment()
577 if ( first->branches.size() <= first->current_branch ) in calc_closest_node_distance()
580 node_distance_type curr_dist = first->branches[first->current_branch].first; in calc_closest_node_distance()
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/geometry/index/detail/rtree/visitors/
H A Ddistance_query.hpp345 internal_stack_element() : current_branch(0) {} in internal_stack_element()
351 current_branch = o.current_branch; in operator =()
356 typename active_branch_list_type::size_type current_branch; member
411 …typename active_branch_list_type::size_type & current_branch = internal_stack.back().current_branc… in increment() local
413 if ( branches.size() <= current_branch ) in increment()
432 is_node_prunable(neighbors.back().first, branches[current_branch].first) ) in increment()
441 ++current_branch; in increment()
442 rtree::apply_visitor(*this, *(branches[current_branch - 1].second)); in increment()
577 if ( first->branches.size() <= first->current_branch ) in calc_closest_node_distance()
580 node_distance_type curr_dist = first->branches[first->current_branch].first; in calc_closest_node_distance()

12345678910>>...24