Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for msan (0.28 sec)

  1. 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)
  2. 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)
  3. 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: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_test.go

    			}
    			if hs.DidResume != didResume {
    				t.Errorf("%s: resumed: %v, expected: %v", name, hs.DidResume, didResume)
    			}
    			wantCalled := 1
    			if didResume {
    				wantCalled = 2 // resumption would mean this is the second time it was called in this test
    			}
    			if clientCalled != wantCalled {
    				t.Errorf("%s: expected client VerifyConnection called %d times, did %d times", name, wantCalled, clientCalled)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    	}
    
    	// Profiling tests are inherently flaky, especially on a
    	// loaded system, such as when this test is running with
    	// several others under go test std. If a test fails in a way
    	// that could mean it just didn't run long enough, try with a
    	// longer duration.
    	for {
    		var prof bytes.Buffer
    		if err := StartCPUProfile(&prof); err != nil {
    			t.Fatal(err)
    		}
    		f(duration)
    		StopCPUProfile()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    				v := module.Version{Path: q.pattern}
    				// The user has explicitly requested to downgrade their own module to
    				// version "none". This is not an entirely unreasonable request: it
    				// could plausibly mean “downgrade away everything that depends on any
    				// explicit version of the main module”, or “downgrade away the
    				// package with the same path as the main module, found in a module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    generated files go. As with input files, there are several annotations for output files and directories. A property representing a single directory requires `@OutputDirectory`. You’ll learn about the others soon.
    
    These annotated properties mean that Gradle will skip the task if none of the source files, template engine, model data or generated files has changed since the previous time Gradle executed the task. This will often save a significant amount of time. You can learn how Gradle detects...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // When they are not, Google Test prints both the tested expressions and
    // their actual values.  The values must be compatible built-in types,
    // or you will get a compiler error.  By "compatible" we mean that the
    // values can be compared by the respective operator.
    //
    // Note:
    //
    //   1. It is possible to make a user-defined type work with
    //   {ASSERT|EXPECT}_??(), but that requires overloading the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  9. src/testing/testing.go

    // elements, such as subtests, the argument is itself slash-separated, with
    // expressions matching each name element in turn. Because it is unanchored, an
    // empty expression matches any string.
    // For example, using "matching" to mean "whose name contains":
    //
    //	go test -run ''        # Run all tests.
    //	go test -run Foo       # Run top-level tests matching "Foo", such as "TestFooBar".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //
    // When they are not, Google Test prints both the tested expressions and
    // their actual values.  The values must be compatible built-in types,
    // or you will get a compiler error.  By "compatible" we mean that the
    // values can be compared by the respective operator.
    //
    // Note:
    //
    //   1. It is possible to make a user-defined type work with
    //   {ASSERT|EXPECT}_??(), but that requires overloading the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top