Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 4,077 for Meta (0.15 sec)

  1. pkg/test/util/yml/apply.go

    	if err := yaml.Unmarshal([]byte(yamlText), &m); err != nil {
    		return "", err
    	}
    
    	meta, err := ensureChildMap(m, "metadata")
    	if err != nil {
    		return "", err
    	}
    	if meta["annotations"] != nil {
    		meta["annotations"].(map[string]string)[k] = v
    	} else {
    		an := map[string]string{k: v}
    		meta["annotations"] = an
    	}
    
    	by, err := yaml.Marshal(m)
    	if err != nil {
    		return "", err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute_test.go

    			},
    			[]config.Config{
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.VirtualService,
    						Name:             "acme",
    					},
    					Spec: virtualServiceSpec,
    				},
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.VirtualService,
    						Name:             "acme-duplicate",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers.go

    func HasObjectMetaSystemFieldValues(meta Object) bool {
    	return !meta.GetCreationTimestamp().Time.IsZero() ||
    		len(meta.GetUID()) != 0
    }
    
    // ResetObjectMetaForStatus forces the meta fields for a status update to match the meta fields
    // for a pre-existing object. This is opt-in for new objects with Status subresource.
    func ResetObjectMetaForStatus(meta, existingMeta Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 15 10:58:36 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/audit/request.go

    		ae.ObjectRef = &auditinternal.ObjectReference{}
    	}
    
    	// meta.Accessor is more general than ObjectMetaAccessor, but if it fails, we can just skip setting these bits
    	if meta, err := meta.Accessor(obj); err == nil {
    		if len(ae.ObjectRef.Namespace) == 0 {
    			ae.ObjectRef.Namespace = meta.GetNamespace()
    		}
    		if len(ae.ObjectRef.Name) == 0 {
    			ae.ObjectRef.Name = meta.GetName()
    		}
    		if len(ae.ObjectRef.UID) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_test.go

    		g := NewWithT(t)
    		virtualService := config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    				Name:             "acme",
    			},
    			Spec: virtualServiceWithSubset,
    		}
    		cg := core.NewConfigGenTest(t, core.TestOptions{
    			Services: exampleService,
    			Configs: []config.Config{
    				virtualService,
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/printers/managedfields.go

    	if obj == nil {
    		return p.Delegate.PrintObj(obj, w)
    	}
    	if meta.IsListType(obj) {
    		obj = obj.DeepCopyObject()
    		_ = meta.EachListItem(obj, func(item runtime.Object) error {
    			omitManagedFields(item)
    			return nil
    		})
    	} else if _, err := meta.Accessor(obj); err == nil {
    		obj = omitManagedFields(obj.DeepCopyObject())
    	}
    	return p.Delegate.PrintObj(obj, w)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 16 14:52:03 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/internal/cov/readcovdata.go

    	// Invoked at the start and end of a given pod (a pod here is a
    	// specific coverage meta-data files with the counter data files
    	// that correspond to it).
    	BeginPod(p pods.Pod)
    	EndPod(p pods.Pod)
    
    	// Invoked when the reader is starting to examine the meta-data
    	// file for a pod. Here 'mdf' is the path of the file, and 'mfr'
    	// is an open meta-data reader.
    	VisitMetaDataFile(mdf string, mfr *decodemeta.CoverageMetaFileReader)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apps_openapi.json

                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
                    }
                  },
                  "application/vnd.kubernetes.protobuf": {
                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
                    }
                  },
                  "application/yaml": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authorization.k8s.io_openapi.json

                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
                    }
                  },
                  "application/vnd.kubernetes.protobuf": {
                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
                    }
                  },
                  "application/yaml": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__policy_openapi.json

                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
                    }
                  },
                  "application/vnd.kubernetes.protobuf": {
                    "schema": {
                      "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup"
                    }
                  },
                  "application/yaml": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top