Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 565 for free1 (0.04 sec)

  1. pkg/registry/core/service/allocator/bitmap_test.go

    			allocated++
    		}
    	}
    
    	// there should be only one free value
    	if f := m.Free(); f != 1 {
    		t.Errorf("expect to get %d, but got %d", 1, f)
    	}
    	// check if the last free value is in the lower band
    	count := 0
    	for i := 0; i < dynamicOffset; i++ {
    		if !m.Has(i) {
    			count++
    		}
    	}
    	if count != 1 {
    		t.Errorf("expected one remaining free value, got %d", count)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 10 08:56:31 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/registry/core/service/ipallocator/bitmap.go

    func maximum(a, b int) int {
    	if a > b {
    		return a
    	}
    	return b
    }
    
    // Free returns the count of IP addresses left in the range.
    func (r *Range) Free() int {
    	return r.alloc.Free()
    }
    
    // Used returns the count of IP addresses used in the range.
    func (r *Range) Used() int {
    	return r.max - r.alloc.Free()
    }
    
    // CIDR returns the CIDR covered by the range.
    func (r *Range) CIDR() net.IPNet {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/runtime/testdata/testprog/gc.go

    		} else {
    			free = append(free, uintptr(unsafe.Pointer(p)))
    		}
    	}
    
    	// Free the unreferenced objects.
    	runtime.GC()
    
    	// Bring the free objects back to life.
    	for _, p := range free {
    		zombies = append(zombies, (*byte)(unsafe.Pointer(p)))
    	}
    
    	// GC should detect the zombie objects.
    	runtime.GC()
    	println("failed")
    	runtime.KeepAlive(keep)
    	runtime.KeepAlive(zombies)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K 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