Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for expectActions (0.19 sec)

  1. pkg/controller/job/job_controller.go

    	}
    
    	// Check the expectations of the job before counting active pods, otherwise a new pod can sneak in
    	// and update the expectations after we've retrieved active pods from the store. If a new pod enters
    	// the store after we've checked the expectation, the job sync is just deferred till the next relist.
    	satisfiedExpectations := jm.expectations.SatisfiedExpectations(logger, key)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K 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. pilot/pkg/networking/core/listenertest/match.go

    type ListenersTest struct {
    	// Match listener by name
    	Name string
    	// Match listener by port
    	Port uint32
    
    	// Listener assertions
    	Listener ListenerTest
    }
    
    // ListenerTest provides a struct for defining expectations for a listener
    type ListenerTest struct {
    	// Assert the listener contains these filter chains (in order, if TotalMatch)
    	FilterChains []FilterChainTest
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/net_test.go

    	var podUID string = string(pod.ObjectMeta.UID)
    	ipProto := uint8(unix.IPPROTO_TCP)
    	ctx, cancel := context.WithCancel(context.Background())
    	fixture := getTestFixure(ctx)
    	defer cancel()
    	setupLogging()
    
    	// expectations
    	fixture.ipsetDeps.On("addIP",
    		"foo-v4",
    		netip.MustParseAddr("3.3.3.3"),
    		ipProto,
    		podUID,
    		false,
    	).Return(nil)
    
    	fixture.ipsetDeps.On("addIP",
    		"foo-v4",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/informers_test.go

    	waitForMockCalls()
    	// wait until pod add was called
    	mt.Assert(EventTotals.Name(), map[string]string{"type": "add"}, monitortest.AtLeast(1))
    
    	assertPodAnnotated(t, client, pod)
    
    	// check expectations on mocked calls
    	fs.AssertExpectations(t)
    }
    
    func assertPodAnnotated(t *testing.T, client kube.Client, pod *corev1.Pod) {
    	for i := 0; i < 5; i++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
            """
    
            expect:
            fails("broken")
    
            // The failure is currently very specific to the annotation type
            // TODO  - fail earlier and add some expectations here
    
            fails("broken")
    
            where:
            annotationType << [
                Input,
                InputFile,
                InputDirectory,
                InputFiles,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/issues/42696")
    			systemNM := istio.ClaimSystemNamespaceOrFail(t, t)
    			// mtlsOnExpect defines our expectations for when mTLS is expected when its enabled
    			mtlsOnExpect := func(from echo.Instance, opts echo.CallOptions) bool {
    				if from.Config().IsNaked() || opts.To.Config().IsNaked() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			}
    			if out.SelfLink != "" {
    				t.Errorf("%s: selfLink should not be set", tt.name)
    			}
    
    			// verify that kv pair is not empty after set and that the underlying data matches expectations
    			validation(ctx, t, key)
    
    			switch tt.expectNoUpdate {
    			case true:
    				if version != out.ResourceVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  9. 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