Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for makeID (0.29 sec)

  1. pkg/controller/garbagecollector/garbagecollector_test.go

    func TestConflictingData(t *testing.T) {
    	pod1ns1 := makeID("v1", "Pod", "ns1", "podname1", "poduid1")
    	pod2ns1 := makeID("v1", "Pod", "ns1", "podname2", "poduid2")
    	pod2ns2 := makeID("v1", "Pod", "ns2", "podname2", "poduid2")
    	node1 := makeID("v1", "Node", "", "nodename", "nodeuid1")
    
    	role1v1beta1 := makeID("rbac.authorization.k8s.io/v1beta1", "Role", "ns1", "role1", "roleuid1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    	}{
    		{
    			name: "a single plugin makes a Pod schedulable",
    			plugins: []*TestPlugin{
    				{
    					name: "TestPlugin",
    					inj:  injectedResult{PostFilterStatus: int(framework.Success)},
    				},
    			},
    			wantStatus: framework.NewStatus(framework.Success, injectReason),
    		},
    		{
    			name: "plugin1 failed to make a Pod schedulable, followed by plugin2 which makes the Pod schedulable",
    			plugins: []*TestPlugin{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	return nil
    }
    
    // makeEmptyQueueingHintMapPerProfile initializes an empty QueueingHintMapPerProfile for "" profile name.
    func makeEmptyQueueingHintMapPerProfile() QueueingHintMapPerProfile {
    	m := make(QueueingHintMapPerProfile)
    	m[""] = make(QueueingHintMap)
    	return m
    }
    
    func TestPriorityQueue_Add(t *testing.T) {
    	objs := []runtime.Object{medPriorityPodInfo.Pod, unschedulablePodInfo.Pod, highPriorityPodInfo.Pod}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    }
    
    var masterServices = sets.New[string]("kubernetes")
    
    // getServiceEnvVarMap makes a map[string]string of env vars for services a
    // pod in namespace ns should see.
    func (kl *Kubelet) getServiceEnvVarMap(ns string, enableServiceLinks bool) (map[string]string, error) {
    	var (
    		serviceMap = make(map[string]*v1.Service)
    		m          = make(map[string]string)
    	)
    
    	// Get all service resources from the master (via a cache),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    	tr := c.Transport.(*Transport)
    	dialStarted := make(chan struct{})
    	stallDial := make(chan struct{})
    	tr.Dial = func(network, addr string) (net.Conn, error) {
    		dialStarted <- struct{}{}
    		<-stallDial
    		return net.Dial(network, addr)
    	}
    
    	tr.DisableKeepAlives = true
    	tr.MaxConnsPerHost = 1
    
    	preDial := make(chan struct{})
    	reqComplete := make(chan struct{})
    	doReq := func(reqId string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	}
    
    	readErrCh := make(chan error, 1)
    	errCh := make(chan error, 2)
    
    	server := newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		go func(body io.Reader) {
    			_, err := body.Read(make([]byte, 100))
    			readErrCh <- err
    		}(req.Body)
    		time.Sleep(500 * time.Millisecond)
    	})).ts
    
    	closeConn := make(chan bool)
    	defer close(closeConn)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	return []metav1.TableRow{row}, nil
    }
    
    func printFlowSchemaList(list *flowcontrol.FlowSchemaList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(list.Items))
    	fsSeq := make(apihelpers.FlowSchemaSequence, len(list.Items))
    	for i := range list.Items {
    		fsSeq[i] = &list.Items[i]
    	}
    	sort.Sort(fsSeq)
    	for i := range fsSeq {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. cmd/site-replication.go

    	bucketStats := make(map[string][]srBucketMetaInfo)
    	policyStats := make(map[string][]srPolicy)
    	userPolicyStats := make(map[string][]srPolicyMapping)
    	groupPolicyStats := make(map[string][]srPolicyMapping)
    	userInfoStats := make(map[string][]srUserInfo)
    	groupDescStats := make(map[string][]srGroupDesc)
    	ilmExpiryRuleStats := make(map[string][]srILMExpiryRule)
    
    	numSites := len(sris)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    	}
    	pool := &ReplicationPool{
    		workers:         make([]chan ReplicationWorkerOperation, 0, workers),
    		lrgworkers:      make([]chan ReplicationWorkerOperation, 0, LargeWorkerCount),
    		mrfReplicaCh:    make(chan ReplicationWorkerOperation, 100000),
    		mrfWorkerKillCh: make(chan struct{}, failedWorkers),
    		resyncer:        newresyncer(),
    		mrfSaveCh:       make(chan MRFReplicateEntry, 100000),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    				Pattern: pattern,
    				Err:     err,
    			}
    		}
    	}()
    
    	// TODO(rsc): All these messages need position information for better error reports.
    	pmap = make(map[string][]string)
    	have := make(map[string]int)
    	dirOK := make(map[string]bool)
    	pid := 0 // pattern ID, to allow reuse of have map
    	for _, pattern = range patterns {
    		pid++
    
    		glob := pattern
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top