Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 763 for pattern1 (0.14 sec)

  1. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasherTest.groovy

        }
    
        def "can filter multiple files selectively based on pattern (pattern: #fPattern, context: #context)"() {
            given:
            filters = [
                '**/*.properties': ResourceEntryFilter.FILTER_NOTHING,
                (fPattern.toString()): filter("created-by", "पशुपतिरपि")
            ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

      // convert all of them to signed.
      RewritePatternSet patterns(ctx);
      populateWithGenerated(patterns);
      patterns.add<quant::ConvertUnsignedToSigned<quantfork::QuantizeCastOp>>(ctx);
      // Convert quant stats to int8 quantization parameters.
      // Currently, only activation stats are imported, so narrow_range = false.
      patterns.add<PrepareQuantStats>(bit_width, false, true,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        mlir::RewritePatternSet patterns(context);
        AddLiftTfliteFlexOpsPatterns(context, patterns);
        if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
          signalPassFailure();
          return;
        }
      }
    };
    
    }  // namespace
    
    void AddLiftTfliteFlexOpsPatterns(MLIRContext* context,
                                      RewritePatternSet& patterns) {
      patterns.add<LiftFlexCustomOp>(context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

    import java.util.Properties;
    import java.util.TimeZone;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    import static java.lang.String.format;
    import static org.gradle.internal.IoActions.uncheckedClose;
    
    public final class DefaultGradleVersion extends GradleVersion {
        private static final Pattern VERSION_PATTERN = Pattern.compile("((\\d+)(\\.\\d+)+)(-(\\p{Alpha}+)-(\\w+))?(-(SNAPSHOT|\\d{14}([-+]\\d{4})?))?");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

         * パターン文字列を区切り文字を含まないプレーンなパターン文字列に変換して返します。
         *
         * @param pattern
         *            パターン文字列
         * @return 区切り文字を含まないプレーンなパターン文字列
         */
        protected static String toPlainPattern(final String pattern) {
            final StringBuilder buf = new StringBuilder(pattern.length());
            for (int i = 0; i < pattern.length(); ++i) {
                final char ch = pattern.charAt(i);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. src/unsafe/unsafe.go

    // arbitrary memory. It should be used with extreme care.
    //
    // The following patterns involving Pointer are valid.
    // Code not using these patterns is likely to be invalid today
    // or to become invalid in the future.
    // Even the valid patterns below come with important caveats.
    //
    // Running "go vet" can help find uses of Pointer that do not conform to these patterns,
    // but silence from "go vet" is not a guarantee that the code is valid.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

         * パターン文字列を区切り文字を含まないプレーンなパターン文字列に変換して返します。
         *
         * @param pattern
         *            パターン文字列
         * @return 区切り文字を含まないプレーンなパターン文字列
         */
        protected static String toPlainPattern(final String pattern) {
            final StringBuilder buf = new StringBuilder(pattern.length());
            for (int i = 0; i < pattern.length(); ++i) {
                final char ch = pattern.charAt(i);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

      MLIRContext* ctx = &getContext();
      auto func = getOperation();
    
      // The pattern includes decomposing batch normalization ops, fusing add/mul
      // with a constant operand to a preceding affine operation.
      RewritePatternSet patterns(ctx);
      populateWithGenerated(patterns);
      patterns.add<RemoveIdentity, ConstantFoldQuantizableOperands>(ctx);
      if (op_set_ != OpSet::XLA) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/runtime/runtime-gdb.py

    
    def paramtypematch(t, pattern):
    	return t.code == gdb.TYPE_CODE_TYPEDEF and str(t).startswith(".param") and pattern.match(str(t.target()))
    
    #
    #  Register all the *Printer classes above.
    #
    
    def makematcher(klass):
    	def matcher(val):
    		try:
    			if klass.pattern.match(str(val.type)):
    				return klass(val)
    			elif paramtypematch(val.type, klass.pattern):
    				return klass(val.cast(val.type.target()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm_test.go

    // PCALIGN directive, to verify correct values are and
    // accepted, and incorrect values are flagged in error.
    func TestPCalign(t *testing.T) {
    	var pattern8 = `0x...8\s.*ADD\s..,\sR8`
    	var pattern16 = `0x...[80]\s.*MOVD\s..,\sR16`
    	var pattern32 = `0x...0\s.*ADD\s..,\sR3`
    
    	testenv.MustHaveGoBuild(t)
    
    	dir, err := os.MkdirTemp("", "testpcalign")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top