Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for Compatible (0.3 sec)

  1. pkg/apis/certificates/validation/validation_test.go

    			allowBothApprovedAndDenied: true,
    		},
    	}, {
    		name:   "compatible update, legacy signerName",
    		oldCSR: &capi.CertificateSigningRequest{Spec: capi.CertificateSigningRequestSpec{SignerName: capi.LegacyUnknownSignerName}},
    		want: certificateValidationOptions{
    			allowLegacySignerName: true,
    		},
    	}, {
    		name: "compatible update, duplicate condition types",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

                  fused_batch_norm_op, [&](::mlir::Diagnostic &diag) {
                    diag << "Shapes of mean and variance should be 1D and "
                            "compatible with x";
                  });
            }
          }
    
          // Check if output shape and input shape are compatible.
          auto x_type = (*x.begin()).getType();
          auto y_type = (*root.getODSResults(0).begin()).getType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. .bazelrc

    # This is the same as the official TensorFlow builds.
    # See https://developer.nvidia.com/cuda-gpus#compute
    # `compute_XY` enables PTX embedding in addition to SASS. PTX
    # is forward compatible beyond the current compute capability major
    # release while SASS is only forward compatible inside the current
    # major release. Example: sm_80 kernels can run on sm_89 GPUs but
    # not on sm_90 GPUs. compute_80 kernels though can also run on sm_90 GPUs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	MAX_CONFIG_VALUE    = 9999
    	MAX_INSTANCE_VALUE  = 9999
    	CONFIGMG_VERSION    = 0x0400
    )
    
    // Maximum string length constants
    const (
    	LINE_LEN                    = 256  // Windows 9x-compatible maximum for displayable strings coming from a device INF.
    	MAX_INF_STRING_LENGTH       = 4096 // Actual maximum size of an INF string (including string substitutions).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    === Generating an encryption key that is compatible with GRADLE_ENCRYPTION_KEY
    
    For Gradle to encrypt the configuration cache using a user-specified encryption key,
    you must run Gradle while having the GRADLE_ENCRYPTION_KEY environment variable set with a valid AES key, encoded as a Base64 string.
    
    One way of generating a Base64-encoded AES-compatible key is by using a command like this:
    
    ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    This restriction will be removed in a future Gradle version.
    
    To build native software, you will need to have a compatible tool chain installed:
    
    
    [[sec:windows]]
    === Windows
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// If Time is nil, TLS uses time.Now.
    	Time func() time.Time
    
    	// Certificates contains one or more certificate chains to present to the
    	// other side of the connection. The first certificate compatible with the
    	// peer's requirements is selected automatically.
    	//
    	// Server configurations must set one of Certificates, GetCertificate or
    	// GetConfigForClient. Clients doing client-authentication may set either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            when:
            run ':a:checkDebug'
    
            then:
            result.assertTasksExecuted(':b:barJar', ':a:checkDebug')
        }
    
        def "fails when explicitly selected configuration is not compatible with requested"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
                project(':a') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Plugin authors who want to stay compatible with older Gradle versions need to limit their API usage to a subset that is compatible with these old versions. It’s not really different from any other new API in Gradle. E.g. if we introduce a new API for dependency resolution and a plugin wants to use that API, then they either need to...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    file("$buildDir/myOutput.txt")
    ----
    ======
    =====
    
    should be replaced by:
    
    =====
    [.multi-language-sample]
    ======
    .build.gradle.kts
    [source,kotlin]
    ----
    // Compatible with a number of Gradle lazy APIs that accept also java.io.File
    val output: Provider<RegularFile> = layout.buildDirectory.file("myOutput.txt")
    
    // If you really need the java.io.File for a non lazy API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top