Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 381 for unsupportedOp (0.31 sec)

  1. android/guava/src/com/google/common/collect/ImmutableList.java

          return super.writeReplace();
        }
      }
    
      /**
       * Guaranteed to throw an exception and leave the list unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final boolean addAll(int index, Collection<? extends E> newElements) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/arm64.go

    			if a.Type == obj.TYPE_MEM {
    				a.Index = arm64.REG_SXTX + Rnum
    			} else {
    				a.Reg = arm64.REG_SXTX + Rnum
    			}
    		case "LSL":
    			a.Index = arm64.REG_LSL + Rnum
    		default:
    			return errors.New("unsupported general register extension type: " + ext)
    
    		}
    	} else if reg <= arm64.REG_V31 && reg >= arm64.REG_V0 {
    		switch ext {
    		case "B8":
    			if isIndex {
    				return errors.New("invalid register extension")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 09:04:58 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

                        .forProperty(propertyName)
                        .id(TextUtil.screamingSnakeToKebabCase(UNSUPPORTED_NOTATION), "Property has unsupported value", GradleCoreProblemGroup.validation().property())
                        .contextualLabel("has unsupported value '" + value + "'")
                        .documentedAt(userManual("validation_problems", UNSUPPORTED_NOTATION.toLowerCase()))
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

            : ParamIteratorInterface<T>(),
              base_(other.base_), value_(other.value_), index_(other.index_),
              step_(other.step_) {}
    
        // No implementation - assignment is unsupported.
        void operator=(const Iterator& other);
    
        const ParamGeneratorInterface<T>* const base_;
        T value_;
        int index_;
        const IncrementT step_;
      };  // class RangeGenerator::Iterator
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    			args:   config.NodeResourcesFitArgs{},
    			expect: "ScoringStrategy field is required",
    		},
    		{
    			name: "ScoringStrategy: type is unsupported",
    			args: config.NodeResourcesFitArgs{
    				ScoringStrategy: &config.ScoringStrategy{
    					Type: "Invalid",
    				},
    			},
    			expect: `Unsupported value: "Invalid"`,
    		},
    	}
    
    	for _, test := range argsTest {
    		t.Run(test.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  6. internal/config/storageclass/storage-class.go

    		return StorageClass{}, config.ErrStorageClassValue(nil).Msg("Unsupported scheme " + s[0] + ". Supported scheme is EC")
    	}
    
    	// Number of parity drives should be integer
    	parityDrives, err := strconv.Atoi(s[1])
    	if err != nil {
    		return StorageClass{}, config.ErrStorageClassValue(err)
    	}
    	if parityDrives < 0 {
    		return StorageClass{}, config.ErrStorageClassValue(nil).Msg("Unsupported parity value " + s[1] + " provided")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption.go

    	keyLenErrFmt                   = "secret is not of the expected length, got %d, expected one of %v"
    	unsupportedSchemeErrFmt        = "unsupported scheme %q for KMS provider, only unix is supported"
    	unsupportedKMSAPIVersionErrFmt = "unsupported apiVersion %s for KMS provider, only v1 and v2 are supported"
    	atLeastOneRequiredErrFmt       = "at least one %s is required"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/README.md

    # Target Aware Conversion (TAC)
    
    Different hardwares have different capabilities and restrictions.
    
    TAC is designed to leverage hardwares' capabilities to:
    
    *   Perform device-specific optimizations (such as unsupported ops lowering,
        layout transformations, etc.)
    *   Graph partitioning based on the hardware costs modeling.
    *   It supports general import/export where you can hook your own
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/conversion_test.go

    		port        int32
    		name        string
    		appProtocol *string
    		proto       corev1.Protocol
    		out         protocol.Instance
    	}
    	protocols := []protocolCase{
    		{8888, "", nil, corev1.ProtocolTCP, protocol.Unsupported},
    		{25, "", nil, corev1.ProtocolTCP, protocol.TCP},
    		{53, "", nil, corev1.ProtocolTCP, protocol.TCP},
    		{3306, "", nil, corev1.ProtocolTCP, protocol.TCP},
    		{27017, "", nil, corev1.ProtocolTCP, protocol.TCP},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/database/sql/convert_test.go

    		{s: "1.5", d: new(userDefined), wantusrdef: 1.5},
    		{s: []byte{1, 2, 3}, d: new(userDefinedSlice), wanterr: `unsupported Scan, storing driver.Value type []uint8 into type *sql.userDefinedSlice`},
    		{s: "str", d: new(userDefinedString), wantusrstr: "str"},
    
    		// Other errors
    		{s: complex(1, 2), d: &scanstr, wanterr: `unsupported Scan, storing driver.Value type complex128 into type *string`},
    	}
    }
    
    func intPtrValue(intptr any) any {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top