Home
last modified time | relevance | path

Searched refs:produce (Results 1 – 25 of 11689) sorted by relevance

12345678910>>...468

/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/unit/includes/debug/logger/monolog/
H A DKafkaHandlerTest.php54 $produce->method( 'getAvailablePartitions' )
56 $produce->expects( $this->once() )
59 $produce->method( 'send' )
89 $produce->method( 'getAvailablePartitions' )
91 $produce->method( 'send' )
118 $produce->method( 'getAvailablePartitions' )
120 $produce->method( 'send' )
146 $produce->expects( $this->exactly( 2 ) )
152 $produce->method( 'send' )
177 $produce->expects( $this->once() )
[all …]
/dports/www/mediawiki136/mediawiki-1.36.3/tests/phpunit/unit/includes/debug/logger/monolog/
H A DKafkaHandlerTest.php54 $produce->expects( $this->any() )
57 $produce->expects( $this->once() )
60 $produce->expects( $this->any() )
91 $produce->expects( $this->any() )
94 $produce->expects( $this->any() )
122 $produce->expects( $this->any() )
125 $produce->expects( $this->any() )
150 $produce->expects( $this->any() )
159 $produce->expects( $this->any() )
184 $produce->expects( $this->any() )
[all …]
/dports/www/mediawiki135/mediawiki-1.35.5/tests/phpunit/unit/includes/debug/logger/monolog/
H A DKafkaHandlerTest.php55 $produce->expects( $this->any() )
58 $produce->expects( $this->once() )
61 $produce->expects( $this->any() )
92 $produce->expects( $this->any() )
95 $produce->expects( $this->any() )
123 $produce->expects( $this->any() )
126 $produce->expects( $this->any() )
151 $produce->expects( $this->any() )
160 $produce->expects( $this->any() )
185 $produce->expects( $this->any() )
[all …]
/dports/games/megaglest-data/megaglest-data-3.13.0/techs/megapack/lang/
H A Dmegapack_default.lng64 CommandName_produce_chicken=produce chicken
74 CommandName_produce_scarab=produce scarab
75 CommandName_produce_snake=produce snake
76 CommandName_produce_ibis=produce ibis
82 CommandName_produce_mummy=produce mummy
88 CommandName_produce_slave=produce slave
117 CommandName_produce_priest=produce priest
144 CommandName_produce_archer=produce archer
161 CommandName_produce_bull=produce bull
339 CommandName_produce_cow=produce cow
[all …]
/dports/math/jacop/jacop-4.8.0/src/test/fz/upTo5sec/toomany/
H A Dtoomany.mzn10 array[MACHINE,COLOR] of var 0..k div 2: produce;
13 (sum(c in COLOR)(produce[m,c]) <= k);
15 (sum(m in MACHINE)(produce[m,c]) >= l[c]);
17 (sum(m in MACHINE)(produce[m,c]) <= u[c]);
19 (produce[m,white] > 0 /\ produce[m,black] > 0 -> produce[m,blue] = 0);
21 (produce[m,blue] <= produce[m,red]);
23 (produce[m,red] mod 4 = 0);
25 (produce[m,white] mod 3 = 0);
28 solve maximize sum(m in MACHINE, c in COLOR)(produce[m,c]);
30 output [ show_int(3,produce[m,c]) ++
/dports/science/PETSc/petsc-3.14.1/src/ts/tutorials/output/
H A Dex20opt_ic_4.out1 MATSHELL and matrix free multiple appear to produce the same results
2 MATSHELL transpose and matrix free multiple appear to produce the same results
3 MATSHELL and matrix free multiple appear to produce the same results
4 MATSHELL transpose and matrix free multiple appear to produce the same results
5 MATSHELL and matrix free multiple appear to produce the same results
6 MATSHELL transpose and matrix free multiple appear to produce the same results
7 MATSHELL and matrix free multiple appear to produce the same results
8 MATSHELL transpose and matrix free multiple appear to produce the same results
13 MATSHELL and matrix free multiple appear to produce the same results
14 MATSHELL transpose and matrix free multiple appear to produce the same results
[all …]
/dports/www/mediawiki135/mediawiki-1.35.5/includes/debug/logger/monolog/
H A DKafkaHandler.php53 protected $produce; variable in MediaWiki\\Logger\\Monolog\\KafkaHandler
76 * @param Produce $produce Kafka instance to produce through
85 $this->produce = $produce;
103 $produce = new Produce( $metadata );
107 $produce->getClient()->setStreamOption( 'SendTimeoutSec', 0 );
108 $produce->getClient()->setStreamOption( 'SendTimeoutUSec',
115 $produce->getClient()->setStreamOption( 'RecvTimeoutUSec',
124 $produce->setRequireAck( $options['requireAck'] );
127 return new self( $produce, $options, $level, $bubble );
175 $response = $this->produce->send();
[all …]
/dports/www/mediawiki136/mediawiki-1.36.3/includes/debug/logger/monolog/
H A DKafkaHandler.php53 protected $produce; variable in MediaWiki\\Logger\\Monolog\\KafkaHandler
76 * @param Produce $produce Kafka instance to produce through
85 $this->produce = $produce;
103 $produce = new Produce( $metadata );
107 $produce->getClient()->setStreamOption( 'SendTimeoutSec', 0 );
108 $produce->getClient()->setStreamOption( 'SendTimeoutUSec',
115 $produce->getClient()->setStreamOption( 'RecvTimeoutUSec',
124 $produce->setRequireAck( $options['requireAck'] );
127 return new self( $produce, $options, $level, $bubble );
175 $response = $this->produce->send();
[all …]
/dports/www/mediawiki137/mediawiki-1.37.1/includes/debug/logger/monolog/
H A DKafkaHandler.php53 protected $produce;
76 * @param Produce $produce Kafka instance to produce through
85 $this->produce = $produce;
103 $produce = new Produce( $metadata );
107 $produce->getClient()->setStreamOption( 'SendTimeoutSec', 0 );
108 $produce->getClient()->setStreamOption( 'SendTimeoutUSec',
115 $produce->getClient()->setStreamOption( 'RecvTimeoutUSec',
124 $produce->setRequireAck( $options['requireAck'] );
127 return new self( $produce, $options, $level, $bubble );
175 $response = $this->produce->send();
[all …]
/dports/net/py-confluent-kafka/confluent-kafka-1.2.0/tests/
H A Dtest_Producer.py25 p.produce('mytopic')
26 p.produce('mytopic', value='somedata', key='a key')
33 p.produce(topic='another_topic', value='testing', partition=9,
56 p.produce('mytopic', timestamp=1234567)
96 p.produce('mytopic', value='somedata', key='a key', headers=headers)
97 p.produce('mytopic', value='somedata', headers=headers)
100 p.produce('mytopic', value='somedata', key='a key', headers=('a', 'b'))
106 p.produce('mytopic', value='somedata', headers={'anint': 1234})
132 super(SubProducer, self).produce(self.topic, value='hi')
142 sp.produce('someother', value='not hello')
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/htdp-lib/htdp/
H A Ddraw.rkt8 (syntax-case s (produce)
9 [(_ stmt ... produce exp) (syntax (begin (and stmt ...) exp))]
10 [(_ stmt ... produce)
11 (raise-syntax-error #f "produce must be followed by an expression" s)]
12 [(_ stmt ... produce exp exp2)
13 (raise-syntax-error #f "produce must be followed by exactly one expression" s)]
14 [(_ stmt ... produce exp exp2 exp3)
15 (raise-syntax-error #f "produce must be followed by exactly one expression" s)]
17 …ror #f "use drawing instructions between _draw_ and _produce_ and an expression behind produce" s)]
21 draw ;; (draw <expression> ... produce <expression>)
/dports/editors/texmacs/TeXmacs-1.99.4-src/TeXmacs/doc/main/math/keyboard/
H A Dman-symbols.es.tm10 produce <with|mode|math|\<alpha\>> y <key|H-G> produce
17 <with|mode|math|\<frak-m\>>, <key|S-F6 R> produce
18 <with|mode|math|\<bbb-R\>> y <shortcut|\<b-cal-Z\>> produce
29 <with|mode|math|\<rightarrow\>>, <key|- - \<gtr\>> produce
30 <with|mode|math|\<longrightarrow\>> y <key|\<gtr\> => produce
32 <with|mode|math|\<vdash\>>, <key|\| - \<gtr\>> produce
42 <with|mode|math|\<prec\>>, <key|\<less\> tab => produce
44 <with|mode|math|\<preceq\>>. Tambi�n, <key|P tab> produce
56 /> produce <with|mode|math|\<neq\>> and <key|\<less\> = /> produce
59 tab> produce <with|mode|math|\<lneqq\>>.
[all …]
H A Dman-symbols.it.tm18 produce <with|mode|math|\<b-cal-Z\>>.
22 var> produce <with|mode|math|\<pi\>>. Il tasto
30 <with|mode|math|\<rightarrow\>>, <key|- - \<gtr\>> produce
40 varianti. Per esempio, <key|\<gtr\> => produce
43 <key|\<less\> var> produce <with|mode|math|\<prec\>>,
44 <key|\<less\> var => produce
47 var tab> produce <with|mode|math|\<wp\>> e <key|e
54 <with|mode|math|\<oplus\>> e <key|@ x> produce
59 <key|= /> produce <with|mode|math|\<neq\>> e <key|\<less\> = /> produce
63 var / var> produce
[all …]
/dports/lang/erlang-runtime23/corba-5.0.2/lib/ic/examples/all-against-all/
H A Dclient.erl28 -export([produce/0,init/3,call/0]).
34 produce() -> function
35 ?CLIENTMOD:produce(?SERVER).
46 produce(0).
49 produce(10) -> function
51 produce(Ctr) -> function
52 N = produce(),
54 produce(Ctr+1).
/dports/lang/erlang-runtime24/corba-5.0.2/lib/ic/examples/all-against-all/
H A Dclient.erl28 -export([produce/0,init/3,call/0]).
34 produce() -> function
35 ?CLIENTMOD:produce(?SERVER).
46 produce(0).
49 produce(10) -> function
51 produce(Ctr) -> function
52 N = produce(),
54 produce(Ctr+1).
/dports/lang/erlang-runtime22/corba-4.5.2/lib/ic/examples/all-against-all/
H A Dclient.erl28 -export([produce/0,init/3,call/0]).
34 produce() -> function
35 ?CLIENTMOD:produce(?SERVER).
46 produce(0).
49 produce(10) -> function
51 produce(Ctr) -> function
52 N = produce(),
54 produce(Ctr+1).
/dports/lang/erlang/corba-5.0.2/lib/ic/examples/all-against-all/
H A Dclient.erl28 -export([produce/0,init/3,call/0]).
34 produce() -> function
35 ?CLIENTMOD:produce(?SERVER).
46 produce(0).
49 produce(10) -> function
51 produce(Ctr) -> function
52 N = produce(),
54 produce(Ctr+1).
/dports/lang/erlang-runtime21/corba-4.5.2/lib/ic/examples/all-against-all/
H A Dclient.erl28 -export([produce/0,init/3,call/0]).
34 produce() -> function
35 ?CLIENTMOD:produce(?SERVER).
46 produce(0).
49 produce(10) -> function
51 produce(Ctr) -> function
52 N = produce(),
54 produce(Ctr+1).
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/ui/src/common/
H A Dactions_unittest.ts15 import {produce} from 'immer';
58 const twice = produce(once, draft => {
124 const twice = produce(once, draft => {
144 const after = produce(state, draft => {
164 const after = produce(state, draft => {
184 const after = produce(state, draft => {
202 const after = produce(state, draft => {
220 const after = produce(state, draft => {
237 const after = produce(state, draft => {
272 const twice = produce(once, draft => {
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/ui/src/common/
H A Dactions_unittest.ts15 import {produce} from 'immer';
56 const twice = produce(once, draft => {
117 const twice = produce(once, draft => {
137 const after = produce(state, draft => {
157 const after = produce(state, draft => {
177 const after = produce(state, draft => {
195 const after = produce(state, draft => {
213 const after = produce(state, draft => {
230 const after = produce(state, draft => {
243 const after = produce(state, draft => {
[all …]
/dports/databases/couchdb3/apache-couchdb-3.2.1/src/couch/test/eunit/
H A Dcouch_work_queue_tests.erl182 produce(Q, Producer, 20, true),
189 produce(Q, Producer, 50, true),
194 produce(Q, Producer, 10, true),
201 produce(Q, Producer, 10, true),
205 produce(Q, Producer, 15, true),
209 produce(Q, Producer, 20, true),
216 produce(Q, Producer, 100, true),
264 produce(Q, Producer, 1, true),
270 produce(Q, Producer, 1, true),
337 {produce, Ref, Size} ->
[all …]
/dports/net/py-confluent-kafka/confluent-kafka-1.2.0/tests/avro/
H A Dtest_avro_producer.py50 producer.produce(topic='test', value={"name": 'abc"'})
56 producer.produce(topic='test', key={"name": 'abc"'})
62 producer.produce(topic='test', value={"name": 'abc"'})
68 producer.produce(topic='test', key={"name": 'abc"'})
75 producer.produce(topic='test', value={"name": 'abc"'}, key={"name": 'abc"'})
82 … producer.produce(topic='test', value={"name": 'abc"'}, value_schema=value_schema, key='mykey',
90 …producer.produce(topic='test', value=32., value_schema=value_schema, key='mykey', key_schema=key_s…
97 … producer.produce(topic='test', value={"name": 'abc"'}, value_schema=value_schema, key='mykey',
109 producer.produce(topic='test', value='', key='not empty')
117 producer.produce(topic='test', value=0.0, key='')
[all …]
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/plugins/hls-tactics-plugin/
H A DCOMMANDS.md21 running `application` will produce:
45 running `apply f` will produce:
93 running `assumption` will produce:
118 running `auto` will produce:
142 running `binary` will produce:
168 running `cata x` will produce:
305 running `homo e` will produce:
351 running `intros` will produce:
519 running `sorry` will produce:
541 running `split` will produce:
[all …]
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/plugins/hls-tactics-plugin/
H A DCOMMANDS.md21 running `application` will produce:
45 running `apply f` will produce:
93 running `assumption` will produce:
118 running `auto` will produce:
142 running `binary` will produce:
168 running `cata x` will produce:
305 running `homo e` will produce:
351 running `intros` will produce:
519 running `sorry` will produce:
541 running `split` will produce:
[all …]
/dports/devel/scalatest/scalatest-1.6.1/src/test/scala/org/scalatest/matchers/
H A DShouldThrowSpec.scala26 evaluating { "hi".charAt(-1) } should produce [IllegalArgumentException]
33 evaluating { "hi" } should produce [IllegalArgumentException]
39 evaluating { "hi".charAt(-1) } should produce [StringIndexOutOfBoundsException]
43 evaluating { "hi".charAt(-1) } should produce [Exception]
49 evaluating { kaboom() } should produce [Excitement]
54 val thrown = evaluating { kaboom() } should produce [Exception]

12345678910>>...468