Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 824 for repeated (0.29 sec)

  1. common-protos/k8s.io/api/rbac/v1/generated.proto

      // Items is a list of ClusterRoleBindings
      repeated ClusterRoleBinding items = 2;
    }
    
    // ClusterRoleList is a collection of ClusterRoles
    message ClusterRoleList {
      // Standard object's metadata.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/rbac/v1alpha1/generated.proto

      // +optional
      repeated string apiGroups = 3;
    
      // Resources is a list of resources this rule applies to. '*' represents all resources.
      // +optional
      repeated string resources = 4;
    
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +optional
      repeated string resourceNames = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue43087.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func _() {
    	a, b, b /* ERROR "b repeated on left side of :=" */ := 1, 2, 3
    	_ = a
    	_ = b
    }
    
    func _() {
    	a, _, _ := 1, 2, 3 // multiple _'s ok
    	_ = a
    }
    
    func _() {
    	var b int
    	a, b, b /* ERROR "b repeated on left side of :=" */ := 1, 2, 3
    	_ = a
    	_ = b
    }
    
    func _() {
    	var a []int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 726 bytes
    - Viewed (0)
  4. pkg/workloadapi/security/authorization.proto

      repeated Match matches = 2;
    }
    
    message Match {
      // Values of specific type are ORed
      // If multiple types are set, they are ANDed
    
      repeated StringMatch namespaces = 1;
      repeated StringMatch not_namespaces = 2;
    
      repeated StringMatch principals = 3;
      repeated StringMatch not_principals = 4;
    
      repeated Address source_ips = 5;
      repeated Address not_source_ips = 6;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1/generated.proto

      // Items is a list of ClusterRoleBindings
      repeated ClusterRoleBinding items = 2;
    }
    
    // ClusterRoleList is a collection of ClusterRoles
    message ClusterRoleList {
      // Standard object's metadata.
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // +listType=set
      repeated string verbs = 5;
    
      // shortNames is a list of suggested short names of the resource.
      // +listType=set
      repeated string shortNames = 6;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all').
      // Clients may use this to simplify acting on multiple resource types at once.
      // +listType=set
      repeated string categories = 7;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. operator/pkg/util/util_test.go

    			want: "",
    		},
    		{
    			desc: "2 errors once",
    			in:   "err1\nerr2\n",
    			want: "err1 (repeated 1 times)\nerr2 (repeated 1 times)\n",
    		},
    		{
    			desc: "3 errors multiple times",
    			in:   "err1\nerr2\nerr3\nerr1\nerr2\nerr3\nerr3\nerr3\n",
    			want: "err1 (repeated 2 times)\nerr2 (repeated 2 times)\nerr3 (repeated 4 times)\n",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

      // +listType=atomic
      repeated string verbs = 1;
    
      // APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
      // the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups.
      // +optional
      // +listType=atomic
      repeated string apiGroups = 2;
    
    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

      // +listType=atomic
      repeated string verbs = 1;
    
      // APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
      // the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups.
      // +optional
      // +listType=atomic
      repeated string apiGroups = 3;
    
    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. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      // +listType=set
      repeated string verbs = 5;
    
      // shortNames is a list of suggested short names of the resource.
      // +listType=set
      repeated string shortNames = 6;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all').
      // Clients may use this to simplify acting on multiple resource types at once.
      // +listType=set
      repeated string categories = 7;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top