Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 289 for minuti (0.23 sec)

  1. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    	informerFactory := informers.NewSharedInformerFactoryWithOptions(kc, 0)
    
    	ctbInformer := informerFactory.Certificates().V1alpha1().ClusterTrustBundles()
    	ctbManager, _ := NewInformerManager(ctbInformer, 256, 5*time.Minute)
    
    	_, err := ctbManager.GetTrustAnchorsByName("foo", false)
    	if err == nil {
    		t.Fatalf("Got nil error, wanted non-nil")
    	}
    }
    
    func TestGetTrustAnchorsByName(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  2. pkg/kubelet/util/manager/cache_based_manager_test.go

    	fakeClient.ClearActions()
    
    	// Set 5-minute ttl and see if this works.
    	ttl = time.Duration(5) * time.Minute
    	store.Get("ns", "name")
    	actions = fakeClient.Actions()
    	assert.Equal(t, 0, len(actions), "unexpected actions: %#v", actions)
    	// Still no effect after 4 minutes.
    	fakeClock.Step(4 * time.Minute)
    	store.Get("ns", "name")
    	actions = fakeClient.Actions()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/utils_test.go

    					LastScheduleTime: &metav1HalfPastTheHour,
    				},
    			},
    			now:                   *deltaTimeAfterTopOfTheHour(24*time.Hour + 31*time.Minute),
    			expectedRecentTime:    deltaTimeAfterTopOfTheHour(24*time.Hour + 30*time.Minute),
    			expectedEarliestTime:  *deltaTimeAfterTopOfTheHour(30 * time.Minute),
    			expectedTooManyMissed: fewMissed,
    		},
    		{
    			name: "another complex schedule",
    			cj: &batchv1.CronJob{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/controller/certificates/signer/signer.go

    		TTL:      s.duration(expirationSeconds),
    		Usages:   usages,
    		Backdate: 5 * time.Minute, // this must always be less than the minimum TTL requested by a user (see sanity check requestedDuration below)
    		Short:    8 * time.Hour,   // 5 minutes of backdating is roughly 1% of 8 hours
    		Now:      now,
    	})
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. pkg/kubelet/token/token_manager_test.go

    		expectRefresh bool
    		requestTweaks func(*authenticationv1.TokenRequest)
    	}{
    		{
    			now:           start.Add(10 * time.Minute),
    			exp:           start.Add(60 * time.Minute),
    			expectRefresh: false,
    		},
    		{
    			now:           start.Add(50 * time.Minute),
    			exp:           start.Add(60 * time.Minute),
    			expectRefresh: true,
    		},
    		{
    			now:           start.Add(25 * time.Hour),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
Back to top