Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 140 for Enumerated (0.25 sec)

  1. pkg/generated/openapi/zz_generated.openapi.go

    							},
    						},
    						SchemaProps: spec.SchemaProps{
    							Description: "APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.  \"*\" means all.",
    							Type:        []string{"array"},
    							Items: &spec.SchemaOrArray{
    								Schema: &spec.Schema{
    									SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      for (auto& input : inputs) {
        auto input_op = input.get().getDefiningOp();
        if (!input_op || !IsSupportedHostInputOp(input_op)) return false;
      }
      for (auto entry : llvm::enumerate(inputs)) {
        Value input = entry.value().get();
        auto ranked_type = mlir::dyn_cast<RankedTensorType>(input.getType());
        if (!ranked_type) return false;
        auto input_shape = ranked_type.getShape();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

          node.name = output_renaming_map[node.name]
        elif node.op == '_Retval':
          graph_def.node.remove(node)
        else:
          # Update the inputs referring to the pre-renaming node.
          for idx, input_name in enumerate(node.input):
            if input_name in output_renaming_map:
              node.input[idx] = output_renaming_map[input_name]
          # Update the control inputs referring to the pre-renaming node.
          updating_inputs = []
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt

          )
        factory.newConnection(pool, routeA1)
        assertThat(realTaskRunner.activeQueues()).isNotEmpty()
        Thread.sleep(100)
        val threads = arrayOfNulls<Thread>(Thread.activeCount() * 2)
        Thread.enumerate(threads)
        for (t in threads) {
          if (t != null && t.name == "OkHttp TaskRunner") {
            t.interrupt()
          }
        }
        Thread.sleep(100)
        assertThat(realTaskRunner.activeQueues()).isEmpty()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

        if (!result_ty) {
          return emitOptionalError(location, "Expected shape type for operand 0");
        }
        for (auto [index, ty] :
             llvm::drop_begin(llvm::enumerate(operands.getTypes()), 1)) {
          auto shape_type = llvm::dyn_cast_or_null<ShapedType>(ty);
          if (!shape_type) {
            return emitOptionalError(location, "Expected shape type for operand ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          paddings_value.getNumElements() != permutation.size() * 2)
        return failure();
    
      SmallVector<int32_t, 8> shuffled_paddings(paddings_value.getNumElements());
      for (const auto &index_pair :
           llvm::enumerate(paddings_value.getValues<APInt>())) {
        size_t outer_idx = index_pair.index() / 2;
        size_t inner_idx = index_pair.index() % 2;
    
        shuffled_paddings[permutation[outer_idx] * 2 + inner_idx] =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    		return fmt.Errorf("%s is not positive integer multiple of %s", quantity.String(), name)
    	}
    
    	return nil
    }
    
    // validateResourceQuotaScopes ensures that each enumerated hard resource constraint is valid for set of scopes
    func validateResourceQuotaScopes(resourceQuotaSpec *core.ResourceQuotaSpec, fld *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

            "properties": {
              "apiGroups": {
                "description": "APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"\" represents the core API group and \"*\" represents all API groups.",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.
      // +optional
      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> maxLimitRequestRatio = 6;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

    IRMapping CloneSrcFuncArgumentsToMainFunc(func::FuncOp src_func_op,
                                              func::FuncOp main_func_op) {
      IRMapping mapper{};
    
      for (auto [src_arg_idx, src_arg] :
           llvm::enumerate(src_func_op.getArguments())) {
        // No need to create a mapping when there is no usage - it will not affect
        // the cloning.
        if (src_arg.use_empty()) continue;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top