Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for minuti (0.22 sec)

  1. src/time/time_test.go

    	{Minute, 1, Minute},
    	{2 * Minute, Minute, 2 * Minute},
    	{2*Minute + 10*Second, Minute, 2 * Minute},
    	{2*Minute + 30*Second, Minute, 3 * Minute},
    	{2*Minute + 50*Second, Minute, 3 * Minute},
    	{-Minute, 1, -Minute},
    	{-2 * Minute, Minute, -2 * Minute},
    	{-2*Minute - 10*Second, Minute, -2 * Minute},
    	{-2*Minute - 30*Second, Minute, -3 * Minute},
    	{-2*Minute - 50*Second, Minute, -3 * Minute},
    	{8e18, 3e18, 9e18},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				NodeStatusReportFrequency:                 metav1.Duration{Duration: 1 * time.Minute},
    				NodeLeaseDurationSeconds:                  40,
    				ContainerRuntimeEndpoint:                  "unix:///run/containerd/containerd.sock",
    				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)
  3. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    this.timePickerIncrement)
    L464:                this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);
    L465:
    L466:            if (this.minDate && this.startDate.isBefore(this.minDate)) {
    L467:                this.startDate = this.minDate.clone();
    L468:                if (this.timePicker && this.timePickerIncrement)
    L469:                    this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  4. src/time/time.go

    func (d Duration) Seconds() float64 {
    	sec := d / Second
    	nsec := d % Second
    	return float64(sec) + float64(nsec)/1e9
    }
    
    // Minutes returns the duration as a floating point number of minutes.
    func (d Duration) Minutes() float64 {
    	min := d / Minute
    	nsec := d % Minute
    	return float64(min) + float64(nsec)/(60*1e9)
    }
    
    // Hours returns the duration as a floating point number of hours.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			deadline:                   shortDead,
    			jobCreationTime:            justAfterThePriorHour(),
    			now:                        justAfterTheHour().Add(time.Minute * time.Duration(shortDead+1)),
    			expectRequeueAfter:         true,
    			expectedRequeueDuration:    1*time.Hour - 1*time.Minute - time.Minute*time.Duration(shortDead+1) + nextScheduleDelta,
    			jobPresentInCJActiveStatus: true,
    		},
    		"never ran, is time, not past deadline": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/replica_calculator_test.go

    					Status: v1.PodStatus{
    						Phase: v1.PodSucceeded,
    						StartTime: &metav1.Time{
    							Time: time.Now().Add(-10 * time.Minute),
    						},
    						Conditions: []v1.PodCondition{
    							{
    								Type:               v1.PodReady,
    								LastTransitionTime: metav1.Time{Time: time.Now().Add(-9*time.Minute - 54*time.Second)},
    								Status:             v1.ConditionFalse,
    							},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  7. src/time/format.go

    			}
    
    			// The range test use > rather than >=,
    			// as some people do write offsets of 24 hours
    			// or 60 minutes or 60 seconds.
    			if hr > 24 {
    				rangeErrString = "time zone offset hour"
    			}
    			if mm > 60 {
    				rangeErrString = "time zone offset minute"
    			}
    			if ss > 60 {
    				rangeErrString = "time zone offset second"
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    				return context.WithDeadline(context.Background(), now.Add(8*time.Minute))
    			},
    			newReqWaitCtxExpected: true,
    			reqWaitLimitExpected:  time.Minute,
    		},
    		{
    			name:                    "context has no deadline, wait limit should not exceed the hard limit of 1m",
    			defaultRequestWaitLimit: 2 * time.Minute, // it exceeds the hard limit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    						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",
    							SubjectAccessReviewVersion:               "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				ExpirationTimestamp: now.Add(3 * time.Minute),
    			},
    			wantEncryptCalls: 1,
    			wantLogs: []string{
    				`"encrypting content using envelope service" uid="panda"`,
    				fmt.Sprintf(`"successfully rotated DEK" uid="panda" useSeed=false newKeyIDHash="sha256:6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b" oldKeyIDHash="" expirationTimestamp="%s"`,
    					now.Add(3*time.Minute).Format(time.RFC3339)),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top