Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 889 for Amount (0.15 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

        }
    
        /**
         * Returns the amount of memory allocated to this task.
         */
        @Internal
        @Nullable
        public String getMaxMemory() {
            return maxMemory;
        }
    
        /**
         * Sets the amount of memory allocated to this task.
         *
         * @param maxMemory The amount of memory
         */
        public void setMaxMemory(String maxMemory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/heap/heap_test.go

    	if *metricRecorder != 4 {
    		t.Errorf("expected count to be 4 but got %d", *metricRecorder)
    	}
    	if err := h.Delete(mkHeapObj("bar", 1)); err != nil {
    		t.Fatal(err)
    	}
    	if *metricRecorder != 3 {
    		t.Errorf("expected count to be 3 but got %d", *metricRecorder)
    	}
    	if _, err := h.Pop(); err != nil {
    		t.Fatal(err)
    	}
    	if *metricRecorder != 2 {
    		t.Errorf("expected count to be 2 but got %d", *metricRecorder)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. tests/fuzz/pilot_security_fuzzer.go

    	return 1
    }
    
    func getKandV(data []byte) (string, string, error) {
    	if len(data) < 10 {
    		return "", "", fmt.Errorf("not enough bytes")
    	}
    	if len(data)%2 != 0 {
    		return "", "", fmt.Errorf("not correct amount of bytes")
    	}
    	k := string(data[:len(data)/2])
    	v := string(data[(len(data)/2)+1:])
    	return k, v, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "SLLIW", argLength: 1, reg: gp11, asm: "SLLIW", aux: "Int64"}, // arg0 << auxint, shift amount 0-31, logical left shift of 32 bit value, sign extended to 64 bits
    		{name: "SRAI", argLength: 1, reg: gp11, asm: "SRAI", aux: "Int64"},   // arg0 >> auxint, shift amount 0-63, arithmetic right shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/types.go

    	CgroupName(name string) CgroupName
    	// Pids scans through all subsystems to find pids associated with specified cgroup.
    	Pids(name CgroupName) []int
    	// ReduceCPULimits reduces the CPU CFS values to the minimum amount of shares.
    	ReduceCPULimits(cgroupName CgroupName) error
    	// MemoryUsage returns current memory usage of the specified cgroup, as read from the cgroupfs.
    	MemoryUsage(name CgroupName) (int64, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/runtime/mstats.go

    	// During program execution we only count number of frees and amount of freed memory.
    	// Current number of alive objects in the heap and amount of alive heap memory
    	// are calculated by scanning all spans.
    	// Total number of mallocs is calculated as number of frees plus number of alive objects.
    	// Similarly, total amount of allocated memory is calculated as amount of freed memory
    	// plus amount of alive heap memory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/MIPSOps.go

    		{name: "SLLconst", argLength: 1, reg: gp11, asm: "SLL", aux: "Int32"}, // arg0 << auxInt, shift amount must be 0 through 31 inclusive
    		{name: "SRL", argLength: 2, reg: gp21, asm: "SRL"},                    // arg0 >> arg1, unsigned, shift amount is mod 32
    		{name: "SRLconst", argLength: 1, reg: gp11, asm: "SRL", aux: "Int32"}, // arg0 >> auxInt, shift amount must be 0 through 31 inclusive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            final String path
            final int count
            final List<String> modelNames
    
            ModelRequestExpectation(String path, int count) {
                this.path = path
                this.count = count
                this.modelNames = null
            }
    
            ModelRequestExpectation(String path, List<String> names) {
                this.path = path
                this.count = names.size()
                this.modelNames = names
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.UserNamespacesSupport) {
    		if cl.SecurityContext.NamespaceOptions.UsernsOptions != nil {
    			for _, mount := range config.Mounts {
    				mount.UidMappings = cl.SecurityContext.NamespaceOptions.UsernsOptions.Uids
    				mount.GidMappings = cl.SecurityContext.NamespaceOptions.UsernsOptions.Gids
    			}
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MBeanOsMemoryInfo.java

     * Use {@link MemInfoOsMemoryInfo} and {@link NativeOsMemoryInfo} instead.
     * On Windows, this doesn't include the secondary commit limit, which is the maximum amount of virtual memory that can be allocated.
     * Use {@link WindowsOsMemoryInfo} instead.
     */
    public class MBeanOsMemoryInfo implements OsMemoryInfo {
        private final MBeanAttributeProvider mBeanAttributeProvider;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 21:48:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top