Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 936 for workerCh (0.23 sec)

  1. docs/ko/docs/deployment/server-workers.md

    ```console
    $ gunicorn main:app --workers 4 --worker-class uvicorn.workers.UvicornWorker --bind 0.0.0.0:80
    
    [19499] [INFO] Starting gunicorn 20.1.0
    [19499] [INFO] Listening at: http://0.0.0.0:80 (19499)
    [19499] [INFO] Using worker: uvicorn.workers.UvicornWorker
    [19511] [INFO] Booting worker with pid: 19511
    [19513] [INFO] Booting worker with pid: 19513
    [19514] [INFO] Booting worker with pid: 19514
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. docs/ja/docs/deployment/server-workers.md

    ```console
    $ gunicorn main:app --workers 4 --worker-class uvicorn.workers.UvicornWorker --bind 0.0.0.0:80
    
    [19499] [INFO] Starting gunicorn 20.1.0
    [19499] [INFO] Listening at: http://0.0.0.0:80 (19499)
    [19499] [INFO] Using worker: uvicorn.workers.UvicornWorker
    [19511] [INFO] Booting worker with pid: 19511
    [19513] [INFO] Booting worker with pid: 19513
    [19514] [INFO] Booting worker with pid: 19514
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. pkg/filewatcher/worker.go

    	"fmt"
    	"io"
    	"os"
    	"sync"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    type worker struct {
    	mu sync.RWMutex
    
    	// watcher is an fsnotify watcher that watches the parent
    	// dir of watchedFiles.
    	dirWatcher *fsnotify.Watcher
    
    	// The worker maintains a map of channels keyed by watched file path.
    	// The worker watches parent path of given path,
    	// and filters out events of given path, then redirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/operations/MaxWorkersTest.groovy

                start {
                    def cl = workerLeaseService.startWorker()
                    instant.worker1
                    thread.blockUntil.worker2Ready
                    thread.block()
                    instant.worker1Finished
                    cl.leaseFinish()
                }
                start {
                    thread.blockUntil.worker1
                    instant.worker2Ready
                    ConcurrentSpec spec = this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. architecture/runtimes.md

            daemon["Gradle daemon"]
            gradle --> daemon
            gradlew --> daemon
            tapi --> daemon
            
            worker["Worker process"]
            daemon --> worker
    
            worker2["Worker process"]
            daemon --> worker2
    
            worker3["Worker process"]
            daemon --> worker3
        
    ```
    
    These are all Java processes. Each process has a corresponding "runtime".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. testing/performance/src/templates/workerApiProject/buildSrc/src/main/resources/META-INF/gradle-plugins/worker-plugin.properties

    implementation-class=com.example.worker.WorkerPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 54 bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousWorkerDaemonServiceIntegrationTest.groovy

        }
    
        String getTaskTypeUsingWorkerDaemon() {
            return """
                import org.gradle.api.file.ProjectLayout
                import org.gradle.workers.WorkParameters
                import org.gradle.workers.internal.WorkerDaemonFactory
    
                abstract class TestWorkAction implements WorkAction<WorkParameters.None> {
                    void execute() {
                        println "Runnable executed..."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/ztunnel/configdump/testdata/workloadsummary.txt

    default            reviews-v3-5b9bd44f4-z9ms4                           10.244.1.43 ambient-worker        None                                HBONE
    default            sleep-7656cf8794-lxcmx                               10.244.2.58 ambient-worker2       None                                HBONE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 21:30:30 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pkg/filewatcher/filewatcher.go

    	Errors(path string) chan error
    }
    
    type fileWatcher struct {
    	mu sync.RWMutex
    
    	// The watcher maintain a map of workers,
    	// keyed by watched dir (parent dir of watched files).
    	workers map[string]*workerState
    
    	funcs *patchTable
    }
    
    type workerState struct {
    	worker *worker
    	count  int
    }
    
    // functions that can be replaced in a test setting
    type patchTable struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pkg/controller/tainteviction/timed_workers.go

    	q.Lock()
    	defer q.Unlock()
    	worker, found := q.workers[key]
    	result := false
    	if found {
    		logger.V(4).Info("Cancelling TimedWorkerQueue item", "item", key, "time", time.Now())
    		if worker != nil {
    			result = true
    			worker.Cancel()
    		}
    		delete(q.workers, key)
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:23:56 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top