Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,191 for dilation (0.17 sec)

  1. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				StreamingConnectionIdleTimeout:            metav1.Duration{Duration: 4 * time.Hour},
    				NodeStatusUpdateFrequency:                 metav1.Duration{Duration: 10 * time.Second},
    				NodeStatusReportFrequency:                 metav1.Duration{Duration: 5 * time.Minute},
    				NodeLeaseDurationSeconds:                  40,
    				ImageMinimumGCAge:                         metav1.Duration{Duration: 2 * time.Minute},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/timeoututils.go

    	*t = &Timeouts{
    		ControlPlaneComponentHealthCheck: &metav1.Duration{Duration: constants.ControlPlaneComponentHealthCheckTimeout},
    		KubeletHealthCheck:               &metav1.Duration{Duration: constants.KubeletHealthCheckTimeout},
    		KubernetesAPICall:                &metav1.Duration{Duration: constants.KubernetesAPICallTimeout},
    		EtcdAPICall:                      &metav1.Duration{Duration: constants.EtcdAPICallTimeout},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/DurationTest.groovy

        }
    
        def "can convert between units"() {
            expect:
            Duration.millis(45000) == Duration.seconds(45)
            Duration.seconds(0.98) == Duration.millis(980)
            Duration.seconds(120) == Duration.minutes(2)
            Duration.seconds(30) == Duration.minutes(0.5)
            Duration.hours(30) == Duration.millis(30 * 60 * 60 * 1000)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    		desc                             string
    		activePods                       []*v1.Pod
    		shutdownGracePeriodRequested     time.Duration
    		shutdownGracePeriodCriticalPods  time.Duration
    		systemInhibitDelay               time.Duration
    		overrideSystemInhibitDelay       time.Duration
    		enablePodDisruptionConditions    bool
    		expectedDidOverrideInhibitDelay  bool
    		expectedPodToGracePeriodOverride map[string]int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    				HorizontalPodAutoscalerSyncPeriod:                   metav1.Duration{Duration: 45 * time.Second},
    				HorizontalPodAutoscalerDownscaleStabilizationWindow: metav1.Duration{Duration: 3 * time.Minute},
    				HorizontalPodAutoscalerCPUInitializationPeriod:      metav1.Duration{Duration: 90 * time.Second},
    				HorizontalPodAutoscalerInitialReadinessDelay:        metav1.Duration{Duration: 50 * time.Second},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. internal/http/listener_test.go

    		{[]string{"unknown-host:65432"}, time.Duration(0), time.Duration(0), time.Duration(0), []bool{true}},                            // 4
    		{[]string{"localhost:65432"}, time.Duration(0), time.Duration(0), time.Duration(0), []bool{false}},                              // 5
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/TimeFormatting.java

            duration = duration % MILLIS_PER_HOUR;
            if (hours > 0 || result.length() > 0) {
                result.append(hours);
                result.append("h");
            }
            long minutes = duration / MILLIS_PER_MINUTE;
            duration = duration % MILLIS_PER_MINUTE;
            if (minutes > 0 || result.length() > 0) {
                result.append(minutes);
                result.append("m");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/net/tcpconn_keepalive_solaris_test.go

    		tcpKeepAliveInterval     int
    		tcpKeepAliveIdleTime     time.Duration
    		tcpKeepAliveIntervalTime time.Duration
    		tcpKeepAliveCount        int
    	)
    	if unix.SupportTCPKeepAliveIdleIntvlCNT() {
    		tcpKeepAliveIdle, err = syscall.GetsockoptInt(fd, syscall.IPPROTO_TCP, syscall_TCP_KEEPIDLE)
    		if err != nil {
    			return
    		}
    		tcpKeepAliveIdleTime = time.Duration(tcpKeepAliveIdle) * time.Second
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. pkg/volume/volume.go

    	// as error and it will be sent as "Info" event to the PV being deleted. The
    	// volume controller will retry deleting the volume in the next periodic
    	// sync. This can be used to postpone deletion of a volume that is being
    	// detached from a node. Deletion of such volume would fail anyway and such
    	// error would confuse users.
    	Delete() error
    }
    
    // Attacher can attach a volume to a node.
    type Attacher interface {
    	DeviceMounter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

            def minimumMedian = [myTime.median, otherTime.median].min()
            return ((myTime.median - otherTime.median) / minimumMedian).abs() > minRelativeMedianDifference
        }
    
        private static boolean relativeDifferenceInMedianIsVeryHigh(DataSeries<Duration> myTime, DataSeries<Duration> otherTime) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top