Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for freeReg (0.23 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            public ResolutionHost getHost() {
                return new DefaultResolutionHost();
            }
    
            @Override
            public ImmutableAttributes getAttributes() {
                configurationAttributes.freeze();
                return configurationAttributes.asImmutable();
            }
    
            @Override
            public ResolutionStrategy.SortOrder getDefaultSortOrder() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	//
    	// The memory for allspans is manually managed and can be
    	// reallocated and move as the heap grows.
    	//
    	// In general, allspans is protected by mheap_.lock, which
    	// prevents concurrent access as well as freeing the backing
    	// store. Accesses during STW might not hold the lock, but
    	// must ensure that allocation cannot happen around the
    	// access (since that may free the backing store).
    	allspans []*mspan // all spans out there
    
    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/syscall/zerrors_solaris_amd64.go

    	28: "virtual Timer Expired",
    	29: "profiling Timer Expired",
    	30: "cpu Limit Exceeded",
    	31: "file Size Limit Exceeded",
    	32: "no runnable lwp",
    	33: "inter-lwp signal",
    	34: "checkpoint Freeze",
    	35: "checkpoint Thaw",
    	36: "thread Cancellation",
    	37: "resource Lost",
    	38: "resource Control Exceeded",
    	39: "reserved for JVM 1",
    	40: "reserved for JVM 2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    //	   allocate a new group of pages (at least 1MB) from the
    //	   operating system. Allocating a large run of pages
    //	   amortizes the cost of talking to the operating system.
    //
    // Sweeping an mspan and freeing objects on it proceeds up a similar
    // hierarchy:
    //
    //	1. If the mspan is being swept in response to allocation, it
    //	   is returned to the mcache to satisfy the allocation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	c.Lock()
    	defer c.Unlock()
    
    	c.dispatching = true
    	// We are reusing the slice to avoid memory reallocations in every
    	// dispatchEvent() call. That may prevent Go GC from freeing items
    	// from previous phases that are sitting behind the current length
    	// of the slice, but there is only a limited number of those and the
    	// gain from avoiding memory allocations is much bigger.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	}
    }
    
    func Test_kmsv2PluginProbe_rotateDEKOnKeyIDChange(t *testing.T) {
    	defaultUseSeed := GetKDF()
    
    	origNowFunc := envelopekmsv2.NowFunc
    	now := origNowFunc() // freeze time
    	t.Cleanup(func() { envelopekmsv2.NowFunc = origNowFunc })
    	envelopekmsv2.NowFunc = func() time.Time { return now }
    
    	klog.LogToStderr(false)
    	var level klog.Level
    	if err := level.Set("6"); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    	// deadlocks. Since the object must be alive during the call to
    	// mProf_Malloc, it's fine to do this non-atomically.
    	systemstack(func() {
    		setprofilebucket(p, b)
    	})
    }
    
    // Called when freeing a profiled block.
    func mProf_Free(b *bucket, size uintptr) {
    	index := (mProfCycle.read() + 1) % uint32(len(memRecord{}.future))
    
    	mp := b.mp()
    	mpc := &mp.future[index]
    
    	lock(&profMemFutureLock[index])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    	})
    
    	// Flush the heap profile so we can start a new cycle next GC.
    	// This is relatively expensive, so we don't do it with the
    	// world stopped.
    	mProf_Flush()
    
    	// Prepare workbufs for freeing by the sweeper. We do this
    	// asynchronously because it can take non-trivial time.
    	prepareFreeWorkbufs()
    
    	// Free stack spans. This must be done between GC cycles.
    	systemstack(freeStackSpans)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top