Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,269 for pattern1 (0.17 sec)

  1. src/cmd/go/internal/test/test.go

    			significantly more expensive.
    	    Sets -cover.
    
    	-coverpkg pattern1,pattern2,pattern3
    	    Apply coverage analysis in each test to packages matching the patterns.
    	    The default is for each test to analyze only the package being tested.
    	    See 'go help packages' for a description of package patterns.
    	    Sets -cover.
    
    	-cpu 1,2,4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpec.java

         * <p>
         * The patterns follow the rules of
         * <a href="https://docs.gradle.org/current/userguide/java_testing.html#test_filtering">test filtering</a>.
         *
         * @param pattern the pattern to select tests.
         * @return this
         */
        TestSpec includePattern(String pattern);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. src/net/http/routing_index.go

    // patterns that we might need to.
    func (idx *routingIndex) possiblyConflictingPatterns(pat *pattern, f func(*pattern) error) (err error) {
    	// Terminology:
    	//   dollar pattern: one ending in "{$}"
    	//   multi pattern: one ending in a trailing slash or "{x...}" wildcard
    	//   ordinary pattern: neither of the above
    
    	// apply f to all the pats, stopping on error.
    	apply := func(pats []*pattern) error {
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternFilterable.java

     */
    public interface PatternFilterable {
    
        /**
         * Returns the set of include patterns.
         *
         * @return The include patterns. Returns an empty set when there are no include patterns.
         */
        Set<String> getIncludes();
    
        /**
         * Returns the set of exclude patterns.
         *
         * @return The exclude patterns. Returns an empty set when there are no exclude patterns.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

            return Pattern.compile(acceptNamePattern);
        }
    
        private Pattern toControlRegexPattern(String pattern) {
            pattern = pattern.replaceAll("\\.", "\\\\.");
    
            // Creates a control regexp pattern where extra revision tokens _must_ have the same value as the original one
            String acceptNamePattern = pattern.replaceFirst("\\[revision]", "(.+)")
                .replaceAll("\\[revision]", "\1");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/priority.go

    		return false
    	}
    	if pattern.Version != AnyVersion && pattern.Version != resource.Version {
    		return false
    	}
    	if pattern.Resource != AnyResource && pattern.Resource != resource.Resource {
    		return false
    	}
    
    	return true
    }
    
    func kindMatches(pattern schema.GroupVersionKind, kind schema.GroupVersionKind) bool {
    	if pattern.Group != AnyGroup && pattern.Group != kind.Group {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  7. src/text/template/helper.go

    	t.init()
    	return parseFS(t, fsys, patterns)
    }
    
    func parseFS(t *Template, fsys fs.FS, patterns []string) (*Template, error) {
    	var filenames []string
    	for _, pattern := range patterns {
    		list, err := fs.Glob(fsys, pattern)
    		if err != nil {
    			return nil, err
    		}
    		if len(list) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

                   "either native MLIR legalization, or TF2XLA fallback "
                   "legalzation, with a preference toward TF2XLA.";
      } else if (tf2xla_fallback_device_type) {
        VLOG(1) << "TF to XLA legalization patterns include all native patterns "
                   "and TF2XLA fallback patterns.";
      } else {
        VLOG(1) << "TF to XLA legalization patterns are native patterns only.";
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/layout/DefaultIvyPatternRepositoryLayout.java

            builder.setLayoutType("Pattern");
            builder.setM2Compatible(m2compatible);
    
            for (String pattern : artifactPatterns) {
                builder.addArtifactPattern(pattern);
                builder.addArtifactResource(baseUri, pattern);
            }
    
            for (String pattern : ivyPatterns) {
                builder.addIvyPattern(pattern);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/search/search.go

    	// If len(Pkgs) == 0 && len(Errs) == 0, the pattern is well-formed but did not
    	// match any packages.
    }
    
    // NewMatch returns a Match describing the given pattern,
    // without resolving its packages or errors.
    func NewMatch(pattern string) *Match {
    	return &Match{pattern: pattern}
    }
    
    // Pattern returns the pattern to be matched.
    func (m *Match) Pattern() string { return m.pattern }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top