HomeSort by relevance Sort by last modified time
    Searched refs:produced (Results 1 - 25 of 201) sorted by null

1 2 3 4 5 6 7 8 9

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
got-reloc.s 1 # Test that no GOT relocs with an addend are produced.
  /system/extras/perfprofd/
perfprofd_cmdline.cc 134 std::set<int> produced; local
140 produced.insert(seq);
147 if (produced.size() >= maxLive) {
151 produced.insert(current_seq);
157 for (std::set<int>::const_iterator iter = produced.begin();
158 iter != produced.end(); ++iter) {
  /external/strace/
strace-log-merge 38 It is assumed that STRACE_LOGs were produced by strace with -tt[t]
  /external/tensorflow/tensorflow/core/framework/
reader_base.cc 85 // Records produced by this iteration of the ReadUpToLocked call.
139 bool produced = false; local
142 Status status = ReadLocked(&key, &value, &produced, at_end);
143 if (produced) {
171 bool produced = false; local
173 Status status = ReadLocked(key, value, &produced, &at_end);
175 if (!at_end && status.ok() && !produced) {
178 " must set *at_end=true, *produced=true, or return an error.");
180 if (!status.ok() && produced) {
183 " set *produced=true *and* returned an error: ", status.ToString())
    [all...]
reader_base.h 45 // a) If a record was successfully produced, set *produced = true,
47 // b) If no more records will be produced for this work item, set
49 // c) If a record was produced, but no more will be produced, you
55 virtual Status ReadLocked(string* key, string* value, bool* produced,
  /external/tensorflow/tensorflow/core/kernels/
identity_reader_op.cc 34 Status ReadLocked(string* key, string* value, bool* produced,
38 *produced = true;
text_line_reader_op.cc 59 Status ReadLocked(string* key, string* value, bool* produced,
65 *produced = true;
tf_record_reader_op.cc 53 Status ReadLocked(string* key, string* value, bool* produced,
62 *produced = true;
lmdb_reader_op.cc 71 Status ReadLocked(string* key, string* value, bool* produced,
88 *produced = true;
fixed_length_record_reader_op.cc 80 Status ReadLocked(string* key, string* value, bool* produced,
124 *produced = true;
whole_file_read_ops.cc 51 Status ReadLocked(string* key, string* value, bool* produced,
55 *produced = true;
  /external/tensorflow/tensorflow/python/data/kernel_tests/
interleave_dataset_op_test.py 71 for expected, produced in zip(
73 self.assertEqual(expected, produced)
82 for expected, produced in zip(
84 self.assertEqual(expected, produced)
89 for expected, produced in zip(
91 self.assertEqual(expected, produced)
96 for expected, produced in zip(
98 self.assertEqual(expected, produced)
  /external/tensorflow/tensorflow/contrib/cloud/kernels/
bigquery_reader_ops.cc 69 Status ReadLocked(string* key, string* value, bool* produced,
72 *produced = false;
84 *produced = true;
  /external/dagger2/producers/src/main/java/dagger/producers/internal/
Producers.java 23 import dagger.producers.Produced;
39 * Returns a future of {@link Produced} that represents the completion (either success or failure)
41 * a successful {@code Produced}; if the input future fails, then the resulting future succeeds
42 * with a failing {@code Produced}.
46 * {@code Produced}.
50 public static <T> ListenableFuture<Produced<T>> createFutureProduced(ListenableFuture<T> future) {
55 new Function<T, Produced<T>>() {
57 public Produced<T> apply(final T value) {
58 return Produced.successful(value);
65 private static final FutureFallback<Produced<Object>> FUTURE_FALLBACK_FOR_PRODUCED
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testsanitizers/src/
tsan.go 7 // This program produced false race reports when run under the C/C++
tsan2.go 7 // This program produced false race reports when run under the C/C++
  /prebuilts/go/linux-x86/misc/cgo/testsanitizers/src/
tsan.go 7 // This program produced false race reports when run under the C/C++
tsan2.go 7 // This program produced false race reports when run under the C/C++
  /external/dagger2/producers/src/test/java/dagger/producers/internal/
ProducersTest.java 21 import dagger.producers.Produced;
41 ListenableFuture<Produced<String>> producedFuture = Producers.createFutureProduced(future);
48 ListenableFuture<Produced<String>> producedFuture = Producers.createFutureProduced(future);
55 ListenableFuture<Produced<String>> producedFuture = Producers.createFutureProduced(future);
63 ListenableFuture<Produced<String>> producedFuture = Producers.createFutureProduced(future);
71 private <T> ExecutionException getProducedException(Produced<T> produced) {
73 produced.get();
74 throw new IllegalArgumentException("produced did not throw");
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
reproduciblebuilds_test.go 44 t.Fatalf("builds produced different output after %d iters (%d bytes vs %d bytes)", i, len(want), len(obj))
dwinl.go 50 // produced by the inliner will wind up in the vmap[0] entry.
54 // were produced by the inliner (dwv.InlIndex > 0) or were original
60 // Zero index => var was not produced by an inline
70 // We can occasionally encounter a var produced by the
83 // produced as a result of an inline (ii != 0).
85 // If a variable was not produced by an inline and its containing
89 // If a variable was not produced by an inline and its containing
95 // If a variable was produced by an inline, then we locate it in
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
reproduciblebuilds_test.go 44 t.Fatalf("builds produced different output after %d iters (%d bytes vs %d bytes)", i, len(want), len(obj))
dwinl.go 50 // produced by the inliner will wind up in the vmap[0] entry.
54 // were produced by the inliner (dwv.InlIndex > 0) or were original
60 // Zero index => var was not produced by an inline
70 // We can occasionally encounter a var produced by the
83 // produced as a result of an inline (ii != 0).
85 // If a variable was not produced by an inline and its containing
89 // If a variable was not produced by an inline and its containing
95 // If a variable was produced by an inline, then we locate it in
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
interleave_dataset_op_test.py 111 # Set up threading events used to sequence when items are produced that
189 for expected, produced in zip(expected_elements,
191 self.assertEqual(expected, produced)
198 for index, (expected, produced) in enumerate(
200 self.assertEqual(expected, produced, "Values differ at %s. %s != %s" %
201 (index, expected, produced))
209 for index, (expected, produced) in enumerate(
211 self.assertEqual(expected, produced, "Values differ at %s. %s != %s" %
212 (index, expected, produced))
221 for index, (expected, produced) in enumerate
    [all...]
  /external/ltp/testcases/commands/cron/
cron_pos_tests.sh 98 echo Job has not produced valid output

Completed in 942 milliseconds

1 2 3 4 5 6 7 8 9