Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,191 for dilation (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    						Name: "default",
    						Webhook: &api.WebhookConfiguration{
    							Timeout:                                  metav1.Duration{Duration: 5 * time.Second},
    							AuthorizedTTL:                            metav1.Duration{Duration: 5 * time.Minute},
    							UnauthorizedTTL:                          metav1.Duration{Duration: 30 * time.Second},
    							FailurePolicy:                            "NoOpinion",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                      - message: must be a valid duration greater than
                                          1ms
                                        rule: duration(self) >= duration('1ms')
                                    maxConnectionDuration:
                                      description: The maximum duration of a connection.
                                      type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption.go

    )
    
    const (
    	// DeletionTimeout sets maximum time from the moment a pod is added to DisruptedPods in PDB.Status
    	// to the time when the pod is expected to be seen by PDB controller as having been marked for deletion.
    	// If the pod was not marked for deletion during that time it is assumed that it won't be deleted at
    	// all and the corresponding entry can be removed from pdb.Status.DisruptedPods. It is assumed that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector.go

    	logger := klog.FromContext(ctx)
    
    	logger.V(2).Info("Processing item",
    		"item", item.identity,
    		"virtual", !item.isObserved(),
    	)
    
    	// "being deleted" is an one-way trip to the final deletion. We'll just wait for the final deletion, and then process the object's dependents.
    	if item.isBeingDeleted() && !item.isDeletingDependents() {
    		logger.V(5).Info("processing item returned at once, because its DeletionTimestamp is non-nil",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/config/v1alpha1/defaults.go

    	}
    	if obj.HorizontalPodAutoscalerCPUInitializationPeriod == zero {
    		obj.HorizontalPodAutoscalerCPUInitializationPeriod = metav1.Duration{Duration: 5 * time.Minute}
    	}
    	if obj.HorizontalPodAutoscalerInitialReadinessDelay == zero {
    		obj.HorizontalPodAutoscalerInitialReadinessDelay = metav1.Duration{Duration: 30 * time.Second}
    	}
    	if obj.HorizontalPodAutoscalerTolerance == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/validation/validation_test.go

    		CPUCFSQuotaPeriod:               metav1.Duration{Duration: 25 * time.Millisecond},
    		TopologyManagerScope:            kubeletconfig.PodTopologyManagerScope,
    		TopologyManagerPolicy:           kubeletconfig.SingleNumaNodeTopologyManagerPolicy,
    		ShutdownGracePeriod:             metav1.Duration{Duration: 30 * time.Second},
    		ShutdownGracePeriodCriticalPods: metav1.Duration{Duration: 10 * time.Second},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/FakeTicker.java

        return this;
      }
    
      /**
       * Advances the ticker value by {@code duration}.
       *
       * @since 28.0
       */
      @GwtIncompatible
      @J2ktIncompatible
      @CanIgnoreReturnValue
      @SuppressWarnings("Java7ApiChecker") // guava-android can rely on library desugaring now.
      public FakeTicker advance(Duration duration) {
        return advance(duration.toNanos());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 14:40:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/HtmlPageGenerator.java

            }
    
            protected void renderSamplesForExperiment(Iterable<MeasuredOperationList> experiments) {
                List<DataSeries<Duration>> executionVersions = totalTimeStream(experiments)
                    .map((DataSeries<Duration> data) -> data.isEmpty() ? null : data)
                    .collect(Collectors.toList());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. cmd/kube-scheduler/app/server_test.go

    				LeaderElect:       false,                                    // from CLI args
    				LeaseDuration:     metav1.Duration{Duration: 2 * time.Hour}, // from CLI args
    				RenewDeadline:     metav1.Duration{Duration: 10 * time.Second},
    				RetryPeriod:       metav1.Duration{Duration: 2 * time.Second},
    				ResourceLock:      "leases",
    				ResourceName:      configv1.SchedulerDefaultLockObjectName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. pkg/controller/podgc/gc_controller_test.go

    			enablePodDisruptionConditions: true,
    		},
    		{
    			name: "threshold = 0, disables terminated pod deletion",
    			pods: []nameToPhase{
    				{name: "a", phase: v1.PodFailed},
    				{name: "b", phase: v1.PodSucceeded},
    			},
    			threshold: 0,
    			// threshold = 0 disables terminated pod deletion
    		},
    		{
    			name: "threshold = 1, delete pod a which is PodFailed and pod b which is PodSucceeded",
    			pods: []nameToPhase{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
Back to top