Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 440 for rewrites (0.38 sec)

  1. src/cmd/compile/internal/ssa/writebarrier.go

    					// So we have to throw all the zero information we have away.
    					continue
    				}
    				// Round to cover any partially written pointer slots.
    				// Pointer writes should never be unaligned like this, but non-pointer
    				// writes to pointer-containing types will do this.
    				if d := off % ptrSize; d != 0 {
    					off -= d
    					size += d
    				}
    				if d := size % ptrSize; d != 0 {
    					size += ptrSize - d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/cache.go

    		if os.IsExist(err) {
    			if ctx.Err() != nil {
    				return nil, ctx.Err()
    			}
    			continue
    		}
    		break
    	}
    	return
    }
    
    // rewriteVersionList rewrites the version list in dir
    // after a new *.mod file has been written.
    func rewriteVersionList(ctx context.Context, dir string) (err error) {
    	if filepath.Base(dir) != "@v" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/html/template/escape.go

    						dup = true
    					}
    				}
    				if dup {
    					// The predefined escaper will already be inserted along with the
    					// escapers in s, so do not copy it to the rewritten pipeline.
    					pipelineLen--
    				}
    			}
    		}
    	}
    	// Rewrite the pipeline, creating the escapers in s at the end of the pipeline.
    	newCmds := make([]*parse.CommandNode, pipelineLen, pipelineLen+len(s))
    	insertedIdents := make(map[string]bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

          /*use_resource_updates_for_aliases=*/false, shape_determination_fns,
          compilation_result, custom_legalization_passes, module_name,
          lower_to_xla_hlo);
    }
    
    // Rewrites the given module with specified args. For each of the constant args,
    // it gets inlined in the "main' function and the corresponding argument is
    // removed from the signature. For resource args, their subtypes are populated.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/obj6.go

    			p.To.Scale = 2
    		}
    	}
    
    	// Rewrite 0 to $0 in 3rd argument to CMPPS etc.
    	// That's what the tables expect.
    	switch p.As {
    	case ACMPPD, ACMPPS, ACMPSD, ACMPSS:
    		if p.To.Type == obj.TYPE_MEM && p.To.Name == obj.NAME_NONE && p.To.Reg == REG_NONE && p.To.Index == REG_NONE && p.To.Sym == nil {
    			p.To.Type = obj.TYPE_CONST
    		}
    	}
    
    	// Rewrite CALL/JMP/RET to symbol as TYPE_BRANCH.
    	switch p.As {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	err error
    }
    
    // discoveryURLRoundTripper is a http.RoundTripper that rewrites the
    // {url}/.well-known/openid-configuration to the discovery URL.
    type discoveryURLRoundTripper struct {
    	base http.RoundTripper
    	// discoveryURL is the URL to use to fetch the openid configuration
    	discoveryURL *url.URL
    	// urlToRewrite is the URL to rewrite to the discovery URL
    	urlToRewrite string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar.go

    	// Listener 1 could import a public virtual service for serviceA from
    	// namespace A that has some path rewrite, while listener2 could import
    	// a private virtual service for serviceA from the local namespace,
    	// with a different path rewrite or no path rewrites.
    	virtualServices []config.Config
    
    	// An index of hostname to the namespaced name of the VirtualService containing the most
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (Avg32u <t> x y) => (ADD (SRLconst <t> (SUB <t> x y) [1]) y)
    
    (And(32|16|8) ...) => (AND ...)
    (Or(32|16|8) ...) => (OR ...)
    (Xor(32|16|8) ...) => (XOR ...)
    
    // constant shifts
    // generic opt rewrites all constant shifts to shift by Const64
    (Lsh32x64  x (Const64 [c])) && uint32(c) < 32 => (SLLconst x [int32(c)])
    (Rsh32x64  x (Const64 [c])) && uint32(c) < 32 => (SRAconst x [int32(c)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// (InvertFlags (CMP a b)) == (CMP b a)
    		// So if we want (LessThan (CMP a b)) but we can't do that because a is a constant,
    		// then we do (LessThan (InvertFlags (CMP b a))) instead.
    		// Rewrites will convert this to (GreaterThan (CMP b a)).
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    These special cases were introduced in Go 1.10. For auto-updating code
    from Go 1.9 and earlier, use the cftype or jni rewrites in the Go fix tool:
    
    	go tool fix -r cftype <pkg>
    	go tool fix -r jni <pkg>
    
    It will replace nil with 0 in the appropriate places.
    
    The EGLDisplay case was introduced in Go 1.12. Use the egl rewrite
    to auto-update code from Go 1.11 and earlier:
    
    	go tool fix -r egl <pkg>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top