Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,706 for groupC (0.24 sec)

  1. docs/sts/ldap.md

    ## Configuring AD/LDAP on MinIO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/EqualsTester.java

     *       groups and the items within equality groups are numbered starting from 1. When either a
     *       constructor argument or an equal object is provided, that becomes group 1.
     * </ul>
     *
     * @author Jim McMaster
     * @author Jige Yu
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class EqualsTester {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                    builder.append(separator);
                }
                String group1 = matcher.group(1).toLowerCase();
                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: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenComponentMetadataRulesStatusIntegrationTest.groovy

        }
    }
    """
        }
    
        def "snapshot and release versions have correct status"() {
            given:
            repo.module('group1', 'projectA', '1.0').publish().allowAll()
            repo.module('group2', 'projectB', '2.0-SNAPSHOT').publish().allowAll()
            def c = repo.module('group2', 'projectC', '12-SNAPSHOT').publish().allowAll()
    
            and:
            buildFile.text =
    """
    $repoDeclaration
    configurations { compile }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. releasenotes/notes/disable-fs-group-injection.yaml

    Faseela K <******@****.***> 1651883509 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 07 00:31:49 UTC 2022
    - 273 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentDependencyResolutionIntegrationTest.groovy

                        doLast {
                            files.files
                        }
                    }
                }
    
            '''
            int groups = 20
            int iterations = 100
            groups.times { group ->
                def pfile = file("project$group/build.gradle")
                pfile << """
    
                    dependencies {
                """
                iterations.times { i ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/EqualsTester.java

     *       groups and the items within equality groups are numbered starting from 1. When either a
     *       constructor argument or an equal object is provided, that becomes group 1.
     * </ul>
     *
     * @author Jim McMaster
     * @author Jige Yu
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public final class EqualsTester {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:11:50 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    		//   groups[index-1].Priority <= pod priority < groups[index].Priority
    		// in which case we want to pick lower one (i.e index-1)
    		if index == len(groups) {
    			index = len(groups) - 1
    		} else if index < 0 {
    			index = 0
    		} else if index > 0 && groups[index].Priority > priority {
    			index--
    		}
    
    		groups[index].Pods = append(groups[index].Pods, pod)
    	}
    	return groups
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SidResolver.java

         * target server where keys are SIDs representing an account and each value
         * is an ArrayList of SIDs represents the local groups that the account is
         * a member of.
         * <p/>
         * This method is designed to assist with computing access control for a
         * given user when the target object's ACL has local groups. Local groups
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/ExcludeRuleNotationConverterTest.groovy

            d.module == 'aModule'
            !d.group
        }
    
        def "with group and module"() {
            when:
            ExcludeRule d = parser.parseNotation([group: 'aGroup', module: 'aModule']);
            then:
            d != null;
            d instanceof DefaultExcludeRule
            d.group == 'aGroup'
            d.module == 'aModule'
        }
    
        def "with no group and no module InvalidUserDataException is thrown"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 2.6K bytes
    - Viewed (0)
Back to top