Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for caseInsensitive (0.4 sec)

  1. .idea/inspectionProfiles/Gradle.xml

          <replaceConfiguration name="Join combined with collect" suppressId="join_with_collect" problemDescriptor="Use a `join` method overload" text="$callJoin$($sep$, $callCollect$($src$, $transform$))" recursive="false" caseInsensitive="false" type="JAVA" pattern_context="default" reformatAccordingToStyle="true" shortenFQN="true" useStaticImport="true" replacement="org.gradle.util.internal.CollectionUtils.join($sep$, $src$, $transform$)">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

        public static <V, T extends Collection<? super V>> T addToCollection(T dest, Iterable<? extends V>... srcs) {
            return addToCollection(dest, false, srcs);
        }
    
        public static Comparator<String> caseInsensitive() {
            return new Comparator<String>() {
                @Override
                public int compare(String o1, String o2) {
                    int diff = o1.compareToIgnoreCase(o2);
                    if (diff != 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/os/exec/exec.go

    }
    
    // dedupEnvCase is dedupEnv with a case option for testing.
    // If caseInsensitive is true, the case of keys is ignored.
    // If nulOK is false, items containing NUL characters are allowed.
    func dedupEnvCase(caseInsensitive, nulOK bool, env []string) ([]string, error) {
    	// Construct the output in reverse order, to preserve the
    	// last occurrence of each key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

        public static <V, T extends Collection<? super V>> T addToCollection(T dest, Iterable<? extends V>... srcs) {
            return addToCollection(dest, false, srcs);
        }
    
        public static Comparator<String> caseInsensitive() {
            return new Comparator<String>() {
                @Override
                public int compare(String o1, String o2) {
                    int diff = o1.compareToIgnoreCase(o2);
                    if (diff != 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSpecFactory.java

            CASE_SENSITIVE(true),
            CASE_INSENSITIVE(false);
    
            CaseSensitivity(boolean caseSensitive) {
                this.caseSensitive = caseSensitive;
            }
    
            public static CaseSensitivity forCaseSensitive(boolean caseSensitive) {
                return caseSensitive
                    ? CASE_SENSITIVE
                    : CASE_INSENSITIVE;
            }
    
            private final boolean caseSensitive;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/LauncherServices.java

    import org.gradle.tooling.internal.provider.continuous.ContinuousBuildActionExecutor;
    
    import java.util.List;
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_INSENSITIVE;
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE;
    
    public class LauncherServices extends AbstractGradleModuleServices {
        @Override
        public void registerGlobalServices(ServiceRegistration registration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 13:01:53 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestFiles.java

    import org.gradle.util.TestUtil;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Collection;
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_INSENSITIVE;
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE;
    import static org.gradle.util.TestUtil.objectFactory;
    import static org.gradle.util.TestUtil.providerFactory;
    
    public class TestFiles {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.util.Optional;
    import java.util.function.Predicate;
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_INSENSITIVE;
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE;
    
    public class VirtualFileSystemServices extends AbstractGradleModuleServices {
    
        private static final Logger LOGGER = LoggerFactory.getLogger(VirtualFileSystemServices.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

            }
        }
    
        private void initializeCaseSensitive() {
            if (caseSensitive == null) {
    
                String content = generateUniqueContent();
                File file = null;
                try {
                    checkJavaIoTmpDirExists();
                    file = createFile(content);
                    caseSensitive = probeCaseSensitive(file, content);
                } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingNotSupportedVirtualFileSystemTest.groovy

    import spock.lang.Specification
    
    class WatchingNotSupportedVirtualFileSystemTest extends Specification {
        def emptySnapshotHierarchy = DefaultSnapshotHierarchy.empty(CaseSensitivity.CASE_SENSITIVE)
        def nonEmptySnapshotHierarchy = Stub(SnapshotHierarchy) {
            empty() >> emptySnapshotHierarchy
        }
        def watchingNotSupportedVfs = new WatchingNotSupportedVirtualFileSystem(nonEmptySnapshotHierarchy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top