Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 596 for rewrite (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

        for (Operation* candidate_op : *candidate_ops) {
          // If it is requantize op, we shouldn't rewrite this op.
          if (isa<QuantizeOpT, DequantizeOpT>(candidate_op)) {
            return failure();
          }
    
          // If the op is terminator, we shouldn't rewrite.
          if (candidate_op->hasTrait<OpTrait::IsTerminator>()) {
            return failure();
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

                                             PatternRewriter& rewriter) {
      OpBuilder::InsertionGuard insertion_guard(rewriter);
    
      // Create a new `CallOp` that calls `callee_func_op`.
      rewriter.setInsertionPoint(xla_call_module_op);
      auto call_op =
          rewriter.create<func::CallOp>(xla_call_module_op.getLoc(), callee_func_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java

    import java.util.Arrays;
    
    import org.apache.logging.log4j.Level;
    import org.apache.logging.log4j.core.Core;
    import org.apache.logging.log4j.core.LogEvent;
    import org.apache.logging.log4j.core.appender.rewrite.RewritePolicy;
    import org.apache.logging.log4j.core.config.plugins.Plugin;
    import org.apache.logging.log4j.core.config.plugins.PluginAttribute;
    import org.apache.logging.log4j.core.config.plugins.PluginFactory;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/badsym_test.go

    		if err := os.WriteFile(to, obj, 0644); err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	cBadShared := filepath.Join(godir, "cbad.so")
    	rewrite(cShared, cBadShared)
    
    	cBadObj := filepath.Join(godir, "cbad.o")
    	rewrite(cObj, cBadObj)
    
    	goSourceBadObject := strings.ReplaceAll(goSource, "TMPDIR", godir)
    	makeFile(godir, "go.go", goSourceBadObject)
    
    	makeFile(godir, "go.mod", "module badsym")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    // a Value can be rewritten which make it impossible to correctly rewrite sibling Value users. To workaround this
    // case, candidates for CC opcodes are converted in two steps:
    //   1. Convert all (x (Op ...) ...) into (x (Select0 (OpCC ...) ...). See convertPPC64OpToOpCC for more
    //      detail on how and why this is done there.
    //   2. Rewrite (CMPconst [0] (Select0 (OpCC ...))) into (Select1 (OpCC...))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/http.yaml

    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: rewrite
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /prefix-original
        name: prefix-path-rewrite
        filters:
        - type: URLRewrite
          urlRewrite:
            hostname: "new.example.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/gofmt/doc.go

    	-l
    		Do not print reformatted sources to standard output.
    		If a file's formatting is different from gofmt's, print its name
    		to standard output.
    	-r rule
    		Apply the rewrite rule to the source before reformatting.
    	-s
    		Try to simplify code (after applying the rewrite rule, if any).
    	-w
    		Do not print reformatted sources to standard output.
    		If a file's formatting is different from gofmt's, overwrite it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. src/testing/match.go

    			return s, 0
    		}
    	}
    
    	n, err := strconv.ParseInt(suffix, 10, 32)
    	if err != nil || n < 0 {
    		return s, 0
    	}
    	return prefix, int32(n)
    }
    
    // rewrite rewrites a subname to having only printable characters and no white
    // space.
    func rewrite(s string) string {
    	b := []byte{}
    	for _, r := range s {
    		switch {
    		case isSpace(r):
    			b = append(b, '_')
    		case !strconv.IsPrint(r):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. buildscripts/heal-manual.go

    	start, _, err := madmClnt.Heal(context.Background(), "healing-rewrite-bucket", "", opts, "", false, false)
    	if err != nil {
    		log.Fatalln(err)
    	}
    	fmt.Println("Healstart sequence ===")
    	enc := json.NewEncoder(os.Stdout)
    	if err = enc.Encode(&start); err != nil {
    		log.Fatalln(err)
    	}
    
    	fmt.Println()
    	for {
    		_, status, err := madmClnt.Heal(context.Background(), "healing-rewrite-bucket", "", opts, start.ClientToken, false, false)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 27 09:47:58 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    			</Policies>
    			<DefaultRolloverStrategy fileIndex="max" min="1"
    				max="${backup.max.history}" compressionLevel="9" />
    		</RollingFile>
    		<Rewrite name="AppFile">
    			<AppenderRef ref="AppRollingFile" />
    			<ErrorToWarnRewritePolicy loggers="org.apache.fontbox,org.apache.pdfbox,org.apache.poi" />
    		</Rewrite>
    		<RollingFile name="StatsFile" fileName="${log.file.basedir}/fess-urls.log"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:05:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top