Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 257 for physical (0.12 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatusSnapshot.java

         *
         * @param totalPhysicalMemory total physical memory in bytes
         * @param freePhysicalMemory free physical memory in bytes
         */
        public OsMemoryStatusSnapshot(long totalPhysicalMemory, long freePhysicalMemory) {
            this(
                new DefaultAvailableOsMemoryStatusAspect("physical", totalPhysicalMemory, freePhysicalMemory),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategyTest.groovy

            1 * mockMemoryStatus.physicalMemory >> { new DefaultAvailableOsMemoryStatusAspect("physical", MAX_MEMORY, ONE_GIG) }
            expirationStrategy.onOsMemoryStatus(mockMemoryStatus)
    
            then:
            expirationStrategy.physicalMemoryThresholdInBytes == LowMemoryDaemonExpirationStrategy.MAX_THRESHOLD_BYTES
        }
    
        def "daemon should expire when physical memory falls below threshold"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/runtime/vdso_freebsd_arm64.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    const (
    	_VDSO_TH_ALGO_ARM_GENTIM = 1
    )
    
    func getCntxct(physical bool) uint32
    
    //go:nosplit
    func (th *vdsoTimehands) getTimecounter() (uint32, bool) {
    	switch th.algo {
    	case _VDSO_TH_ALGO_ARM_GENTIM:
    		return getCntxct(th.physical != 0), true
    	default:
    		return 0, false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 04 04:17:04 UTC 2022
    - 454 bytes
    - Viewed (0)
  4. src/runtime/vdso_freebsd_arm.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    const (
    	_VDSO_TH_ALGO_ARM_GENTIM = 1
    )
    
    func getCntxct(physical bool) uint32
    
    //go:nosplit
    func (th *vdsoTimehands) getTimecounter() (uint32, bool) {
    	switch th.algo {
    	case _VDSO_TH_ALGO_ARM_GENTIM:
    		return getCntxct(th.physical != 0), true
    	default:
    		return 0, false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 18 21:54:26 UTC 2018
    - 454 bytes
    - Viewed (0)
  5. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatus.java

     */
    
    package org.gradle.process.internal.health.memory;
    
    /**
     * OS memory status.
     */
    public interface OsMemoryStatus {
        /**
         * Get the physical memory information.
         *
         * @return the physical memory information
         */
        OsMemoryStatusAspect.Available getPhysicalMemory();
    
        /**
         * Get the virtual memory information.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/gc.go

    	// heapBacked is an estimate of the amount of physical memory used by
    	// this test. HeapSys is an estimate of the size of the mapped virtual
    	// address space (which may or may not be backed by physical pages)
    	// whereas HeapReleased is an estimate of the amount of bytes returned
    	// to the OS. Their difference then roughly corresponds to the amount
    	// of virtual address space that is backed by physical pages.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  7. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

        description: deletionPolicy determines whether this VolumeSnapshotContent and its physical snapshot on the underlying storage system should be deleted when its bound VolumeSnapshot is deleted. Supported values are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent and its physical snapshot on underlying storage system are deleted. For dynamically provisioned snapshots,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MBeanOsMemoryInfo.java

            if (total == -1) {
                throw new UnsupportedOperationException("Unable to retrieve total physical memory from MBean");
            }
            if (free == -1) {
                throw new UnsupportedOperationException("Unable to retrieve free physical memory from MBean");
            }
            return new OsMemoryStatusSnapshot(total, free);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 21:48:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

                    VolumeSnapshot is deleted. Supported values are "Retain" and "Delete".
                    "Retain" means that the VolumeSnapshotContent and its physical snapshot
                    on underlying storage system are kept. "Delete" means that the VolumeSnapshotContent
                    and its physical snapshot on underlying storage system are deleted.
                    Required.
                  enum:
                    - Delete
                    - Retain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/policy_static.go

    			// if the CPU requested is a multiple of the number of virtual cpus per physical cores.
    			// In case CPU request is not a multiple of the number of virtual cpus per physical cores the Pod will be put
    			// in Failed state, with SMTAlignmentError as reason. Since the allocation happens in terms of physical cores
    			// and the scheduler is responsible for ensuring that the workload goes to a node that has enough CPUs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
Back to top