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

1 2 34 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/include/gpxe/
tcpip.h 124 extern uint16_t tcpip_continue_chksum ( uint16_t partial,
  /external/tensorflow/tensorflow/contrib/summary/
summary_test_internal.py 39 self.create_db_writer = functools.partial(
  /external/tensorflow/tensorflow/python/estimator/
util.py 41 fn: Function, or function-like object (e.g., result of `functools.partial`).
47 ValueError: if partial function has positionally bound arguments
49 if isinstance(fn, functools.partial):
  /packages/apps/Dialer/java/com/android/dialer/smartdial/util/
SmartDialNameMatcher.java 263 ArrayList<SmartDialMatchPosition> partial = new ArrayList<SmartDialMatchPosition>(); local
344 // we found a partial token match, store the data in a
347 partial = partialTemp;
371 // if we have no complete match at this point, then we attempt to fall back to the partial
373 // then partial will always be empty.
374 if (!partial.isEmpty()) {
375 matchList.addAll(partial);
  /prebuilts/go/darwin-x86/src/encoding/base64/
example_test.go 54 // Must close the encoder when finished to flush any partial blocks.
55 // If you comment out the following line, the last partial block "r"
  /prebuilts/go/linux-x86/src/encoding/base64/
example_test.go 54 // Must close the encoder when finished to flush any partial blocks.
55 // If you comment out the following line, the last partial block "r"
  /external/tensorflow/tensorflow/python/framework/
tensor_spec_test.py 48 partial = array_ops.placeholder(dtypes.int64, shape=[None, 1])
54 self.assertTrue(desc_unknown.is_compatible_with(partial))
60 self.assertTrue(desc_partial.is_compatible_with(partial))
66 self.assertFalse(desc_full.is_compatible_with(partial))
72 self.assertFalse(desc_rank3.is_compatible_with(partial))
111 partial = array_ops.placeholder(dtypes.float32,
113 name="partial")
118 spec_2 = tensor_spec.TensorSpec.from_tensor(partial)
121 self.assertEqual(spec_2.name, "partial")
  /system/core/libcutils/
fs_config.cpp 103 // and will allow partial matches.
254 static inline bool prefix_cmp(bool partial, const char* prefix, size_t len, const char* path,
256 return ((partial && plen >= len) || (plen == len)) && !strncmp(prefix, path, len);
261 static bool fs_config_cmp(bool partial, const char* prefix, size_t len, const char* path,
263 // If name ends in * then allow partial matches.
264 if (!partial && prefix[len - 1] == '*') {
266 partial = true;
269 if (prefix_cmp(partial, prefix, len, path, plen)) return true;
283 return is_partition(prefix, len) && prefix_cmp(partial, prefix, len, path, plen);
  /external/python/cpython3/Lib/
quopri.py 134 partial = 0; n = n-1
139 partial = 1
146 elif i+1 == n and not partial:
147 partial = 1; break
154 if not partial:
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Wrappers.cs 14 public static partial class WrappersReflection {
60 public sealed partial class DoubleValue : pb::IMessage<DoubleValue> {
76 partial void OnConstruction();
171 public sealed partial class FloatValue : pb::IMessage<FloatValue> {
187 partial void OnConstruction();
282 public sealed partial class Int64Value : pb::IMessage<Int64Value> {
298 partial void OnConstruction();
393 public sealed partial class UInt64Value : pb::IMessage<UInt64Value> {
409 partial void OnConstruction();
504 public sealed partial class Int32Value : pb::IMessage<Int32Value>
    [all...]
Empty.cs 14 public static partial class EmptyReflection {
53 public sealed partial class Empty : pb::IMessage<Empty> {
69 partial void OnConstruction();
SourceContext.cs 14 public static partial class SourceContextReflection {
46 public sealed partial class SourceContext : pb::IMessage<SourceContext> {
62 partial void OnConstruction();
  /external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/
UnittestImportProto3.cs 14 public static partial class UnittestImportProto3Reflection {
55 public sealed partial class ImportMessage : pb::IMessage<ImportMessage> {
71 partial void OnConstruction();
UnittestImportPublicProto3.cs 14 public static partial class UnittestImportPublicProto3Reflection {
41 public sealed partial class PublicImportMessage : pb::IMessage<PublicImportMessage> {
57 partial void OnConstruction();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
functools.py 10 from _functools import partial, reduce
36 # Return the wrapper so this can be used as a decorator via partial()
47 This is a convenience function to simplify applying partial() to
50 return partial(update_wrapper, wrapped=wrapped,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
functools.py 10 from _functools import partial, reduce
36 # Return the wrapper so this can be used as a decorator via partial()
47 This is a convenience function to simplify applying partial() to
50 return partial(update_wrapper, wrapped=wrapped,
  /external/curl/docs/cmdline-opts/
range.d 7 Retrieve a byte range (i.e a partial document) from a HTTP/1.1, FTP or SFTP
  /external/mesa3d/src/compiler/glsl/
s_expression.cpp 197 s_match(s_expression *top, unsigned n, s_pattern *pattern, bool partial)
206 return partial; /* More actual items than the pattern expected */
  /external/python/cpython2/Lib/
functools.py 10 from _functools import partial, reduce
36 # Return the wrapper so this can be used as a decorator via partial()
47 This is a convenience function to simplify applying partial() to
50 return partial(update_wrapper, wrapped=wrapped,
  /external/tensorflow/tensorflow/contrib/gan/python/estimator/python/
head_impl.py 98 generator_loss_fn = functools.partial(
100 discriminator_loss_fn = functools.partial(
  /prebuilts/gdb/darwin-x86/lib/python2.7/
functools.py 10 from _functools import partial, reduce
36 # Return the wrapper so this can be used as a decorator via partial()
47 This is a convenience function to simplify applying partial() to
50 return partial(update_wrapper, wrapped=wrapped,
  /prebuilts/gdb/linux-x86/lib/python2.7/
functools.py 10 from _functools import partial, reduce
36 # Return the wrapper so this can be used as a decorator via partial()
47 This is a convenience function to simplify applying partial() to
50 return partial(update_wrapper, wrapped=wrapped,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
functools.py 10 from _functools import partial, reduce
36 # Return the wrapper so this can be used as a decorator via partial()
47 This is a convenience function to simplify applying partial() to
50 return partial(update_wrapper, wrapped=wrapped,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
functools.py 10 from _functools import partial, reduce
36 # Return the wrapper so this can be used as a decorator via partial()
47 This is a convenience function to simplify applying partial() to
50 return partial(update_wrapper, wrapped=wrapped,
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf/0.13.2/
grpc-protobuf-0.13.2.jar 

Completed in 1402 milliseconds

1 2 34 5 6 7 8 91011>>