Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 96 for caseInsensitive (0.61 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemNodeWithChildrenTest.groovy

            1 * selectedChild.getSnapshot(searchedPath.pathFromChild(selectedChildPath), CASE_SENSITIVE) >> Optional.ofNullable(foundSnapshot)
        }
    
        def getDescendantNodeOfSelectedChild(@Nullable FileSystemNode foundNode) {
            1 * selectedChild.getNode(searchedPath.pathFromChild(selectedChildPath), CASE_SENSITIVE) >> Optional.ofNullable(foundNode)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. 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)
  3. istioctl/pkg/describe/testdata/describe/http_config.json

                      "*"
                    ],
                    "routes": [
                      {
                        "match": {
                          "path": "/productpage",
                          "case_sensitive": true
                        },
                        "route": {
                          "cluster": "outbound|9080||productpage.default.svc.cluster.local",
                          "timeout": "0s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VfsRelativePathTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot
    
    import spock.lang.Specification
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE
    
    class VfsRelativePathTest extends Specification {
    
        def "convert absolute path '#absolutePath' to relative path '#relativePath'"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/JvmVendor.java

                this.indicatorPattern = Pattern.compile(indicatorString, Pattern.CASE_INSENSITIVE);
                this.displayName = displayName;
            }
    
            KnownJvmVendor(String indicatorString, String pattern, String displayName) {
                this.indicatorString = indicatorString;
                this.indicatorPattern = Pattern.compile(pattern, Pattern.CASE_INSENSITIVE);
                this.displayName = displayName;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 02 23:55:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java

                if (envVars == null) {
                    Properties tmp = new Properties();
                    boolean caseSensitive = !Os.IS_WINDOWS;
                    for (Map.Entry<String, String> entry : System.getenv().entrySet()) {
                        String key = "env."
                                + (caseSensitive ? entry.getKey() : entry.getKey().toUpperCase(Locale.ENGLISH));
                        tmp.setProperty(key, entry.getValue());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/test/groovy/org/gradle/api/tasks/util/PatternSetTest.groovy

        }
    
        def patternSetsAreEqualWhenAllPropertiesAreEqual() {
            expect:
            strictlyEquals(new PatternSet(), new PatternSet())
            strictlyEquals(new PatternSet(caseSensitive: false), new PatternSet(caseSensitive: false))
            strictlyEquals(new PatternSet(includes: ['i']), new PatternSet(includes: ['i']))
            strictlyEquals(new PatternSet(excludes: ['e']), new PatternSet(excludes: ['e']))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 12:37:12 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            when:
            spec.caseSensitive = false
            spec.includeEmptyDirs = false
            spec.duplicatesStrategy = DuplicatesStrategy.EXCLUDE
            setter.call(spec, objectFactory)
            spec.filteringCharset = 'UTF8'
    
            then:
            !spec.caseSensitive
            !spec.includeEmptyDirs
            spec.duplicatesStrategy == DuplicatesStrategy.EXCLUDE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/MacOsFileSystemTest.groovy

    @Requires(UnitTestPreconditions.MacOs)
    class MacOsFileSystemTest extends Specification {
        def fs = NativeServicesTestFixture.instance.get(FileSystem)
    
        def "is not case sensitive"() {
            expect:
            !fs.caseSensitive
        }
    
        def "can create symbolic link"() {
            expect:
            fs.canCreateSymbolicLink()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/main/resources/crawler/transformer.xml

    		<property name="childUrlRuleMap">htmlUrlRuleMap</property>
    		<!--
    		<property name="invalidUrlPattern">@java.util.regex.Pattern@compile("^\\s*javascript:|^\\s*mailto:|^\\s*irc:|^\\s*skype:|^\\s*callto:",@java.util.regex.Pattern@CASE_INSENSITIVE)</property>
    		 -->
    		<property name="convertUrlMap">
    			{"feed:" : "http:"}
    		</property>
    		<!-- segment -->
    		<postConstruct name="addFieldRule">
    			<arg>"title"</arg>
    			<arg>"//TITLE"</arg>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jan 10 03:35:10 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top