Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,006 for finishes (0.14 sec)

  1. 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 (0)
  2. tensorflow/compiler/jit/xla_device_context.cc

      const bool device_allows_sync_on_completion =
          device->AllowsSyncOnCompletion();
      // Explicitly capture device_to_host_stream to make sure the stream is alive
      // before the transfer finishes.
      transfer_manager_->TransferLiteralFromDevice(
          device_to_host_stream.get(), xla_tensor->shaped_buffer(), literal,
          [this, ref, xla_tensor, done, device_to_host_stream,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

     *     <li>the message is sent back to the Lock Requester to confirm that the lock release is in progress</li>
     *     <li>when the contended action finishes, i.e. the lock has been released, all Lock Requesters will get another message
     *         to trigger an immediate retry</li>
     * </ul>
     * <p>
     * If this is the Lock Requester:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. pkg/apis/batch/types.go

    	Template api.PodTemplateSpec
    
    	// 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types.go

    	Template corev1.PodTemplateSpec `json:"template" protobuf:"bytes,6,opt,name=template"`
    
    	// 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. src/runtime/traceevent.go

    	e.end()
    }
    
    // write writes an event into the trace.
    func (e traceEventWriter) write(ev traceEv, args ...traceArg) traceEventWriter {
    	e.w = e.w.event(ev, args...)
    	return e
    }
    
    // end finishes writing to the trace. The traceEventWriter must not be used after this call.
    func (e traceEventWriter) end() {
    	e.w.end()
    }
    
    // traceEventWrite is the part of traceEvent that actually writes the event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/net/http/httptest/server.go

    // The caller should call Close when finished, to shut it down.
    func NewServer(handler http.Handler) *Server {
    	ts := NewUnstartedServer(handler)
    	ts.Start()
    	return ts
    }
    
    // NewUnstartedServer returns a new [Server] but doesn't start it.
    //
    // After changing its configuration, the caller should call Start or
    // StartTLS.
    //
    // The caller should call Close when finished, to shut it down.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller_test.go

    					encryptionConfiguration.Transformers,
    					encryptionConfiguration.HealthChecks[0],
    					closeTransformers,
    					0, // set grace period to 0 so that the time.Sleep in DynamicTransformers.Set finishes quickly
    				),
    				encryptionConfiguration.EncryptionFileContentHash,
    				"test-apiserver",
    			)
    			d.queue.ShutDown() // we do not use the real queue during tests
    
    			queue := &mockWorkQueue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    	// 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: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler_test.cc

      fn.set_name("foo");
    
      // Using a mock here to determine when the async compilation finishes. This is
      // to avoid using absl::SleepFor().
      // `RegisterCompilation` is the last call that happens just before the async
      // compilation completes. We use the completion of this call to determine when
      // the compilation finshes to verify expected behavior.
      Notification done;
      EXPECT_CALL(*mock_profiler_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top