Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for pattern1 (0.17 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. 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)
  3. 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)
  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. cmd/endpoint-ellipses_test.go

    		t.Run("", func(t *testing.T) {
    			argPatterns := make([]ellipses.ArgPattern, len(testCase.args))
    			for i, arg := range testCase.args {
    				patterns, err := ellipses.FindEllipsesPatterns(arg)
    				if err != nil {
    					t.Fatalf("Unexpected failure %s", err)
    				}
    				argPatterns[i] = patterns
    			}
    
    			gotIndexes, err := getSetIndexes(testCase.args, testCase.totalSizes, testCase.envOverride, argPatterns)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/embed/embed.go

    //
    // The //go:embed directive accepts multiple space-separated patterns for
    // brevity, but it can also be repeated, to avoid very long lines when there are
    // many patterns. The patterns are interpreted relative to the package directory
    // containing the source file. The path separator is a forward slash, even on
    // Windows systems. Patterns may not contain ‘.’ or ‘..’ or empty path elements,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:42:51 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

      target.addLegalDialect<vhlo::VhloDialect>();
    
      StablehloToOdmlTypeConverter converter;
      RewritePatternSet patterns(context);
      stablehlo::populateStablehloToVhloPatterns(&patterns, &converter, context);
    
      if (failed(applyPartialConversion(module, target, std::move(patterns)))) {
        return module->emitError("Failed partial conversion to VHLO");
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. pkg/bootstrap/instance_test.go

    	var patterns []string
    	for _, pattern := range got.GetPatterns() {
    		var pat string
    		switch typ {
    		case "prefix":
    			pat = pattern.GetPrefix()
    		case "suffix":
    			pat = pattern.GetSuffix()
    		case "regexp":
    			// Migration tracked in https://github.com/istio/istio/issues/17127
    			//nolint: staticcheck
    			pat = pattern.GetSafeRegex().GetRegex()
    		}
    
    		if pat != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. cmd/endpoint-ellipses.go

    					symmetry = uint64(len(p.Seq))%ss == 0
    				} else {
    					symmetry = ss%uint64(len(p.Seq)) == 0
    				}
    			}
    		}
    		// With no arg patterns, it is expected that user knows
    		// the right symmetry, so either ellipses patterns are
    		// provided (recommended) or no ellipses patterns.
    		if _, ok := newSetCounts[ss]; !ok && (symmetry || argPatterns == nil) {
    			newSetCounts[ss] = struct{}{}
    		}
    	}
    
    	setCounts = []uint64{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. src/testing/fstest/testfs.go

    					pattern = append(pattern, '\\', r)
    					continue
    				}
    				switch (i + j) % 5 {
    				case 0:
    					pattern = append(pattern, r)
    				case 1:
    					pattern = append(pattern, '[', r, ']')
    				case 2:
    					pattern = append(pattern, '[', r, '-', r, ']')
    				case 3:
    					pattern = append(pattern, '[', '\\', r, ']')
    				case 4:
    					pattern = append(pattern, '[', '\\', r, '-', '\\', r, ']')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top