Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 403 for finishes (0.49 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

            and:
            visitor.allResolvedModules.empty
        }
    
        def 'finishes without error when visited match expected'() {
            given:
            def id = newId(mid, '1.1')
            startWithState([id])
            addVisitedNode(id)
    
            when:
            visitor.finish(rootNode)
    
            then:
            notThrown(LockOutOfDateException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    		if err := decoder.Decode(&size); err != nil {
    			break
    		}
    
    		select {
    		case channel <- size:
    		case <-ctx.Done():
    			// To avoid leaking this routine, exit if the http request finishes. This path
    			// would generally be hit if starting the process fails and nothing is started to
    			// ingest these resize events.
    			return
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    type Request interface {
    	// Finish determines whether to execute or reject the request and
    	// invokes `execute` if the decision is to execute the request.
    	// The returned `idle bool` value indicates whether the QueueSet
    	// was idle when the value was calculated, but might no longer be
    	// accurate by the time the client examines that value.
    	Finish(execute func()) (idle bool)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    	var additionalLatency time.Duration
    
    	// TODO: Make this unconditional after we tune the algorithm better.
    	//   Technically, there is an overhead connected to processing an event after
    	//   the request finishes even if there is a small number of watches.
    	//   However, until we tune the estimation we want to stay on the safe side
    	//   an avoid introducing additional latency for almost every single request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // last virtual finish time of the queue is the virtual finish time of
    // the last request in the queue. While the queue is empty and has a
    // request executing: the last virtual finish time is the queue’s
    // virtual start time. When a request is dequeued for service the
    // queue’s virtual start time is advanced by G. When a request
    // finishes being served, and the actual service time was S, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/volume/util/recyclerclient/recycler_client.go

    	if deleteErr != nil {
    		return fmt.Errorf("failed to delete recycler pod: %s", deleteErr)
    	}
    
    	return nil
    }
    
    // waitForPod watches the pod it until it finishes and send all events on the
    // pod to the PV.
    func waitForPod(pod *v1.Pod, recyclerClient recyclerClient, podCh <-chan watch.Event) error {
    	for {
    		event, ok := <-podCh
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (1)
Back to top