Home
last modified time | relevance | path

Searched +refs:increment +refs:counter +refs:block (Results 1 – 25 of 5566) sorted by relevance

12345678910>>...223

/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/metrics/subscribers/
H A Dactive_record.rb44 increment(:count, db_config_name: db_config_name)
68 load_balancing_metric_counter_keys.each do |counter|
69 payload[counter] = ::Gitlab::SafeRequestStore[counter].to_i
128 def increment(counter, db_config_name:, db_role: nil) method in Gitlab.Metrics.Subscribers.ActiveRecord
129 log_key = compose_metric_key(counter, db_role)
134 :"gitlab_transaction_db_#{counter}_total"
140 current_transaction&.increment(prometheus_key, 1)
149 log_key = compose_metric_key(counter, nil, db_config_name)
154 def observe(histogram, event, &block) argument
158 …ransaction&.observe(histogram, event.duration / 1000.0, { db_config_name: db_config_name }, &block)
[all …]
/dports/www/phpgroupware/phpgroupware-0.9.16.017/phpgwapi/doc/styles/
H A Ddev-guide.css3 content: counter(chapter) ". ";
4 counter-increment: chapter; /* Add 1 to chapter */
5 counter-reset: section; /* Set section to 0 */
10 content: counter(chapter) "." counter(section) " ";
11 counter-increment: section;
26 display: block;
38 counter-reset: item;
43 display: block;
49 counter-increment: item;
/dports/audio/rhvoice/RHVoice-1.2.4/src/third-party/cldr/docs/rfc/
H A Ddraft-davis-t-langtag-ext.css2 display: block;
19 display: block;
25 display: block;
70 …content: counter(sec1, decimal) "." counter(sec2, decimal) "." counter(sec3,decimal) " " attr(titl…
78 content: counter(sec1, decimal) "." counter(sec2, decimal) " " attr(title);
86 content: counter(sec1, decimal) " " attr(title);
101 counter-increment: sec1;
102 counter-reset: sec2;
103 counter-reset: sec3;
109 counter-increment: sec2;
[all …]
/dports/math/rumur/rumur-2021.09.29/doc/
H A Dproperties.rst16 .. code-block:: murphi
25 rule "increment"
48 .. code-block:: murphi
56 .. code-block:: murphi
76 .. code-block:: murphi
78 rule "increment"
101 .. code-block:: murphi
108 .. code-block:: murphi
110 rule "increment"
127 rule "increment"
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/metrics/
H A Dtransaction.rb38 metric.increment(filter_labels(tags))
65 def increment(name, value = 1, labels = {}, &block) method in Gitlab.Metrics.Transaction
66 counter = self.class.prometheus_metric(name, :counter, &block)
68 counter.increment(filter_labels(labels), value)
84 def set(name, value, labels = {}, &block) argument
85 gauge = self.class.prometheus_metric(name, :gauge, &block)
102 def observe(name, value, labels = {}, &block) argument
103 histogram = self.class.prometheus_metric(name, :histogram, &block)
/dports/devel/liteide/liteide-x37.4/liteidex/deploy/packages/markdown/css/
H A DGitHub_Word.css27 display: block;
79 counter-increment: heading2; }
84 counter-increment: heading3; }
89 counter-increment: heading4; }
94 counter-increment: heading5; }
99 counter-increment: heading6; }
228 display: block;
247 display: block;
259 display: block;
271 display: block;
[all …]
/dports/security/arti/arti-9d0ede26801cdb182daa85c3eb5f0058dc178eb6/cargo-crates/ctr-0.8.0/src/
H A Dlib.rs104 pub fn seek_block(&mut self, block: F::Backend) { in seek_block()
105 self.counter = F::from_backend(block); in seek_block()
158 counter.increment(); in try_apply_keystream()
170 counter.increment(); in try_apply_keystream()
181 let mut block = counter.generate_block(&self.nonce); in try_apply_keystream() localVariable
182 counter.increment(); in try_apply_keystream()
183 self.cipher.encrypt_block(&mut block); in try_apply_keystream()
184 xor(chunk, &block); in try_apply_keystream()
213 let mut block = self.counter.generate_block(&self.nonce); in try_seek() localVariable
214 self.cipher.encrypt_block(&mut block); in try_seek()
[all …]
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/ctr-0.8.0/src/
H A Dlib.rs104 pub fn seek_block(&mut self, block: F::Backend) { in seek_block()
105 self.counter = F::from_backend(block); in seek_block()
158 counter.increment(); in try_apply_keystream()
170 counter.increment(); in try_apply_keystream()
181 let mut block = counter.generate_block(&self.nonce); in try_apply_keystream() localVariable
182 counter.increment(); in try_apply_keystream()
183 self.cipher.encrypt_block(&mut block); in try_apply_keystream()
184 xor(chunk, &block); in try_apply_keystream()
213 let mut block = self.counter.generate_block(&self.nonce); in try_seek() localVariable
214 self.cipher.encrypt_block(&mut block); in try_seek()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DConstantLoadOptimization.java88 …private static final CounterKey constantsTotal = DebugContext.counter("ConstantLoadOptimization[to…
89 …private static final CounterKey phiConstantsSkipped = DebugContext.counter("ConstantLoadOptimizati…
90 …private static final CounterKey singleUsageConstantsSkipped = DebugContext.counter("ConstantLoadOp…
94 …private static final CounterKey constantsOptimized = DebugContext.counter("ConstantLoadOptimizatio…
130 singleUsageConstantsSkipped.increment(debug); in apply()
212 basePointerUsagesSkipped.increment(debug); in analyzeBlock()
222 constantsTotal.increment(debug); in analyzeBlock()
229 phiConstantsSkipped.increment(debug); in analyzeBlock()
285 usageAtDefinitionSkipped.increment(debug); in createConstantTree()
307 constantsOptimized.increment(debug); in createConstantTree()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DConstantLoadOptimization.java88 …private static final CounterKey constantsTotal = DebugContext.counter("ConstantLoadOptimization[to…
89 …private static final CounterKey phiConstantsSkipped = DebugContext.counter("ConstantLoadOptimizati…
90 …private static final CounterKey singleUsageConstantsSkipped = DebugContext.counter("ConstantLoadOp…
94 …private static final CounterKey constantsOptimized = DebugContext.counter("ConstantLoadOptimizatio…
130 singleUsageConstantsSkipped.increment(debug); in apply()
212 basePointerUsagesSkipped.increment(debug); in analyzeBlock()
222 constantsTotal.increment(debug); in analyzeBlock()
229 phiConstantsSkipped.increment(debug); in analyzeBlock()
285 usageAtDefinitionSkipped.increment(debug); in createConstantTree()
307 constantsOptimized.increment(debug); in createConstantTree()
[all …]
/dports/net-im/libsignal-client/libsignal-client-0.9.6/cargo-crates/ctr-0.7.0/src/
H A Dlib.rs113 pub fn seek_block(&mut self, block: F::Backend) { in seek_block()
114 self.counter = F::from_backend(block); in seek_block()
171 counter.increment(); in try_apply_keystream()
183 counter.increment(); in try_apply_keystream()
194 let mut block = counter.generate_block(&self.nonce); in try_apply_keystream() localVariable
195 counter.increment(); in try_apply_keystream()
196 self.cipher.encrypt_block(&mut block); in try_apply_keystream()
197 xor(chunk, &block); in try_apply_keystream()
228 let mut block = self.counter.generate_block(&self.nonce); in try_seek() localVariable
229 self.cipher.encrypt_block(&mut block); in try_seek()
[all …]
/dports/net-im/zkgroup/zkgroup-0.7.4/cargo-crates/ctr-0.7.0/src/
H A Dlib.rs113 pub fn seek_block(&mut self, block: F::Backend) { in seek_block()
114 self.counter = F::from_backend(block); in seek_block()
171 counter.increment(); in try_apply_keystream()
183 counter.increment(); in try_apply_keystream()
194 let mut block = counter.generate_block(&self.nonce); in try_apply_keystream() localVariable
195 counter.increment(); in try_apply_keystream()
196 self.cipher.encrypt_block(&mut block); in try_apply_keystream()
197 xor(chunk, &block); in try_apply_keystream()
228 let mut block = self.counter.generate_block(&self.nonce); in try_seek() localVariable
229 self.cipher.encrypt_block(&mut block); in try_seek()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DConstantLoadOptimization.java86 …private static final CounterKey constantsTotal = DebugContext.counter("ConstantLoadOptimization[to…
87 …private static final CounterKey phiConstantsSkipped = DebugContext.counter("ConstantLoadOptimizati…
88 …private static final CounterKey singleUsageConstantsSkipped = DebugContext.counter("ConstantLoadOp…
89 …private static final CounterKey usageAtDefinitionSkipped = DebugContext.counter("ConstantLoadOptim…
91 …private static final CounterKey constantsOptimized = DebugContext.counter("ConstantLoadOptimizatio…
127 singleUsageConstantsSkipped.increment(debug); in apply()
209 constantsTotal.increment(debug); in analyzeBlock()
216 phiConstantsSkipped.increment(debug); in analyzeBlock()
263 usageAtDefinitionSkipped.increment(debug); in createConstantTree()
284 constantsOptimized.increment(debug); in createConstantTree()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DConstantLoadOptimization.java86 …private static final CounterKey constantsTotal = DebugContext.counter("ConstantLoadOptimization[to…
87 …private static final CounterKey phiConstantsSkipped = DebugContext.counter("ConstantLoadOptimizati…
88 …private static final CounterKey singleUsageConstantsSkipped = DebugContext.counter("ConstantLoadOp…
89 …private static final CounterKey usageAtDefinitionSkipped = DebugContext.counter("ConstantLoadOptim…
91 …private static final CounterKey constantsOptimized = DebugContext.counter("ConstantLoadOptimizatio…
127 singleUsageConstantsSkipped.increment(debug); in apply()
209 constantsTotal.increment(debug); in analyzeBlock()
216 phiConstantsSkipped.increment(debug); in analyzeBlock()
263 usageAtDefinitionSkipped.increment(debug); in createConstantTree()
285 constantsOptimized.increment(debug); in createConstantTree()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DConstantLoadOptimization.java86 …private static final CounterKey constantsTotal = DebugContext.counter("ConstantLoadOptimization[to…
87 …private static final CounterKey phiConstantsSkipped = DebugContext.counter("ConstantLoadOptimizati…
88 …private static final CounterKey singleUsageConstantsSkipped = DebugContext.counter("ConstantLoadOp…
89 …private static final CounterKey usageAtDefinitionSkipped = DebugContext.counter("ConstantLoadOptim…
91 …private static final CounterKey constantsOptimized = DebugContext.counter("ConstantLoadOptimizatio…
127 singleUsageConstantsSkipped.increment(debug); in apply()
209 constantsTotal.increment(debug); in analyzeBlock()
216 phiConstantsSkipped.increment(debug); in analyzeBlock()
263 usageAtDefinitionSkipped.increment(debug); in createConstantTree()
284 constantsOptimized.increment(debug); in createConstantTree()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DConstantLoadOptimization.java86 …private static final CounterKey constantsTotal = DebugContext.counter("ConstantLoadOptimization[to…
87 …private static final CounterKey phiConstantsSkipped = DebugContext.counter("ConstantLoadOptimizati…
88 …private static final CounterKey singleUsageConstantsSkipped = DebugContext.counter("ConstantLoadOp…
89 …private static final CounterKey usageAtDefinitionSkipped = DebugContext.counter("ConstantLoadOptim…
91 …private static final CounterKey constantsOptimized = DebugContext.counter("ConstantLoadOptimizatio…
127 singleUsageConstantsSkipped.increment(debug); in apply()
209 constantsTotal.increment(debug); in analyzeBlock()
216 phiConstantsSkipped.increment(debug); in analyzeBlock()
263 usageAtDefinitionSkipped.increment(debug); in createConstantTree()
284 constantsOptimized.increment(debug); in createConstantTree()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DConstantLoadOptimization.java86 …private static final CounterKey constantsTotal = DebugContext.counter("ConstantLoadOptimization[to…
87 …private static final CounterKey phiConstantsSkipped = DebugContext.counter("ConstantLoadOptimizati…
88 …private static final CounterKey singleUsageConstantsSkipped = DebugContext.counter("ConstantLoadOp…
89 …private static final CounterKey usageAtDefinitionSkipped = DebugContext.counter("ConstantLoadOptim…
91 …private static final CounterKey constantsOptimized = DebugContext.counter("ConstantLoadOptimizatio…
127 singleUsageConstantsSkipped.increment(debug); in apply()
209 constantsTotal.increment(debug); in analyzeBlock()
216 phiConstantsSkipped.increment(debug); in analyzeBlock()
263 usageAtDefinitionSkipped.increment(debug); in createConstantTree()
285 constantsOptimized.increment(debug); in createConstantTree()
[all …]
/dports/archivers/draco/draco-1.4.3/docs/assets/css/
H A Dspec-style.sass61 display: block
91 counter-increment: h2
95 counter-increment: h3
96 content: counter(h2) "." counter(h3) ". "
99 counter-increment: h4
100 content: counter(h2) "." counter(h3) "." counter(h4) ". "
103 counter-increment: h5
104 content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". "
107 counter-increment: h6
108 content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". "
[all …]
/dports/www/py-css-parser/css-parser-1.0.7/css_parser_tests/sheets/
H A Dtest.css93 P {counter-increment: par-num ! important }
94 H1 {counter-reset: par-num}
133 P {counter-increment: par-num}
134 H1 {counter-reset: par-num}
138 counter-increment: chapter; /* Add 1 to chapter */
142 content: counter(chapter) "." counter(section) " ";
143 counter-increment: section;
145 OL { counter-reset: item }
146 LI { display: block }
147 LI:before { content: counters(item, "."); counter-increment: item }
[all …]
/dports/www/py-cssutils/cssutils-2.3.0/cssutils/tests/sheets/
H A Dtest.css93 P {counter-increment: par-num ! important }
94 H1 {counter-reset: par-num}
133 P {counter-increment: par-num}
134 H1 {counter-reset: par-num}
138 counter-increment: chapter; /* Add 1 to chapter */
142 content: counter(chapter) "." counter(section) " ";
143 counter-increment: section;
145 OL { counter-reset: item }
146 LI { display: block }
147 LI:before { content: counters(item, "."); counter-increment: item }
[all …]
/dports/www/py-cssutils/cssutils-2.3.0/sheets/
H A Dtest.css93 P {counter-increment: par-num ! important }
94 H1 {counter-reset: par-num}
133 P {counter-increment: par-num}
134 H1 {counter-reset: par-num}
138 counter-increment: chapter; /* Add 1 to chapter */
142 content: counter(chapter) "." counter(section) " ";
143 counter-increment: section;
145 OL { counter-reset: item }
146 LI { display: block }
147 LI:before { content: counters(item, "."); counter-increment: item }
[all …]
/dports/devel/py-distributed/distributed-2021.11.2/docs/source/
H A Dactors.rst17 .. code-block:: python
26 def increment(self):
43 future = counter.increment() # Call remote method
86 .. code-block:: python
96 .. code-block:: python
106 .. code-block:: python
109 ['add', 'increment', 'n']
120 .. code-block:: python
122 >>> future = counter.increment() # Immediately returns an ActorFuture
140 .. code-block:: python
[all …]
/dports/misc/gpsim/gpsim-0.31.0/regression/p18f26k22/
H A Dtbl_26k22.asm44 counter RES 1 label
104 tblrd*+ ; read into TABLAT and increment
105 tblrd*+ ; read into TABLAT and increment
106 tblrd*+ ; read into TABLAT and increment
107 tblrd*+ ; read into TABLAT and increment
121 tblrd*+ ; read into TABLAT and increment
127 tblrd*+ ; read into TABLAT and increment
252 decfsz counter,F ; done?
304 movwf counter
309 decfsz counter,F
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/servo/resources/
H A Dservo.css58 display: inline-block;
71 display: inline-block;
105 display: inline-block;
143 display: block;
159 display: block;
191 counter-increment: none;
204 counter-increment: none;
212 counter-increment: none;
220 counter-increment: none;
224 *|*::-servo-anonymous-block {
[all …]
/dports/cad/ghdl/ghdl-1.0.0/testsuite/vests/vhdl-93/ashenden/compliant/
H A Dch_16_fg_16_13.vhd27 architecture detailed_timing of counter is
35 input_port_delay : block is
39 end block input_port_delay;
41 functionality : block is
43 function increment ( bv : bit_vector ) return bit_vector is function
53 end function increment;
58 next_count <= increment(q_zd) when reset_ipd = '0' else
61 end block functionality;
68 timing_checks : block is
74 end block timing_checks;
[all …]

12345678910>>...223