Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for Hour (0.06 sec)

  1. 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)
  2. 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)
  3. cmd/bucket-replication.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 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal_test.go

    	}
    	tc.runTest(t)
    }
    
    func TestAvoidUnnecessaryUpdates(t *testing.T) {
    	now := metav1.Time{Time: time.Now().Add(-time.Hour)}
    	tc := testCase{
    		minReplicas:             2,
    		maxReplicas:             6,
    		specReplicas:            2,
    		statusReplicas:          2,
    		expectedDesiredReplicas: 2,
    		CPUTarget:               30,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

            "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  6. src/database/sql/sql_test.go

    			int64(usedConns - reusedConns),
    			10 * time.Millisecond,
    			// Add second offset because otherwise connections are expired via max lifetime in Close.
    			100 * time.Nanosecond,
    		},
    		{
    			time.Hour,
    			0,
    			time.Second,
    			0,
    			0,
    			10 * time.Millisecond,
    			0},
    	}
    	baseTime := time.Unix(0, 0)
    	defer func() {
    		nowFunc = time.Now
    	}()
    	for _, item := range list {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    				c.name, got == nil, c.valid, got)
    		}
    	}
    }
    
    func TestValidateLoadBalancer(t *testing.T) {
    	duration := durationpb.Duration{Seconds: int64(time.Hour / time.Second)}
    	cases := []struct {
    		name  string
    		in    *networking.LoadBalancerSettings
    		valid bool
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "driver": {
              "description": "Driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
              "type": "string"
            },
            "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

          throw new UnsupportedOperationException();
        }
    
        /*
         * TODO(cpovirk): Uncomment the @NonNull annotations below once our JDK stubs and J2KT
         * emulations include them.
         */
        @Override
        @CheckForNull
        /*
         * Our checker arguably should produce a nullness error here until we see @NonNull in JDK APIs.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
         * <p>Be careful when targeting an older SDK than you are building against (most commonly when
         * building for Android): Ensure that any object you pass implements the interface not just in
         * your current SDK version but also at the oldest version you support. For example, <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
Back to top