Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for cpuIDs (0.19 sec)

  1. docs/en/docs/deployment/concepts.md

    ## Resource Utilization
    
    Your server(s) is (are) a **resource**, you can consume or **utilize**, with your programs, the computation time on the CPUs, and the RAM memory available.
    
    How much of the system resources do you want to be consuming/utilizing? It might be easy to think "not much", but in reality, you will probably want to consume **as much as possible without crashing**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device_test.cc

          TFE_NewContext(opts.get(), status.get()), TFE_DeleteContext);
      ASSERT_EQ(TF_GetCode(status.get()), TF_OK) << TF_Message(status.get());
    
      // Create a parallel device with two CPUs
      const char* first_device_name =
          "/job:localhost/replica:0/task:0/device:CUSTOM:0";
      std::array<const char*, 2> first_underlying_devices{
          "/job:localhost/replica:0/task:0/device:CPU:0",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 08 23:47:35 UTC 2021
    - 29.3K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/options.go

    	fs.StringVar(&c.ReservedSystemCPUs, "reserved-cpus", c.ReservedSystemCPUs, "A comma-separated list of CPUs or CPU ranges that are reserved for system and kubernetes usage. This specific list will supersede cpu counts in --system-reserved and --kube-reserved.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks_test.go

    	var tests = []struct {
    		numCPU      int
    		numErrors   int
    		numWarnings int
    	}{
    		{0, 0, 0},
    		{999999999, 1, 0},
    	}
    
    	for _, rt := range tests {
    		t.Run(fmt.Sprintf("number of CPUs: %d", rt.numCPU), func(t *testing.T) {
    			warnings, errors := NumCPUCheck{NumCPU: rt.numCPU}.Check()
    			if len(warnings) != rt.numWarnings {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. cmd/peer-rest-client.go

    	return resp.ValueOrZero(), err
    }
    
    // GetCPUs - fetch CPU information for a remote node.
    func (client *peerRESTClient) GetCPUs(ctx context.Context) (info madmin.CPUs, err error) {
    	resp, err := getCPUsHandler.Call(ctx, client.gridConn(), grid.NewMSS())
    	return resp.ValueOrZero(), err
    }
    
    // GetNetInfo - fetch network information for a remote node.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. src/time/sleep_test.go

    		go func() {
    			atomic.AddInt32(&count, 1)
    			for atomic.LoadInt32(&count) < int32(targetThreadCount) {
    				// spin until all threads started
    			}
    
    			// spin a bit more to ensure they are all running on separate CPUs.
    			doWork(Millisecond)
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    }
    
    func doWork(dur Duration) {
    	start := Now()
    	for Since(start) < dur {
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/parser.go

    	case EvFrequency:
    		p.ticksPerSec = int64(raw.args[0])
    		if p.ticksPerSec <= 0 {
    			// The most likely cause for this is tick skew on different CPUs.
    			// For example, solaris/amd64 seems to have wildly different
    			// ticks on different CPUs.
    			return ErrTimeOrder
    		}
    	case EvTimerGoroutine:
    		p.timerGoids[raw.args[0]] = true
    	case EvStack:
    		if len(raw.args) < 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/obj5.go

    				ctxt.Diag("%v: TLS MRC instruction must write to R0 as it might get translated into a BL instruction", p.Line())
    			}
    
    			if buildcfg.GOARM.Version < 7 {
    				// Replace it with BL runtime.read_tls_fallback(SB) for ARM CPUs that lack the tls extension.
    				if progedit_tlsfallback == nil {
    					progedit_tlsfallback = ctxt.Lookup("runtime.read_tls_fallback")
    				}
    
    				// MOVW	LR, R11
    				p.As = AMOVW
    
    				p.From.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		containerStatus := podStatus.FindContainerStatusByName(container.Name)
    
    		// Call internal container post-stop lifecycle hook for any non-running container so that any
    		// allocated cpus are released immediately. If the container is restarted, cpus will be re-allocated
    		// to it.
    		if containerStatus != nil && containerStatus.State != kubecontainer.ContainerStateRunning {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. src/runtime/proc_test.go

    		go func() {
    			atomic.AddInt32(&count, 1)
    			for atomic.LoadInt32(&count) < int32(targetThreadCount) {
    				// spin until all threads started
    			}
    
    			// spin a bit more to ensure they are all running on separate CPUs.
    			doWork(time.Millisecond)
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    }
    
    func doWork(dur time.Duration) {
    	start := time.Now()
    	for time.Since(start) < dur {
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
Back to top