Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for isCompatibleWith (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaForkOptions.java

                    target.jvmArgs(jvmArgumentProvider.asArguments());
                }
            }
            return this;
        }
    
        @Override
        public boolean isCompatibleWith(JavaForkOptions options) {
            if (hasJvmArgumentProviders(this) || hasJvmArgumentProviders(options)) {
                throw new UnsupportedOperationException("Cannot compare options with jvmArgumentProviders.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginVersionIntegrationTest.groovy

                }
    
                dependencies {
                    implementation localGroovy()
                }
    
                testing.suites.test.useJUnit()
    
                ${JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_14) ?
                """
                configurations.codenarc {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/function.cc

          if (tensor->DataType() != spec.dtype) {
            return false;
          }
          tensorflow::PartialTensorShape tensor_shape;
          DCHECK(tensor->Shape(&tensor_shape).ok());
          if (!tensor_shape.IsCompatibleWith(spec.shape)) {
            return false;
          }
        } break;
        case TaggedValue::Type::TUPLE: {
          if (value.type() != TaggedValue::Type::TUPLE) {
            return false;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top