Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,218 for Hour (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	// different processes, so take some time to go away.
    	cfgCtlr.configQueue = workqueue.NewTypedRateLimitingQueueWithConfig(
    		workqueue.NewTypedItemExponentialFailureRateLimiter[int](200*time.Millisecond, 8*time.Hour),
    		workqueue.TypedRateLimitingQueueConfig[int]{Name: "priority_and_fairness_config_queue"},
    	)
    	// ensure the data structure reflects the mandatory config
    	cfgCtlr.lockAndDigestConfigObjects(nil, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users_test.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
    - 45.7K bytes
    - Viewed (0)
  3. src/net/http/fs_test.go

    	}
    	res.Body.Close()
    
    	// Advance the index.html file's modtime, but not the directory's.
    	indexFile.modtime = indexFile.modtime.Add(1 * time.Hour)
    
    	res, err = c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if res.StatusCode != 200 {
    		t.Fatalf("Code after second If-Modified-Since request = %v; want 200; res is %#v", res.StatusCode, res)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. cmd/iam-store.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: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    				// This is an acceptable failure due to a possible TCP race:
    				// We were still writing data and the server hung up on us. A TCP
    				// implementation may send a RST if our request body data was known
    				// to be lost, which may trigger our reads to fail.
    				// See RFC 1122 page 88.
    				t.Logf("On test %#v, acceptable error from ReadString: %v", test, err)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. cmd/test-utils_test.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: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	return "false"
    }
    
    var (
    	testArgs []string
    	pkgArgs  []string
    	pkgs     []*load.Package
    
    	testHelp bool // -help option passed to test via -args
    
    	testKillTimeout    = 100 * 365 * 24 * time.Hour // backup alarm; defaults to about a century if no timeout is set
    	testWaitDelay      time.Duration                // how long to wait for output to close after a test binary exits; zero means unlimited
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    			kubelet.containerManager = &localCM{ContainerManager: cm.NewStubContainerManager()}
    			kubelet.lastStatusReportTime = kubelet.clock.Now()
    			kubelet.nodeStatusReportFrequency = time.Hour
    			kubelet.setCachedMachineInfo(&cadvisorapi.MachineInfo{})
    
    			// override test volumeManager
    			fakeVolumeManager := kubeletvolume.NewFakeVolumeManager(tc.existingVolumes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    	kubelet.workQueue = queue.NewBasicWorkQueue(fakeClock)
    	// Relist period does not affect the tests.
    	kubelet.pleg = pleg.NewGenericPLEG(fakeRuntime, make(chan *pleg.PodLifecycleEvent, 100), &pleg.RelistDuration{RelistPeriod: time.Hour, RelistThreshold: genericPlegRelistThreshold}, kubelet.podCache, clock.RealClock{})
    	kubelet.clock = fakeClock
    
    	nodeRef := &v1.ObjectReference{
    		Kind:      "Node",
    		Name:      string(kubelet.nodeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. src/os/os_test.go

    	case "js":
    		startAtime = startAtime.Truncate(time.Second)
    		startMtime = startMtime.Truncate(time.Second)
    	}
    	at0 := startAtime
    	mt0 := startMtime
    	t0 := startMtime.Truncate(time.Second).Add(1 * time.Hour)
    
    	tests := []struct {
    		aTime     time.Time
    		mTime     time.Time
    		wantATime time.Time
    		wantMTime time.Time
    	}{
    		{
    			aTime:     time.Time{},
    			mTime:     time.Time{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top