Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for popPod (0.14 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	// Simulate a pod being popped by the scheduler,
    	// At this time, unschedulable pod should be popped.
    	p1, err := q.Pop(logger)
    	if err != nil {
    		t.Errorf("Error while popping the head of the queue: %v", err)
    	}
    	if p1.Pod != unschedulablePod {
    		t.Errorf("Expected that test-pod-unscheduled was popped, got %v", p1.Pod.Name)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    		Spec: api.PodSpec{
    			Containers:          []api.Container{{}},
    			InitContainers:      []api.Container{{}},
    			EphemeralContainers: []api.EphemeralContainer{{}},
    		},
    	}
    
    	var noPod *api.Pod
    
    	testcases := []struct {
    		description string
    		enabled     bool
    		oldPod      *api.Pod
    		newPod      *api.Pod
    		wantPod     *api.Pod
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"≅":                            "\u2245",
    	"⩭":                         "\u2a6d",
    	"∮":                          "\u222e",
    	"𝕔":                            "\U0001d554",
    	"∐":                          "\u2210",
    	"©":                            "\u00a9",
    	"℗":                          "\u2117",
    	"↵":                           "\u21b5",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

      ETCD_CA_CERT_BASE64=$(gzip -c "ca.pem" | base64 | tr -d '\r\n')
      ETCD_PEER_KEY_BASE64=$(base64 "peer-key.pem" | tr -d '\r\n')
      ETCD_PEER_CERT_BASE64=$(gzip -c "peer.pem" | base64 | tr -d '\r\n')
      popd
    }
    
    # Generates SSL certificates for etcd-client and kube-apiserver communication. Uses cfssl program.
    #
    # Assumed vars:
    #   KUBE_TEMP: temporary directory
    #
    # Args:
    #  $1: host server name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top