Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,706 for groupC (0.1 sec)

  1. pkg/registry/certificates/certificates/strategy_test.go

    					Name:   "bob",
    					UID:    "123",
    					Groups: []string{"group1"},
    					Extra:  map[string][]string{"foo": {"bar"}},
    				},
    			),
    			obj: &certapi.CertificateSigningRequest{},
    			expectedObj: &certapi.CertificateSigningRequest{
    				Spec: certapi.CertificateSigningRequestSpec{
    					Username: "bob",
    					UID:      "123",
    					Groups:   []string{"group1"},
    					Extra:    map[string]certapi.ExtraValue{"foo": {"bar"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/TaskReportTask.java

            if (this.groups == null) {
                this.groups = new ArrayList<>();
            }
            this.groups.addAll(groups);
        }
    
        /**
         * Returns the task groups to be displayed.
         *
         * Task groups can be added via command-line option '--groups'.
         *
         * @since 7.5
         */
        @Incubating
        @Console
        public List<String> getDisplayGroups() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/DefaultGroupTaskReportModel.java

            };
            final SetMultimap<String, TaskDetails> groups = TreeMultimap.create(keyComparator, taskComparator);
            for (String group : model.getGroups()) {
                groups.putAll(group, model.getTasksForGroup(group));
            }
            String otherGroupName = findOtherGroup(groups.keySet());
            if (otherGroupName != null && groups.keySet().contains(DEFAULT_GROUP)) {
                groups.putAll(otherGroupName, groups.removeAll(DEFAULT_GROUP));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 08 21:50:18 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/validation/missing-groupId-pom.xml

    Benjamin Bentmann <******@****.***> 1243457293 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 27 20:48:13 UTC 2009
    - 913 bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/outbound-owner-groups-exclude.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. releasenotes/notes/fix-workload-group-labels.yaml

    Douglas Reid <******@****.***> 1633375461 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 04 19:24:21 UTC 2021
    - 184 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go

    	}
    
    	groups, err := resourceconfig.ParseGroups(s.RuntimeConfig)
    	if err != nil {
    		return append(errors, err)
    	}
    
    	for _, registry := range registries {
    		// filter out known groups
    		groups = unknownGroups(groups, registry)
    	}
    	if len(groups) != 0 {
    		errors = append(errors, fmt.Errorf("unknown api groups %s", strings.Join(groups, ",")))
    	}
    
    	return errors
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/HasFinalizers.java

        protected boolean isCanCancel(Collection<FinalizerGroup> groups) {
            // A node cannot be cancelled if it belongs to a finalizer group that contains a finalized node that has started execution or that cannot be cancelled, and whose finalizer
            // can potentially still execute
            // So visit all the finalizer groups reachable from groups that the node belongs to and the finalized nodes of those groups
            Set<FinalizerGroup> seen = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 16 22:19:21 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/users/users_linux.go

    		}
    		u = append(u, uc)
    	skipUser:
    	}
    	// validate groups
    	for _, gc := range groupsToCreateSpec {
    		for _, group := range groups {
    			if gc.name != group.name {
    				continue
    			}
    			if group.id < limits.minGID || group.id > limits.maxGID {
    				return nil, nil, errors.Errorf("GID %d for user %q is outside the system UID range: %d - %d",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/testrestmapper/test_restmapper.go

    		}
    	}
    	for _, group := range groups {
    		resourcePriority = append(resourcePriority, schema.GroupVersionResource{Group: group, Version: meta.AnyVersion, Resource: meta.AnyResource})
    		kindPriority = append(kindPriority, schema.GroupVersionKind{Group: group, Version: meta.AnyVersion, Kind: meta.AnyKind})
    	}
    
    	return resourcePriority, kindPriority
    }
    
    func newRESTMapper(group string, scheme *runtime.Scheme) meta.RESTMapper {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 09:07:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top