Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for Intervals (0.15 sec)

  1. docs/changelogs/changelog_3x.md

        when pooled connections are evicted).
    
        If you have a configured ping interval, you should confirm that it is long
        enough for a roundtrip from client to server. If your ping interval is too
        short, slow connections may be misinterpreted as failed connections. A ping
        interval of 30 seconds is reasonable for most use cases.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// the entire watch cache is going to be served through the
    	// interval and events won't be popped from the cacheWatcher's
    	// input channel until much later.
    	cacher.dispatchTimeoutBudget.returnUnused(100 * time.Millisecond)
    
    	// We define a custom index validator such that the interval is
    	// able to serve the first bufferSize elements successfully, but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	setitimer(which int, newValue *Itimerval, oldValue *Itimerval) (err error)
    
    // MakeItimerval creates an Itimerval from interval and value durations.
    func MakeItimerval(interval, value time.Duration) Itimerval {
    	return Itimerval{
    		Interval: NsecToTimeval(interval.Nanoseconds()),
    		Value:    NsecToTimeval(value.Nanoseconds()),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    This meant any tests were able to perform deep reflection on JDK internals without warning or failing.
    This caused tests to be unreliable by allowing code to pass when it would otherwise fail in a production environment.
    
    These implicit arguments have been removed and are no longer added by default.
    If your code or any of your dependencies are performing deep reflection into JDK internals during test execution, you may see the following behavior changes:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/horizontal.go

    	}
    
    	// Requests are always added to queue with resyncPeriod delay.  If there's already
    	// request for the HPA in the queue then a new request is always dropped. Requests spend resync
    	// interval in queue so HPAs are processed every resync interval.
    	a.queue.AddRateLimited(key)
    
    	// Register HPA in the hpaSelectors map if it's not present yet. Attaching the Nothing selector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue privileged = 19;
    
      // Sets the initial delay for readiness probes in seconds.
      uint32 readinessInitialDelaySeconds = 20;
    
      // Sets the interval between readiness probes in seconds.
      uint32 readinessPeriodSeconds = 21;
    
      // Sets the number of successive failed probes before indicating readiness failure.
      uint32 readinessFailureThreshold = 22;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      OpBuilder body_builder = OpBuilder::atBlockBegin(body.addEntryBlock());
    
      //****************************************************************************
      // Build the internals of the new tf.While op's conditional function.
      //****************************************************************************
      // Build the cond function body. All we need is a ReturnOp that returns C_i
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/options_test.go

    	"--concurrent_rc_syncs=10",
    	"--concurrent-validating-admission-policy-status-syncs=9",
    	"--configure-cloud-routes=false",
    	"--contention-profiling=true",
    	"--controller-start-interval=2m",
    	"--controllers=foo,bar",
    	"--disable-attach-detach-reconcile-sync=true",
    	"--enable-dynamic-provisioning=false",
    	"--enable-garbage-collector=false",
    	"--enable-hostpath-provisioner=true",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	//    post node status/lease. It is pointless to make nodeMonitorGracePeriod
    	//    be less than the node health signal update frequency, since there will
    	//    only be fresh values from Kubelet at an interval of node health signal
    	//    update frequency.
    	// 2. nodeMonitorGracePeriod can't be too large for user experience - larger
    	//    value takes longer for user to see up-to-date node health.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar_test.go

    			ConnectTimeout: durationpb.New(6 * time.Second),
    			TcpKeepalive: &networking.ConnectionPoolSettings_TCPSettings_TcpKeepalive{
    				Probes:   3,
    				Time:     durationpb.New(7 * time.Second),
    				Interval: durationpb.New(8 * time.Second),
    			},
    			MaxConnectionDuration: durationpb.New(9 * time.Second),
    		},
    	}
    
    	overrideConnectionPool := &networking.ConnectionPoolSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top