Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 257 for physical (0.39 sec)

  1. src/runtime/mpagealloc_test.go

    		// unmapped summary memory and crashes.
    
    		// Figure out how many chunks are in a physical page, then align BaseChunkIdx
    		// to a physical page in the chunk summary array. Here we only assume that
    		// each summary array is aligned to some physical page.
    		sumsPerPhysPage := ChunkIdx(PhysPageSize / PallocSumBytes)
    		baseChunkIdx := BaseChunkIdx &^ (sumsPerPhysPage - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Connection.kt

     * connection is typically faster than establishing a new one.
     *
     * When a single logical call requires multiple streams due to redirects or authorization
     * challenges, we prefer to use the same physical connection for all streams in the sequence. There
     * are potential performance and behavior consequences to this preference. To support this feature,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/runtime/mstats.go

    	// reserved for the heap. This includes virtual address space
    	// that has been reserved but not yet used, which consumes no
    	// physical memory, but tends to be small, as well as virtual
    	// address space for which the physical memory has been
    	// returned to the OS after it became unused (see HeapReleased
    	// for a measure of the latter).
    	//
    	// HeapSys estimates the largest size the heap has had.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/runtime/traceback_test.go

    	// Test printing exactly the maximum number of frames to make sure we don't
    	// print any "elided" message, eliding exactly 1 so we have to pick back up
    	// in the paused physical frame, and eliding 10 so we have to advance the
    	// physical frame forward.
    	for _, elided := range []int{0, 1, 10} {
    		t.Run(fmt.Sprintf("elided=%d", elided), func(t *testing.T) {
    			n := elided + runtime.TracebackInnerFrames + runtime.TracebackOuterFrames
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/policy_options.go

    type StaticPolicyOptions struct {
    	// flag to enable extra allocation restrictions to avoid
    	// different containers to possibly end up on the same core.
    	// we consider "core" and "physical CPU" synonim here, leaning
    	// towards the terminoloy k8s hints. We acknowledge this is confusing.
    	//
    	// looking at https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    	//   traceback may crash (and we want as much output as possible) or the stack
    	//   may be changing.
    	//
    	// - Each physical frame can represent several logical frames, so we might
    	//   have to pause in the middle of a physical frame and pick up in the middle
    	//   of a physical frame.
    	//
    	// - The cgo symbolizer can expand a cgo PC to more than one logical frame,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    		//    reshaping it to be narrower and longer. As long as the maximum
    		//    seats setting will prevent dispatching too many requests at once
    		//    to prevent overloading kube-apiserver (and/or etcd or the VM or
    		//    a physical machine it is running on), we believe the relaxed
    		//    version should be good enough to achieve the P&F goals.
    		//
    		// TODO: Confirm that the current cap of maximumSeats allow us to
    		//   achieve the above.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

        }
    
        private void appendOsStats(final StringBuilder buf) {
            buf.append("\"os\":{");
            final OsProbe osProbe = OsProbe.getInstance();
            buf.append("\"memory\":{");
            buf.append("\"physical\":{");
            append(buf, "free", () -> osProbe.getFreePhysicalMemorySize()).append(',');
            append(buf, "total", () -> osProbe.getTotalPhysicalMemorySize());
            buf.append("},");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/syscall/ztypes_dragonfly_amd64.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
    	Recvquota  uint8
    	Xmitquota  uint8
    	Pad_cgo_0  [2]byte
    	Mtu        uint64
    	Metric     uint64
    	Link_state uint64
    	Baudrate   uint64
    	Ipackets   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  10. pkg/ctrlz/topics/assets/templates/mem.html

            <td>Bytes in idle (unused) spans.</td>
        </tr>
    
        <tr>
            <td>HeapReleased</td>
            <td id="HeapReleased">{{.HeapReleased}} bytes</td>
            <td>Physical memory returned to the OS.</td>
        </tr>
    
        <tr>
            <td>HeapObjects</td>
            <td id="HeapObjects">{{.HeapObjects}} objects</td>
            <td>Number of allocated heap objects.</td>
        </tr>
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top