Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for removePhase (0.14 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java

            }
    
            return this.phases;
        } // -- java.util.List<Phase> getPhases()
    
        /**
         * Method removePhase.
         *
         * @param phase a phase object.
         */
        public void removePhase(Phase phase) {
            getPhases().remove(phase);
        } // -- void removePhase( Phase )
    
        /**
         * Set the ID of this lifecycle, for identification in the mojo
         * descriptor.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    				t.Errorf("unexpected error creating keys: %v", err)
    			}
    			if !test.apiServerStartup {
    				fakeReconciler.StopReconciling()
    			}
    			for _, server := range test.servers {
    				if server.removeLease {
    					err = fakeReconciler.RemoveLease(server.id)
    					// if the ip is not on the endpoints, it must return an storage error and stop reconciling
    					if err != nil {
    						t.Errorf("unexpected error reconciling: %v", err)
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top