Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for caseInsensitive (0.22 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSetAntBuilderDelegate.java

        private final Set<String> includes;
        private final Set<String> excludes;
        private final boolean caseSensitive;
    
        public PatternSetAntBuilderDelegate(Set<String> includes, Set<String> excludes, boolean caseSensitive) {
            this.includes = includes;
            this.excludes = excludes;
            this.caseSensitive = caseSensitive;
        }
    
        private static Object logical(Object node, String op, final Action<Object> withNode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:48 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/HasSuffixPatternStep.java

     */
    public class HasSuffixPatternStep implements PatternStep {
        private final String suffix;
        private final boolean caseSensitive;
        private final int suffixLength;
        private final int prefixLength;
    
        public HasSuffixPatternStep(String suffix, boolean caseSensitive) {
            this(suffix, caseSensitive, 0);
        }
    
        // Used by HasPrefixAndSuffixPatternStep to ensure the suffix isn't matching any part of the prefix.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternSet.java

            this.excludes = null;
            return exclude(excludes);
        }
    
    
        public boolean isCaseSensitive() {
            return caseSensitive;
        }
    
        public void setCaseSensitive(boolean caseSensitive) {
            this.caseSensitive = caseSensitive;
        }
    
        /*
        This can't be called just include, because it has the same erasure as include(Iterable<String>).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/UnknownFileSystemNodeTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot
    
    
    import static org.gradle.internal.snapshot.CaseSensitivity.CASE_SENSITIVE
    
    class UnknownFileSystemNodeTest extends AbstractIncompleteFileSystemNodeTest<UnknownFileSystemNode> {
    
        @Override
        protected UnknownFileSystemNode createInitialRootNode(ChildMap<FileSystemNode> children) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/HasPrefixPatternStep.java

    public class HasPrefixPatternStep implements PatternStep {
        private final String prefix;
        private final boolean caseSensitive;
        private final int prefixLength;
    
        public HasPrefixPatternStep(String prefix, boolean caseSensitive) {
            this.prefix = prefix;
            prefixLength = prefix.length();
            this.caseSensitive = caseSensitive;
        }
    
        @Override
        public String toString() {
            return "{prefix: " + prefix + "}";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecResolutionTest.groovy

            then:
            childResolver.caseSensitive
            childResolver.patternSet.caseSensitive
    
            when:
            parentSpec.caseSensitive = false
    
            then:
            !childResolver.caseSensitive
            !childResolver.patternSet.caseSensitive
    
            when:
            child.caseSensitive = true
    
            then:
            childResolver.caseSensitive
            childResolver.patternSet.caseSensitive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemLeafSnapshotTest.groovy

            expect:
            initialRoot.store(childAbsolutePath("some/child"), CASE_SENSITIVE, snapshot, changeListener) == initialRoot
            removedSnapshots.empty
            addedSnapshots.empty
        }
    
        def "invalidate removes the node"() {
            expect:
            initialRoot.invalidate(childAbsolutePath("some/child"), CASE_SENSITIVE, changeListener) == Optional.empty()
            removedSnapshots == [initialRoot]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. istioctl/pkg/describe/testdata/describe/tls_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
    - 8K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java

                Pattern.compile("^user-agent:\\s*([^\\t\\n\\x0B\\f\\r]+)\\s*$", Pattern.CASE_INSENSITIVE);
    
        protected static final Pattern DISALLOW_RECORD = Pattern.compile("^disallow:\\s*([^\\s]*)\\s*$", Pattern.CASE_INSENSITIVE);
    
        protected static final Pattern ALLOW_RECORD = Pattern.compile("^allow:\\s*([^\\s]*)\\s*$", Pattern.CASE_INSENSITIVE);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/HasPrefixAndSuffixPatternStep.java

        private final HasSuffixPatternStep suffixMatch;
    
        public HasPrefixAndSuffixPatternStep(String prefix, String suffix, boolean caseSensitive) {
            prefixMatch = new HasPrefixPatternStep(prefix, caseSensitive);
            suffixMatch = new HasSuffixPatternStep(suffix, caseSensitive, prefix.length());
        }
    
        @Override
        public String toString() {
            return "{prefix: " + prefixMatch + " suffix: " + suffixMatch + "}";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top