Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,706 for groupC (0.18 sec)

  1. internal/logger/targets.go

    	return tgts, errs
    }
    
    // Split targets into two groups:
    //
    //	group1 contains all targets of type t
    //	group2 contains the remaining targets
    func splitTargets(targets []Target, t types.TargetType) (group1 []Target, group2 []Target) {
    	for _, target := range targets {
    		if target.Type() == t {
    			group1 = append(group1, target)
    		} else {
    			group2 = append(group2, target)
    		}
    	}
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/AggregateMultiProjectTaskReportModelTest.groovy

            model.build()
    
            then:
            model.groups == ([group] + groups - null) as Set
    
            where:
            group    | groups
            'group1' | []
            'group2' | []
            null     | ['group1']
            null     | ['group1', 'group2']
            'group1' | ['group2']
        }
    
        def "handles group which is not present in each project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 31 16:45:11 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/group.go

    		serializer: serializer,
    		group:      group,
    	}
    }
    
    func (s *APIGroupHandler) WebService() *restful.WebService {
    	mediaTypes, _ := negotiation.MediaTypesForSerializer(s.serializer)
    	ws := new(restful.WebService)
    	ws.Path(APIGroupPrefix + "/" + s.group.Name)
    	ws.Doc("get information of a group")
    	ws.Route(ws.GET("/").To(s.handle).
    		Doc("get information of a group").
    		Operation("getAPIGroup").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 20:38:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. hack/verify-api-groups.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This scripts locates all API groups by their packages and versions
    # Usage: `hack/verify-api-groups.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    register_files=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-groups.yaml

    groups:
    - rules:
      - matches:
        - destinationPorts:
          - 80
      - matches:
        - namespaces:
          - exact: only-l4-ns
          principals:
          - exact: only-l4-principals
    - rules:
      - matches:
        - namespaces:
          - exact: when-l4-ns
      - matches:
        - sourceIps:
          - address: CgoKCg==
            length: 32
    name: groups
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 345 bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/deny-groups.yaml

    action: DENY
    groups:
    - rules:
      - matches:
        - destinationPorts:
          - 80
      - matches:
        - namespaces:
          - exact: from-mix-ns
          principals:
          - exact: from-mix-principal
    - rules:
      - matches:
        - destinationPorts:
          - 80
      - matches:
        - namespaces:
          - exact: to-mix-ns
          principals:
          - exact: to-mix-principal
    - rules:
      - matches:
        - destinationPorts:
          - 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 955 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    				Spec: authorizationv1beta1.SubjectAccessReviewSpec{
    					User:   "jane",
    					UID:    "1",
    					Groups: []string{"group1", "group2"},
    					ResourceAttributes: &authorizationv1beta1.ResourceAttributes{
    						Verb:        "GET",
    						Namespace:   "kittensandponies",
    						Group:       "group3",
    						Version:     "v7beta3",
    						Resource:    "pods",
    						Subresource: "proxy",
    						Name:        "my-pod",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

                }
                String group1 = matcher.group(1).toLowerCase(Locale.ROOT);
                String group2 = matcher.group(2);
                if (group2.length() == 0) {
                    builder.append(group1);
                } else {
                    if (group1.length() > 1) {
                        builder.append(group1.substring(0, group1.length() - 1));
                        builder.append(separator);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication_test.go

    						ImpersonateGroups:    []string{"user-a-group1", "user-a-group2"},
    						ImpersonateUserExtra: map[string][]string{"foo": {"bar", "baz", "etc"}},
    					},
    				},
    			},
    			expected: rest.Config{
    				BearerToken: "foo",
    				Impersonate: rest.ImpersonationConfig{
    					UserName: "user-a",
    					UID:      "user-a-uid-1111",
    					Groups:   []string{"user-a-group1", "user-a-group2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

        }
    
        void "includes and excludes groups"() {
            given:
            _ * spec.getIncludeGroups() >> ['group1', 'group2']
            _ * spec.getExcludeGroups() >> ['group3']
    
            when: process(ATestNGClassWithGroups)
    
            then:
            1 * processor.started({ it.id == 1 } , _)
            1 * processor.started({ it.id == 2 } , _)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top