Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for unsupportedOp (3.83 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlayTest.kt

                    b = 5
                    unresolved4()
                }
                configuring {
                    a = 33
                    b = 6
                    unresolved5()
                    errorExample = unsupported.propertyAccess
                }
                unresolved6()
                """.trimIndent()
            )
    
            val result = overlayResolvedDocuments(underlay, overlay)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. security/pkg/pki/util/crypto_test.go

    		errMsg  string
    	}{
    		"Invalid PEM string": {
    			pem:    "Invalid PEM string",
    			errMsg: "invalid PEM-encoded key",
    		},
    		"Invalid PEM block type": {
    			pem:    certRSA,
    			errMsg: "unsupported PEM block type for a private key: CERTIFICATE",
    		},
    		"Parse RSA key": {
    			pem:     keyRSA,
    			keyType: reflect.TypeOf(&rsa.PrivateKey{}),
    		},
    		"Parse invalid RSA key": {
    			pem:    keyInvalidRSA,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                    // Invalid because it has some other annotation
                    @Deprecated
                    public String getOldThing() {
                        return null;
                    }
    
                    // Unsupported annotation
                    @InputFile
                    public abstract File getInputFile();
                }
            """
        }
    
        def "can validate properties of an artifact transform action"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

                    input_value.getDefiningOp())) {
          if (UnsupportedPartitionedShardingType(input_sharding_type))
            return cluster_func->emitOpError()
                   << "unsupported input sharding type "
                   << OpSharding_Type_Name(input_sharding_type) << " for "
                   << input_index << "-th input";
    
          if (input_sharding_type == xla::OpSharding::REPLICATED) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/preflight/checks.go

    	if err != nil {
    		return nil, []error{errors.Wrapf(err, "couldn't parse Kubernetes version %q", kubever.KubernetesVersion)}
    	}
    
    	// Checks if k8sVersion greater or equal than the first unsupported versions by current version of kubeadm,
    	// that is major.minor+1 (all patch and pre-releases versions included)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      auto result = CompileMlirModule(
          kUnsupportedMlirBridgeModuleStr,
          ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_UNSPECIFIED);
    
      // MLIR Bridge will filter this unsupported MLIR, Combined will succeed.
      EXPECT_TRUE(result.ok());
      EXPECT_EQ(compilation_status.Delta(kMlirCombinedMlirSuccess), 1);
      EXPECT_EQ(compilation_status.Delta(kMlirCombinedMlirFailure), 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. cluster/images/etcd/Makefile

    		$(BIN_INSTALL) $(TEMP_DIR)/etcd $(TEMP_DIR)/etcd-$$version; \
    		$(BIN_INSTALL) $(TEMP_DIR)/etcdctl $(TEMP_DIR)/etcdctl-$$version; \
    	done
    
    	# Add this ENV variable in order to workaround an unsupported arch blocker
    	# On arm (which is 32-bit), it can't handle >1GB data in-memory
            ifeq ($(ARCH),arm)
    		cd $(TEMP_DIR) && echo "ENV ETCD_UNSUPPORTED_ARCH=$(ARCH)" >> $(DOCKERFILE)
            endif
    endif
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. cmd/endpoint-ellipses_test.go

    		{
    			"http://minio{2...3}/export/set{1...0}",
    			endpointSet{},
    			false,
    		},
    		// Range cannot be smaller than 4 minimum.
    		{
    			"/export{1..2}",
    			endpointSet{},
    			false,
    		},
    		// Unsupported characters.
    		{
    			"/export/test{1...2O}",
    			endpointSet{},
    			false,
    		},
    		// Tests valid inputs.
    		{
    			"{1...27}",
    			endpointSet{
    				[]ellipses.ArgPattern{
    					[]ellipses.Pattern{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

    1 problem was found storing the configuration cache.
    - Build file 'build.gradle': line 6: registration of listener on 'Gradle.buildFinished' is unsupported
      See https://docs.gradle.org/${GradleVersion.current().version}/userguide/configuration_cache.html#config_cache:requirements:build_listeners
    """
        }
    
        void hasCompositeWithUnusedBuildIdentified() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    			}
    		}
    		if sc.SupplementalGroupsPolicy != nil {
    			policyValue, ok := runtimeapi.SupplementalGroupsPolicy_value[string(*sc.SupplementalGroupsPolicy)]
    			if !ok {
    				return nil, fmt.Errorf("unsupported supplementalGroupsPolicy: %s", string(*sc.SupplementalGroupsPolicy))
    			}
    			lc.SecurityContext.SupplementalGroupsPolicy = runtimeapi.SupplementalGroupsPolicy(policyValue)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top