Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Field6 (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    								"field1": {
    									Type: "integer",
    								},
    								"field2": {
    									Type: "integer",
    								},
    							},
    							XValidations: apiextensions.ValidationRules{
    								{
    									Rule: "self.field1 < self.field2",
    								},
    							},
    							Default: jsonPtr(map[string]interface{}{"field1": 1, "field2": 2}),
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

    request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

    request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    with a status subresource: {\"rule\": \"self.status.actual <= self.spec.maxDesired\"}\n\nIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via `self.field` and field presence can be checked via `has(self.field)`. Null valued fields are treated as absent fields in CEL expressions. If the Rule is scoped to an object with additionalProperties (i.e. a map) the value of the map are accessible via `self[mapKey]`, map containment can be checked...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. url */
        String INDEX_FIELD_URL = "index.field.url";
    
        /** The key of the configuration. e.g. doc_id */
        String INDEX_FIELD_doc_id = "index.field.doc_id";
    
        /** The key of the configuration. e.g. _id */
        String INDEX_FIELD_ID = "index.field.id";
    
        /** The key of the configuration. e.g. _version */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    func ValidateAnnotations(annotations map[string]string, fldPath *field.Path) field.ErrorList {
    	return apimachineryvalidation.ValidateAnnotations(annotations, fldPath)
    }
    
    func ValidateDNS1123Label(value string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	for _, msg := range validation.IsDNS1123Label(value) {
    		allErrs = append(allErrs, field.Invalid(fldPath, value, msg))
    	}
    	return allErrs
    }
    
    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. pkg/apis/core/types.go

    	// Specifies the OS of the containers in the pod.
    	// Some pod and container fields are restricted if this is set.
    	//
    	// If the OS field is set to linux, the following fields must be unset:
    	// - securityContext.windowsOptions
    	//
    	// If the OS field is set to windows, following fields must be unset:
    	// - spec.hostPID
    	// - spec.hostIPC
    	// - spec.hostUsers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // Specifies the OS of the containers in the pod.
      // Some pod and container fields are restricted if this is set.
      //
      // If the OS field is set to linux, the following fields must be unset:
      // -securityContext.windowsOptions
      //
      // If the OS field is set to windows, following fields must be unset:
      // - spec.hostPID
      // - spec.hostIPC
      // - spec.hostUsers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    		}
    	}
    	return nil
    }
    
    // PseudoFields returns the pseudo header fields of mh.
    // The caller does not own the returned slice.
    func (mh *http2MetaHeadersFrame) PseudoFields() []hpack.HeaderField {
    	for i, hf := range mh.Fields {
    		if !hf.IsPseudo() {
    			return mh.Fields[:i]
    		}
    	}
    	return mh.Fields
    }
    
    func (mh *http2MetaHeadersFrame) checkPseudos() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top