Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,834 for objectOps (0.17 sec)

  1. staging/src/k8s.io/api/rbac/v1beta1/types.go

    type RoleBinding struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Subjects holds references to the objects the role applies to.
    	// +optional
    	// +listType=atomic
    	Subjects []Subject `json:"subjects,omitempty" protobuf:"bytes,2,rep,name=subjects"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1alpha1/types.go

    // ClusterTrustBundleList is a collection of ClusterTrustBundle objects
    type ClusterTrustBundleList struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// metadata contains the list metadata.
    	//
    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// items is a collection of ClusterTrustBundle objects
    	Items []ClusterTrustBundle `json:"items" protobuf:"bytes,2,rep,name=items"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

    message CSIStorageCapacity {
      // Standard object's metadata. The name has no particular meaning. It must be
      // be a DNS subdomain (dots allowed, 253 characters). To ensure that
      // there are no conflicts with other CSI drivers on the cluster, the recommendation
      // is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends
      // with the unique CSI driver name.
      //
      // Objects are namespaced.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle.go

    		}
    		if !obj.DeleteMarker && !rule.Filter.BySize(obj.Size) {
    			continue
    		}
    		rules = append(rules, rule)
    	}
    	return rules
    }
    
    // ObjectOpts provides information to deduce the lifecycle actions
    // which can be triggered on the resultant object.
    type ObjectOpts struct {
    	Name             string
    	UserTags         string
    	ModTime          time.Time
    	Size             int64
    	VersionID        string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. pkg/api/v1/persistentvolume/util.go

    )
    
    func getClaimRefNamespace(pv *corev1.PersistentVolume) string {
    	if pv.Spec.ClaimRef != nil {
    		return pv.Spec.ClaimRef.Namespace
    	}
    	return ""
    }
    
    // Visitor is called with each object's namespace and name, and returns true if visiting should continue
    type Visitor func(namespace, name string, kubeletVisible bool) (shouldContinue bool)
    
    func skipEmptyNames(visitor Visitor) Visitor {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 05 03:36:23 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

    }
    
    // ClusterTrustBundleList is a collection of ClusterTrustBundle objects
    message ClusterTrustBundleList {
      // metadata contains the list metadata.
      //
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is a collection of ClusterTrustBundle objects
      repeated ClusterTrustBundle items = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1alpha1/generated.proto

    }
    
    // ClusterTrustBundleList is a collection of ClusterTrustBundle objects
    message ClusterTrustBundleList {
      // metadata contains the list metadata.
      //
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is a collection of ClusterTrustBundle objects
      repeated ClusterTrustBundle items = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1alpha1/types_swagger_doc_generated.go

    	return map_ClusterTrustBundle
    }
    
    var map_ClusterTrustBundleList = map[string]string{
    	"":         "ClusterTrustBundleList is a collection of ClusterTrustBundle objects",
    	"metadata": "metadata contains the list metadata.",
    	"items":    "items is a collection of ClusterTrustBundle objects",
    }
    
    func (ClusterTrustBundleList) SwaggerDoc() map[string]string {
    	return map_ClusterTrustBundleList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    var map_CSIStorageCapacityList = map[string]string{
    	"":         "CSIStorageCapacityList is a collection of CSIStorageCapacity objects.",
    	"metadata": "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"items":    "items is the list of CSIStorageCapacity objects.",
    }
    
    func (CSIStorageCapacityList) SwaggerDoc() map[string]string {
    	return map_CSIStorageCapacityList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/scope.go

    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"io"
    	"sort"
    	"strings"
    	"sync"
    )
    
    // A Scope maintains a set of objects and links to its containing
    // (parent) and contained (children) scopes. Objects may be inserted
    // and looked up by name. The zero value for Scope is a ready-to-use
    // empty scope.
    type Scope struct {
    	parent   *Scope
    	children []*Scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top