Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,971 for Hour (0.04 sec)

  1. internal/config/heal/heal.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. pkg/volume/util/volumeattributesclass_test.go

    	"k8s.io/client-go/informers"
    	"k8s.io/kubernetes/pkg/controller"
    )
    
    func TestGetDefaultVolumeAttributesClass(t *testing.T) {
    	var (
    		t1 = time.Now()
    		t2 = time.Now().Add(1 * time.Hour)
    	)
    
    	dirverName1 := "my-driver1"
    	vac1 := &storagev1alpha1.VolumeAttributesClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "my-vac1",
    			Annotations: map[string]string{
    				"a": "b",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/test/mock/caserver.go

    	if err != nil {
    		caServerLog.Errorf("failed to create CA KeyCertBundle: %+v", err)
    		return nil, err
    	}
    
    	server := &CAServer{
    		certPem:         cert,
    		keyPem:          key,
    		certLifetime:    24 * time.Hour,
    		KeyCertBundle:   keyCertBundle,
    		GRPCServer:      grpc.NewServer(opts...),
    		faultInjectLock: &sync.Mutex{},
    	}
    	// Register CA service at gRPC server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. pkg/controller/podgc/gc_controller_test.go

    			creationTime := time.Unix(0, 0)
    			nodes := []*v1.Node{testutil.NewNode("node")}
    
    			pods := make([]*v1.Pod, 0, len(test.pods))
    			for _, pod := range test.pods {
    				creationTime = creationTime.Add(1 * time.Hour)
    				pods = append(pods, &v1.Pod{
    					ObjectMeta: metav1.ObjectMeta{Name: pod.name, Namespace: metav1.NamespaceDefault, CreationTimestamp: metav1.Time{Time: creationTime}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  5. pkg/controlplane/controller/kubernetesservice/controller_test.go

    		t.Run(test.testName, func(t *testing.T) {
    			master := Controller{}
    			fakeClient := fake.NewSimpleClientset(test.service)
    			serviceInformer := v1informers.NewServiceInformer(fakeClient, metav1.NamespaceDefault, 12*time.Hour, cache.Indexers{})
    			serviceStore := serviceInformer.GetIndexer()
    			err := serviceStore.Add(test.service)
    			if err != nil {
    				t.Fatalf("unexpected error adding service %v to the store: %v", test.service, err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 10:41:06 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                    createSearchLogCondition(pager, cb);
                    cb.aggregation().setRequestedAt_DateHistogram(SearchLogPager.LOG_TYPE_SEARCH_COUNT_HOUR, op -> {
                        op.calendarInterval(DateHistogramInterval.HOUR);
                        op.minDocCount(0);
                        op.order(BucketOrder.key(true));
                    }, null);
                });
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  7. cmd/bucket-stats.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. internal/rest/client.go

    // https://www.awsarchitectureblog.com/2015/03/backoff.html
    func exponentialBackoffWait(r *rand.Rand, unit, cap time.Duration) func(uint) time.Duration {
    	if unit > time.Hour {
    		// Protect against integer overflow
    		panic("unit cannot exceed one hour")
    	}
    	return func(attempt uint) time.Duration {
    		if attempt > 16 {
    			// Protect against integer overflow
    			attempt = 16
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/defaultservicecidr/default_servicecidr_controller.go

    	}
    	// instead of using the shared informers from the controlplane instance, we construct our own informer
    	// because we need such a small subset of the information available, only the kubernetes.default ServiceCIDR
    	c.serviceCIDRInformer = networkingv1alpha1informers.NewFilteredServiceCIDRInformer(client, 12*time.Hour,
    		cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc},
    		func(options *metav1.ListOptions) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    	defer klog.InfoS("Shutting down controller", "name", c.name)
    
    	// we have a personal informer that is narrowly scoped, start it.
    	go c.configMapInformer.Run(ctx.Done())
    
    	// wait for your secondary caches to fill before starting your work
    	if !cache.WaitForNamedCacheSync(c.name, ctx.Done(), c.preRunCaches...) {
    		return
    	}
    
    	// doesn't matter what workers say, only start one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top