Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 464 for finishes (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    )
    
    // RequestWaitGroup helps with the accounting of request(s) that are in
    // flight: the caller is expected to invoke Add(1) before executing the
    // request handler and then invoke Done() when the handler finishes.
    // NOTE: implementations must ensure that it is thread-safe
    // when invoked from multiple goroutines.
    type RequestWaitGroup interface {
    	// Add adds delta, which may be negative, similar to sync.WaitGroup.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultRootBuildStateTest.groovy

            then:
            result == null
    
            and:
            1 * action.apply(!null) >> { BuildTreeLifecycleController controller ->
                return null
            }
        }
    
        def "runs tasks and finishes build when requested by action"() {
            when:
            def result = build.run(action)
    
            then:
            result == '<result>'
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. pkg/volume/util/subpath/subpath.go

    	//
    	// CleanupAction must be called immediately after the container with given
    	// subpath starts. On the other hand, Interface.CleanSubPaths must be called
    	// when the pod finishes.
    	PrepareSafeSubpath(subPath Subpath) (newHostPath string, cleanupAction func(), err error)
    
    	// SafeMakeDir creates subdir within given base. It makes sure that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 27 02:59:53 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

     * since watched directories can't be deleted on Windows.
     *
     * The build root directories are discovered as included builds are encountered at the start of a build, and then they are removed when the build finishes.
     *
     * This is the lifecycle for the watchable hierarchies:
     * - During a build, there will be various calls to {@link FileWatcherUpdater#registerWatchableHierarchy(File, SnapshotHierarchy)},
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/mime/multipart/writer.go

    func (w *Writer) WriteField(fieldname, value string) error {
    	p, err := w.CreateFormField(fieldname)
    	if err != nil {
    		return err
    	}
    	_, err = p.Write([]byte(value))
    	return err
    }
    
    // Close finishes the multipart message and writes the trailing
    // boundary end line to the output.
    func (w *Writer) Close() error {
    	if w.lastpart != nil {
    		if err := w.lastpart.close(); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/waiting_pods_map.go

    	// The time.AfterFunc calls wp.Reject which iterates through pendingPlugins map. Acquire the
    	// lock here so that time.AfterFunc can only execute after newWaitingPod finishes.
    	wp.mu.Lock()
    	defer wp.mu.Unlock()
    	for k, v := range pluginsMaxWaitTime {
    		plugin, waitTime := k, v
    		wp.pendingPlugins[plugin] = time.AfterFunc(waitTime, func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. pkg/util/goroutinemap/goroutinemap.go

    	operationName string, err *error) {
    	// Defer operations are executed in Last-In is First-Out order. In this case
    	// the lock is acquired first when operationCompletes begins, and is
    	// released when the method finishes, after the lock is released cond is
    	// signaled to wake waiting goroutine.
    	defer grm.cond.Signal()
    	grm.lock.Lock()
    	defer grm.lock.Unlock()
    
    	if *err == nil || !grm.exponentialBackOffOnError {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

        /**
         * Called once per process, to register any globally scoped services. These services are reused across builds in the same process.
         * The services are closed when the process finishes.
         *
         * <p>Global services are visible to all other services.</p>
         *
         * @see Scope.Global
         */
        void registerGlobalServices(ServiceRegistration registration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/events.go

    	PodAdd = "PodAdd"
    	// ScheduleAttemptFailure is the event when a schedule attempt fails.
    	ScheduleAttemptFailure = "ScheduleAttemptFailure"
    	// BackoffComplete is the event when a pod finishes backoff.
    	BackoffComplete = "BackoffComplete"
    	// ForceActivate is the event when a pod is moved from unschedulablePods/backoffQ
    	// to activeQ. Usually it's triggered by plugin implementations.
    	ForceActivate = "ForceActivate"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ContinuousBuildToolingApiSpecification.groovy

        }
    
        private void waitForBuild() {
            long t0 = System.currentTimeMillis()
            ExecutionOutput executionOutput = waitUntilOutputContains containsString(waitingMessage)
            println("Wait finishes: ${System.currentTimeMillis() - t0} ms")
            result = OutputScrapingExecutionResult.from(executionOutput.stdout, executionOutput.stderr)
    
            int waitingTimeInSeconds = usesNativeWatchers() ? 1 : 10
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top