Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for filelist (0.2 sec)

  1. staging/src/k8s.io/api/rbac/v1alpha1/register.go

    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Role{},
    		&RoleBinding{},
    		&RoleBindingList{},
    		&RoleList{},
    
    		&ClusterRole{},
    		&ClusterRoleBinding{},
    		&ClusterRoleBindingList{},
    		&ClusterRoleList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1beta1/register.go

    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Role{},
    		&RoleBinding{},
    		&RoleBindingList{},
    		&RoleList{},
    
    		&ClusterRole{},
    		&ClusterRoleBinding{},
    		&ClusterRoleBindingList{},
    		&ClusterRoleList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/pack/pack.go

    		}
    	close:
    		f.Close()
    	}
    	ar.files = nil
    }
    
    // FileLike abstracts the few methods we need, so we can test without needing real files.
    type FileLike interface {
    	Name() string
    	Stat() (fs.FileInfo, error)
    	Read([]byte) (int, error)
    	Close() error
    }
    
    // addFile adds a single file to the archive
    func (ar *Archive) addFile(fd FileLike) {
    	// Format the entry.
    	// First, get its info.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

      // Items is a list of RoleBindings
      repeated RoleBinding items = 2;
    }
    
    // RoleList is a collection of Roles
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.
    message RoleList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. pkg/apis/rbac/register.go

    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Role{},
    		&RoleBinding{},
    		&RoleBindingList{},
    		&RoleList{},
    
    		&ClusterRole{},
    		&ClusterRoleBinding{},
    		&ClusterRoleBindingList{},
    		&ClusterRoleList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 10 02:22:05 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. pkg/registry/rbac/role/storage/storage.go

    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &rbac.Role{} },
    		NewListFunc:               func() runtime.Object { return &rbac.RoleList{} },
    		DefaultQualifiedResource:  rbac.Resource("roles"),
    		SingularQualifiedResource: rbac.Resource("role"),
    
    		CreateStrategy: role.Strategy,
    		UpdateStrategy: role.Strategy,
    		DeleteStrategy: role.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/rbac/v1/register.go

    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&Role{},
    		&RoleBinding{},
    		&RoleBindingList{},
    		&RoleList{},
    
    		&ClusterRole{},
    		&ClusterRoleBinding{},
    		&ClusterRoleBindingList{},
    		&ClusterRoleList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:54:02 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

      // Items is a list of RoleBindings
      repeated RoleBinding items = 2;
    }
    
    // RoleList is a collection of Roles
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.
    message RoleList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1alpha1/generated.proto

      // Items is a list of RoleBindings
      repeated RoleBinding items = 2;
    }
    
    // RoleList is a collection of Roles.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.
    message RoleList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

         */
        private static List<VirtualFileSystemTestSpec> onlyDirectChildren(List<VirtualFileSystemTestSpec> fullList) {
            return fullList.findAll { it.childPaths.every { !it.contains('/') } }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top