Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for spill (0.15 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. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    other arm curled round her head.  Still she went on growing, and,
    as a last resource, she put one arm out of the window, and one
    foot up the chimney, and said to herself `Now I can do no more,
    whatever happens.  What WILL become of me?'
    
      Luckily for Alice, the little magic bottle had now had its full
    effect, and she grew no larger:  still it was very uncomfortable,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. 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)
  9. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    other arm curled round her head.  Still she went on growing, and,
    as a last resource, she put one arm out of the window, and one
    foot up the chimney, and said to herself `Now I can do no more,
    whatever happens.  What WILL become of me?'
    
      Luckily for Alice, the little magic bottle had now had its full
    effect, and she grew no larger:  still it was very uncomfortable,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  10. 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)
Back to top