Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for finishedAt (0.1 sec)

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

    			podInfo:   &framework.QueuedPodInfo{PodInfo: mustNewPodInfo(p), UnschedulablePlugins: sets.New("foo")},
    			hint:      queueHintReturnQueue,
    			duration:  DefaultPodInitialBackoffDuration, // backoff is finished
    			expectedQ: activeQ,
    		},
    		{
    			name:      "Skip queues pod to unschedulablePods",
    			podInfo:   &framework.QueuedPodInfo{PodInfo: mustNewPodInfo(p), UnschedulablePlugins: sets.New("foo")},
    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. src/database/sql/sql_test.go

    	// initial setup queries. The state is only assigned when
    	// no queries are made.
    	//
    	// Only allow the first batch of queries to finish once the
    	// second batch of Ping queries have finished.
    	waiter := func(ctx context.Context) {
    		switch state {
    		case 0:
    			// Nothing. Initial database setup.
    		case 1:
    			saturate.Done()
    			select {
    			case <-ctx.Done():
    			case <-donePing:
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </li>
    </ul>
    
    <p>
    For example, given the declarations
    </p>
    
    <pre>
    var (
    	a = c + b  // == 9
    	b = f()    // == 4
    	c = f()    // == 5
    	d = 3      // == 5 after initialization has finished
    )
    
    func f() int {
    	d++
    	return d
    }
    </pre>
    
    <p>
    the initialization order is <code>d</code>, <code>b</code>, <code>c</code>, <code>a</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top