Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,269 for pattern1 (0.64 sec)

  1. 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)
  2. 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)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasher.java

            super(delegate);
            ImmutableList.Builder<String> patterns = ImmutableList.builder();
            ImmutableMap.Builder<PathMatcher, ResourceEntryFilter> filters = ImmutableMap.builder();
            propertiesFileFilters.forEach((pattern, resourceEntryFilter) -> {
                filters.put(PatternMatcherFactory.compile(false, pattern), resourceEntryFilter);
                patterns.add(pattern);
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

          }
        }
        return success();
      }
    };
    
    // Populates common patterns that are usually compute heavy or memory bound.
    void PopulateCommonQuantizationPatterns(
        MLIRContext& ctx, RewritePatternSet& patterns,
        bool enable_per_channel_quantized_weight);
    
    // Populates conversion patterns for all quantizable ops, including
    // ops that are not compute-heavy and data movement ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/CopySpecWrapper.java

        }
    
        @Override
        public CopySpec filesMatching(String pattern, Action<? super FileCopyDetails> action) {
            delegate.filesMatching(pattern, action);
            return this;
        }
    
        @Override
        public CopySpec filesMatching(Iterable<String> patterns, Action<? super FileCopyDetails> action) {
            delegate.filesMatching(patterns, action);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

          hostname += "."
        }
        if (!pattern.endsWith(".")) {
          pattern += "."
        }
        // Hostname and pattern are now absolute domain names.
    
        pattern = pattern.asciiToLowercase()
        // Hostname and pattern are now in lower case -- domain names are case-insensitive.
    
        if ("*" !in pattern) {
          // Not a wildcard pattern -- hostname and pattern must match exactly.
          return hostname == pattern
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_combine.cc

    //
    // becomes
    // some_op %dht0, %c1
    
    struct SimplifyDoubleConversion
        : public mlir::OpRewritePattern<mlir::tfd::ConvertTftToDhtOp> {
      // We register this pattern to match every tfd.move_dht_to_tft op.
      // The "benefit" is used by the framework to order the patterns and process
      // them in order of profitability.
      explicit SimplifyDoubleConversion(mlir::MLIRContext* context)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 09 12:09:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top