Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for allowed_values (0.29 sec)

  1. tensorflow/cc/framework/cc_op_gen_test.cc

      }
      output_arg {
        name: "output"
        description: "Description for output."
        type: DT_FLOAT
      }
      attr {
        name: "T"
        type: "type"
        description: "Type for images"
        allowed_values {
          list {
            type: DT_UINT8
            type: DT_INT8
          }
        }
        default_value {
          i: 1
        }
      }
      summary: "Summary for op Foo."
      description: "Description for op Foo."
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 20:04:30 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. plugin/pkg/admission/eventratelimit/apis/eventratelimit/validation/validation.go

    		idxPath := limitsPath.Index(i)
    		if !limitTypes[limit.Type] {
    			allowedValues := make([]string, len(limitTypes))
    			i := 0
    			for limitType := range limitTypes {
    				allowedValues[i] = string(limitType)
    				i++
    			}
    			allErrs = append(allErrs, field.NotSupported(idxPath.Child("type"), limit.Type, allowedValues))
    		}
    		if limit.Burst <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 2.1K bytes
    - Viewed (0)
Back to top