Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 381 for unsupportedOp (0.41 sec)

  1. src/internal/syscall/windows/registry/registry_test.go

    		case registry.DWORD:
    			err = k.SetDWordValue(test.Name, uint32(test.Value.(uint64)))
    		case registry.QWORD:
    			err = k.SetQWordValue(test.Name, test.Value.(uint64))
    		default:
    			t.Fatalf("unsupported type %d for %s value", test.Type, test.Name)
    		}
    		if test.WillFail {
    			if err == nil {
    				t.Fatalf("setting %s value %q should fail, but succeeded", test.Name, test.Value)
    			}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    					{Name: containerName},
    				},
    			},
    		},
    		expectErr:      true,
    		expectedErrMsg: "unsupported supplementalGroupsPolicy: UnSupported",
    	},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			actual, err := m.generateLinuxContainerConfig(&tc.pod.Spec.Containers[0], tc.pod, nil, "", nil, false)
    			if !tc.expectErr {
    				assert.Emptyf(t, err, "Unexpected error")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  4. cmd/sts-handlers.go

    		return
    	}
    
    	action := r.Form.Get(stsAction)
    	switch action {
    	case assumeRole:
    	default:
    		writeSTSErrorResponse(ctx, w, ErrSTSInvalidParameterValue, fmt.Errorf("Unsupported action %s", action))
    		return
    	}
    
    	ctx = newContext(r, w, action)
    
    	// Validate the authentication result here so that failures will be audit-logged.
    	if apiErrCode != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

        if (resolved_dtype == DT_INVALID || resolved_dtype == DT_STRING ||
            resolved_dtype == DT_RESOURCE || resolved_dtype == DT_VARIANT ||
            IsRefType(resolved_dtype))
          return errors::InvalidArgument("Unsupported dtype at index ",
                                         data_type.index(), ": ",
                                         data_type.value());
      }
    
      return absl::OkStatus();
    }
    
    Status ParseArgumentKinds(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

        shaped_type = tensorflow::GetTypeFromTFTensorShape(shaped_type.getShape(),
                                                           qtype.getStorageType());
      } else {
        return absl::InvalidArgumentError("unsupported integer constant type");
      }
    
      llvm::SmallVector<mlir::APInt> values;
      switch (bit_width) {
        case 1: {
          // vector<bool> doesn't convert to an ArrayRef
          llvm::SmallVector<bool, 8> boolValues;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

            return CI_INJECTION_SCRIPT_CONTENTS.computeIfAbsent(ci) { new URL(it.getUrl()).getText(StandardCharsets.UTF_8.name()) }
        }
    
        private static final List<String> UNSUPPORTED = [
            "2.4.2",
            "2.4.1",
            "2.4",
            "2.3",
            "2.2.1",
            "2.2",
            "2.1",
            "2.0.2",
            "2.0.1",
            "2.0",
            "1.16",
            "1.15",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    			constants.ClusterConfigurationConfigMapKey: dedent.Dedent(yaml),
    		},
    	}
    
    	if signIt {
    		SignConfigMap(cm)
    	}
    
    	return cm
    }
    
    // oldClusterConfigVersion is used as an old unsupported version in tests throughout this file
    const oldClusterConfigVersion = "v1alpha1"
    
    var (
    	// currentClusterConfigVersion represents the current actively supported version of ClusterConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. cmd/format-erasure.go

    	// Validate format version and format type.
    	if formatErasure.Version != formatMetaVersionV1 {
    		return fmt.Errorf("Unsupported version of backend format [%s] found on %s", formatErasure.Version, disk)
    	}
    	if formatErasure.Format != formatBackendErasure && formatErasure.Format != formatBackendErasureSingle {
    		return fmt.Errorf("Unsupported backend format [%s] found on %s", formatErasure.Format, disk)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/s390x/asm.go

    				case 2:
    					elfrel = elf.R_390_PC16
    				case 4:
    					elfrel = elf.R_390_PC32
    				case 8:
    					elfrel = elf.R_390_PC64
    				}
    			}
    		}
    		if elfrel == elf.R_390_NONE {
    			return false // unsupported size/dbl combination
    		}
    		out.Write64(uint64(elfrel) | uint64(elfsym)<<32)
    	}
    
    	out.Write64(uint64(r.Xadd))
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top