Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for physical (0.26 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/Binary.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    /**
     * A physical binary artifact, which can run on a particular platform or runtime.
     */
    @Incubating
    public interface Binary {
        /**
         * Returns a human-consumable display name for this binary.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 926 bytes
    - Viewed (0)
  2. src/runtime/mem.go

    // 2) Reserved - Owned by the runtime, but accessing it would cause a fault.
    //               Does not count against the process' memory footprint.
    // 3) Prepared - Reserved, intended not to be backed by physical memory (though
    //               an OS may implement this lazily). Can transition efficiently to
    //               Ready. Accessing memory in such a region is undefined (may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. src/runtime/mem_linux.go

    var adviseUnused = uint32(_MADV_FREE)
    
    const madviseUnsupported = 0
    
    func sysUnusedOS(v unsafe.Pointer, n uintptr) {
    	if uintptr(v)&(physPageSize-1) != 0 || n&(physPageSize-1) != 0 {
    		// madvise will round this to any physical page
    		// *covered* by this range, so an unaligned madvise
    		// will release more memory than intended.
    		throw("unaligned sysUnused")
    	}
    
    	advise := atomic.Load(&adviseUnused)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/runtime/symtabinl.go

    }
    
    // An inlineUnwinder iterates over the stack of inlined calls at a PC by
    // decoding the inline table. The last step of iteration is always the frame of
    // the physical function, so there's always at least one frame.
    //
    // This is typically used as:
    //
    //	for u, uf := newInlineUnwinder(...); uf.valid(); uf = u.next(uf) { ... }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/README.adoc

    This sample shows how to structure a software product that consists of multiple components as a set of connected Gradle builds.
    As such, it shows how Gradle is used to model a project's architecture and reflect that in the physical structure of the files that make up the software.
    This example is described as part of the link:{userManualPath}/structuring_software_products.html[documentation on this topic].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. releasenotes/notes/fix-concurrency.yaml

        was inconsistently configured between sidecars and different gateway installation mechanisms.
        This often led to gateways running with concurrency based on the number of physical cores on the host machine,
        despite having CPU limits, leading to decreased performance and increased resource usage.
        
        In this release, concurrency configuration has been tweaked to be consistent across deployment types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/runtime/pprof/vminfo_darwin_test.go

    	// Report Version:  7
    	// Analysis Tool:   /Applications/Xcode.app/Contents/Developer/usr/bin/vmmap
    	// Analysis Tool Version:  Xcode 14.3 (14E222b)
    	//
    	// Physical footprint:         1.2G
    	// Physical footprint (peak):  1.2G
    	// Idle exit:                  untracked
    	// ----
    	//
    	// Virtual Memory Map of process 53799 (gopls)
    	// Output report format:  2.4  -64-bit process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:59:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/syscall/ztypes_freebsd_arm.go

    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Data      IfData
    }
    
    type ifData struct {
    	Type        uint8
    	Physical    uint8
    	Addrlen     uint8
    	Hdrlen      uint8
    	Link_state  uint8
    	Vhid        uint8
    	Baudrate_pf uint8
    	Datalen     uint8
    	Mtu         uint32
    	Metric      uint32
    	Baudrate    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. src/syscall/ztypes_freebsd_arm64.go

    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Data      IfData
    }
    
    type ifData struct {
    	Type        uint8
    	Physical    uint8
    	Addrlen     uint8
    	Hdrlen      uint8
    	Link_state  uint8
    	Vhid        uint8
    	Baudrate_pf uint8
    	Datalen     uint8
    	Mtu         uint64
    	Metric      uint64
    	Baudrate    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/OsMemoryStatusAspect.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.health.memory;
    
    import org.gradle.api.Named;
    import org.gradle.api.NonNullApi;
    
    /**
     * Memory status information, usually either physical or virtual.
     */
    @NonNullApi
    public interface OsMemoryStatusAspect extends Named {
        /**
         * Get the name of this category.
         *
         * @return the name of this category
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top