Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 174 for 3$ (0.38 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    				HorizontalPodAutoscalerSyncPeriod:                   metav1.Duration{Duration: 45 * time.Second},
    				HorizontalPodAutoscalerDownscaleStabilizationWindow: metav1.Duration{Duration: 3 * time.Minute},
    				HorizontalPodAutoscalerCPUInitializationPeriod:      metav1.Duration{Duration: 90 * time.Second},
    				HorizontalPodAutoscalerInitialReadinessDelay:        metav1.Duration{Duration: 50 * time.Second},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    	// will allow to detect the exact version later.
    	xlVersionMinor = 3
    )
    
    func init() {
    	binary.LittleEndian.PutUint16(xlVersionCurrent[0:2], xlVersionMajor)
    	binary.LittleEndian.PutUint16(xlVersionCurrent[2:4], xlVersionMinor)
    }
    
    // The []journal contains all the different versions of the object.
    //
    // This array can have 3 kinds of objects:
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager_test.go

    	resource1Capacity, ok := capacity[v1.ResourceName(resourceName1)]
    	as.True(ok)
    	resource1Allocatable, ok := allocatable[v1.ResourceName(resourceName1)]
    	as.True(ok)
    	as.Equal(int64(3), resource1Capacity.Value())
    	as.Equal(int64(2), resource1Allocatable.Value())
    	as.Equal(0, len(removedResources))
    
    	// Deletes an unhealthy device should NOT change allocatable but change capacity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	// d2 on the stack until then means it will not match d3 to frame 3.
    	// This is okay: if we're running d2, then all the defers after d2 have
    	// completed and their corresponding frames are dead. Not finding d3
    	// for frame 3 means we'll set frame 3's continpc == 0, which is correct
    	// (frame 3 is dead). At the end of the walk the panic stack can thus
    	// contain defers (d3 in this case) for dead frames. The inversion here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		}
    
    		if podContainerChanges.CreateSandbox {
    			m.purgeInitContainers(ctx, pod, podStatus)
    		}
    	} else {
    		// Step 3: kill any running containers in this pod which are not to keep.
    		for containerID, containerInfo := range podContainerChanges.ContainersToKill {
    			klog.V(3).InfoS("Killing unwanted container for pod", "containerName", containerInfo.name, "containerID", containerID, "pod", klog.KObj(pod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/time/time.go

    	y := 400 * n
    	d -= daysPer400Years * n
    
    	// Cut off 100-year cycles.
    	// The last cycle has one extra leap year, so on the last day
    	// of that year, day / daysPer100Years will be 4 instead of 3.
    	// Cut it back down to 3 by subtracting n>>2.
    	n = d / daysPer100Years
    	n -= n >> 2
    	y += 100 * n
    	d -= daysPer100Years * n
    
    	// Cut off 4-year cycles.
    	// The last cycle has a missing leap year, which does not
    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. cmd/erasure-healing_test.go

    	fileInfoPreHeal, err = disk.ReadVersion(context.Background(), "", bucket, object, "", ReadOptions{ReadData: false, Healing: true})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if fileInfoPreHeal.NumVersions != 3 {
    		t.Fatalf("Expected versions 3, got %d", fileInfoPreHeal.NumVersions)
    	}
    
    	if err = objLayer.HealObjects(ctx, bucket, "", madmin.HealOpts{Remove: true},
    		func(bucket, object, vid string, scanMode madmin.HealScanMode) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    			if hc.version == VersionTLS13 {
    				additionalData = record[:recordHeaderLen]
    			} else {
    				additionalData = append(hc.scratchBuf[:0], hc.seq[:]...)
    				additionalData = append(additionalData, record[:3]...)
    				n := len(payload) - c.Overhead()
    				additionalData = append(additionalData, byte(n>>8), byte(n))
    			}
    
    			var err error
    			plaintext, err = c.Open(payload[:0], nonce, payload, additionalData)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		}
    	}
    
    	pred := storage.Everything
    	pred.AllowWatchBookmarks = true
    
    	// run the collision test for 3 seconds to let ~2 buckets expire
    	stopCh := make(chan struct{})
    	var watchErr error
    	time.AfterFunc(3*time.Second, func() { close(stopCh) })
    
    	wg := &sync.WaitGroup{}
    
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		for {
    			select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  10. src/net/url/url_test.go

    	{"http://foo.com/foo%2fbar/", "../baz", "http://foo.com/baz"},
    	{"http://foo.com/1/2%2f/3%2f4/5", "../../a/b/c", "http://foo.com/1/a/b/c"},
    	{"http://foo.com/1/2/3", "./a%2f../../b/..%2fc", "http://foo.com/1/2/b/..%2fc"},
    	{"http://foo.com/1/2%2f/3%2f4/5", "./a%2f../b/../c", "http://foo.com/1/2%2f/3%2f4/a%2f../c"},
    	{"http://foo.com/foo%20bar/", "../baz", "http://foo.com/baz"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top