Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 86 for groupOne (0.16 sec)

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

    // +k8s:prerelease-lifecycle-gen:deprecated=1.17
    // +k8s:prerelease-lifecycle-gen:removed=1.22
    // +k8s:prerelease-lifecycle-gen:replacement=rbac.authorization.k8s.io,v1,Role
    
    // Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
    // Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
    type Role struct {
    	metav1.TypeMeta `json:",inline"`
    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. src/regexp/syntax/doc.go

    Implementation restriction: The counting forms x{n,m}, x{n,}, and x{n}
    reject forms that create a minimum or maximum repetition count above 1000.
    Unlimited repetitions are not subject to this restriction.
    
    Grouping:
    
    	(re)           numbered capturing group (submatch)
    	(?P<name>re)   named & numbered capturing group (submatch)
    	(?<name>re)    named & numbered capturing group (submatch)
    	(?:re)         non-capturing group
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_fr.properties

    labels.role_configuration	=	Rôle
    labels.role_list_name	=	Nom
    labels.role_name	=	Nom
    labels.role_title_details	=	Rôle
    labels.group_configuration	=	Groupe
    labels.group_list_name	=	Nom
    labels.group_name	=	Nom
    labels.group_title_details	=	Groupe
    labels.related_content_configuration	=	Contenu connexe
    labels.related_content_content	=	Contenu
    labels.related_content_list_term	=	Terme
    labels.related_content_term	=	Terme
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouper.java

                .collect(Collectors.toList());
            List<String> shortest = splitGroups.get(0);
            if (shortest.size() < 2) {
                // we need at least a prefix of 2 elements, like "com.mycompany", to perform grouping
                return Collections.emptyList();
            }
            List<List<String>> commonPrefixes = new ArrayList<>();
            List<List<String>> remainder = Lists.newArrayList(splitGroups);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. cmd/sts-handlers_test.go

    		})
    		if err != nil {
    			c.Fatalf("export %d: Unable to attach policy: %v", caseNum, err)
    		}
    	}
    
    	for groupDN, policies := range content.ldapGroupPolicyMappings {
    		_, err := s.adm.AttachPolicyLDAP(ctx, madmin.PolicyAssociationReq{
    			Policies: policies,
    			Group:    groupDN,
    		})
    		if err != nil {
    			c.Fatalf("export %d: Unable to attach group policy: %v", caseNum, err)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                for (final SearchResult srcrslt : result) {
                    final String groupDn = srcrslt.getNameInNamespace();
                    if (logger.isDebugEnabled()) {
                        logger.debug("groupDn: {}", groupDn);
                    }
                    updateSearchRoles(roleSet, groupDn);
                }
            });
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            } catch (NoSuchMethodException e) {
                if (value) {
                    throw new InvalidUserDataException("Grouping tests by instances is not supported by this version of TestNG.");
                }
            }
        }
    
        private void setThreadPoolFactoryClass(TestNG testNg, String threadPoolFactoryClass) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

                hasChild('group:b:1.0') {
                    noMoreChildren()
                }
                hasChild('group:d:1.0') {
                    noMoreChildren()
                }
                hasChild('group:e:1.0') {
                    noMoreChildren()
                }
                noMoreChildren()
            }
    
            when:
            sorted = reporter.convertToRenderableItems(dependencies, true)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/nodes_test.go

    type test struct {
    	nodetyp string
    	snippet string
    }
    
    var decls = []test{
    	// The position of declarations is always the
    	// position of the first token of an individual
    	// declaration, independent of grouping.
    	{"ImportDecl", `import @"math"`},
    	{"ImportDecl", `import @mymath "math"`},
    	{"ImportDecl", `import @. "math"`},
    	{"ImportDecl", `import (@"math")`},
    	{"ImportDecl", `import (@mymath "math")`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

            !sort(l).is(l)
    
            and:
            sort([2, 1, 3]) == [1, 2, 3]
            sort([2, 1, 3] as Set) == [1, 2, 3]
            sort([]) == []
            sort([] as Set) == []
        }
    
        def "grouping"() {
            expect:
            groupBy([1, 2, 3], transformer { "a" }) == ["a": [1, 2, 3]]
            groupBy(["a", "b", "c"], transformer { it.toUpperCase() }) == ["A": ["a"], "B": ["b"], "C": ["c"]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top