Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 366 for v0Version (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `TaskDestroyables.getFiles()` is no longer part of the public API.
     * Overlapping version ranges for a dependency now result in Gradle picking a version that satisfies all declared ranges.
    +
    For example, if a dependency on `some-module` is found with a version range of `[3,6]` and also transitively with a range of `[4,8]`, Gradle now selects version 6 instead of 8. The prior behavior was to select 8.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	VersionSSL30 = 0x0300
    )
    
    // VersionName returns the name for the provided TLS version number
    // (e.g. "TLS 1.3"), or a fallback representation of the value if the
    // version is not implemented by this package.
    func VersionName(version uint16) string {
    	switch version {
    	case VersionSSL30:
    		return "SSLv3"
    	case VersionTLS10:
    		return "TLS 1.0"
    	case VersionTLS11:
    		return "TLS 1.1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

        }
    }
    ```
    
    ==== Minimal supported Kotlin Gradle Plugin version changed
    Gradle 7.x supports Kotlin Gradle Plugin 1.3.72 and above.
    Kotlin Gradle Plugin versions above 1.6.21 are not tested with Gradle 7.x.
    Gradle 8.x supports Kotlin Gradle Plugin 1.6.10 and above.
    You can use a lower Kotlin language version by modifying the language version and api version setting in the Kotlin compilation tasks.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    }
    
    func newRuntimeVersion(version string) (*utilversion.Version, error) {
    	if ver, err := utilversion.ParseSemantic(version); err == nil {
    		return ver, err
    	}
    	return utilversion.ParseGeneric(version)
    }
    
    func (m *kubeGenericRuntimeManager) getTypedVersion(ctx context.Context) (*runtimeapi.VersionResponse, error) {
    	typedVersion, err := m.runtimeService.Version(ctx, kubeRuntimeAPIVersion)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    }
    
    func testVerifyConnection(t *testing.T, version uint16) {
    	checkFields := func(c ConnectionState, called *int, errorType string) error {
    		if c.Version != version {
    			return fmt.Errorf("%s: got Version %v, want %v", errorType, c.Version, version)
    		}
    		if c.HandshakeComplete {
    			return fmt.Errorf("%s: got HandshakeComplete, want false", errorType)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * Not supported. <b>You are attempting to create a map that may contain a non-{@code Comparable}
       * key.</b> Proper calls will resolve to the version in {@code ImmutableSortedMap}, not this dummy
       * version.
       *
       * @throws UnsupportedOperationException always
       * @deprecated <b>Pass a key of type {@code Comparable} to use {@link
       *     ImmutableSortedMap#of(Comparable, Object)}.</b>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. cmd/sts-handlers_test.go

    o","admin:TopLocksInfo","admin:OBDInfo","admin:BandwidthMonitor"],"Resource":["arn:aws:s3:::*"]}]},"readonly":{"Version":"2012-10-17","Statement":[{"Effect":"Allow","Action":["s3:GetBucketLocation","s3:GetObject"],"Resource":["arn:aws:s3:::*"]}]},"readwrite":{"Version":"2012-10-17","Statement":[{"Effect":"Allow","Action":["s3:*"],"Resource":["arn:aws:s3:::*"]}]},"writeonly":{"Version":"2012-10-17","Statement":[{"Effect":"Allow","Action":["s3:PutObject"],"Resource":["arn:aws:s3:::*"]}]}}`,
    
    ...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    func (hc *halfConn) prepareCipherSpec(version uint16, cipher any, mac hash.Hash) {
    	hc.version = version
    	hc.nextCipher = cipher
    	hc.nextMac = mac
    }
    
    // changeCipherSpec changes the encryption and MAC states
    // to the ones previously passed to prepareCipherSpec.
    func (hc *halfConn) changeCipherSpec() error {
    	if hc.nextCipher == nil || hc.version == VersionTLS13 {
    		return alertInternalError
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    			}
    			if versioned || suspended {
    				// Bucket is versioned and no version was explicitly
    				// mentioned for deletes, create a delete marker instead.
    				vr.ModTime = UTCNow()
    				vr.Deleted = true
    				// Versioning suspended means that we add a `null` version
    				// delete marker, if not add a new version for this delete
    				// marker.
    				if versioned {
    					vr.VersionID = mustGetUUID()
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(GetBuiltinCode(model_.operator_codes[0].get()),
                  Eq(BuiltinOperator_ADD));
      ASSERT_THAT(model_.operator_codes[0]->version, Eq(2));
      EXPECT_THAT(GetBuiltinCode(model_.operator_codes[1].get()),
                  Eq(BuiltinOperator_RESHAPE));
      ASSERT_THAT(model_.operator_codes[1]->version, Eq(1));
    }
    
    TEST_F(QuantizeMultiInputAddWithReshapeTest, VerifyAddQuantization) {
      auto status = QuantizeModelAllOperators(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top