Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,006 for finishes (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top