Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,269 for pattern1 (0.24 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/maven/MavenVersionLister.java

            final Set<ExternalResourceName> searched = new HashSet<>();
    
            List<String> versions = new ArrayList<>();
            boolean hasResult = false;
            for (ResourcePattern pattern : patterns) {
                ExternalResourceName metadataLocation = pattern.toModulePath(module).resolve("maven-metadata.xml");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultCopySpec.java

            public PatternSet getPatternSet() {
                PatternSet patterns = patternSetFactory.create();
                assert patterns != null;
                patterns.setCaseSensitive(isCaseSensitive());
                patterns.include(this.getAllIncludes());
                patterns.includeSpecs(getAllIncludeSpecs());
                patterns.exclude(this.getAllExcludes());
                patterns.excludeSpecs(getAllExcludeSpecs());
                return patterns;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.h

    #define TENSORFLOW_COMPILER_MLIR_LITE_STABLEHLO_ODML_CONVERTER_FOLDERS_H_
    
    namespace mlir::odml {
    
    // Populates the pattern set with all folding patterns. These patterns
    // are intended to have precedence over any other patterns added to the set.
    void PopulateFolderPatterns(RewritePatternSet &patternSet);
    
    }  // namespace mlir::odml
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 22:33:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/cmd/distpack/archive.go

    }
    
    // Remove removes files matching any of the patterns from the archive.
    // The patterns use the syntax of path.Match, with an extension of allowing
    // a leading **/ or trailing /**, which match any number of path elements
    // (including no path elements) before or after the main match.
    func (a *Archive) Remove(patterns ...string) {
    	a.Filter(func(name string) bool {
    		for _, pattern := range patterns {
    			match, err := amatch(pattern, name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultIvyArtifactRepositoryTest.groovy

                ivyPatterns == ["https://host/[module]/[revision]/ivy.xml"]
                m2compatible
            }
        }
    
        def "combines layout patterns with additionally specified patterns"() {
            repository.name = 'name'
            repository.url = 'https://host/'
            repository.artifactPattern 'https://host/[other]/artifact'
            repository.ivyPattern 'https://host/[other]/ivy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

    // Add op patterns.
    //===----------------------------------------------------------------------===//
    
    def AddToAddV2 : Pat<
      (TF_AddOp:$src TF_NumberTensor:$arg0, TF_NumberTensor:$arg1),
      (TF_AddV2Op:$dest $arg0, $arg1), [], [(CopyAttrs $src, $dest)]>;
    
    //===----------------------------------------------------------------------===//
    // AddV2 op patterns.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_with_tf2xla.cc

      return IsBounded(updated);
    }
    
    // Propagates more refined type by cloning op using the new operands. This
    // allows all rewrite patterns that requires refined types to work without
    // requiring a rewrite to the conversion pattern. Declarative rewrite pattern
    // (DRR) doesn't even support conversion patterns with TableGen.
    class TypePropagator : public ConversionPattern {
     public:
      explicit TypePropagator(MLIRContext* ctx)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

        init {
          require(
            (pattern.startsWith("*.") && pattern.indexOf("*", 1) == -1) ||
              (pattern.startsWith("**.") && pattern.indexOf("*", 2) == -1) ||
              pattern.indexOf("*") == -1,
          ) {
            "Unexpected pattern: $pattern"
          }
    
          this.pattern =
            pattern.toCanonicalHost() ?: throw IllegalArgumentException("Invalid pattern: $pattern")
    
          when {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.h

    void PopulateTFLoweringBeforeHLOPatterns(MLIRContext *context,
                                             RewritePatternSet *patterns);
    
    // Populates TensorFlow lowering patterns to lower some of the TensorFlow
    // operations that can be represented using other TensorFlow operations.
    // Patterns are from ops with some inputs or outputs that are quantized types
    // only to ops that allow non-quantized types on all inputs and outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 27 15:05:02 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top