Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for cheese (0.29 sec)

  1. tensorflow/c/eager/c_api_test.cc

      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      EXPECT_EQ(-1, TFE_OpGetInputLength(identityOp, "cheese", status));
      CHECK_EQ(TF_INVALID_ARGUMENT, TF_GetCode(status)) << TF_Message(status);
      EXPECT_EQ(-1, TFE_OpGetOutputLength(identityOp, "cheese", status));
      CHECK_EQ(TF_INVALID_ARGUMENT, TF_GetCode(status)) << TF_Message(status);
    
      TF_DeleteStatus(status);
      TFE_DeleteOp(identityOp);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            failure.assertHasCause("Could not resolve all dependencies for configuration ':a:compile'.")
            failure.assertHasCause("Could not resolve project :b.")
            failure.assertHasCause("""Cannot choose between the available variants of project :b:
      - bar
      - foo
    All of them match the consumer attributes:
      - Variant 'bar' capability test:b:unspecified:
          - Unmatched attribute:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - `getName()`
    - `isCurrentBuild()`
    
    You could use these methods to distinguish between different project components with the same name but from different builds.
    However, for certain composite build setups, these methods do not provide enough information to guarantee uniqueness.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            // types that can't be live-in or live-out of a cluster.  These ops are:
            //
            //  - TensorArray ops operating on the same TensorArray instance.
            //  - Stack ops operating on the same Stack instance.
            //
            // To work around this we avoid isolating these specific ops.  Because
            // of this concession it is unsound to auto-cluster them because then
    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. cmd/erasure-server-pool.go

    	total := serverPools.TotalAvailable()
    	if total == 0 {
    		return -1
    	}
    	// choose when we reach this many
    	choose := rand.Uint64() % total
    	atTotal := uint64(0)
    	for _, pool := range serverPools {
    		atTotal += pool.Available
    		if atTotal > choose && pool.Available > 0 {
    			return pool.Index
    		}
    	}
    	// Should not happen, but print values just in case.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	// globalsScanWork is the total globals scan work performed this cycle.
    	//
    	// These are updated atomically during the cycle. Updates occur in
    	// bounded batches, since they are both written and read
    	// throughout the cycle. At the end of the cycle, heapScanWork is how
    	// much of the retained heap is scannable.
    	//
    	// Currently these are measured in bytes. For most uses, this is an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

        it keeps your `HeldCertificate` and its chain. On the client it keeps the root certificates
        that are trusted to sign a server's certificate chain. `HandshakeCertificates` also works with
        mutual TLS where these roles are reversed.
    
        These classes make it possible to enable HTTPS in MockWebServer in [just a few lines of
        code][https_server_sample].
    
     *  **OkHttp now supports prior knowledge cleartext HTTP/2.** Enable this by setting
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Replace usages with the now stable `getTestSources()` and `getTestResources()` methods and their respective setters.
    These new methods return and are backed by `ConfigurableFileCollection` instances for improved flexibility of use.
    Gradle now warns upon usage of these deprecated methods.
    They will be removed in a future version of Gradle.
    
    ==== Replacement methods in `org.gradle.api.tasks.testing.TestReport`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/proxier.go

    			// a) Endpoints are any IP's outside the cluster ==> Choose NodeIP as the SourceVIP
    			// b) Endpoints are IP addresses of a remote node => Choose NodeIP as the SourceVIP
    			// c) Everything else (Local POD's, Remote POD's, Node IP of current node) ==> Choose the configured SourceVIP
    			if strings.EqualFold(proxier.network.networkType, NETWORK_TYPE_OVERLAY) && !ep.IsLocal() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Futures.java

      //
      // Future versions of the JMM may revise safe construction semantics in such a way that we can
      // safely publish these objects and we won't need this whole discussion.
      // TODO(user,lukes): consider adding volatile to all these fields since in current known JVMs
      // that should resolve the issue. This comes at the cost of adding more write barriers to the
      // implementations.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
Back to top