Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,272 for pattern1 (1.6 sec)

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    // Assert op pattern.
    //===----------------------------------------------------------------------===//
    
    // HLO and XLA doesn't support Assertions.
    def LowerAssert : Pattern<(TF_AssertOp $condition, $data, $summarize), []>;
    
    //===----------------------------------------------------------------------===//
    // Binary op patterns.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. src/html/template/template.go

    // It accepts a list of glob patterns.
    // (Note that most file names serve as glob patterns matching only themselves.)
    func (t *Template) ParseFS(fs fs.FS, patterns ...string) (*Template, error) {
    	return parseFS(t, fs, 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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // Fill op patterns.
    //===----------------------------------------------------------------------===//
    
    def LowerFillOp : Pat<(TF_FillOp $dims, $value),
                          (TF_BroadcastToOp $value, $dims)>;
    
    //===----------------------------------------------------------------------===//
    // Empty op patterns.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DelegatingCopySpecInternal.java

        }
    
        @Override
        public CopySpec filesMatching(String pattern, Action<? super FileCopyDetails> action) {
            return getDelegateCopySpec().filesMatching(pattern, action);
        }
    
        @Override
        public CopySpec filesMatching(Iterable<String> patterns, Action<? super FileCopyDetails> action) {
            return getDelegateCopySpec().filesMatching(patterns, action);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/net/http/servemux121.go

    		panic("http: multiple registrations for " + pattern)
    	}
    
    	if mux.m == nil {
    		mux.m = make(map[string]muxEntry)
    	}
    	e := muxEntry{h: handler, pattern: pattern}
    	mux.m[pattern] = e
    	if pattern[len(pattern)-1] == '/' {
    		mux.es = appendSorted(mux.es, e)
    	}
    
    	if pattern[0] != '/' {
    		mux.hosts = true
    	}
    }
    
    func appendSorted(es []muxEntry, e muxEntry) []muxEntry {
    	n := len(es)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top