Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 75 of 75 for Hashing (0.12 sec)

  1. pkg/kubelet/pod_workers.go

    	// will be called until it exits successfully, and after that all further
    	// UpdatePod() calls will be ignored for that pod until it has been forgotten
    	// due to significant time passing. A pod that is terminated will never be
    	// restarted.
    	UpdatePod(options UpdatePodOptions)
    	// SyncKnownPods removes workers for pods that are not in the desiredPods set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	// inspect a span concurrently with allocating it, so it's
    	// important that the span's sweepgen survive across freeing
    	// and re-allocating a span to prevent background sweeping
    	// from improperly cas'ing it from 0.
    	//
    	// This is safe because mspan contains no heap pointers.
    	h.spanalloc.zero = false
    
    	// h->mapcache needs no init
    
    	for i := range h.central {
    		h.central[i].mcentral.init(spanClass(i))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api_test.go

    			[]testInst{{`g`, []string{`int`, `string`}, `func(int, string)`}},
    		},
    		// reverse3a not possible (cannot assign to generic function outside of argument passing)
    		{`package reverse3b; func f[R any](func(int) R) {}; func g[P any](P) string { return "" }; func _() { f(g) }`,
    			[]testInst{
    				{`f`, []string{`string`}, `func(func(int) string)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    			// register is free, allocate that one. Otherwise when processing
    			// another input we may kick a value into the free register, which
    			// then will be kicked out again.
    			// This is a common case for passing-in-register arguments for
    			// function calls.
    			for {
    				freed := false
    				for _, i := range regspec.inputs {
    					if args[i.idx] != nil {
    						continue // already allocated
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    			if strings.HasPrefix(t, k+"_") {
    				return true
    			}
    		}
    	}
    	return false
    }
    
    // rewriteCalls rewrites all calls that pass pointers to check that
    // they follow the rules for passing pointers between Go and C.
    // This reports whether the package needs to import unsafe as _cgo_unsafe.
    func (p *Package) rewriteCalls(f *File) bool {
    	needsUnsafe := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top