Home
last modified time | relevance | path

Searched refs:include_self (Results 1 – 25 of 562) sorted by relevance

12345678910>>...23

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/models/namespaces/traversal/
H A Dlinear_scopes.rb33 if include_self
40 def self_and_ancestor_ids(include_self: true)
43 self_and_ancestors(include_self: include_self).as_ids
46 def self_and_descendants(include_self: true)
50 self_and_descendants_with_comparison_operators(include_self: include_self)
52 … records = self_and_descendants_with_duplicates_with_array_operator(include_self: include_self)
58 def self_and_descendant_ids(include_self: true)
62 self_and_descendants_with_comparison_operators(include_self: include_self).as_ids
64 self_and_descendants_with_duplicates_with_array_operator(include_self: include_self)
122 records = if include_self
[all …]
H A Drecursive_scopes.rb20 def self_and_ancestors(include_self: true, hierarchy_order: nil)
23 if include_self
31 def self_and_ancestor_ids(include_self: true)
32 self_and_ancestors(include_self: include_self).as_ids
41 def self_and_descendants(include_self: true)
42 base = if include_self
52 def self_and_descendant_ids(include_self: true)
53 self_and_descendants(include_self: include_self).as_ids
/dports/devel/py-taskflow/taskflow-4.6.3/taskflow/types/
H A Dtree.py41 self.include_self = bool(include_self)
45 if self.include_self:
70 self.include_self = bool(include_self)
74 if self.include_self:
149 if include_self:
175 if include_self:
180 it = self.dfs_iter(include_self=include_self)
200 include_self=include_self)
237 include_self=include_self)
384 include_self=include_self,
[all …]
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/flask_socketio/
H A Dnamespace.py28 def emit(self, event, data=None, room=None, include_self=True, argument
32 include_self=include_self,
36 def send(self, data, room=None, include_self=True, namespace=None, argument
39 return self.socketio.send(data, room=room, include_self=include_self,
H A D__init__.py440 include_self = kwargs.pop('include_self', True)
442 if not include_self and not skip_sid:
466 callback=None, include_self=True, skip_sid=None, **kwargs): argument
497 skip_sid = flask.request.sid if not include_self else skip_sid
819 include_self = kwargs.get('include_self', True)
825 include_self=include_self, skip_sid=skip_sid,
877 include_self = kwargs.get('include_self', True)
883 include_self=include_self, skip_sid=skip_sid,
/dports/www/py-flask-socketio/Flask-SocketIO-4.3.2/flask_socketio/
H A Dnamespace.py28 def emit(self, event, data=None, room=None, include_self=True, argument
32 include_self=include_self,
36 def send(self, data, room=None, include_self=True, namespace=None, argument
39 return self.socketio.send(data, room=room, include_self=include_self,
H A D__init__.py404 include_self = kwargs.pop('include_self', True)
406 if not include_self and not skip_sid:
430 callback=None, include_self=True, skip_sid=None, **kwargs): argument
461 skip_sid = flask.request.sid if not include_self else skip_sid
782 include_self = kwargs.get('include_self', True)
788 include_self=include_self, skip_sid=skip_sid,
838 include_self = kwargs.get('include_self', True)
844 include_self=include_self, skip_sid=skip_sid,
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/models/concerns/
H A Dcascading_namespace_setting_attribute.rb82 … next locked_value(attribute) if cascading_attribute_locked?(attribute, include_self: false)
112 define_method("#{attribute}_locked?") do |include_self: false|
113 cascading_attribute_locked?(attribute, include_self: include_self)
141 return unless cascading_attribute_locked?(attribute, include_self: false)
149 if cascading_attribute_locked?(attribute, include_self: false)
205 def cascading_attribute_locked?(attribute, include_self:) argument
206 …locked_by_self = include_self ? public_send("lock_#{attribute}?") : false # rubocop:disable Gitlab…
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/neighbors/
H A D_graph.py26 def _query_include_self(X, include_self, mode): argument
28 if include_self == "auto":
29 include_self = mode == "connectivity"
32 if not include_self:
46 include_self=False, argument
124 query = _query_include_self(X._fit_X, include_self, mode)
136 include_self=False, argument
218 query = _query_include_self(X._fit_X, include_self, mode)
/dports/biology/py-scikit-bio/scikit-bio-0.5.6/skbio/tree/
H A D_tree.py1032 return self.pre_and_postorder(include_self=include_self)
1034 return self.preorder(include_self=include_self)
1037 return self.postorder(include_self=include_self)
1039 return self.tips(include_self=include_self)
1042 def preorder(self, include_self=True): argument
1085 def postorder(self, include_self=True): argument
1195 if include_self:
1232 def levelorder(self, include_self=True): argument
1278 def tips(self, include_self=False): argument
1315 for n in self.postorder(include_self=include_self):
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/relative_positioning/
H A Ditem_context.rb209 def move_sequence_before(include_self = false, next_gap: find_next_gap_before) argument
214 move_sequence(next_gap.start_pos, relative_position, -delta, include_self)
241 def move_sequence_after(include_self = false, next_gap: find_next_gap_after) argument
246 move_sequence(relative_position, next_gap.start_pos, delta, include_self)
249 def move_sequence(start_pos, end_pos, delta, include_self = false) argument
250 relation = include_self ? scoped_items : relative_siblings
/dports/net-mgmt/netbox/netbox-3.0.12/netbox/ipam/
H A Dquerysets.py46 scope_id__in=device.site.region.get_ancestors(include_self=True)
51 scope_id__in=device.site.group.get_ancestors(include_self=True)
60 scope_id__in=device.location.get_ancestors(include_self=True)
88 scope_id__in=vm.cluster.site.region.get_ancestors(include_self=True)
93 scope_id__in=vm.cluster.site.group.get_ancestors(include_self=True)
H A Dsignals.py13 parents = prefix.get_parents(include_self=True).annotate_hierarchy()
23 children = prefix.get_children(include_self=True).annotate_hierarchy()
/dports/astro/siril/siril/src/filters/
H A Dmedian.h18 const int h, int radius, gboolean is_cfa, gboolean include_self);
20 const int h, int radius, gboolean is_cfa, gboolean include_self);
22 const int h, int radius, gboolean is_cfa, gboolean include_self);
/dports/www/py-dj32-django-mptt/django-mptt-0.13.4/mptt/
H A Dmodels.py527 if not include_self:
540 if not include_self:
558 if not include_self:
633 if not include_self:
642 if not include_self:
661 def get_leafnodes(self, include_self=False): argument
669 descendants = self.get_descendants(include_self=include_self)
738 def get_siblings(self, include_self=False): argument
752 if not include_self:
813 if include_self and other.pk == self.pk:
[all …]
/dports/www/py-django-mptt/django-mptt-0.13.4/mptt/
H A Dmodels.py527 if not include_self:
540 if not include_self:
558 if not include_self:
633 if not include_self:
642 if not include_self:
661 def get_leafnodes(self, include_self=False): argument
669 descendants = self.get_descendants(include_self=include_self)
738 def get_siblings(self, include_self=False): argument
752 if not include_self:
813 if include_self and other.pk == self.pk:
[all …]
/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/scripts/
H A Dcheck_compilation_units_policy.pl79 my @include_self;
109 push @include_self, $aa;
187 unless (@include_self) {
/dports/devel/py-taskflow/taskflow-4.6.3/taskflow/tests/unit/
H A Dtest_types.py456 all(n.frozen for n in root.dfs_iter(include_self=True)))
478 n.remove('horse', include_self=True)
530 self.assertIsNone(root.find('animal', include_self=False))
532 include_self=False, only_direct=True))
536 things = list([n.item for n in root.dfs_iter(include_self=True)])
542 it = root.dfs_iter(include_self=False, right_to_left=False)
549 things = list([n.item for n in root.dfs_iter(include_self=False)])
555 things = list([n.item for n in root.bfs_iter(include_self=True)])
561 things = list([n.item for n in root.bfs_iter(include_self=False)])
567 it = root.bfs_iter(include_self=False, right_to_left=True)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/display_lock/
H A Ddisplay_lock_utilities.h60 explicit ScopedForcedUpdate(const Node* node, bool include_self = false)
61 : impl_(MakeGarbageCollected<Impl>(node, include_self)) {} in impl_() argument
67 explicit Impl(const Node* node, bool include_self = false);
/dports/www/flickcurl/flickcurl-1.26/src/
H A Dcontacts-api.c288 const char* include_self, in flickcurl_contacts_getTaggingSuggestions() argument
301 if(include_self) in flickcurl_contacts_getTaggingSuggestions()
302 flickcurl_add_param(fc, "include_self", include_self); in flickcurl_contacts_getTaggingSuggestions()
/dports/irc/inspircd/inspircd-3.11.0/include/modules/
H A Dircv3.h46 …ser* user, ClientProtocol::Event& ev, const Cap::Capability& capability, bool include_self = false)
50 sentid = user->ForEachNeighbor(*this, include_self); in cap()
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/inventory/
H A Dgroup.py117 def _walk_relationship(self, rel, include_self=False, preserve_ordering=False): argument
133 if include_self:
136 ordered = [self] if include_self else []
271 for kid in self.get_descendants(include_self=True, preserve_ordering=True):
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/support/shared_examples/namespaces/
H A Dtraversal_scope_examples.rb105 …scribed_class.where(id: [nested_group_1, nested_group_2]).self_and_ancestors(include_self: false) }
165 .self_and_ancestor_ids(include_self: false)
212 …ribed_class.where(id: [nested_group_1, nested_group_2]).self_and_descendants(include_self: false) }
245 .self_and_descendant_ids(include_self: false)
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/lib/ansible/inventory/
H A Dgroup.py117 def _walk_relationship(self, rel, include_self=False, preserve_ordering=False): argument
133 if include_self:
136 ordered = [self] if include_self else []
271 for kid in self.get_descendants(include_self=True, preserve_ordering=True):
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/lib/ansible/inventory/
H A Dgroup.py116 def _walk_relationship(self, rel, include_self=False, preserve_ordering=False): argument
132 if include_self:
135 ordered = [self] if include_self else []
270 for kid in self.get_descendants(include_self=True, preserve_ordering=True):

12345678910>>...23