Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for has_minimum (3.43 sec)

  1. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

              {"list(float)", "{0.0, 1.0}"},
              {"type", "DT_UINT8"},
              {"shape",
               "mediapipe::ParseTextProtoOrDie<TensorShapeProto>("
               "\"dim:[] unknown_rank:true\")"}};
    
      if (attr.has_minimum()) {
        if (attr.type() == "int") {
          return absl::StrCat(attr.minimum());
        } else if (attr.type() == "list(int)") {
          std::vector<int> v(attr.minimum());
          for (int i = 0; i < v.size(); ++i) v[i] = i;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

              name: "output"
              type_list_attr: "Tout"
            }
            attr {
              name: "Tin"
              type: "list(type)"
              has_minimum: true
            }
            attr {
              name: "Tout"
              type: "list(type)"
              has_minimum: true
            }
            attr {
              name: "f"
              type: "func"
            }
            attr {
              name: "config"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"hasMinimum":           *numberSchema,
    						"hasMaximum":           *numberSchema,
    						"hasMinimumAndMaximum": *numberSchema,
    					},
    				}},
    				applyPatchOperation{
    					"Create an object that complies with the schema",
    					myCRDV1Beta1,
    					myCRDInstanceName,
    					map[string]interface{}{
    						"hasMinimum":           0,
    						"hasMaximum":           1000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top