Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cleanName (0.15 sec)

  1. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    	for _, childPhase := range phase.Phases {
    		addPhaseRunner(e, currentRunner, childPhase)
    	}
    }
    
    // cleanName makes phase name suitable for the runner help, by lowercasing the name
    // and removing args descriptors, if any
    func cleanName(name string) string {
    	ret := strings.ToLower(name)
    	if pos := strings.Index(ret, " "); pos != -1 {
    		ret = ret[:pos]
    	}
    	return ret
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

            getCleanTask().configure(withDescription("Cleans Eclipse wtp configuration files."));
    
            project.getTasks().named(EclipsePlugin.ECLIPSE_TASK_NAME, dependsOn(getLifecycleTask()));
            project.getTasks().named(cleanName(EclipsePlugin.ECLIPSE_TASK_NAME), dependsOn(getCleanTask()));
    
            EclipseModel model = project.getExtensions().getByType(EclipseModel.class);
    
            configureEclipseProject(project, model);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top