Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,272 for pattern1 (0.18 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

        /**
         * Pattern to extract task output.
         */
        private static final Pattern TRANSFORM_OUTPUT_PATTERN = patternForHeader(TRANSFORM_HEADER);
    
        private static Pattern patternForHeader(String header) {
            String pattern = "(?ms)";
            pattern += header;
            // Capture all output, lazily up until two new lines and an END_OF_TASK designation
            pattern += "([\\s\\S]*?(?=[^\\n]*?" + END_OF_GROUPED_OUTPUT + "))";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/path/filepath/match.go

    	for len(pattern) > 0 && pattern[0] == '*' {
    		pattern = pattern[1:]
    		star = true
    	}
    	inrange := false
    	var i int
    Scan:
    	for i = 0; i < len(pattern); i++ {
    		switch pattern[i] {
    		case '\\':
    			if runtime.GOOS != "windows" {
    				// error check handled in matchChunk: bad pattern.
    				if i+1 < len(pattern) {
    					i++
    				}
    			}
    		case '[':
    			inrange = true
    		case ']':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/post_quantize.cc

      RewritePatternSet patterns(&getContext());
      func::FuncOp func = getOperation();
      MLIRContext* ctx = func.getContext();
      // TODO: b/307463853 - Consider splitting passes for each pattern set.
      patterns.add<FoldTrivalRequantizeOp<quantfork::QuantizeCastOp>,
                   RemoveVolatileQdqPattern>(ctx);
      if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
        signalPassFailure();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

      ...
    }
    
    TYPED_TEST(FooTest, HasPropertyA) { ... }
    
    #endif  // 0
    
    // Type-parameterized tests are abstract test patterns parameterized
    // by a type.  Compared with typed tests, type-parameterized tests
    // allow you to define the test pattern without knowing what the type
    // parameters are.  The defined pattern can be instantiated with
    // different types any number of times, in any number of translation
    // units.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/ir/ConvertSimQuant.cc

      bool hadFailure = false;
      auto func = getOperation();
      RewritePatternSet patterns(func.getContext());
      auto *ctx = func.getContext();
      patterns.add<ConstFakeQuantRewrite, ConstFakeQuantPerAxisRewrite>(
          ctx, &hadFailure);
      (void)applyPatternsAndFoldGreedily(func, std::move(patterns));
      if (hadFailure) signalPassFailure();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. 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)
  7. src/net/http/server.go

    	} else {
    		mux.register(pattern, HandlerFunc(handler))
    	}
    }
    
    // Handle registers the handler for the given pattern in [DefaultServeMux].
    // The documentation for [ServeMux] explains how patterns are matched.
    func Handle(pattern string, handler Handler) {
    	if use121 {
    		DefaultServeMux.mux121.handle(pattern, handler)
    	} else {
    		DefaultServeMux.register(pattern, handler)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      }
    
      void runOnOperation() override {
        RewritePatternSet patterns(&getContext());
        patterns.add(ConvertDotToDotGeneral);
        patterns.add(RemoveReshapeAroundDotGeneral);
        patterns.add(LiftDotConcatLHS);
        patterns.add(LiftDotConcatLHSAndRHS);
        patterns.add(FuseSliceConcat);
        patterns.add(ConvertReshapeDotRhsToBatchedDot);
        patterns.add(MergeConsecutivePad);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/reduce_type_precision.cc

      void runOnOperation() override;
    };
    
    void ReduceTypePrecisionPass::runOnOperation() {
      RewritePatternSet patterns(&getContext());
      patterns.add<CheckRangeAndConvertI8ToI4, SanitizeGatherOpOutputToI4>(
          &getContext());
      (void)applyPatternsAndFoldGreedily(getOperation(), std::move(patterns));
    }
    
    }  // namespace
    
    std::unique_ptr<OperationPass<ModuleOp>> CreateReduceTypePrecisionPass() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.td

      let constructor = "mlir::odml::CreateComposeUniformQuantizedTypePass()";
      let description = [{
        Identifies uniform quantization patterns and composes them to uniform
        quantized types. This pass targets a specific set of models that are
        quantized from the framework level, which produces "decomposed"
        quantization patterns due to the limitations of the framework.
    
        In the long term it is desired that the framework produces uniform
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top