Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 464 for finishes (0.14 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

            and:
            visitor.allResolvedModules.empty
        }
    
        def 'finishes without error when visited match expected'() {
            given:
            def id = newId(mid, '1.1')
            startWithState([id])
            addVisitedNode(id)
    
            when:
            visitor.finish(rootNode)
    
            then:
            notThrown(LockOutOfDateException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/mutating_work_estimator.go

    	var additionalLatency time.Duration
    
    	// TODO: Make this unconditional after we tune the algorithm better.
    	//   Technically, there is an overhead connected to processing an event after
    	//   the request finishes even if there is a small number of watches.
    	//   However, until we tune the estimation we want to stay on the safe side
    	//   an avoid introducing additional latency for almost every single request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/finisher/finisher.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package finisher
    
    import (
    	"context"
    	"fmt"
    	"net/http"
    	goruntime "runtime"
    	"time"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 14:20:33 UTC 2021
    - 6K bytes
    - Viewed (0)
  10. 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)
Back to top