Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for workerCh (0.23 sec)

  1. src/runtime/mgcpacer.go

    	// time that should be spent in the fractional mark worker on
    	// each P that isn't running a dedicated worker.
    	//
    	// For example, if the utilization goal is 25% and there are
    	// no dedicated workers, this will be 0.25. If the goal is
    	// 25%, there is one dedicated worker, and GOMAXPROCS is 5,
    	// this will be 0.05 to make up the missing 5%.
    	//
    	// If this is zero, no fractional workers are needed.
    	fractionalUtilizationGoal float64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

      // Create two worker tasks, using single host server defs.
      // A single host server def contains a client and the remote host.
      // Example:
      //
      //  Worker1:
      //  cluster { job { name: "client" tasks { key: 0 value: "localhost:14525" } }
      //            job { name: "worker" tasks { key: 1 value: "localhost:14523" } }
      //          } job_name: "worker" task_index: 1 protocol: "grpc"
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    	// and there are no more workers (note that, since this is
    	// concurrent, this may be a transient state, but mark
    	// termination will clean it up). Between background workers
    	// and assists, we don't really know how many workers there
    	// will be, so we pretend to have an arbitrarily large number
    	// of workers, almost all of which are "waiting". While a
    	// worker is working it decrements nwait. If nproc == nwait,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// working is true if an update is pending or being worked by a pod worker
    	// goroutine.
    	working bool
    	// pendingUpdate is the updated state the pod worker should observe. It is
    	// cleared and moved to activeUpdate when a pod worker reads it. A new update
    	// may always replace a pending update as the pod worker does not guarantee
    	// that all intermediate states are synced to a worker, only the most recent.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers_test.go

    		}
    		stillWorking := false
    
    		// ignore held workers
    		w.lock.Lock()
    		for uid := range w.holds {
    			pausedWorkers[uid] = struct{}{}
    		}
    		w.lock.Unlock()
    
    		// check for at least one still working non-paused worker
    		w.w.podLock.Lock()
    		for uid, worker := range w.w.podSyncStatuses {
    			if _, ok := pausedWorkers[uid]; ok {
    				continue
    			}
    			if worker.working {
    				stillWorking = true
    				break
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  6. .teamcity/test-buckets.json

    					"ivy",
    					"testing-native",
    					"maven",
    					"integ-test"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"workers",
    					"model-core",
    					"language-groovy",
    					"build-init",
    					"logging",
    					"plugins-groovy",
    					"kotlin-dsl",
    					"plugins-java",
    					"samples",
    					"plugin-development",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    // newBatchJobPool creates a pool of job manifest workers of specified size
    func newBatchJobPool(ctx context.Context, o ObjectLayer, workers int) *BatchJobPool {
    	jpool := &BatchJobPool{
    		ctx:          ctx,
    		objLayer:     o,
    		jobCh:        make(chan *BatchJobRequest, 10000),
    		workerKillCh: make(chan struct{}, workers),
    		jobCancelers: make(map[string]context.CancelFunc),
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    Gradle uses the single build worker pool to concurrently compile and link native components, by default. No special configuration is required to enable concurrent building.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel5.0:worker_api]]
    === [5.0] Worker API: working directory of a worker can no longer be set
    
    Since JDK 11 no longer supports changing the working directory of a running process, setting the working directory of a worker via its fork options is now prohibited.
    
    All workers now use the same working directory to enable reuse.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	nodeNameKeyIndex = "spec.nodeName"
    	// podUpdateWorkerSizes assumes that in most cases pod will be handled by monitorNodeHealth pass.
    	// Pod update workers will only handle lagging cache pods. 4 workers should be enough.
    	podUpdateWorkerSize = 4
    	// nodeUpdateWorkerSize defines the size of workers for node update or/and pod update.
    	nodeUpdateWorkerSize = 8
    
    	// taintEvictionController is defined here in order to prevent imports of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top