Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,269 for pattern1 (0.14 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestFilter.java

         * Test name patterns can be appended via {@link #excludeTestsMatching(String)} or set via
         * {@link #setExcludePatterns(String...)}.
         *
         * @return included test name patterns
         * @since 5.0
         */
        @Input
        Set<String> getExcludePatterns();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. src/net/http/routing_index_test.go

    	"testing"
    )
    
    func TestIndex(t *testing.T) {
    	// Generate every kind of pattern up to some number of segments,
    	// and compare conflicts found during indexing with those found
    	// by exhaustive comparison.
    	patterns := generatePatterns()
    	var idx routingIndex
    	for i, pat := range patterns {
    		got := indexConflicts(pat, &idx)
    		want := trueConflicts(pat, patterns[:i])
    		if !slices.Equal(got, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PatternMatcherFactory.java

            if (pattern.endsWith("/") || pattern.endsWith("\\")) {
                pattern = pattern + "**";
            }
            List<String> parts = PATH_SPLITTER.splitToList(pattern);
            return compile(parts, 0, caseSensitive);
        }
    
        private static PathMatcher compile(List<String> parts, int startIndex, boolean caseSensitive) {
            if (startIndex >= parts.size()) {
                return END_OF_PATH_MATCHER;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize.cc

      RewritePatternSet patterns(&ctx);
      patterns.add<StableHloQuantization, StableHloQuantizationReverse>(&ctx);
    
      PopulateCommonQuantizationPatterns(ctx, patterns,
                                         enable_per_channel_quantized_weight_);
    
      // Quantize all quantizable ops, including ops that are not compute-heavy.
      PopulateAllQuantizablePatterns(ctx, patterns);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 07:08:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/normalization/RuntimeClasspathNormalization.java

     *
     * <p>Several methods accept a file pattern to selectively normalize files.  Patterns may include:</p>
     *
     * <ul>
     *
     * <li>'*' to match any number of characters
     *
     * <li>'?' to match any single character
     *
     * <li>'**' to match any number of directories or files
     *
     * </ul>
     *
     * <p>Either '/' or '\' may be used in a pattern to separate directories. Patterns ending with '/' or '\' will have '**'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:43:32 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultTestSpec.java

            return this;
        }
    
        @Override
        public TestSpec includePattern(String pattern) {
            return includePatterns(Collections.singletonList(pattern));
        }
    
        @Override
        public TestSpec includePatterns(Collection<String> patterns) {
            this.patterns.addAll(patterns);
            return this;
        }
    
        @Override
        public List<String> getPackages() {
            return packages;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/templates/precompiled-script-plugin-utils/src/main/java/com/example/ReadmeVerificationTask.java

            for (String requiredSection : getReadmePatterns().get()) {
                Pattern pattern = Pattern.compile(requiredSection, Pattern.MULTILINE);
                if (!pattern.matcher(readmeContents).find()) {
                    throw new RuntimeException("README should contain section: " + pattern.pattern());
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/net/http/server_test.go

    		paths121 []string // paths that matched the pattern in Go 1.21.
    	}{
    		{
    			"/a", // this pattern matches a path that unescapes to "/a"
    			[]string{"/a", "/%61"},
    			[]string{"/a", "/%61"},
    		},
    		{
    			"/%62", // patterns are unescaped by segment; matches paths that unescape to "/b"
    			[]string{"/b", "/%62"},
    			[]string{"/%2562"}, // In 1.21, patterns were not unescaped but paths were.
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 13:54:22 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/govcs.txt

    # bad patterns are reported (for more bad patterns, see TestGOVCSErrors)
    env GOVCS='git'
    ! go get github.com/google/go-cmp
    stderr '^go: github.com/google/go-cmp: malformed entry in GOVCS \(missing colon\): "git"$'
    
    env GOVCS=github.com:hg,github.com:git
    ! go get github.com/google/go-cmp
    stderr '^go: github.com/google/go-cmp: unreachable pattern in GOVCS: "github.com:git" after "github.com:hg"$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h

    // Adds the HLO to TF rewrite patterns to the specified pattern list.
    void PopulateLegalizeHloToTfPatterns(RewritePatternSet* patterns,
                                         MLIRContext* context);
    
    // Adds the HLO to TFLite rewrite patterns to the specified pattern list.
    void PopulateLegalizeHloToTFLitePatterns(RewritePatternSet* patterns,
                                             MLIRContext* context);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top