Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 238 for workerCh (0.14 sec)

  1. pkg/controller/servicecidrs/servicecidrs_controller.go

    	// workerLoopPeriod is the time between worker runs. The workers process the queue of service and ipRange changes.
    	workerLoopPeriod time.Duration
    
    	// tree store the ServiceCIDRs names associated to each
    	muTree sync.Mutex
    	tree   *iptree.Tree[sets.Set[string]]
    }
    
    // Run will not return until stopCh is closed.
    func (c *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller.go

    		return
    	}
    	e.queue.Add(key)
    }
    
    // worker runs a worker thread that just dequeues items, processes them, and
    // marks them done. You may run as many of these in parallel as you wish; the
    // workqueue guarantees that they will not end up processing the same service
    // at the same time.
    func (e *Controller) worker(ctx context.Context) {
    	for e.processNextWorkItem(ctx) {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. subprojects/core/build.gradle.kts

        }
    
        testFixturesRuntimeOnly(project(":plugin-use")) {
            because("This is a core extension module (see DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES)")
        }
        testFixturesRuntimeOnly(project(":workers")) {
            because("This is a core extension module (see DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES)")
        }
        testFixturesRuntimeOnly(project(":composite-builds")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

        def "timeout stops long running work items with #isolationMode isolation"() {
            given:
            if (isolationMode == 'process') {
                // worker starting threads can be interrupted during worker startup and cause a 'Could not initialise system classpath' exception.
                // See: https://github.com/gradle/gradle/issues/8699
                executer.withStackTraceChecksDisabled()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. .teamcity/subprojects.json

        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "worker-main",
        "path": "platforms/core-execution/worker-main",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "workers",
        "path": "platforms/core-execution/workers",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  6. pkg/controller/storageversiongc/gc_controller.go

    	}
    
    	// Identity lease deletion and storageversion update don't happen too often. Start one
    	// worker for each of them.
    	// runLeaseWorker handles legit identity lease deletion, while runStorageVersionWorker
    	// handles storageversion creation/update with non-existing id. The latter should rarely
    	// happen. It's okay for the two workers to conflict on update.
    	go wait.UntilWithContext(ctx, c.runLeaseWorker, time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set.go

    		ssc.queue.AddRateLimited(key)
    	} else {
    		ssc.queue.Forget(key)
    	}
    	return true
    }
    
    // worker runs a worker goroutine that invokes processNextWorkItem until the controller's queue is closed
    func (ssc *StatefulSetController) worker(ctx context.Context) {
    	for ssc.processNextWorkItem(ctx) {
    	}
    }
    
    // sync syncs the given statefulset.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. docs/de/docs/deployment/docker.md

    In diesem Fall möchten Sie also **nicht** einen Prozessmanager wie Gunicorn mit Uvicorn-Workern oder Uvicorn mit seinen eigenen Uvicorn-Workern haben. Sie möchten nur einen **einzelnen Uvicorn-Prozess** pro Container haben (wahrscheinlich aber mehrere Container).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:17 UTC 2024
    - 38.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

            }
        }
    
        def "generates events for worker actions executed in-process and forked"() {
            given:
            settingsFile << "rootProject.name = 'single'"
            buildFile << """
                import org.gradle.workers.*
    
                ${workerActionClass('InProcess')}
                ${workerActionClass('Forked')}
    
                task runInProcess {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. pkg/controller/podgc/gc_controller_test.go

    				{name: "e1", phase: v1.PodUnknown, nodeName: "worker-0"},
    
    				// pods a2, b2, c2, d2 and e2 are on node worker-1
    				{name: "a2", nodeName: "worker-1"},
    				{name: "b2", deletionTimeStamp: &metav1.Time{}, nodeName: "worker-1"},
    				{name: "c2", phase: v1.PodPending, nodeName: "worker-1"},
    				{name: "d2", phase: v1.PodRunning, nodeName: "worker-1"},
    				{name: "e2", phase: v1.PodUnknown, nodeName: "worker-1"},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
Back to top