Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for msan (0.04 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

        }
        return (ListenableFuture<? extends T>[]) collection.toArray(new ListenableFuture<?>[0]);
      }
    
      // This can't be a TrustedFuture, because TrustedFuture has clever optimizations that
      // mean cancel won't be called if this Future is passed into setFuture, and then
      // cancelled.
      private static final class InCompletionOrderFuture<T extends @Nullable Object>
          extends AbstractFuture<T> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Futures.java

        }
        return (ListenableFuture<? extends T>[]) collection.toArray(new ListenableFuture<?>[0]);
      }
    
      // This can't be a TrustedFuture, because TrustedFuture has clever optimizations that
      // mean cancel won't be called if this Future is passed into setFuture, and then
      // cancelled.
      private static final class InCompletionOrderFuture<T extends @Nullable Object>
          extends AbstractFuture<T> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Any model elements contributed after that point do not work with type-safe model accessors.
    For example, this includes any configurations you might define in your own build script.
    However, this approach does mean that you can use type-safe accessors for any model elements that are contributed by plugins that are _applied by parent projects_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                "PlaceholderWithDefault", "PreventGradient", "StopGradient",
                "Snapshot", "_EagerConst"}},
              // clang-format off
        {"RED",
         {"All", "Any", "Min", "Max", "Mean", "Prod", "Sum"}},
              // clang-format on
              {"PWRED",
               {"ArgMax", "ArgMin", "DiagPart", "Softmax",
                "SparseSoftmaxCrossEntropyWithLogits", "LogSoftmax"}},
              {"REDUCEWINDOW",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

       * use the {@code TreeSet} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>. One caveat to this is that the {@code TreeSet}
       * constructor uses a null {@code Comparator} to mean "natural ordering," whereas this factory
       * rejects null. Clean your code accordingly.
       *
       * @param comparator the comparator to use to sort the set
       * @return a new, empty {@code TreeSet}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    	// value of the BasicConstraints' "pathLenConstraint".
    	//
    	// When parsing a certificate, a positive non-zero MaxPathLen
    	// means that the field was specified, -1 means it was unset,
    	// and MaxPathLenZero being true mean that the field was
    	// explicitly set to zero. The case of MaxPathLen==0 with MaxPathLenZero==false
    	// should be treated equivalent to -1 (unset).
    	//
    	// When generating a certificate, an unset pathLenConstraint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>Sets the build directory of this project. The build directory is the directory which all artifacts are
         * generated into. The path parameter is evaluated as described for {@link #file(Object)}. This mean you can use,
         * amongst other things, a relative or absolute path or File object to specify the build directory.</p>
         *
         * @param path The build directory. This is evaluated as per {@link #file(Object)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    		// we return from this function.
    		closeBitrotReaders(readers)
    		if err != nil {
    			// If we have successfully written all the content that was asked
    			// by the client, but we still see an error - this would mean
    			// that we have some parts or data blocks missing or corrupted
    			// - attempt a heal to successfully heal them for future calls.
    			if written == partLength {
    				var scan madmin.HealScanMode
    				switch {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        Arg<TensorOf<[TF_Bfloat16, TF_Complex128, TF_Complex64, TF_Float16, TF_Float32, TF_Float64, TF_Int16, TF_Int32, TF_Int64, TF_Int8, TF_Qint16, TF_Qint32, TF_Qint8, TF_Quint16, TF_Quint8, TF_Uint16, TF_Uint32, TF_Uint64, TF_Uint8]>, [{A 1D mean Tensor with size matching the last dimension of x.
    This is the first output from tf.nn.moments,
    or a saved moving average thereof.}]>:$m,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    //
    //go:nosplit
    func (span *mspan) heapBitsSmallForAddr(addr uintptr) uintptr {
    	spanSize := span.npages * pageSize
    	bitmapSize := spanSize / goarch.PtrSize / 8
    	hbits := (*byte)(unsafe.Pointer(span.base() + spanSize - bitmapSize))
    
    	// These objects are always small enough that their bitmaps
    	// fit in a single word, so just load the word or two we need.
    	//
    	// Mirrors mspan.writeHeapBitsSmall.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top