Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for ManagedFieldsEntry (0.35 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    	}
    	return allErrs
    }
    
    const MaxSubresourceNameLength = 256
    
    func ValidateManagedFields(fieldsList []metav1.ManagedFieldsEntry, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    	for i, fields := range fieldsList {
    		fldPath := fldPath.Index(i)
    		switch fields.Operation {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    					}
    					j.MatchExpressions[i] = req
    				}
    
    				sort.Slice(j.MatchExpressions, func(a, b int) bool { return j.MatchExpressions[a].Key < j.MatchExpressions[b].Key })
    			}
    		},
    		func(j *metav1.ManagedFieldsEntry, c fuzz.Continue) {
    			c.FuzzNoCustom(j)
    			j.FieldsV1 = nil
    		},
    	}
    }
    
    func v1beta1FuzzerFuncs(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

          "type": "object"
        },
        "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": {
          "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
          "type": "object",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "type": "object"
          },
          "io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry": {
            "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  5. operator/pkg/verifier/verifier.go

    	// and gogo/protobuf/jsonpb(v1.3.1) tries to unmarshal it as struct (the type
    	// meta_v1.Time is really a struct) and fails.
    	un.SetManagedFields([]metav1.ManagedFieldsEntry{})
    }
    
    // Find all IstioOperator in the cluster.
    func AllOperatorsInCluster(client dynamic.Interface) ([]*v1alpha1.IstioOperator, error) {
    	ul, err := client.
    		Resource(v1alpha1.IstioOperatorGVR).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional bool sendInitialEvents = 11;
    }
    
    // ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource
    // that the fieldset applies to.
    message ManagedFieldsEntry {
      // Manager is an identifier of the workflow managing these fields.
      optional string manager = 1;
    
      // Operation is the type of operation which lead to this ManagedFieldsEntry being created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional bool sendInitialEvents = 11;
    }
    
    // ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource
    // that the fieldset applies to.
    message ManagedFieldsEntry {
      // Manager is an identifier of the workflow managing these fields.
      optional string manager = 1;
    
      // Operation is the type of operation which lead to this ManagedFieldsEntry being created.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	LabelSelectorOpExists       LabelSelectorOperator = "Exists"
    	LabelSelectorOpDoesNotExist LabelSelectorOperator = "DoesNotExist"
    )
    
    // ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource
    // that the fieldset applies to.
    type ManagedFieldsEntry struct {
    	// Manager is an identifier of the workflow managing these fields.
    	Manager string `json:"manager,omitempty" protobuf:"bytes,1,opt,name=manager"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    var map_ManagedFieldsEntry = map[string]string{
    	"":            "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.",
    	"manager":     "Manager is an identifier of the workflow managing these fields.",
    	"operation":   "Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    	// the first call to getDefinition
    
    	// ManagedFieldsEntry's Time field is known to use arefs
    	managedFieldsTypePath := "k8s.io/apimachinery/pkg/apis/meta/v1.ManagedFieldsEntry"
    
    	v2Ref := getDefinition(managedFieldsTypePath, true).SchemaProps.Properties["time"].SchemaProps.Ref
    	v3Ref := getDefinition(managedFieldsTypePath, false).SchemaProps.Properties["time"].SchemaProps.Ref
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top