Home
last modified time | relevance | path

Searched refs:scope_attrs (Results 1 – 11 of 11) sorted by relevance

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/models/concerns/
H A Datomic_internal_id.rb180 scope_attrs = ::AtomicInternalId.scope_attrs(scope_value)
183 supply = Supply.new(-> { InternalId.generate_next(subject, scope_attrs, usage, init) })
189 def self.scope_attrs(scope_value) singletonMethod
196 ::AtomicInternalId.scope_attrs(scope_value)
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/models/concerns/
H A Datomic_internal_id_spec.rb44 …expect(InternalId).to receive(:track_greatest).once.with(milestone, scope_attrs, usage, external_i…
61 …expect(InternalId).to receive(:track_greatest).once.with(milestone, scope_attrs, usage, external_i…
75 …expect(InternalId).to receive(:generate_next).with(milestone, scope_attrs, usage, anything).and_re…
81 …expect(InternalId).to receive(:generate_next).with(milestone, scope_attrs, usage, anything).and_re…
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/support/shared_examples/models/
H A Datomic_internal_id_shared_examples.rb90 … expect(InternalId).to have_received(:generate_next).with(instance, scope_attrs, usage, any_args)
109 .with(instance, scope_attrs, usage, internal_id, any_args)
169 let(:scope_value) { scope_attrs.each_value.first }
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers-pro/jupyter_debug/
H A Dpydev_jupyter_vars.py51 def load_full_value(scope_attrs): argument
54 vars = scope_attrs.split(NEXT_VALUE_SEPARATOR)
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/pydev/_pydev_bundle/
H A Dpydev_console_utils.py301 def loadFullValue(self, seq, scope_attrs): argument
313 vars = scope_attrs
/dports/java/eclipse-pydev/eclipse-pydev-8.2.0/plugins/org.python.pydev.core_8.2.0.202102211157/pysrc/_pydev_bundle/
H A Dpydev_console_utils.py482 def loadFullValue(self, seq, scope_attrs): argument
492 vars = scope_attrs.split(NEXT_VALUE_SEPARATOR)
/dports/devel/py-debugpy/debugpy-1.5.1/src/debugpy/_vendored/pydevd/_pydev_bundle/
H A Dpydev_console_utils.py482 def loadFullValue(self, seq, scope_attrs): argument
492 vars = scope_attrs.split(NEXT_VALUE_SEPARATOR)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/pylint/pylint/checkers/
H A Dvariables.py786 if name in defframe.scope_attrs or builtin_lookup(name)[1]:
874 if not (name in astroid.Module.scope_attrs or is_builtin(name)
1050 if not (name in astroid.Module.scope_attrs or
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/logilab/logilab/astroid/
H A Dscoped_nodes.py291 scope_attrs = set(('__name__', '__doc__', '__file__', '__path__')) variable in Module
340 if name in self.scope_attrs and not name in self.locals:
/dports/devel/pylint/pylint-2.12.1/pylint/checkers/
H A Dvariables.py1231 node.name in nodes.Module.scope_attrs
1411 node.name in defframe.scope_attrs
2322 name in nodes.Module.scope_attrs
/dports/devel/py-astroid/astroid-2.9.0/astroid/nodes/
H A Dscoped_nodes.py455 scope_attrs = {"__name__", "__doc__", "__file__", "__path__", "__package__"} variable in Module
584 if name in self.scope_attrs and name not in self.locals: