Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 326 for rewrite (0.28 sec)

  1. src/cmd/go/internal/modcmd/edit.go

    The editing flags specify a sequence of editing operations.
    
    The -fmt flag reformats the go.mod file without making other changes.
    This reformatting is also implied by any other modifications that use or
    rewrite the go.mod file. The only time this flag is needed is if no other
    flags are specified, as in 'go mod edit -fmt'.
    
    The -module flag changes the module's path (the go.mod file's module line).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/builtin.go

    	"strings"
    
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/escape"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/reflectdata"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    )
    
    // Rewrite append(src, x, y, z) so that any side effects in
    // x, y, z (including runtime panics) are evaluated in
    // initialization statements before the append.
    // For normal code generation, stop there and leave the
    // rest to ssagen.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  3. cmd/streaming-signature-v4.go

    	}
    
    	// TODO: It seems like we may have to be prepared to rewrite and sort trailing headers:
    	// https://docs.aws.amazon.com/IAM/latest/UserGuide/create-signed-request.html
    
    	// Any value must end with a newline.
    	// Not all clients send that.
    	trailerRaw := valueBuffer.Bytes()
    	if len(trailerRaw) > 0 && trailerRaw[len(trailerRaw)-1] != '\n' {
    		valueBuffer.Write([]byte{'\n'})
    	}
    	sig = sig[len("x-amz-trailer-signature:"):]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      auto no_input = rewriter.create<TFL::NoValueOp>(
          op->getLoc(), rewriter.getNoneType(), rewriter.getUnitAttr());
      auto fc_op = rewriter.create<FullyConnectedOp>(
          op->getLoc(), ArrayRef<Type>{output_type},
          /*input=*/lhs, /*filter=*/rhs, /*bias=*/no_input,
          /*fused_activation_function=*/rewriter.getStringAttr("NONE"),
          /*weights_format=*/rewriter.getStringAttr("DEFAULT"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    		j := int(sa[i])
    		if j >= 0 {
    			// Skip non-flagged entry.
    			// (This loop can't see an empty entry; 0 means the real zero index.)
    			continue
    		}
    
    		// Negative j is a work queue entry; rewrite to positive j for final suffix array.
    		j = -j
    		sa[i] = int64(j)
    
    		// Index j was on work queue (encoded as -j but now decoded),
    		// meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/reloctype.go

    	R_POWER_TLS_IE
    
    	// R_POWER_TLS marks an X-form instruction such as "ADD R3,R13,R4" as completing
    	// a sequence of GOT-relative relocations to compute a TLS address. This can be
    	// used by the system linker to to rewrite the GOT-relative TLS relocation into a
    	// simpler thread-pointer relative relocation. See table 3.26 and 3.28 in the
    	// ppc64 elfv2 1.4 ABI on this transformation.  Likewise, the second argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/deadcode.go

    				}
    				d.ldr.SetAttrReachable(d.mapinitnoop, true)
    				if d.ctxt.Debugvlog > 1 {
    					d.ctxt.Logf("deadcode: %s rewrite %s ref to %s\n",
    						d.ldr.SymName(idx), rsn,
    						d.ldr.SymName(d.mapinitnoop))
    				}
    				if su == nil {
    					su = d.ldr.MakeSymbolUpdater(idx)
    				}
    				su.SetRelocSym(i, d.mapinitnoop)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// the stores. In that case, overlap is ok. See
    	// memmove inlining in generic.rules. When inlineablememmovesize (in ../rewrite.go)
    	// returns true, we must do all loads before all stores, when lowering Move.
    	// The type of Move is used for the write barrier pass to insert write barriers
    	// and for alignment on some architectures.
    	// For pointerless types, it is possible for the type to be inaccurate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/compile.go

    	// allow deadcode to clean up after nilcheckelim
    	{"nilcheckelim", "generic deadcode"},
    	// nilcheckelim generates sequences of plain basic blocks
    	{"nilcheckelim", "late fuse"},
    	// nilcheckelim relies on opt to rewrite user nil checks
    	{"opt", "nilcheckelim"},
    	// tighten will be most effective when as many values have been removed as possible
    	{"generic deadcode", "tighten"},
    	{"generic cse", "tighten"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. pkg/kube/inject/webhook.go

    	sidecar := FindSidecar(pod)
    	if sidecar == nil {
    		return nil
    	}
    
    	rewrite := ShouldRewriteAppHTTPProbers(pod.Annotations, req.valuesConfig.asStruct.GetSidecarInjectorWebhook().GetRewriteAppHTTPProbe().GetValue())
    	// We don't have to escape json encoding here when using golang libraries.
    	if rewrite {
    		if prober := DumpAppProbers(pod, req.meshConfig.GetDefaultConfig().GetStatusPort()); prober != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top