Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 450 for eventual (0.14 sec)

  1. src/cmd/go/internal/modfetch/toolchain.go

    	// We always ask about linux-amd64 because that one
    	// has always existed and is likely to always exist in the future.
    	// This avoids different behavior validating go versions on different
    	// architectures. The eventual download uses the right GOOS-GOARCH.
    	info, err := r.repo.Stat(ctx, goToDL(v, "linux", "amd64"))
    	if err != nil {
    		return nil, err
    	}
    
    	// Return the info using the canonicalized rev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loong64/asm.go

    	rs := r.Sym()
    	if target.IsExternal() {
    		switch r.Type() {
    		default:
    			return val, 0, false
    		case objabi.R_LOONG64_ADDR_HI,
    			objabi.R_LOONG64_ADDR_LO:
    			// set up addend for eventual relocation via outer symbol.
    			rs, _ := ld.FoldSubSymbolOffset(ldr, rs)
    			rst := ldr.SymType(rs)
    			if rst != sym.SHOSTOBJ && rst != sym.SDYNIMPORT && ldr.SymSect(rs) == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/sumdb.go

    		must := true
    		// Downloaded toolchains cannot be listed in go.sum,
    		// so we require checksum database lookups even if
    		// GOSUMDB=off or GONOSUMDB matches the pattern.
    		// If GOSUMDB=off, then the eventual lookup will fail
    		// with a good error message.
    
    		// Exception #1: using GOPROXY=file:// to test a distpack.
    		if strings.HasPrefix(cfg.GOPROXY, "file://") && !strings.ContainsAny(cfg.GOPROXY, ",|") {
    			must = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 15:02:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/arm/asm.go

    	rs := r.Sym()
    	if target.IsExternal() {
    		switch r.Type() {
    		case objabi.R_CALLARM:
    			// set up addend for eventual relocation via outer symbol.
    			_, off := ld.FoldSubSymbolOffset(ldr, rs)
    			xadd := int64(signext24(r.Add()&0xffffff))*4 + off
    			if xadd/4 > 0x7fffff || xadd/4 < -0x800000 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    // These four hook variables are a proof of concept of a future
    // parameterization of a unitchecker API that allows the client to
    // determine how and where facts and types are produced and consumed.
    // (Note that the eventual API will likely be quite different.)
    //
    // The defaults honor a Config in a manner compatible with 'go vet'.
    var (
    	makeTypesImporter = func(cfg *Config, fset *token.FileSet) types.Importer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/HashFunction.java

     *       these feats has become computationally feasible, the function is deemed "broken" and should
     *       no longer be used for secure purposes. (This is the likely eventual fate of <i>all</i>
     *       cryptographic hashes.)
     *   <li><b>fast:</b> perhaps self-explanatory, but often the most important consideration.
     * </ul>
     *
     * <h3>Providing input to a hash function</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/HashFunction.java

     *       these feats has become computationally feasible, the function is deemed "broken" and should
     *       no longer be used for secure purposes. (This is the likely eventual fate of <i>all</i>
     *       cryptographic hashes.)
     *   <li><b>fast:</b> perhaps self-explanatory, but often the most important consideration.
     * </ul>
     *
     * <h3>Providing input to a hash function</h3>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// If the key doesn't exist, it will return NotFound storage error if ignoreNotFound=false
    	// else `destination` will be set to the zero value of it's type.
    	// If the eventual successful invocation of `tryUpdate` returns an output with the same serialized
    	// contents as the input, it won't perform any update, but instead set `destination` to an object with those
    	// contents.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/alloc.go

    	al.releaseClusterIPs(svc)
    
    	for _, nodePort := range collectServiceNodePorts(svc) {
    		err := al.serviceNodePorts.Release(nodePort)
    		if err != nil {
    			// these should be caught by an eventual reconciliation / restart
    			utilruntime.HandleError(fmt.Errorf("Error releasing service %s node port %d: %v", svc.Name, nodePort, err))
    		}
    	}
    
    	if apiservice.NeedsHealthCheck(svc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/stmt.go

    				}
    				base.ErrorfAt(pos, errors.InvalidSelectCase, "select case must be receive, send or assign recv")
    
    			case ir.OAS:
    				// convert x = <-c into x, _ = <-c
    				// remove implicit conversions; the eventual assignment
    				// will reintroduce them.
    				n := n.(*ir.AssignStmt)
    				if r := n.Y; r.Op() == ir.OCONVNOP || r.Op() == ir.OCONVIFACE {
    					r := r.(*ir.ConvExpr)
    					if r.Implicit() {
    						n.Y = r.X
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top