Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 631 for pattern1 (0.21 sec)

  1. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ['org.gradle.Foo$1$2.test']       | "org.gradle.Foo"     | true
        }
    
        def 'can use multiple patterns'() {
            expect:
            matcher(pattern1, [], pattern2).mayIncludeClass(fullQualifiedName) == maybeMatch
    
            where:
            pattern1                | pattern2                        | fullQualifiedName     | maybeMatch
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //			significantly more expensive.
    //		Sets -cover.
    //	-coverpkg pattern1,pattern2,pattern3
    //		For a build that targets package 'main' (e.g. building a Go
    //		executable), apply coverage analysis to each package matching
    //		the patterns. The default is to apply coverage analysis to
    //		packages in the main Go module. See 'go help packages' for a
    //		description of package patterns.  Sets -cover.
    //	-v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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/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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top