Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for physical (0.63 sec)

  1. pkg/kubelet/cm/cpumanager/topology/topology.go

    // CPUDetails is a map from CPU ID to Core ID, Socket ID, and NUMA ID.
    type CPUDetails map[int]CPUInfo
    
    // CPUTopology contains details of node cpu, where :
    // CPU  - logical CPU, cadvisor - thread
    // Core - physical CPU, cadvisor - Core
    // Socket - socket, cadvisor - Socket
    // NUMA Node - NUMA cell, cadvisor - Node
    type CPUTopology struct {
    	NumCPUs      int
    	NumCores     int
    	NumSockets   int
    	NumNUMANodes int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/runtime/sys_freebsd_arm64.s

    	MOVW	R1, ret+16(FP)
    	MOVW	R0, errno+20(FP)
    	RET
    noerr:
    	MOVW	R0, ret+16(FP)
    	MOVW	$0, errno+20(FP)
    	RET
    
    // func getCntxct(physical bool) uint32
    TEXT runtime·getCntxct(SB),NOSPLIT,$0
    	MOVB	physical+0(FP), R0
    	CMP	$0, R0
    	BEQ	3(PC)
    
    	// get CNTPCT (Physical Count Register) into R0
    	MRS	CNTPCT_EL0, R0
    	B	2(PC)
    
    	// get CNTVCT (Virtual Count Register) into R0
    	MRS	CNTVCT_EL0, R0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. buildscripts/checkdeps.sh

    	while [ -L "$TARGET_FILE" ]; do
    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    	# for the directory we're in and appending the target file.
    	PHYS_DIR=$(pwd -P)
    	RESULT=$PHYS_DIR/$TARGET_FILE
    	echo $RESULT
    }
    
    ## FIXME:
    ## In OSX, 'sort -V' option does not exist, hence
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go

    }
    
    type IfMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Data    IfData
    }
    
    type ifData struct {
    	Type       uint8
    	Physical   uint8
    	Addrlen    uint8
    	Hdrlen     uint8
    	Link_state uint8
    	Vhid       uint8
    	Datalen    uint16
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint64
    	Ipackets   uint64
    	Ierrors    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. code_of_conduct.md

      advances
    * Trolling, insulting/derogatory comments, and personal or political attacks
    * Public or private harassment
    * Publishing others' private information, such as a physical or electronic
      address, without explicit permission
    * Other conduct which could reasonably be considered inappropriate in a
      professional setting
    
    ## Our Responsibilities
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 20 18:38:58 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  6. src/runtime/defs_freebsd_arm.go

    }
    
    type vdsoTimehands struct {
    	algo         uint32
    	gen          uint32
    	scale        uint64
    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	physical     uint32
    	res          [7]uint32
    }
    
    type vdsoTimekeep struct {
    	ver       uint32
    	enabled   uint32
    	current   uint32
    	pad_cgo_0 [4]byte
    }
    
    const (
    	_VDSO_TK_VER_CURR = 0x1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_colocate_composite_resource_ops.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // Pass that co-locates resource ops that use composite device resources
    // (packed tensors) with the underlying physical TPU device.
    struct TPUColocateCompositeResourceOps
        : public impl::TPUColocateCompositeResourceOpsPassBase<
              TPUColocateCompositeResourceOps> {
      void runOnOperation() override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 17:41:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/runtime/defs_freebsd_arm64.go

    }
    
    type vdsoTimehands struct {
    	algo         uint32
    	gen          uint32
    	scale        uint64
    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	physical     uint32
    	res          [7]uint32
    }
    
    type vdsoTimekeep struct {
    	ver       uint32
    	enabled   uint32
    	current   uint32
    	pad_cgo_0 [4]byte
    }
    
    const (
    	_VDSO_TK_VER_CURR = 0x1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top