Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for spill (0.13 sec)

  1. src/reflect/value.go

    			default:
    				panic("unknown ABI part kind")
    			}
    		}
    	}
    	// TODO(mknyszek): Remove this when we no longer have
    	// caller reserved spill space.
    	frameSize = align(frameSize, goarch.PtrSize)
    	frameSize += abid.spill
    
    	// Mark pointers in registers for the return path.
    	regArgs.ReturnIsPtr = abid.outRegPtrs
    
    	if debugReflectCall {
    		regArgs.Dump()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (SelectN [0] call:(StaticLECall {sym} x)) && needRaceCleanup(sym, call) && clobber(call) => x
    
    // When rewriting append to growslice, we use as the new length the result of
    // growslice so that we don't have to spill/restore the new length around the growslice call.
    // The exception here is that if the new length is a constant, avoiding spilling it
    // is pointless and its constantness is sometimes useful for subsequent optimizations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    	// Remove the error from being returned and see if the garbage collector sync is still working
    	fakeDiscoveryClient.setPreferredResources(serverResources, nil)
    
    	err = expectSyncNotBlocked(fakeDiscoveryClient, &gc.workerLock)
    	if err != nil {
    		t.Fatalf("Expected garbagecollector.Sync to still be running but it is blocked: %v", err)
    	}
    	assertMonitors(t, gc, "pods", "deployments")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator.go

    	}
    
    	volumesAreAttachedFunc := func() volumetypes.OperationContext {
    
    		// For each volume plugin, pass the list of volume specs to VolumesAreAttached to check
    		// whether the volumes are still attached.
    		for pluginName, volumesSpecs := range volumesPerPlugin {
    			attachableVolumePlugin, err :=
    				og.volumePluginMgr.FindAttachablePluginByName(pluginName)
    			if err != nil || attachableVolumePlugin == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    // kubelet - what pods should be running.
    //
    // WARNING: Currently this list does not include pods that have been force
    // deleted but may still be terminating, which means resources assigned to
    // those pods during admission may still be in use. See
    // https://github.com/kubernetes/kubernetes/issues/104824
    func (kl *Kubelet) GetActivePods() []*v1.Pod {
    	allPods := kl.podManager.GetPods()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		if err != nil {
    			t.Fatalf("Unexpected error: %v", err)
    		}
    		if afterWasCalled {
    			t.Errorf("unexpected, AfterDelete() was called")
    		}
    
    		// the object should still exist, because it still has a finalizer
    		_, err = registry.Get(testContext, podWithFinalizer.Name, &metav1.GetOptions{})
    		if err != nil {
    			t.Fatalf("Unexpected error: %v", err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    		return nil
    	}
    	if cr, ok := dc.ci.(driver.SessionResetter); ok {
    		return cr.ResetSession(ctx)
    	}
    	return nil
    }
    
    // validateConnection checks if the connection is valid and can
    // still be used. It also marks the session for reset if required.
    func (dc *driverConn) validateConnection(needsReset bool) bool {
    	dc.Lock()
    	defer dc.Unlock()
    
    	if needsReset {
    		dc.needReset = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    	if err != nil {
    		t.Fatalf("error closing DB: %v", err)
    	}
    
    	var numOpen int
    	if !waitCondition(t, func() bool {
    		numOpen = db.numOpenConns()
    		return numOpen == 0
    	}) {
    		t.Fatalf("%d connections still open after closing DB", numOpen)
    	}
    }
    
    // numPrepares assumes that db has exactly 1 idle conn and returns
    // its count of calls to Prepare
    func numPrepares(t *testing.T, db *DB) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	q.AssignedPodAdded(logger, labelPod)
    	if getUnschedulablePod(q, affinityPod) != nil {
    		t.Error("affinityPod is still in the unschedulablePods.")
    	}
    	if _, exists, _ := q.activeQ.Get(newQueuedPodInfoForLookup(affinityPod)); !exists {
    		t.Error("affinityPod is not moved to activeQ.")
    	}
    	// Check that the other pod is still in the unschedulablePods.
    	if getUnschedulablePod(q, unschedulablePodInfo.Pod) == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    		// (https://go.dev/issue/47257) and no longer support GOROOT_FINAL
    		// (https://go.dev/issue/62047).
    		// TODO(bcmills): Figure out whether this behavior is still useful.
    		//
    		// b.WorkDir is always either trimmed or rewritten to
    		// the literal string "/tmp/go-build".
    	} else if !strings.HasPrefix(p.Dir, b.WorkDir) {
    		// -trimpath is not set and no other rewrite rules apply,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top