Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 388 for finishes (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    		// Call Handle in a separate goroutine.
    		// The reason for it is that from APF point of view, the request processing
    		// finishes as soon as watch is initialized (which is generally orders of
    		// magnitude faster then the watch request itself). This means that Handle()
    		// call finishes much faster and for performance reasons we want to reduce
    		// the number of running goroutines - so we run the shorter thing in a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    	const (
    		mainVolumeName = "main-volume"
    		opZVolumeName  = "other-volume"
    		node1          = "node1"
    		node2          = "node2"
    
    		// delay after an operation is signaled to finish to ensure it actually
    		// finishes before running the next operation.
    		delay = 50 * time.Millisecond
    
    		// Replicates the default AttachDetachController reconcile period
    		reconcilerPeriod = 100 * time.Millisecond
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"ttlSecondsAfterFinished": "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, the Job won't be automatically deleted....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top