Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for dilation (0.54 sec)

  1. pilot/pkg/networking/core/cluster_test.go

    	}
    }
    
    func getSlowStartTrafficPolicy(slowStartEnabled bool, lbType networking.LoadBalancerSettings_SimpleLB) *networking.TrafficPolicy {
    	var warmupDurationSecs *durationpb.Duration
    	if slowStartEnabled {
    		warmupDurationSecs = &durationpb.Duration{Seconds: 15}
    	}
    	return &networking.TrafficPolicy{
    		LoadBalancer: &networking.LoadBalancerSettings{
    			LbPolicy: &networking.LoadBalancerSettings_Simple{
    				Simple: lbType,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. src/net/http/server.go

    // handshake, or zero for unlimited.
    //
    // It returns the minimum of any positive ReadHeaderTimeout,
    // ReadTimeout, or WriteTimeout.
    func (srv *Server) tlsHandshakeTimeout() time.Duration {
    	var ret time.Duration
    	for _, v := range [...]time.Duration{
    		srv.ReadHeaderTimeout,
    		srv.ReadTimeout,
    		srv.WriteTimeout,
    	} {
    		if v <= 0 {
    			continue
    		}
    		if ret == 0 || v < ret {
    			ret = v
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    	requeues int
    	item     string
    	duration time.Duration
    }
    
    func (f *fakeRateLimitingQueue) AddRateLimited(item string) {}
    func (f *fakeRateLimitingQueue) Forget(item string) {
    	f.requeues = 0
    }
    func (f *fakeRateLimitingQueue) NumRequeues(item string) int {
    	return f.requeues
    }
    func (f *fakeRateLimitingQueue) AddAfter(item string, duration time.Duration) {
    	f.item = item
    	f.duration = duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    }
    
    // connectionCleanerRunLocked removes connections that should be closed from
    // freeConn and returns them along side an updated duration to the next check
    // if a quicker check is required to ensure connections are checked appropriately.
    func (db *DB) connectionCleanerRunLocked(d time.Duration) (time.Duration, []*driverConn) {
    	var idleClosing int64
    	var closing []*driverConn
    	if db.maxIdleTime > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	evictionLimiterQPS float32,
    	secondaryEvictionLimiterQPS float32,
    	largeClusterThreshold int32,
    	unhealthyZoneThreshold float32,
    	nodeMonitorGracePeriod time.Duration,
    	nodeStartupGracePeriod time.Duration,
    	nodeMonitorPeriod time.Duration,
    ) (*nodeLifecycleController, error) {
    
    	factory := informers.NewSharedInformerFactory(kubeClient, controller.NoResyncPeriodFunc())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    third Experiment. Now if the Sun's circular Image Y [in _Fig._ 15.] which is made by an unrefracted beam of Light was by any Dilation of the single Rays, or by any other irregularity in the Refraction of the first Prism, converted into the oblong Spectrum, PT: then ought every Circle AG, BH, CJ, &c. in that Spectrum, by the cross Refraction of the second Prism again dilating or otherwise scattering the Rays as before, to be in like manner drawn out and transformed into an oblong Figure, and thereby...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    	usedConns := 5
    	reusedConns := 2
    	list := []struct {
    		wantMaxIdleTime   time.Duration
    		wantMaxLifetime   time.Duration
    		wantNextCheck     time.Duration
    		wantIdleClosed    int64
    		wantMaxIdleClosed int64
    		timeOffset        time.Duration
    		secondTimeOffset  time.Duration
    	}{
    		{
    			time.Millisecond,
    			0,
    			time.Millisecond - time.Nanosecond,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_control_test.go

    		if !hasOwnerRef(claim, set) {
    			return fmt.Errorf("claim %s does not have owner ref on %s for StatefulSet deletion", claim.Name, set.Name)
    		}
    		if hasOwnerRef(claim, pod) {
    			return fmt.Errorf("claim %s has unexpected owner ref on pod %s for StatefulSet deletion", claim.Name, pod.Name)
    		}
    	case policy.WhenScaled == delete && policy.WhenDeleted == retain:
    		if hasOwnerRef(claim, set) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

        // First request: time out after 1s.
        client =
          client.newBuilder()
            .readTimeout(Duration.ofSeconds(1))
            .build()
        executeSynchronously("/a").assertBody("abc")
    
        // Second request: time out after 250ms.
        client =
          client.newBuilder()
            .readTimeout(Duration.ofMillis(250))
            .build()
        val request = Request.Builder().url(server.url("/b")).build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    his.$el)&&t},transitionTo:function(t,e){var i=this,n=this.dropbar,r=Wt(n)?ci(n):0;return Ve(e=r<t&&e,"clip","rect(0,"+e.offsetWidth+"px,"+r+"px,0)"),ci(n,r),Ze.cancel([e,n]),se.all([Ze.start(n,{height:t},this.duration),Ze.start(e,{clip:"rect(0,"+e.offsetWidth+"px,"+t+"px,0)"},this.duration)]).catch(et).then(function(){Ve(e,{clip:""}),i.$update(n)})},getDropdown:function(t){return this.$getComponent(t,"drop")||this.$getComponent(t,"dropdown")}}},lr={mixins:[sr],args:"mode",props:{mode:String,flip...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
Back to top