Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 338 for finishes (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    		if err := decoder.Decode(&size); err != nil {
    			break
    		}
    
    		select {
    		case channel <- size:
    		case <-ctx.Done():
    			// To avoid leaking this routine, exit if the http request finishes. This path
    			// would generally be hit if starting the process fails and nothing is started to
    			// ingest these resize events.
    			return
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    type Request interface {
    	// Finish determines whether to execute or reject the request and
    	// invokes `execute` if the decision is to execute the request.
    	// The returned `idle bool` value indicates whether the QueueSet
    	// was idle when the value was calculated, but might no longer be
    	// accurate by the time the client examines that value.
    	Finish(execute func()) (idle bool)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  9. 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)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGClassIntegrationTest.groovy

            containsEvent(FINISHED, DefaultTestMethodDescriptor, 'TestSuite > LightTest > org.company.SystemOutTest > testOut')
            containsEvent(FINISHED, DefaultTestClassDescriptor, 'TestSuite > LightTest > org.company.SystemOutTest')
            containsEvent(FINISHED, DefaultTestSuiteDescriptor, 'TestSuite > LightTest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top