Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,092 for Compatible (0.32 sec)

  1. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    		},
    		"version-bad": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("instances").Index(0).Child("attributes").Index(0).Child("version"), "1.0", "must be a string compatible with semver.org spec 2.0.0")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/ToolChainRequirement.java

        VISUALCPP_2019,
        // Any available Visual Studio >= 2019
        VISUALCPP_2019_OR_NEWER,
        // Any windows GCC compatible implementation (mingw, cygwin)
        WINDOWS_GCC,
        // Any available GCC implementation (including mingw, cygwin, but not clang)
        GCC,
        // Any available GCC compatible implementation (including mingw, cygwin, and clang)
        GCC_COMPATIBLE,
        // Any available Clang
        CLANG,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/mavenMigration/profiles/groovy/build.gradle

    apply from: "profile-${buildProfile}.gradle"  // <2>
    
    tasks.register('greeting') {
        // Store the message into a variable, because referencing extras from the task action
        // is not compatible with the configuration cache.
        def message = project.message
        doLast {
            println message  // <3>
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 387 bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/dev_linux.go

    // default encoding is MMMM Mmmm mmmM MMmm, where M is a hex digit of the major
    // number and m is a hex digit of the minor number. This is backward compatible
    // with legacy systems where dev_t is 16 bits wide, encoded as MMmm. It is also
    // backward compatible with the Linux kernel, which for some architectures uses
    // 32-bit dev_t, encoded as mmmM MMmm.
    
    package unix
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Language.java

    @SuppressWarnings("checkstyle:InterfaceIsType")
    public interface Language extends ExtensibleEnum {
    
        /**
         * The "none" language. It is not versioned, family is same to itself, and compatible with itself only.
         * In turn, every {@link Language} implementation must be compatible with {@code NONE} language.
         */
        Language NONE = language("none");
    
        // TODO: this should be moved out from here to Java Support (builtin into core)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/mavenMigration/profiles/kotlin/build.gradle.kts

    apply(from = "profile-${buildProfile ?: "default"}.gradle.kts")  // <2>
    
    tasks.register("greeting") {
        // Store the message into a variable, because referencing extras from the task action
        // is not compatible with the configuration cache.
        val message = project.extra["message"]
        doLast {
            println(message)  // <3>
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 390 bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/SerializableTester.java

     * serialization tests require more setup. This no-op behavior allows test authors to intersperse
     * {@code SerializableTester} calls with other, GWT-compatible tests.
     *
     * @author Mike Bostock
     * @since 10.0
     */
    @GwtCompatible // but no-op!
    @ElementTypesAreNonnullByDefault
    public final class SerializableTester {
      private SerializableTester() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/build.gradle.kts

    plugins {
        kotlin("jvm")
        id("jps-compatible")
    }
    
    dependencies {
        implementation(intellijCore())
        implementation(kotlinStdlib())
        implementation(project(":compiler:psi"))
        implementation(project(":compiler:cli-base"))
        implementation(project(":analysis:analysis-api"))
        implementation(project(":analysis:analysis-api-impl-base"))
        implementation(project(":analysis:analysis-api-fir"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Mar 26 20:47:37 UTC 2024
    - 706 bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/SerializableTester.java

     * serialization tests require more setup. This no-op behavior allows test authors to intersperse
     * {@code SerializableTester} calls with other, GWT-compatible tests.
     *
     * @author Mike Bostock
     * @since 10.0
     */
    @GwtCompatible // but no-op!
    @ElementTypesAreNonnullByDefault
    public final class SerializableTester {
      private SerializableTester() {}
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

      }
      // Verify that all result element types are compatible to `element_type`.
      for (const auto& result_type : op->getResultTypes()) {
        if (mlir::tf_type::GetElementTypeOrSelfResolveRef(result_type) !=
            element_type) {
          return op->emitOpError(
              "requires compatible element types for all operands and results");
        }
      }
      // Verify that all operand element types are compatible to `element_type`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top