Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 430 for free1 (0.04 sec)

  1. src/runtime/trace.go

    	// flush their own buffers in traceThreadDestroy.
    	//
    	// Snapshotting freem is necessary because Ms can continue to emit events
    	// while they're still on that list. Removal from sched.freem is serialized with
    	// this snapshot, so either we'll capture an m on sched.freem and race with
    	// the removal to flush its buffers (resolved by traceThreadDestroy acquiring
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repair_test.go

    		t.Errorf("unexpected ipallocator state: %#v", after)
    	}
    	if free := after.Free(); free != 251 {
    		t.Errorf("unexpected ipallocator state: %d free (number of free ips is not 251)", free)
    	}
    
    	secondaryAfter, err := ipallocator.NewFromSnapshot(secondaryIPRegistry.updated)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. pkg/kubelet/userns/userns_manager.go

    		Mode: runtimeapi.NamespaceMode_POD,
    		Uids: uids,
    		Gids: gids,
    	}, nil
    }
    
    // CleanupOrphanedPodUsernsAllocations reconciliates the state of user namespace
    // allocations with the pods actually running. It frees any user namespace
    // allocation for orphaned pods.
    func (m *UsernsManager) CleanupOrphanedPodUsernsAllocations(pods []*v1.Pod, runningPods []*kubecontainer.Pod) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/policy_static.go

    		nodeResourceMemoryState := machineState[nodeID].MemoryMap[resourceName]
    		if nodeResourceMemoryState.Free <= 0 {
    			continue
    		}
    
    		// the node has enough memory to satisfy the request
    		if nodeResourceMemoryState.Free >= requestedSize {
    			nodeResourceMemoryState.Reserved += requestedSize
    			nodeResourceMemoryState.Free -= requestedSize
    			requestedSize = 0
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

            '''
        }
    
        @Override
        String getDebug() {
            'attribute(buildType, BuildType.debug)'
        }
    
        @Override
        String getFree() {
            'attribute(flavor, objects.named(Flavor, "free"))'
        }
    
        @Override
        String getRelease() {
            'attribute(buildType, BuildType.release)'
        }
    
        @Override
        String getPaid() {
            'attribute(flavor, objects.named(Flavor, "paid"))'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    Free Software Foundation, write to the Free Software Foundation; we
    sometimes make exceptions for this. Our decision will be guided by the
    two goals of preserving the free status of all derivatives of our free
    software and of promoting the sharing and reuse of software generally.
    
    NO WARRANTY
    
    11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
    WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. cmd/erasure-metadata.go

    	return dataBlocks, writeQuorum, nil
    }
    
    const (
    	tierFVID     = "tier-free-versionID"
    	tierFVMarker = "tier-free-marker"
    	tierSkipFVID = "tier-skip-fvid"
    )
    
    // SetTierFreeVersionID sets free-version's versionID. This method is used by
    // object layer to pass down a versionID to set for a free-version that may be
    // created.
    func (fi *FileInfo) SetTierFreeVersionID(versionID string) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            osMemoryObj.physical = osMemoryPhysicalObj;
            osMemoryPhysicalObj.free = osProbe.getFreePhysicalMemorySize();
            osMemoryPhysicalObj.total = osProbe.getTotalPhysicalMemorySize();
            final OsMemorySwapSpaceObj osMemorySwapSpaceObj = new OsMemorySwapSpaceObj();
            osMemoryObj.swapSpace = osMemorySwapSpaceObj;
            osMemorySwapSpaceObj.free = osProbe.getFreeSwapSpaceSize();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. src/runtime/heapdump.go

    	// MemStats structure and should be ordered the same
    	// way too.
    	dumpint(tagMemStats)
    	dumpint(m.Alloc)
    	dumpint(m.TotalAlloc)
    	dumpint(m.Sys)
    	dumpint(m.Lookups)
    	dumpint(m.Mallocs)
    	dumpint(m.Frees)
    	dumpint(m.HeapAlloc)
    	dumpint(m.HeapSys)
    	dumpint(m.HeapIdle)
    	dumpint(m.HeapInuse)
    	dumpint(m.HeapReleased)
    	dumpint(m.HeapObjects)
    	dumpint(m.StackInuse)
    	dumpint(m.StackSys)
    	dumpint(m.MSpanInuse)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    // The result of orderStmtInPlace MUST be assigned back to n, e.g.
    //
    //	n.Left = orderStmtInPlace(n.Left)
    //
    // free is a map that can be used to obtain temporary variables by type.
    func orderStmtInPlace(n ir.Node, free map[string][]*ir.Name) ir.Node {
    	var order orderState
    	order.free = free
    	mark := order.markTemp()
    	order.stmt(n)
    	order.popTemp(mark)
    	return ir.NewBlockStmt(src.NoXPos, order.out)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top