Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 550 for _tool_ (0.04 seconds)

  1. tests/helper_test.go

    	}
    
    	for i := 0; i < config.Toys; i++ {
    		user.Toys = append(user.Toys, Toy{Name: name + "_toy_" + strconv.Itoa(i+1)})
    	}
    
    	for i := 0; i < config.Tools; i++ {
    		user.Tools = append(user.Tools, Tools{Name: name + "_tool_" + strconv.Itoa(i+1)})
    	}
    
    	if config.Company {
    		user.Company = Company{Name: "company-" + name}
    	}
    
    	if config.Manager {
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Tue Mar 19 03:50:28 GMT 2024
    - 8K bytes
    - Click Count (0)
  2. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Tools.java

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    
    /**
     * Represents most common tools supported by CLIng.
     *
     * @since 4.0.0
     */
    @Immutable
    @Experimental
    public final class Tools {
        private Tools() {}
    
        public static final String MVN_CMD = "mvn";
        public static final String MVN_NAME = "Maven";
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Jun 07 06:22:47 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  3. doc/initial/3-tools.md

    ## Tools {#tools}
    
    ### Go command {#go-command}
    
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Jan 22 18:07:49 GMT 2024
    - 65 bytes
    - Click Count (0)
  4. impl/maven-core/src/test/projects/plugin-manager/project-contributing-system-scope-plugin-dep/tools.jar

    Guillaume Nodet <******@****.***> 1729859506 +0200
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - Click Count (0)
  5. impl/maven-core/src/test/projects/project-builder/it0063/jdk/lib/tools.jar

    Guillaume Nodet <******@****.***> 1729859506 +0200
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 345 bytes
    - Click Count (0)
  6. compat/maven-compat/src/test/projects/project-dependencies-resolver/it0063/jdk/lib/tools.jar

    Guillaume Nodet <******@****.***> 1729859506 +0200
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 345 bytes
    - Click Count (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.api;
    
    import javax.tools.DocumentationTool;
    import javax.tools.JavaFileManager;
    import javax.tools.StandardLocation;
    
    import java.io.File;
    import java.nio.file.Path;
    import java.util.Objects;
    import java.util.Optional;
    import java.util.StringJoiner;
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Dec 15 11:13:42 GMT 2025
    - 15.7K bytes
    - Click Count (1)
  8. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

        @Nonnull
        static Builder mvn(@Nonnull List<String> args, @Nonnull MessageBuilderFactory messageBuilderFactory) {
            return builder(Tools.MVN_CMD, Tools.MVN_NAME, args, messageBuilderFactory);
        }
    
        /**
         * Creates a new Builder instance for constructing a Maven Encrypting Tool ParserRequest.
         *
         * @param args the command-line arguments
         * @param messageBuilderFactory the factory for creating message builders
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Jun 07 06:22:47 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  9. docs/de/docs/benchmarks.md

    Wenn Sie die Benchmarks ansehen, ist es üblich, dass mehrere Tools unterschiedlichen Typs als gleichwertig verglichen werden.
    
    Insbesondere dass Uvicorn, Starlette und FastAPI zusammen verglichen werden (neben vielen anderen Tools).
    
    Je einfacher das Problem, das durch das Tool gelöst wird, desto besser wird die Performanz sein. Und die meisten Benchmarks testen nicht die zusätzlichen Funktionen, die das Tool bietet.
    
    Die Hierarchie ist wie folgt:
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Sep 20 15:10:09 GMT 2025
    - 4K bytes
    - Click Count (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

         *
         * @return the toolchain model
         */
        ToolchainModel getModel();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name
         * @return file representing the tool executable, or null if the tool cannot be found
         */
        String findTool(String toolName);
    
        /**
         * Let the toolchain decide if it matches requirements defined
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 11 12:33:57 GMT 2025
    - 3.4K bytes
    - Click Count (0)
Back to Top