HomeSort by relevance Sort by last modified time
    Searched refs:partial (Results 201 - 225 of 555) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
httplib.py 174 206: 'Partial Content',
638 """Read the number of bytes requested, compensating for partial reads.
641 by a signal (resulting in a partial read).
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
httplib.py 174 206: 'Partial Content',
638 """Read the number of bytes requested, compensating for partial reads.
641 by a signal (resulting in a partial read).
    [all...]
  /external/pcre/dist2/src/
pcre2_match.c 141 > 0 partial match
193 if (eptr >= mb->end_subject) return 1; /* Partial match */
217 if (eptr >= mb->end_subject) return 1; /* Partial match */
235 if (eptr >= mb->end_subject) return 1; /* Partial match */
532 /* These macros pack up tests that are used for partial matching, and which
536 hard partial matching, we then return immediately. The second one is used when
540 if (mb->partial != 0 && eptr >= mb->end_subject && \
544 if (mb->partial > 1) RRETURN(PCRE2_ERROR_PARTIAL); \
548 if (mb->partial != 0 && eptr > mb->start_used_ptr) \
551 if (mb->partial > 1) RRETURN(PCRE2_ERROR_PARTIAL);
    [all...]
  /external/devlib/devlib/utils/
misc.py 35 from functools import partial
244 func = partial(_merge_two_dicts, **kwargs)
308 func = partial(_merge_two_lists, **kwargs)
  /external/tensorflow/tensorflow/contrib/kfac/python/ops/
layer_collection.py 29 from functools import partial
68 APPROX_KRONECKER_SERIES_1_NAME: partial(fb.FullyConnectedSeriesFB,
70 APPROX_KRONECKER_SERIES_2_NAME: partial(fb.FullyConnectedSeriesFB,
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
metric_spec_test.py 332 metric_fn=functools.partial(custom_metric, stuff=5),
355 metric_fn=functools.partial(custom_metric, stuff=5),
364 metric_fn=functools.partial(custom_metric, stuff=None),
  /tools/acloud/internal/lib/
gcompute_client.py 439 action = functools.partial(self.service.instances().start,
482 action = functools.partial(self.service.instances().stop,
580 action = functools.partial(self.service.instances().setScheduling,
592 action: partial func, all kwargs for this gcloud action has been
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
FieldMask.cs 14 public static partial class FieldMaskReflection {
191 public sealed partial class FieldMask : pb::IMessage<FieldMask> {
207 partial void OnConstruction();
  /external/tensorflow/tensorflow/contrib/seq2seq/python/kernel_tests/
attention_wrapper_test.py 294 create_attention_mechanism = functools.partial(
354 create_attention_mechanism = functools.partial(
560 create_attention_mechanism = functools.partial(
595 create_attention_mechanism = functools.partial(
649 create_attention_mechanism = functools.partial(
685 create_attention_mechanism = functools.partial(
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
TypeInference.java 152 Optional<InstantiationSet> partial = instantiationInference(methodCallExpr, methodDeclaration); local
153 if (!partial.isPresent()) {
167 //MethodUsage methodUsage = instantiationSetToMethodUsage(methodDeclaration, partial.get());
    [all...]
  /external/ltp/testcases/network/lib6/
asapi_01.c 200 static unsigned short csum(unsigned short partial, unsigned char *packet,
203 unsigned long sum = partial;
  /external/python/cpython3/Lib/concurrent/futures/
process.py 58 from functools import partial
482 results = super().map(partial(_process_chunk, fn),
  /external/python/cpython3/Lib/
operator.py 331 from functools import partial
332 return partial(self.__class__, self._name, **self._kwargs), self._args
  /external/tensorflow/tensorflow/contrib/eager/python/examples/resnet50/
resnet50.py 281 self.global_pooling = functools.partial(
286 self.global_pooling = functools.partial(
  /external/tensorflow/tensorflow/core/kernels/
padding_fifo_queue.cc 402 const PartialTensorShape& partial = partial_shapes[i]; local
404 for (int64 s : partial.dim_sizes()) shape.AddDim(s < 0 ? 0 : s);
  /prebuilts/go/darwin-x86/src/crypto/md5/
md5.go 37 // digest represents the partial evaluation of a checksum.
  /prebuilts/go/darwin-x86/src/hash/adler32/
adler32.go 32 // digest represents the partial evaluation of a checksum.
  /prebuilts/go/darwin-x86/src/testing/
match.go 50 func (m *matcher) fullName(c *common, subname string) (name string, ok, partial bool) {
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18902b.go 29 partial *workbuf
  /prebuilts/go/linux-x86/src/crypto/md5/
md5.go 37 // digest represents the partial evaluation of a checksum.
  /prebuilts/go/linux-x86/src/hash/adler32/
adler32.go 32 // digest represents the partial evaluation of a checksum.
  /prebuilts/go/linux-x86/src/testing/
match.go 50 func (m *matcher) fullName(c *common, subname string) (name string, ok, partial bool) {
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18902b.go 29 partial *workbuf
  /tools/repohooks/rh/
utils.py 403 handler = functools.partial(
409 handler = functools.partial(_kill_child_process, proc, int_timeout,
  /external/autotest/client/cros/cellular/wardmodem/
at_channel_unittest.py 199 for buf in iter(functools.partial(self._channel_file.read, 128), ''):

Completed in 1302 milliseconds

1 2 3 4 5 6 7 891011>>