Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Rodney (0.1 sec)

  1. pkg/controller/resourceclaim/controller_test.go

    			pods:          []*v1.Pod{testPodWithResource},
    			templates:     nil,
    			key:           podKey(testPodWithResource),
    			expectedError: true,
    		},
    		{
    			name:           "find-existing-claim-by-label",
    			pods:           []*v1.Pod{testPodWithResource},
    			key:            podKey(testPodWithResource),
    			claims:         []*resourcev1alpha2.ResourceClaim{generatedTestClaim},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/pod.go

    	return pmap
    }
    
    // deleteIP returns true if the pod and ip are really deleted.
    func (pc *PodCache) deleteIP(ip string, podKey types.NamespacedName) bool {
    	pc.Lock()
    	defer pc.Unlock()
    	if pc.podsByIP[ip].Contains(podKey) {
    		sets.DeleteCleanupLast(pc.podsByIP, ip, podKey)
    		delete(pc.IPByPods, podKey)
    		return true
    	}
    	return false
    }
    
    func (pc *PodCache) addPod(pod *v1.Pod, ip string, key types.NamespacedName) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set.go

    					// Decrement the expected number of deletes because the informer won't observe this deletion
    					podKey := controller.PodKey(targetPod)
    					rsc.expectations.DeletionObserved(logger, rsKey, podKey)
    					if !apierrors.IsNotFound(err) {
    						logger.V(2).Info("Failed to delete pod, decremented expectations", "pod", podKey, "kind", rsc.Kind, "replicaSet", klog.KObj(rs))
    						errCh <- err
    					}
    				}
    			}(pod)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    				barThird := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "third", Name: "bar"}}
    				podKey := fmt.Sprintf("/pods/%s/%s", barThird.Namespace, barThird.Name)
    				storedObj := &example.Pod{}
    
    				err := store.Create(context.Background(), podKey, barThird, storedObj, 0)
    				if err != nil {
    					t.Errorf("failed to create object: %v", err)
    				}
    			})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/build.go

    				if err == nil {
    					if info, err := os.Stat(gomod); err == nil && info.Mode().IsRegular() {
    						m.GoMod = gomod
    					}
    				}
    				if gomodsum, ok := modfetch.RecordedSum(modkey(mod)); ok {
    					m.GoModSum = gomodsum
    				}
    			}
    			if checksumOk("") {
    				dir, err := modfetch.DownloadDir(ctx, mod)
    				if err == nil {
    					m.Dir = dir
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_test.go

    	{0x33955150, 0xc5142380, "For every action there is an equal and opposite government program.", "crc\x01ʇ\x91Ma\xe9>\x86", "crc\x01wB\x84\x81\xaa@\xc4\x1c"},
    	{0x26216a4b, 0x75eb77dd, "His money is twice tainted: 'taint yours and 'taint mine.", "crc\x01ʇ\x91M\\\x1an\x88", "crc\x01wB\x84\x81W\a8Z"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/time/zoneinfo.go

    func (l *Location) lookupName(name string, unix int64) (offset int, ok bool) {
    	l = l.get()
    
    	// First try for a zone with the right name that was actually
    	// in effect at the given time. (In Sydney, Australia, both standard
    	// and daylight-savings time are abbreviated "EST". Using the
    	// offset helps us pick the right one for the given time.
    	// It's not perfect: during the backward transition we might pick
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/concepts.md

    If you are paying for 3 servers but you are using only a little bit of their RAM and CPU, you are probably **wasting money** 💸, and probably **wasting server electric power** 🌎, etc.
    
    In that case, it could be better to have only 2 servers and use a higher percentage of their resources (CPU, memory, disk, network bandwidth, etc).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. src/time/format_test.go

    	}
    }
    
    func TestLoadLocationZipFile(t *testing.T) {
    	undo := DisablePlatformSources()
    	defer undo()
    
    	_, err := LoadLocation("Australia/Sydney")
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    var rubyTests = []ParseTest{
    	{"RubyDate", RubyDate, "Thu Feb 04 21:00:57 -0800 2010", true, true, 1, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. pkg/controller/controller_utils_test.go

    		}
    
    		rcPodNames := []string{}
    		for i := range podList.Items {
    			p := &podList.Items[i]
    			p.Name = fmt.Sprintf("%v-%v", p.Name, rc.Name)
    			rcPodNames = append(rcPodNames, PodKey(p))
    		}
    		uidExp.ExpectDeletions(logger, rcKey, rcPodNames)
    
    		return rcKey, rcPodNames
    	}
    
    	tests := []test{
    		{name: "Replication controller with 2 replicas", numReplicas: 2},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top