Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for convenient (0.12 sec)

  1. src/cmd/link/internal/ld/data.go

    	// For ppc64, we want to interleave the .got and .toc sections
    	// from input files. Both are type sym.SELFGOT, so in that case
    	// we skip size comparison and do the name comparison instead
    	// (conveniently, .got sorts before .toc).
    	checkSize := symn != sym.SELFGOT
    
    	for k, s := range syms {
    		ss := ldr.SymSize(s)
    		sl[k] = symNameSize{sz: ss, sym: s}
    		if !checkSize {
    			sl[k].name = ldr.SymName(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	kl.probeManager.AddPod(pod)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    		// Handle pod resize here instead of doing it in HandlePodUpdates because
    		// this conveniently retries any Deferred resize requests
    		// TODO(vinaykul,InPlacePodVerticalScaling): Investigate doing this in HandlePodUpdates + periodic SyncLoop scan
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    				return ""
    			}
    		}
    	}
    
    	return ""
    }
    
    // mkAbs rewrites list, which must be paths relative to p.Dir,
    // into a sorted list of absolute paths. It edits list in place but for
    // convenience also returns list back to its caller.
    func (p *Package) mkAbs(list []string) []string {
    	for i, f := range list {
    		list[i] = filepath.Join(p.Dir, f)
    	}
    	sort.Strings(list)
    	return list
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    </pre>
    
    <p>
    the slice <code>s</code> has type <code>[]int</code>, length 3, capacity 4, and elements
    </p>
    
    <pre>
    s[0] == 2
    s[1] == 3
    s[2] == 4
    </pre>
    
    <p>
    For convenience, any of the indices may be omitted. A missing <code>low</code>
    index defaults to zero; a missing <code>high</code> index defaults to the length of the
    sliced operand:
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top