Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,218 for npattern (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

      [], [(CopyAttrs $src, $dest)]>;
    
    //===----------------------------------------------------------------------===//
    // Bitcast op patterns.
    //===----------------------------------------------------------------------===//
    
    // Parameter attributes are part of function attributes, which is not affected
    // by pattern rewrites. Therefore we do not need to explicilty copy attributes
    // over.
    def BitcastSameType : Pat<
      (TF_BitcastOp:$res $arg),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. src/testing/match_test.go

    	}
    	for _, tc := range testCases {
    		a := splitRegexp(tc.pattern)
    		if !reflect.DeepEqual(a, tc.result) {
    			t.Errorf("splitRegexp(%q) = %#v; want %#v", tc.pattern, a, tc.result)
    		}
    
    		// If there is any error in the pattern, one of the returned subpatterns
    		// needs to have an error as well.
    		if _, err := regexp.Compile(tc.pattern); err != nil {
    			ok := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. src/internal/bisect/bisect.go

    		}
    	}
    	// Allow multiple v, so that “bisect cmd vPATTERN” can force verbose all the time.
    	for len(p) > 0 && p[0] == 'v' {
    		m.verbose = true
    		m.quiet = false
    		p = p[1:]
    		if p == "" {
    			return nil, &parseError{"invalid pattern syntax: " + pattern}
    		}
    	}
    
    	// Allow multiple !, each negating the last, so that “bisect cmd !PATTERN” works
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/tensorlist_patterns.td

    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    //===----------------------------------------------------------------------===//
    // TensorList transformation patterns.
    // Note that the pattern below rewrites `TensorList` tensors  (which has type DT_VARIANT)
    // into regular tensors. We also assume that each element in the `TensorList` has
    // a same constant shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 16 23:20:46 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/codegen/GradleApiMetadata.kt

     * limitations under the License.
     */
    
    package gradlebuild.kotlindsl.generator.codegen
    
    import org.gradle.api.internal.file.pattern.PatternMatcher
    import org.gradle.api.internal.file.pattern.PatternMatcherFactory
    import java.io.File
    import java.util.Properties
    import java.util.jar.JarFile
    
    
    internal
    data class GradleApiMetadata(
        val includes: List<String>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSpecFactory.java

            }
        }
    
        protected Spec<FileTreeElement> createSpec(Collection<String> patterns, boolean include, boolean caseSensitive) {
            if (patterns.isEmpty()) {
                return include ? Specs.satisfyAll() : Specs.satisfyNone();
            }
    
            PatternMatcher matcher = PatternMatcherFactory.getPatternsMatcher(include, caseSensitive, patterns);
    
            return new RelativePathSpec(matcher);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/text8.txt

    To eliminate ambiguity about which module versions are used in the build, the
    arguments must satisfy the following constraints:
    
     - Arguments must be package paths or package patterns (with "..." wildcards).
     They must not be standard packages (like fmt), meta-patterns (std, cmd,
     all), or relative or absolute file paths.
    
     - All arguments must have the same version suffix. Different queries are not
     allowed, even if they refer to the same version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

      if (quant_specs_.weight_quantization) {
        patterns.add<TFDynamicRangeQuantization>(ctx, quant_params);
      } else {
        patterns.add<TFFullQuantization, TFFullQuantizationReverse>(ctx,
                                                                    quant_params);
        patterns.add<QuantizeSameScaleOpsPattern>(ctx, GetTfQuantScaleSpec,
                                                  target_opset_);
        patterns.add<QuantizeAvgPoolOpPattern>(ctx);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/embed.txt

    cp x.txt .git
    ! go build -x
    stderr '^x.go:5:12: pattern [*]t: cannot embed file [.]git: invalid name [.]git$'
    rm .git
    
    # build rejects symlinks
    [symlink] symlink x.tzt -> x.txt
    [symlink] ! go build -x
    [symlink] stderr 'pattern [*]t: cannot embed irregular file x.tzt'
    [symlink] rm x.tzt
    
    # build rejects empty directories
    mkdir t
    ! go build -x
    stderr '^x.go:5:12: pattern [*]t: cannot embed directory t: contains no embeddable files$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 18:03:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppComponent.java

        public FileTree getHeaderFiles() {
            PatternSet patterns = new PatternSet();
            // if you would like to add more endings to this pattern, make sure to also edit DefaultCppLibrary.java and default.vcxproj.filters
            patterns.include("**/*.h");
            patterns.include("**/*.hpp");
            patterns.include("**/*.h++");
            patterns.include("**/*.hxx");
            patterns.include("**/*.hm");
            patterns.include("**/*.inl");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top