Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for runWorker (0.32 sec)

  1. testing/internal-integ-testing/src/integTest/groovy/org/gradle/integtests/fixtures/executer/IgnoreKotlinCompilerWarningIntegrationTest.groovy

    \tat org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:48)
    \tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130)
    \tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630)
    \tat org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:56)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	}
    	metrics.SetFairFrac(float64(fairFrac))
    }
    
    // runWorker is the logic of the one and only worker goroutine.  We
    // limit the number to one in order to obviate explicit
    // synchronization around access to `cfgCtlr.mostRecentUpdates`.
    func (cfgCtlr *configController) runWorker() {
    	for cfgCtlr.processNextWorkItem() {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    	if err != nil {
    		return nil, err
    	}
    	// we can not force the state of the informers to be synced without racing
    	// so we run our worker here
    	go wait.Until(c.runWorker, time.Second, c.internalStopCh)
    	return c, nil
    }
    
    func TestCIDRAllocateMultiple(t *testing.T) {
    	r, err := newTestMetaAllocator()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer r.Destroy()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. pkg/controller/resourceclaim/controller.go

    		return
    	}
    
    	for i := 0; i < workers; i++ {
    		go wait.UntilWithContext(ctx, ec.runWorker, time.Second)
    	}
    
    	<-ctx.Done()
    }
    
    func (ec *Controller) runWorker(ctx context.Context) {
    	for ec.processNextWorkItem(ctx) {
    	}
    }
    
    func (ec *Controller) processNextWorkItem(ctx context.Context) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller.go

    		return
    	}
    
    	for i := 0; i < workers; i++ {
    		go wait.UntilWithContext(ctx, dsc.runWorker, time.Second)
    	}
    
    	go wait.Until(dsc.failedPodsBackoff.GC, BackoffGCInterval, ctx.Done())
    
    	<-ctx.Done()
    }
    
    func (dsc *DaemonSetsController) runWorker(ctx context.Context) {
    	for dsc.processNextWorkItem(ctx) {
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. tools/docker-builder/docker.go

    // bake` and let it do its work.
    func RunDocker(args Args) error {
    	requiresSplitBuild := len(args.Architectures) > 1 && (args.Save || !args.Push)
    	if !requiresSplitBuild {
    		log.Infof("building for architectures: %v", args.Architectures)
    		return runDocker(args)
    	}
    	// https://github.com/docker/buildx/issues/59 - load and save are not supported for multi-arch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

                        .forTasks('runInProcess', 'runForked')
                        .addProgressListener(events)
                        .run()
            }
    
            then:
            events.assertIsABuild()
    
            and:
            events.operation('Task :runInProcess').descendant('InProcessWorkAction')
            events.operation('Task :runForked').descendant('ForkedWorkAction')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. android/pom.xml

                  <exclude>%regex[.*[$]\d+.class]</exclude>
                </excludes>
                <redirectTestOutputToFile>true</redirectTestOutputToFile>
                <runOrder>alphabetical</runOrder>
                <!-- Set max heap for tests. -->
                <!-- Catch dependencies on the default locale by setting it to hi-IN. -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pom.xml

                  <exclude>%regex[.*[$]\d+.class]</exclude>
                </excludes>
                <redirectTestOutputToFile>true</redirectTestOutputToFile>
                <runOrder>alphabetical</runOrder>
                <!-- Set max heap for tests. -->
                <!-- Catch dependencies on the default locale by setting it to hi-IN. -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. tools/docker-builder/main.go

    		// The crane builder is much faster but less tested.
    		// Neither builder is doing standard logic; see each builder for details.
    		if args.Builder == CraneBuilder {
    			return RunCrane(ctx, args)
    		}
    
    		return RunDocker(args)
    	},
    }
    
    func ValidateArgs(a Args) error {
    	if len(a.Targets) == 0 {
    		return fmt.Errorf("no targets specified")
    	}
    	if a.Push && a.Save {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top