Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 165 for wildCards (0.17 sec)

  1. src/cmd/go/testdata/script/mod_get_wild.txt

    # This test covers a crazy edge-case involving wildcards and multiple passes of
    # patch-upgrades, but if we get it right we probably get many other edge-cases
    # right too.
    
    go list -m all
    stdout '^example.net/a v0.1.0 '
    ! stdout '^example.net/b '
    
    
    # Requesting pattern example.../b by itself fails: there is no such module
    # already in the build list, and the wildcard in the first element prevents us
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/ConfigurationHooksIntegrationTest.groovy

    apply plugin: 'java'
    apply plugin: 'idea'
    
    idea {
        module {
            iml {
                whenMerged { it.jdkName = '1.44' }
            }
        }
    
        project {
            ipr {
                whenMerged { it.wildcards += '!?*.ruby' }
            }
        }
    }
    '''
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('1.44')
    
            def ipr = getFile([:], 'root.ipr').text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PatternStepFactory.java

                }
            }
            if (endLiteral == source.length()) {
                if (endPrefixWildcard == 0) {
                    // No wildcards: matches #5 above
                    return new FixedPatternStep(source, caseSensitive);
                }
                // One or more '*' followed by one or more non-wildcard: matches #2 above
                return new HasSuffixPatternStep(source.substring(endPrefixWildcard), caseSensitive);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/IncludesArtifactFilter.java

            String id = artifact.getGroupId() + ":" + artifact.getArtifactId();
    
            boolean matched = false;
            for (Iterator<String> i = patterns.iterator(); i.hasNext() & !matched; ) {
                // TODO what about wildcards? Just specifying groups? versions?
                if (id.equals(i.next())) {
                    matched = true;
                }
            }
            return matched;
        }
    
        public List<String> getPatterns() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. internal/s3select/sql/jsonpath.go

    	errWildcardObjectLookup       = errors.New("Object wildcard used on non-object value")
    	errWildcardArrayLookup        = errors.New("Array wildcard used on non-array value")
    	errWildcardObjectUsageInvalid = errors.New("Invalid usage of object wildcard")
    )
    
    // jsonpathEval evaluates a JSON path and returns the value at the path.
    // If the value should be considered flat (from wildcards) any array returned should be considered individual values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/net/http/routing_index.go

    	segments map[routingIndexKey][]*pattern
    	// All patterns that end in a multi wildcard (including trailing slash).
    	// We do not try to be clever about indexing multi patterns, because there
    	// are unlikely to be many of them.
    	multis []*pattern
    }
    
    type routingIndexKey struct {
    	pos int    // 0-based segment position
    	s   string // literal, or empty for wildcard
    }
    
    func (idx *routingIndex) addPattern(pat *pattern) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. src/cmd/gofmt/rewrite.go

    // of wildcards and pos used as the position of tokens from the pattern.
    // if m == nil, subst returns a copy of pattern and doesn't change the line
    // number information.
    func subst(m map[string]reflect.Value, pattern reflect.Value, pos reflect.Value) reflect.Value {
    	if !pattern.IsValid() {
    		return reflect.Value{}
    	}
    
    	// Wildcard gets replaced with map value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputsTest.kt

            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo1/2bar3/4baz/abc.xml")))
        }
    
        @Test
        fun `recognizes double-asterisk wildcards across path segments`() {
            val instance = createFromPaths(listOf("foo/**/bar/**"))
            assertTrue(instance.isFileSystemCheckIgnoredFor(File("foo/one/two/bar/three")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. docs/debugging/README.md

    ```
    
    ### Using xl-meta
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 25 01:17:53 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_goroot_symlink.txt

    stdout '^encoding/binary: '$WORK${/}lib${/}goroot${/}src${/}encoding${/}binary'$'
    
    # Most path lookups in GOROOT are not sensitive to symlinks. However, patterns
    # involving '...' wildcards must use Walk to check the GOROOT tree, which makes
    # them more sensitive to symlinks (because Walk doesn't follow them).
    #
    # So we check such a pattern to confirm that it works and reports a path relative
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top