Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,269 for pattern1 (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

         *
         * Patterns added in this way will be in addition to any layout-based patterns added via {@link #setUrl(Object)}.
         *
         * @param pattern The artifact pattern.
         */
        void artifactPattern(String pattern);
    
        /**
         * Adds an independent pattern that will be used to locate ivy files in this repository.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/list_ambiguous_path.txt

    # See golang.org/issue/34653.
    
    # A single pattern for a package ending in '.go'.
    go list ./foo.go
    stdout '^test/foo.go$'
    
    # Multiple patterns for packages including one ending in '.go'.
    go list ./bar ./foo.go
    stdout '^test/bar$'
    stdout '^test/foo.go$'
    
    # A single pattern for a Go file.
    go list ./a.go
    stdout '^command-line-arguments$'
    
    # A single typo-ed pattern for a Go file. This should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyPatternRepositoryLayout.java

        /**
         * Adds an Ivy artifact pattern to define where artifacts are located in this repository.
         * @param pattern The ivy pattern
         */
        void artifact(String pattern);
    
        /**
         * Adds an Ivy pattern to define where ivy files are located in this repository.
         * @param pattern The ivy pattern
         */
        void ivy(String pattern);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 11 10:01:04 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/CopySpec.java

         * This is equivalent to using eachFile() and selectively applying a configuration based on the file's path.
         *
         * @param patterns Ant-style patterns used to match against files' relative paths
         * @param action action called for the FileCopyDetails of each file matching pattern
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

            for (TestPattern pattern : patterns) {
                if (pattern.matchesClass(fullQualifiedName)) {
                    return true;
                }
            }
            return false;
        }
    
        private boolean mayMatchClass(List<TestPattern> patterns, String fullQualifiedName) {
            for (TestPattern pattern : patterns) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_perm.txt

    ! stderr 'matched no packages'
    
    # Check filesystem-relative patterns.
    
    ! go list ./...
    ! stdout '^example.com/noread$'
    ! stderr 'matched no packages'
    stderr '^pattern ./...: '
    
    ! go list ./noread/...
    ! stdout '^example.com/noread$'
    ! stderr 'matched no packages'
    stderr '^pattern ./noread/...: '
    
    
    # Check module-prefix patterns.
    
    ! go list example.com/...
    ! stdout '^example.com/noread$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. src/net/http/routing_tree.go

    	// If n is an interior node (which means it has a nil pattern),
    	// then we failed to match.
    	if path == "" {
    		if n.pattern == nil {
    			return nil, nil
    		}
    		return n, matches
    	}
    	// Get the first segment of path.
    	seg, rest := firstSegment(path)
    	// First try matching against patterns that have a literal for this position.
    	// We know by construction that such patterns are more specific than those
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/util/match/match.go

    }
    
    func MatchesGlobs(matchString string, patterns []string) bool {
    	if len(patterns) == 0 {
    		return true
    	}
    	if len(patterns) == 1 {
    		p := strings.TrimSpace(patterns[0])
    		if p == "" || p == "*" {
    			return true
    		}
    	}
    
    	for _, p := range patterns {
    		if MatchesGlob(matchString, p) {
    			return true
    		}
    	}
    	return false
    }
    
    func MatchesGlob(matchString, pattern string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. testing/internal-architecture-testing/src/main/java/org/gradle/internal/architecture/PackageCycleTest.java

            String patterns = System.getProperty("package.cycle.exclude.patterns");
            return Arrays.stream(patterns.split(","))
                .map(String::trim);
        }
    
        private static Set<String> ignoredPackagesForCycles() {
            return excludePatterns()
                .filter(pattern -> !isClassNamePattern(pattern))
                .map(pattern -> pattern.replace("/**", ".."))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/internal/pkgpattern/pat_test.go

    		return MatchSimplePattern(pattern)(name)
    	})
    }
    
    var treeCanMatchPatternTests = `
    	pattern ...
    	match foo
    
    	pattern net
    	match net
    	not net/http
    
    	pattern net/http
    	match net net/http
    
    	pattern net...
    	match net netchan net/http
    	not not/http not/net/http
    
    	pattern net/...
    	match net net/http
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
Back to top