Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for annotation1 (6.03 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    - `kubectl prune v2`: Switched annotation from `contains-group-resources` to `contains-group-kinds`,
      because this is what we defined in the KEP and is clearer to end-users. Although the functionality is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"fieldRef":         "Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported.",
    	"resourceFieldRef": "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      optional string path = 1;
    
      // Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported.
      // +optional
      optional ObjectFieldSelector fieldRef = 2;
    
      // Selects a resource of the container: only resources limits and requests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    - Removed tracking annotation from validation and defaulting. ([#117633](https://github.com/kubernetes/kubernetes/pull/117633), [@kannon92](https://github.com/kannon92))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  5. pkg/proxy/iptables/proxier_test.go

    }
    
    func makeTestService(namespace, name string, svcFunc func(*v1.Service)) *v1.Service {
    	svc := &v1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Namespace:   namespace,
    			Annotations: map[string]string{},
    		},
    		Spec:   v1.ServiceSpec{},
    		Status: v1.ServiceStatus{},
    	}
    	svcFunc(svc)
    	return svc
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/ssagen/ssa.go

    		n := f.Nname.(*ir.Name)
    		if !n.OnStack() {
    			// The local which points to the return value is the
    			// thing that needs zeroing. This is already handled
    			// by a Needzero annotation in plive.go:(*liveness).epilogue.
    			continue
    		}
    		// Zero the stack location containing f.
    		if typ := n.Type(); ssa.CanSSA(typ) {
    			s.assign(n, s.zeroVal(typ), false, 0)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top