Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for physical (0.15 sec)

  1. src/runtime/tracestack.go

    // pcBuf and dst should not overlap.
    //
    // fpunwindExpand checks if pcBuf contains logical frames (which include inlined
    // frames) or physical frames (produced by frame pointer unwinding) using a
    // sentinel value in pcBuf[0]. Logical frames are simply returned without the
    // sentinel. Physical frames are turned into logical frames via inline unwinding
    // and by applying the skip value that's stored in pcBuf[0].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/net/net_windows_test.go

    	//
    	//Connection Name:  Local Area Connection
    	//Network Adapter:  Intel Gigabit Network Connection
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   \Device\Tcpip_{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}
    	//
    	//Connection Name:  Wireless Network Connection
    	//Network Adapter:  Wireles WLAN Card
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   Media disconnected
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

            final OsMemoryObj osMemoryObj = new OsMemoryObj();
            osObj.memory = osMemoryObj;
            final OsMemoryPhysicalObj osMemoryPhysicalObj = new OsMemoryPhysicalObj();
            osMemoryObj.physical = osMemoryPhysicalObj;
            osMemoryPhysicalObj.free = osProbe.getFreePhysicalMemorySize();
            osMemoryPhysicalObj.total = osProbe.getTotalPhysicalMemorySize();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.h

    bool TypeValidForXLA(const mlir::Type& type);
    
    // Returns the map from core to the host that is associated with the
    // core. If `cluster` is not replicated then the core is a physical core index
    // and the host is a physical host name. If `cluster` is replicated then the
    // core with index `i` is a logical core (`TPU_REPLICATED_CORE_i`), and the host
    // is the associated virtual device name (`TPU_REPLICATED_HOST_i`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_experimental.h

    TF_CAPI_EXPORT extern size_t TFE_TensorHandleDeviceMemorySize(TFE_TensorHandle*,
                                                                  TF_Status*);
    
    // Creates a new TensorHandle from memory residing in the physical device
    // device_name. Takes ownership of the memory, and will call deleter to release
    // it after TF no longer needs it or in case of error.
    //
    // Custom devices must use TFE_NewCustomDeviceTensorHandle instead.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/model/gateway.go

    	ServerPorts []ServerPort
    
    	// MergedServers map from physical port to virtual servers
    	// using TCP protocols (like HTTP1.1, H2, mysql, redis etc)
    	MergedServers map[ServerPort]*MergedServers
    
    	// MergedQUICTransportServers map from physical port to servers listening
    	// on QUIC (like HTTP3). Currently the support is experimental and
    	// is limited to HTTP3 only
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. src/runtime/stkframe.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // A stkframe holds information about a single physical stack frame.
    type stkframe struct {
    	// fn is the function being run in this frame. If there is
    	// inlining, this is the outermost function.
    	fn funcInfo
    
    	// pc is the program counter within fn.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/runtime/arena.go

    		}
    	}
    
    	// Double-check it's aligned to the physical page size. Based on the current
    	// implementation this is trivially true, but it need not be in the future.
    	// However, if it's not aligned to the physical page size then we can't properly
    	// set it to fault later.
    	if uintptr(x)%physPageSize != 0 {
    		throw("user arena chunk is not aligned to the physical page size")
    	}
    
    	return x, span
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  10. src/runtime/metrics/doc.go

    	/memory/classes/heap/free:bytes
    		Memory that is completely free and eligible to be returned to
    		the underlying system, but has not been. This metric is the
    		runtime's estimate of free address space that is backed by
    		physical memory.
    
    	/memory/classes/heap/objects:bytes
    		Memory occupied by live objects and dead objects that have not
    		yet been marked free by the garbage collector.
    
    	/memory/classes/heap/released:bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top