Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 492 for fieldsV1 (0.29 sec)

  1. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    					"example.com/foo",
    				}
    				return template
    			}(),
    		},
    		"managed-fields": {
    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    				template.ManagedFields = []metav1.ManagedFieldsEntry{
    					{
    						FieldsType: "FieldsV1",
    						Operation:  "Apply",
    						APIVersion: "apps/v1",
    						Manager:    "foo",
    					},
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pkg/apis/resource/validation/validation_resourceclass_test.go

    				class.Finalizers = []string{
    					"example.com/foo",
    				}
    				return class
    			}(),
    		},
    		"managed-fields": {
    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    				class.ManagedFields = []metav1.ManagedFieldsEntry{
    					{
    						FieldsType: "FieldsV1",
    						Operation:  "Apply",
    						APIVersion: "apps/v1",
    						Manager:    "foo",
    					},
    				}
    				return class
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclaim_test.go

    				claim.Finalizers = []string{
    					"example.com/foo",
    				}
    				return claim
    			}(),
    		},
    		"managed-fields": {
    			claim: func() *resource.ResourceClaim {
    				claim := testClaim(goodName, goodNS, goodClaimSpec)
    				claim.ManagedFields = []metav1.ManagedFieldsEntry{
    					{
    						FieldsType: "FieldsV1",
    						Operation:  "Apply",
    						APIVersion: "apps/v1",
    						Manager:    "foo",
    					},
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
                "type": "string"
              },
              "fieldsV1": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
                "type": "string"
              },
              "fieldsV1": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    // avoid the extra allocation on this common path
    type FieldMutationFunc func(obj runtime.Object, fieldSet fields.Set) error
    
    func DefaultClusterScopedAttr(obj runtime.Object) (labels.Set, fields.Set, error) {
    	metadata, err := meta.Accessor(obj)
    	if err != nil {
    		return nil, nil, err
    	}
    	fieldSet := fields.Set{
    		"metadata.name": metadata.GetName(),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/api__v1_openapi.json

                "description": "FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: \"FieldsV1\"",
                "type": "string"
              },
              "fieldsV1": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

              "type": "string"
            },
            "fieldsV1": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1",
              "description": "FieldsV1 holds the first JSON version format as described in the \"FieldsV1\" type."
            },
            "manager": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. src/encoding/csv/reader.go

    	// FieldsPerRecord is the number of expected fields per record.
    	// If FieldsPerRecord is positive, Read requires each record to
    	// have the given number of fields. If FieldsPerRecord is 0, Read sets it to
    	// the number of fields in the first record, so that future records must
    	// have the same field count. If FieldsPerRecord is negative, no check is
    	// made and records may have a variable number of fields.
    	FieldsPerRecord int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"!has(self.a.d)", // We treat null value fields the same as absent fields in CEL
    				"has(self.a1.b1.c1)",
    				"!(has(self.a1.d2) && has(self.a1.d2.e2))", // must check intermediate optional fields (see below no such key error for d2)
    				"!has(self.a1.d2)",
    			},
    			errors: map[string]string{
    				"has(self.a.z)":      "undefined field 'z'",             // may not reference undefined fields, not even with has
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top