Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for expectActions (0.31 sec)

  1. pkg/controller/daemon/daemon_controller_test.go

    		informerFactory.Core().V1().Pods().Informer().GetStore(),
    		informerFactory.Core().V1().Nodes().Informer().GetStore(),
    		fakeRecorder,
    	}
    
    	podControl.expectations = newDsc.expectations
    
    	return newDsc, podControl, clientset, nil
    }
    
    func resetCounters(manager *daemonSetsController) {
    	manager.podControl.(*fakePodControl).Clear()
    	fakeRecorder := record.NewFakeRecorder(100)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    			expectedReady:         ptr.To[int32](0),
    		},
    		"suspending a job with satisfied expectations": {
    			// Suspended Job should delete active pods when expectations are
    			// satisfied.
    			suspend:                 true,
    			parallelism:             2,
    			activePods:              2, // parallelism == active, expectations satisfied
    			completions:             4,
    			backoffLimit:            6,
    			expectedCreations:       0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    	// so it never reads the body.
    	expectTest(100, "100-continue", false, "401 Unauthorized"),
    	// Likewise without 100-continue:
    	expectTest(100, "", false, "401 Unauthorized"),
    
    	// Non-standard expectations are failures
    	expectTest(0, "a-pony", false, "417 Expectation Failed"),
    
    	// Expect-100 requested but no body (is apparently okay: Issue 7625)
    	expectTest(0, "100-continue", true, "200 OK"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top