Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for unsupportedOp (0.44 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withProblem("Build file 'build.gradle': line 510: invocation of 'Task.project' at execution time is unsupported.")
                withProblem("Build file 'build.gradle': line 515: invocation of 'Task.project' at execution time is unsupported.")
                withProblem("Build file 'build.gradle': line 520: invocation of 'Task.project' at execution time is unsupported.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    	},
    	ErrUnsupportedSQLOperation: {
    		Code:           "UnsupportedSqlOperation",
    		Description:    "Encountered an unsupported SQL operation.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrUnsupportedSQLStructure: {
    		Code:           "UnsupportedSqlStructure",
    		Description:    "Encountered an unsupported SQL structure. Check the SQL Reference.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrUnsupportedSyntax: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. pkg/apis/autoscaling/validation/validation_test.go

    				Policies: []autoscaling.HPAScalingPolicy{{
    					Type:          autoscaling.PodsScalingPolicy,
    					Value:         7,
    					PeriodSeconds: 8,
    				}},
    			},
    		},
    		msg: `spec.behavior.scaleUp.selectPolicy: Unsupported value: "incorrect": supported values: "Disabled", "Max", "Min"`,
    	}, {
    		behavior: autoscaling.HorizontalPodAutoscalerBehavior{
    			ScaleUp: &autoscaling.HPAScalingRules{
    				Policies: []autoscaling.HPAScalingPolicy{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    const (
    	UnknownSignatureAlgorithm SignatureAlgorithm = iota
    
    	MD2WithRSA  // Unsupported.
    	MD5WithRSA  // Only supported for signing, not verification.
    	SHA1WithRSA // Only supported for signing, and verification of CRLs, CSRs, and OCSP responses.
    	SHA256WithRSA
    	SHA384WithRSA
    	SHA512WithRSA
    	DSAWithSHA1   // Unsupported.
    	DSAWithSHA256 // Unsupported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

    if [[ -z "${START_MODE:-}" ]]; then
        case "$(uname -s)" in
          Darwin)
            START_MODE=nokubelet,nokubeproxy
            ;;
          Linux)
            START_MODE=all
            ;;
          *)
            echo "Unsupported host OS.  Must be Linux or Mac OS X." >&2
            exit 1
            ;;
        esac
    fi
    
    # A list of controllers to enable
    KUBE_CONTROLLERS="${KUBE_CONTROLLERS:-"*"}"
    
    # Audit policy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

       // Unsupported padding
       %3 = "tf.Conv2D"(%arg0, %arg1) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", dilations = [1, 1, 1, 1], padding = "EXPLICIT", strides = [1, 1, 1, 1], explicit_paddings = [0, 0, 1, 1, 1, 1, 0, 0]} : (tensor<256x32x32x3xf32>, tensor<3x3x3x16xf32>) -> tensor<256x32x32x16xf32>
       // Unsupported strides
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// the static RSA key exchange, and unsupported otherwise. The logic for
    	// supporting static RSA is completely disjoint from the logic for
    	// supporting signed key exchanges, so we just check it as a fallback.
    	supportsRSAFallback := func(unsupported error) error {
    		// TLS 1.3 dropped support for the static RSA key exchange.
    		if vers == VersionTLS13 {
    			return unsupported
    		}
    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. android/guava/src/com/google/common/collect/Sets.java

          return set;
        }
    
        /**
         * Guaranteed to throw an exception and leave the collection unmodified.
         *
         * @throws UnsupportedOperationException always
         * @deprecated Unsupported operation.
         */
        @CanIgnoreReturnValue
        @Deprecated
        @Override
        @DoNotCall("Always throws UnsupportedOperationException")
        public final boolean add(@ParametricNullness E e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    		case k8s.HTTPRouteFilterURLRewrite:
    			vs.Rewrite = createRewriteFilter(filter.URLRewrite)
    		default:
    			return nil, &ConfigError{
    				Reason:  InvalidFilter,
    				Message: fmt.Sprintf("unsupported filter type %q", filter.Type),
    			}
    		}
    	}
    
    	if r.Timeouts != nil {
    		if r.Timeouts.Request != nil {
    			request, _ := time.ParseDuration(string(*r.Timeouts.Request))
    			if request != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. .bazelrc

    # The old gcc linux build options are preserved in the unsupported_*_linux
    # configs. If your project fails to build with Clang, you can use these
    # unsupported flags to replace the release flags in your build command.
    # However, please note that the old toolchain is no longer officially supported
    # by TensorFlow and the unsupported configs will be removed soon b/299962977. We
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top