Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for REWRITES (0.12 sec)

  1. src/net/http/httputil/reverseproxy.go

    // SetURL routes the outbound request to the scheme, host, and base path
    // provided in target. If the target's path is "/base" and the incoming
    // request was for "/dir", the target request will be for "/base/dir".
    //
    // SetURL rewrites the outbound Host header to match the target's host.
    // To preserve the inbound request's Host header (the default behavior
    // of [NewSingleHostReverseProxy]):
    //
    //	rewriteFunc := func(r *httputil.ProxyRequest) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

        return success();
    
      // Move the compile op launch right before our op.
      compile_launch_op->moveBefore(preprocess_op);
    
      return success();
    }
    
    // Rewrites the program_key input of `preprocess_op` to use the output of
    // _TPUCompileMlir.
    void RewritePreprocessInputs(OpBuilder* builder, func::FuncOp func_op,
                                 Operation* preprocess_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/regexp/onepass.go

    	p := &onePassProg{
    		Start:  prog.Start,
    		NumCap: prog.NumCap,
    		Inst:   make([]onePassInst, len(prog.Inst)),
    	}
    	for i, inst := range prog.Inst {
    		p.Inst[i] = onePassInst{Inst: inst}
    	}
    
    	// rewrites one or more common Prog constructs that enable some otherwise
    	// non-onepass Progs to be onepass. A:BD (for example) means an InstAlt at
    	// ip A, that points to ips B & C.
    	// A:BC + B:DA => A:BC + B:CD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          main_graph->AddControlEdge(copy, xla_computation_node);
        }
      };
      ReverseDFS(*host_graph, /*enter=*/nullptr, copy_node_fn, NodeComparatorID());
      return s;
    }
    
    // Rewrites shape inference graph for outside compilation:
    // 1) If XlaSendFromHost also exists in `host_graph`, copy nodes from
    //    `host_graph`. Because we might still have outside compilation to outside
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/order.go

    	temp []*ir.Name            // stack of temporary variables
    	free map[string][]*ir.Name // free list of unused temporaries, by type.LinkString().
    	edit func(ir.Node) ir.Node // cached closure of o.exprNoLHS
    }
    
    // order rewrites fn.Nbody to apply the ordering constraints
    // described in the comment at the top of the file.
    func order(fn *ir.Func) {
    	if base.Flag.W > 1 {
    		s := fmt.Sprintf("\nbefore order %v", fn.Sym())
    		ir.DumpList(s, fn.Body)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/abi.go

    	}
    }
    
    // canonicalize returns the canonical name used for a linker symbol in
    // s's maps. Symbols in this package may be written either as "".X or
    // with the package's import path already in the symbol. This rewrites
    // both to use the full path, which matches compiler-generated linker
    // symbol names.
    func (s *SymABIs) canonicalize(linksym string) string {
    	if strings.HasPrefix(linksym, `"".`) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/net.go

    	s.currentPodSnapshot.Ensure(string(pod.UID))
    	openNetns, err := s.getOrOpenNetns(pod, netNs)
    	if err != nil {
    		return err
    	}
    
    	// Handle node healthcheck probe rewrites
    	_, err = addPodToHostNSIpset(pod, podIPs, &s.hostsideProbeIPSet)
    	if err != nil {
    		log.Errorf("failed to add pod to ipset: %s/%s %v", pod.Namespace, pod.Name, err)
    		return err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "globally unique within a process, not just within a module.">
      ];
    }
    
    def ConvertLaunchFuncToTFCallPass : Pass<"tf-device-convert-launch-func-to-tf-call", "ModuleOp"> {
      let summary = "Rewrites tf_device::LaunchFuncOp to TF::PartitionedCallOp";
    
      let description = [{
        This pass converts tf_device::LaunchFuncOp into an equivalent
        TF::PartitionedCallOp so that it can be exported to TensorFlow GraphDef.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. src/runtime/select.go

    	}
    	casePC := func(casi int) uintptr {
    		if pcs == nil {
    			return 0
    		}
    		return pcs[casi]
    	}
    
    	var t0 int64
    	if blockprofilerate > 0 {
    		t0 = cputicks()
    	}
    
    	// The compiler rewrites selects that statically have
    	// only 0 or 1 cases plus default into simpler constructs.
    	// The only way we can end up with such small sel.ncase
    	// values here is for a larger select in which most channels
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/typecheck.go

    )
    
    // type checks the whole tree of an expression.
    // calculates expression types.
    // evaluates compile time constants.
    // marks variables that escape the local frame.
    // rewrites n.Op to be more specific in some cases.
    
    func typecheckslice(l []ir.Node, top int) {
    	for i := range l {
    		l[i] = typecheck(l[i], top)
    	}
    }
    
    var _typekind = []string{
    	types.TINT:        "int",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top