Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for fieldsV1 (0.23 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. 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)
  6. 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)
  7. 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)
  8. scan.go

    						fields[idx] = field
    						if count, ok := matchedFieldCount[column]; ok {
    							// handle duplicate fields
    							for _, selectField := range sch.Fields {
    								if selectField.DBName == column && selectField.Readable {
    									if count == 0 {
    										matchedFieldCount[column]++
    										fields[idx] = selectField
    										break
    									}
    									count--
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	c.FuzzNoCustom(obj)
    
    	// Pinning values for fields that get defaults if fuzz value is empty string or nil (thus making the round trip test fail)
    	obj.IgnorePreflightErrors = nil
    	obj.ImagePullSerial = ptr.To(true)
    }
    
    func fuzzClusterConfiguration(obj *kubeadm.ClusterConfiguration, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_builder_test.go

    	}
    	tests := []struct {
    		name   string
    		proxy  *model.Proxy
    		fields fields
    		want   fields
    	}{
    		{
    			name:  "patch add inbound and outbound listener",
    			proxy: sidecarProxy,
    			fields: fields{
    				OutboundListeners: []*listener.Listener{
    					{
    						Name: "outbound-listener",
    					},
    				},
    			},
    			want: fields{
    				InboundListeners: []*listener.Listener{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top