Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ActionImpl (0.23 sec)

  1. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    				if !ok {
    					// If the GetAction cast fails, this could be an ActionImpl with a "get" verb.
    					// Such actions could be invoked from any of the fake discovery calls, such as ServerVersion().
    					// Attempt the cast to ActionImpl and construct a GetActionImpl from it.
    					actionImpl, ok := action.(core.ActionImpl)
    					if ok {
    						getAction = core.GetActionImpl{ActionImpl: actionImpl}
    					} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  2. pkg/controller/podgc/gc_controller_test.go

    			}
    			if test.expectedDeleteAction != nil {
    				if diff := cmp.Diff(*test.expectedDeleteAction, deleteAction, cmpopts.IgnoreFields(clienttesting.DeleteActionImpl{}, "ActionImpl")); diff != "" {
    					t.Fatalf("Unexpected diff on deleteAction (-want,+got):\n%s", diff)
    				}
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
Back to top