Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for descriptor (0.31 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    	return sortJsonOrFail(t, testObjectToJSONOrFail(t, c.Original), c.Description, schema),
    		sortJsonOrFail(t, testObjectToJSONOrFail(t, c.Modified), c.Description, schema),
    		sortJsonOrFail(t, testObjectToJSONOrFail(t, c.Current), c.Description, schema),
    		sortJsonOrFail(t, testObjectToJSONOrFail(t, c.ThreeWay), c.Description, schema),
    		sortJsonOrFail(t, testObjectToJSONOrFail(t, c.Result), c.Description, schema)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

                "type": "string"
              },
              "message": {
                "description": "A human-readable description of the cause of the error.  This field may be presented as-is to a reader.",
                "type": "string"
              },
              "reason": {
                "description": "A machine-readable description of the cause of the error. If this value is empty there is no information available.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      string tflRuntimeTypeDescription = t.summary;
    }
    
    class TFL_AnyTypeOf<list<Type> allowedRuntimeTypes, string description = "",
                        list<Type> allowedOpTypes = [AnyType]> :
      AnyTypeOf<allowedOpTypes, description>,
      TFL_RuntimeType<AnyTypeOf<allowedRuntimeTypes, description>>;
    
    class TFL_TensorOf<list<Type> allowedRuntimeTypes,
                       list<Type> allowedOpTypes = [AnyType]> :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsDataConfigCQ.java

        }
    
        public void setDescription_Equal(String description) {
            setDescription_Term(description, null);
        }
    
        public void setDescription_Equal(String description, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setDescription_Term(description, opLambda);
        }
    
        public void setDescription_Term(String description) {
            setDescription_Term(description, null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 108.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy_static_test.go

    }
    
    func TestStaticPolicyNew(t *testing.T) {
    	testCases := []testStaticPolicy{
    		{
    			description:   "should fail, when machine does not have reserved memory for the system workloads",
    			expectedError: fmt.Errorf("[memorymanager] you should specify the system reserved memory"),
    		},
    		{
    			description: "should succeed, when at least one NUMA node has reserved memory",
    			systemReserved: systemReservedMemory{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileConfigCQ.java

        public void setDescription_Equal(String description) {
            setDescription_Term(description, null);
        }
    
        public void setDescription_Equal(String description, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setDescription_Term(description, opLambda);
        }
    
        public void setDescription_Term(String description) {
            setDescription_Term(description, null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 165.3K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    		}
    	}
    
    	podInfo := []struct {
    		description  string
    		hasProcMount bool
    		pod          func() *api.Pod
    	}{
    		{
    			description:  "has ProcMount",
    			hasProcMount: true,
    			pod:          podWithProcMount,
    		},
    		{
    			description:  "has default ProcMount",
    			hasProcMount: false,
    			pod:          podWithDefaultProcMount,
    		},
    		{
    			description:  "does not have ProcMount",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsWebConfigCQ.java

        public void setDescription_Equal(String description) {
            setDescription_Term(description, null);
        }
    
        public void setDescription_Equal(String description, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setDescription_Term(description, opLambda);
        }
    
        public void setDescription_Term(String description) {
            setDescription_Term(description, null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 172.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      ];
    }
    
    def PromoteVarHandlesToArgsPass : Pass<"tf-promote-var-handles-to-args", "ModuleOp"> {
      let summary = "Promote tf.VarHandleOps to function arguments.";
      let description = [{See joint description in promote resources to args.}];
    
      let constructor = "TF::CreatePromoteVarHandlesToArgsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. fastapi/routing.py

            self.dependencies = list(dependencies or [])
            self.description = description or inspect.cleandoc(self.endpoint.__doc__ or "")
            # if a "form feed" character (page break) is found in the description text,
            # truncate description text to the content preceding the first "form feed"
            self.description = self.description.split("\f")[0].strip()
            response_fields = {}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
Back to top