Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 693 for minuti (0.26 sec)

  1. pkg/credentialprovider/plugin/config_test.go

    						DefaultCacheDuration: &metav1.Duration{Duration: 10 * time.Minute},
    						APIVersion:           "credentialprovider.kubelet.k8s.io/v1alpha1",
    					},
    					{
    						Name:                 "test2",
    						MatchImages:          []string{"registry.io/two"},
    						DefaultCacheDuration: &metav1.Duration{Duration: 10 * time.Minute},
    						APIVersion:           "credentialprovider.kubelet.k8s.io/v1alpha1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 14.2K 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/timepicker/bootstrap-timepicker.min.js

    our)return this.hour++,this.toggleMeridian();12===this.hour&&(this.hour=0)}return this.hour===this.maxHours-1?void(this.hour=0):void this.hour++},incrementMinute:function(a){var b;b=a?this.minute+a:this.minute+this.minuteStep-this.minute%this.minuteStep,b>59?(this.incrementHour(),this.minute=b-60):this.minute=b},incrementSecond:function(){var a=this.second+this.secondStep-this.second%this.secondStep;a>59?(this.incrementMinute(!0),this.second=a-60):this.second=a},mousewheel:function(b){if(!this.d...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 18.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options_test.go

    				CorsAllowedOriginList:       []string{"10.10.10.100", "10.10.10.200"},
    				MaxRequestsInFlight:         -400,
    				MaxMutatingRequestsInFlight: 200,
    				RequestTimeout:              time.Duration(2) * time.Minute,
    				MinRequestTimeout:           1800,
    				JSONPatchMaxCopyBytes:       10 * 1024 * 1024,
    				MaxRequestBodyBytes:         10 * 1024 * 1024,
    			},
    			expectErr: "--max-requests-inflight can not be negative value",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/test_deadline.txt

    		t.Fatalf("t.Deadline() = %v, %v; want nonzero deadline", d, ok)
    	}
    	if !d.After(now) {
    		t.Fatalf("t.Deadline() = %v; want after start of test (%v)", d, now)
    	}
    	if d.Sub(now) > time.Minute {
    		t.Fatalf("t.Deadline() = %v; want within one minute of start of test (%v)", d, now)
    	}
    }
    
    func TestSubtestDeadlineWithinMinute(t *testing.T) {
    	t.Run("sub", func(t *testing.T) {
    		now := time.Now()
    		d, ok := t.Deadline()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/utils.go

    		a[k] = v
    	}
    	return a
    }
    
    // getJobFromTemplate2 makes a Job from a CronJob. It converts the unix time into minutes from
    // epoch time and concatenates that to the job name, because the cronjob_controller v2 has the lowest
    // granularity of 1 minute for scheduling job.
    func getJobFromTemplate2(cj *batchv1.CronJob, scheduledTime time.Time) (*batchv1.Job, error) {
    	labels := copyLabels(&cj.Spec.JobTemplate)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/defaults_test.go

    			in:   &KMSConfiguration{Timeout: &v1.Duration{Duration: 1 * time.Minute}, APIVersion: "v1"},
    			want: &KMSConfiguration{Timeout: &v1.Duration{Duration: 1 * time.Minute}, CacheSize: &defaultCacheSize, APIVersion: "v1"},
    		},
    		{
    			desc: "apiVersion v2 supplied, cache size not defaulted",
    			in:   &KMSConfiguration{Timeout: &v1.Duration{Duration: 1 * time.Minute}, APIVersion: "v2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/volume_manager.go

    	// operationexecutor.Mount call will wait for a volume to be attached.
    	// Set to 10 minutes because we've seen attach operations take several
    	// minutes to complete for some volume plugins in some cases. While this
    	// operation is waiting it only blocks other operations on the same device,
    	// other devices are not affected.
    	waitForAttachTimeout = 10 * time.Minute
    )
    
    // VolumeManager runs a set of asynchronous loops that figure out which volumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top