Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 388 for finishes (0.25 sec)

  1. guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * is also performed for calls to {@link Object#equals}, {@link Object#hashCode}, and {@link
       * Object#toString}.
       *
       * <p>If the target method call finishes before the limit is reached, the return value or
       * exception is propagated to the caller exactly as-is. If, on the other hand, the time limit is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/util/ConcurrentSpecificationTest.groovy

        def "can check that an action blocks until an asynchronous action is finished"() {
            Runnable action = Mock()
            def operation = waitsForAsyncActionToComplete()
            def latch = new CountDownLatch(1)
    
            when:
            operation.start {
                start { action.run() }
                latch.await()
            }
            finished()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:50 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  3. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    func jobFinishTime(finishedJob *batch.Job) (metav1.Time, error) {
    	for _, c := range finishedJob.Status.Conditions {
    		if (c.Type == batch.JobComplete || c.Type == batch.JobFailed) && c.Status == v1.ConditionTrue {
    			finishAt := c.LastTransitionTime
    			if finishAt.IsZero() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    	if err := expectHTTPPost(server.URL+"/dontwait", http.StatusOK); err != nil {
    		t.Error(err)
    	}
    
    	// Let all hanging requests finish
    	block.Done()
    
    	// Show that we recover from being blocked up.
    	// Too avoid flakyness we need to wait until at least one of the requests really finishes.
    	responses.Wait()
    	if err := expectHTTPGet(server.URL, http.StatusOK); err != nil {
    		t.Error(err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  5. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

      // Requests that the worker thread execute the specified operation. Blocks
      // until the previously pending operation (a StartExecute without a Join) has
      // finished, if any.
      //
      // `cancellation_manager` must live until after `Join` finishes and pending
      // `is_async` operations finish. In addition to allowing the caller to cancel
      // the operation, its `StartCancel` method will be called if op execution
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationRunnerTest.groovy

            timeProvider, new DefaultBuildOperationIdFactory(), { listener })
    
        def setup() {
            currentBuildOperationRef.clear()
        }
    
        def "fires events when wrap-around operation starts and finishes successfully with '#defaultParent' parent"() {
            setup:
            def buildOperation = Mock(BuildOperation)
            def details = Mock(Object)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:56:07 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

                }
            """
    
            // This is to make sure that:
            //   - The snapshotting of the zip task finishes after the outputs have been broadcast by the compile task
            //   - The snapshotting of the zip task finishes before the snapshotting of the outputs of the compile task
            server.expectConcurrent("zipFileSnapshottingStarted", "compileAction1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. internal/ioutil/ioutil.go

    }
    
    type ioret[V any] struct {
    	val V
    	err error
    }
    
    // WithDeadline will execute a function with a deadline and return a value of a given type.
    // If the deadline/context passes before the function finishes executing,
    // the zero value and the context error is returned.
    func WithDeadline[V any](ctx context.Context, timeout time.Duration, work func(ctx context.Context) (result V, err error)) (result V, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1/generated.proto

      optional k8s.io.api.core.v1.PodTemplateSpec template = 6;
    
      // ttlSecondsAfterFinished limits the lifetime of a Job that has finished
      // execution (either Complete or Failed). If this field is set,
      // ttlSecondsAfterFinished after the Job finishes, it is eligible to be
      // automatically deleted. When the Job is being deleted, its lifecycle
      // guarantees (e.g. finalizers) will be honored. If this field is unset,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. docs/en/docs/async.md

    Then you go to the counter 🔀, to the initial task that is now finished ⏯, pick the burgers, say thanks and take them to the table. That finishes that step / task of interaction with the counter ⏹. That in turn, creates a new task, of "eating burgers" 🔀 ⏯, but the previous one of "getting burgers" is finished ⏹.
    
    ### Parallel Burgers
    
    Now let's imagine these aren't "Concurrent Burgers", but "Parallel Burgers".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top