Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 363 for Amount (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    		ub := amount.UnscaledBig()
    		amount.SetUnscaledBig(ub.Mul(ub, numericSuffix))
    	}
    
    	// Cap at min/max bounds.
    	sign := amount.Sign()
    	if sign == -1 {
    		amount.Neg(amount)
    	}
    
    	// This rounds non-zero values up to the minimum representable value, under the theory that
    	// if you want some resources, you should get some resources, even if you asked for way too small
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    // The effective memory address is R or R+X depending on Index, Extend and Amount.
    type MemExtend struct {
    	Base   RegSP
    	Index  Reg
    	Extend ExtShift
    	// Amount indicates the index shift amount (but also see ShiftMustBeZero field below).
    	Amount uint8
    	// Refer to ARM reference manual, for byte load/store(register), the index
    	// shift amount must be 0, encoded in "S" as 0 if omitted, or as 1 if present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64error.s

    	MOVWU	(R5)(R4.UXTW<<3), R10                            // ERROR "invalid index shift amount"
    	MOVWU	(R5)(R4<<1), R10                                 // ERROR "invalid index shift amount"
    	MOVB	(R5)(R4.SXTW<<5), R10                            // ERROR "invalid index shift amount"
    	MOVH	R5, (R6)(R2<<3)                                  // ERROR "invalid index shift amount"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  4. src/runtime/extern.go

    	error, roughly once per GC cycle, summarizing the amount of work done by the
    	scavenger as well as the total amount of memory returned to the operating system
    	and an estimate of physical memory utilization. The format of this line is subject
    	to change, but currently it is:
    		scav # KiB work (bg), # KiB work (eager), # KiB total, #% util
    	where the fields are as follows:
    		# KiB work (bg)    the amount of memory returned to the OS in the background since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    // when selecting full cores, the cores are selected starting from the ones in the NUMA node with
    // the least amount of free CPUs to the one with the highest amount of free CPUs (i.e. in ascending
    // order of free CPUs). For any NUMA node, the cores are selected from the ones in the socket with
    // the least amount of free CPUs to the one with the highest amount of free CPUs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/volume_manager.go

    	// The data structure is populated upon successful completion of attach,
    	// detach, mount, and unmount actions triggered by the reconciler.
    	actualStateOfWorld cache.ActualStateOfWorld
    
    	// operationExecutor is used to start asynchronous attach, detach, mount,
    	// and unmount operations.
    	operationExecutor operationexecutor.OperationExecutor
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/helpers_linux.go

    		mountPoints[controller] = util.CgroupRoot
    		m := libcontainercgroups.Mount{
    			Mountpoint: util.CgroupRoot,
    			Root:       util.CgroupRoot,
    			Subsystems: []string{controller},
    		}
    		mounts = append(mounts, m)
    	}
    
    	return &CgroupSubsystems{
    		Mounts:      mounts,
    		MountPoints: mountPoints,
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top