Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,054 for central (0.16 sec)

  1. src/runtime/arena.go

    	s.freeIndexForScan = 1
    
    	// Set up the range for allocation.
    	s.userArenaChunkFree = makeAddrRange(base, base+s.elemsize)
    
    	// Put the large span in the mcentral swept list so that it's
    	// visible to the background sweeper.
    	h.central[spc].mcentral.fullSwept(h.sweepgen).push(s)
    
    	// Set up an allocation header. Avoid write barriers here because this type
    	// is not a real type, and it exists in an invalid location.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  2. docs/ko/docs/async.md

    이 시나리오에서, (당신을 포함한) 각각의 청소부들은 프로세서가 될 것이고, 각자의 역할을 수행합니다.
    
    실행 시간의 대부분이 대기가 아닌 실제 작업에 소요되고, 컴퓨터에서 작업은 <abbr title="Central Processing Unit">CPU</abbr>에서 이루어지므로, 이러한 문제를 "CPU에 묶였"다고 합니다.
    
    ---
    
    CPU에 묶인 연산에 관한 흔한 예시는 복잡한 수학 처리를 필요로 하는 경우입니다.
    
    예를 들어:
    
    * **오디오** 또는 **이미지** 처리.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. src/runtime/panic.go

    	// After this point we can copy the stack.
    
    	if !d.heap {
    		return
    	}
    
    	mp := acquirem()
    	pp := mp.p.ptr()
    	if len(pp.deferpool) == cap(pp.deferpool) {
    		// Transfer half of local cache to the central cache.
    		var first, last *_defer
    		for len(pp.deferpool) > cap(pp.deferpool)/2 {
    			n := len(pp.deferpool)
    			d := pp.deferpool[n-1]
    			pp.deferpool[n-1] = nil
    			pp.deferpool = pp.deferpool[:n-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. docs/ja/docs/async.md

    このシナリオでは、清掃員 (あなたを含む) のそれぞれがプロセッサとなり、それぞれの役割を果たします。
    
    また、実行時間のほとんどは (待機ではなく) 実際の作業に費やされ、コンピュータでの作業は<abbr title="Central Processing Unit">CPU</abbr>によって行われます。これらの問題は「CPUバウンド」と言います。
    
    ---
    
    CPUバウンド操作の一般的な例は、複雑な数学処理が必要なものです。
    
    例えば:
    
    * **オーディオ** や **画像処理**。
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. docs/zh/docs/how-to/general.md

    Bill Zhong <******@****.***> 1713829269 -0230
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 22 23:41:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. docs/tr/docs/how-to/general.md

    Hasan Sezer Taşan <******@****.***> 1716826852 +0300
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:20:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	if len(pp.sudogcache) == 0 {
    		lock(&sched.sudoglock)
    		// First, try to grab a batch from central cache.
    		for len(pp.sudogcache) < cap(pp.sudogcache)/2 && sched.sudogcache != nil {
    			s := sched.sudogcache
    			sched.sudogcache = s.next
    			s.next = nil
    			pp.sudogcache = append(pp.sudogcache, s)
    		}
    		unlock(&sched.sudoglock)
    		// If the central cache is empty, allocate a new one.
    		if len(pp.sudogcache) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_CR5                  = 47  // Control register 5
    	PT_CR6                  = 48  // Control register 6
    	PT_CR7                  = 49  // Control register 7
    	PT_CR8                  = 50  // Control register 8
    	PT_CR9                  = 51  // Control register 9
    	PT_CR10                 = 52  // Control register 10
    	PT_CR11                 = 53  // Control register 11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/build.sh

      else
        TAG="pr-${KOKORO_GITHUB_PULL_REQUEST_NUMBER}"
      fi
    fi
    
    # TODO(b/341050361): When these steps are verified, removed the GCR image code.
    AR_IMAGE_PATH="us-central1-docker.pkg.dev/tensorflow-sigs/tensorflow/build-arm64"
    
    # Build for both JAX and TF usage.  We do these in one place because they share
    # almost all of the same cache layers
    export DOCKER_BUILDKIT=1
    for target in jax tf; do
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/preflight.go

    // joining an additional control plane instance and if the node is ready to preflight
    func checkIfReadyForAdditionalControlPlane(initConfiguration *kubeadmapi.ClusterConfiguration, hasCertificateKey bool) error {
    	// blocks if the cluster was created without a stable control plane endpoint
    	if initConfiguration.ControlPlaneEndpoint == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top