Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,567 for rduration (1.35 sec)

  1. pkg/controller/podautoscaler/config/types.go

    	// pods in horizontal pod autoscaler.
    	HorizontalPodAutoscalerSyncPeriod metav1.Duration
    	// HorizontalPodAutoscalerDowncaleStabilizationWindow is a period for which autoscaler will look
    	// backwards and not scale down below any recommendation it made during that period.
    	HorizontalPodAutoscalerDownscaleStabilizationWindow metav1.Duration
    	// horizontalPodAutoscalerTolerance is the tolerance for when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/config/config.go

    }
    
    type Duration time.Duration
    
    func (d Duration) MarshalJSON() ([]byte, error) {
    	return json.Marshal(time.Duration(d).String())
    }
    
    func (d *Duration) UnmarshalJSON(b []byte) error {
    	var v any
    	if err := json.Unmarshal(b, &v); err != nil {
    		return err
    	}
    	switch value := v.(type) {
    	case float64:
    		*d = Duration(time.Duration(value))
    		return nil
    	case string:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake.go

    		fec.clientWG.Add(1)
    		close(doneCh)
    	}, duration)
    	fec.clientWG.Add(-1)
    	<-doneCh
    }
    
    // EventAfterDuration schedules the given function to be invoked once
    // the given duration has passed.
    func (fec *Fake) EventAfterDuration(f eventclock.EventFunc, d time.Duration) {
    	fec.waitersLock.Lock()
    	defer fec.waitersLock.Unlock()
    	now := fec.Now()
    	fd := time.Duration(float32(fec.fuzz) * fec.rand.Float32())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    "expirationSeconds": "expirationSeconds is the requested duration of validity of the issued certificate. The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual duration.\n\nThe v1.22+ in-tree implementations of the well-known Kubernetes signers will honor this field as long as the requested duration is not greater than the maximum duration they will...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForProjectConfigurationOperationsTest.groovy

            def scriptPluginApplicationResult = Stub(InternalPluginApplicationResult)
            _ * scriptPluginApplicationResult.getPlugin() >> Stub(InternalScriptPluginIdentifier) {
                getUri() >> new File(rootDir, "build.gradle").toURI()
            }
            _ * scriptPluginApplicationResult.getTotalConfigurationTime() >> Duration.ofMillis(42)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. pkg/kubelet/metrics/metrics.go

    		},
    	)
    	// PodWorkerDuration is a Histogram that tracks the duration (in seconds) in takes to sync a single pod.
    	// Broken down by the operation type.
    	PodWorkerDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    			Name:           PodWorkerDurationKey,
    			Help:           "Duration in seconds to sync a single pod. Broken down by operation type: create, update, or sync",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  7. cmd/dynamic-timeouts_test.go

    	for i := 0; i < dynamicTimeoutLogSize; i++ {
    
    		rnd := f()
    		duration := time.Duration(float64(successTimeout) * rnd)
    
    		if duration < 100*time.Millisecond {
    			duration = 100 * time.Millisecond
    		}
    		if duration >= time.Minute {
    			timeout.LogFailure()
    		} else {
    			timeout.LogSuccess(duration)
    		}
    	}
    }
    
    func TestDynamicTimeoutAdjustExponential(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Oct 14 10:08:40 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  8. docs_src/extra_data_types/tutorial001_py310.py

    ):
        start_process = start_datetime + process_after
        duration = end_datetime - start_process
        return {
            "item_id": item_id,
            "start_datetime": start_datetime,
            "end_datetime": end_datetime,
            "process_after": process_after,
            "repeat_at": repeat_at,
            "start_process": start_process,
            "duration": duration,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 724 bytes
    - Viewed (0)
  9. internal/config/heal/heal.go

    	Bitrot string `json:"bitrotscan"`
    
    	// maximum sleep duration between objects to slow down heal operation.
    	Sleep   time.Duration `json:"sleep"`
    	IOCount int           `json:"iocount"`
    
    	DriveWorkers int `json:"drive_workers"`
    
    	// Cached value from Bitrot field
    	cache struct {
    		// -1: bitrot enabled, 0: bitrot disabled, > 0: bitrot cycle
    		bitrotCycle time.Duration
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteStep.java

            } catch (Throwable t) {
                return Result.failed(t, Duration.ofMillis(timer.getElapsedMillis()));
            }
    
            Duration duration = Duration.ofMillis(timer.getElapsedMillis());
            ExecutionOutcome mode = determineOutcome(context, workOutput);
    
            return Result.success(duration, new ExecutionResultImpl(mode, workOutput));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top