Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 420 for finishes (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Finished.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Sent from the daemon client to the daemon to indicate it has finished with the connection. This is the last
     * message sent from the client to the daemon.
     */
    public class Finished extends Message {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 871 bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/model/CalculatedValueContainerTest.groovy

                    instant.finish3
                    assert container.get() == 1
                }
            }
    
            then:
            container.get() == 1
            instant.finish1 > instant.finishCalculation
            instant.finish2 > instant.finishCalculation
            instant.finish3 > instant.finishCalculation
        }
    
        static class Calculator implements ValueCalculator<Integer> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 19 19:42:22 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  6. src/net/http/transport_dial_test.go

    	}
    }
    
    // finish completes a RoundTrip by sending the request body, consuming the response body,
    // and closing the response body.
    func (rt *transportDialTesterRoundTrip) finish() {
    	rt.t.Helper()
    
    	if rt.finished {
    		return
    	}
    	rt.finished = true
    
    	<-rt.done
    
    	if rt.err != nil {
    		return
    	}
    	rt.reqBody.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/buildServiceListener/groovy/buildSrc/src/main/java/TaskEventsService.java

        @Override
        public void onFinish(FinishEvent finishEvent) {
            if (finishEvent instanceof TaskFinishEvent) { // <2>
                // Handle task finish event...
    // end::build-service[]
                System.out.println(
                    "Task finished = " + ((TaskFinishEvent) finishEvent).getDescriptor().getTaskPath());
    // tag::build-service[]
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 817 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup_test.go

    	}
    
    	// two set of requests
    	//  - n1: this set will finish using this waitgroup before Wait is invoked
    	//  - n2: this set will be in flight after Wait is invoked
    	n1, n2 := 100, 101
    
    	// so we know when all requests in n1 are done using the waitgroup
    	n1DoneWG := sync.WaitGroup{}
    
    	// so we know when all requests in n2 have called Add,
    	// but not finished with the waitgroup yet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. pkg/controller/job/metrics/metrics.go

    			Help:           "The number of Jobs managed by an external controller",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"controller_name"},
    	)
    
    	// JobPodsFinished records the number of finished Pods that the job controller
    	// finished tracking.
    	// It only applies to Jobs that were created while the feature gate
    	// JobTrackingWithFinalizers was enabled.
    	// Possible label values:
    	//   completion_mode: Indexed, NonIndexed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. subprojects/build-events/src/test/groovy/org/gradle/internal/build/event/DefaultBuildEventsListenerRegistryTest.groovy

                broadcaster.progress(Stub(OperationIdentifier), operationProgressEvent())
                broadcaster.finished(descriptor, finishEvent)
                signalBuildFinished()
            }
    
            then:
            1 * listener.finished(descriptor, finishEvent)
            0 * listener._
        }
    
        def "does nothing when listener is already subscribed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top