Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for classes (0.66 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

        @Nullable
        PathScope getPathScope();
    
        /**
         * Returns a filter for the types of path (class-path, module-path, …) accepted by the tool.
         * For example, if a Java tools accepts only class-path elements, then the filter should return
         * {@code true} for {@link JavaPathType#CLASSES} and {@code false} for {@link JavaPathType#MODULES}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    signatures(reflect.Constructor); private static java.util.ArrayList signatures(Class[], annotation.Annotation[][]); private void ParameterSignature(Class, annotation.Annotation[]); public boolean canAcceptValue(Object); public boolean canAcceptType(Class); public boolean canPotentiallyAccept(Class); private boolean isAssignableViaTypeC(Class, Class); public Class getType(); public java.util.List getAnnotations(); public boolean hasAnnotation(Class); public annotation.Annotation findDeepAnnotation(Class); private...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  3. pom.xml

          </dependency>
          <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
            <version>${guiceVersion}</version>
            <classifier>classes</classifier>
          </dependency>
          <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
            <version>${guiceVersion}</version>
          </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         *       <li>Otherwise (main output on the class-path), place the test output on the class-path too.</li>
         *     </ul>
         *   </li>
         * </ul>
         *
         * This method must be invoked before {@link #addDependency(Node, Dependency, Predicate, Path)}
         * if output directories are desired on the class-path or module-path.
         * This method can be invoked at most once.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(
                    new File(pom.getBasedir(), "target/classes"),
                    new File(pom.getValue("properties/buildMainOut").toString()));
            assertEquals(
                    new File(pom.getBasedir(), "target/test-classes"),
                    new File(pom.getValue("properties/buildTestOut").toString()));
            assertEquals(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. maven-di/src/main/java/org/apache/maven/di/impl/Types.java

         * {@link GenericArrayType} or {@link TypeVariable}
         */
        public static Class<?> getRawType(Type type) {
            if (type instanceof Class) {
                return (Class<?>) type;
            } else if (type instanceof ParameterizedType) {
                return (Class<?>) ((ParameterizedType) type).getRawType();
            } else if (type instanceof WildcardType) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                // Add known classes
                // TODO: get those from the existing plexus scopes ?
                injector.bindInstance(Session.class, sessionV4);
                injector.bindInstance(Project.class, project);
                injector.bindInstance(org.apache.maven.api.MojoExecution.class, execution);
                injector.bindInstance(org.apache.maven.api.plugin.Log.class, log);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/BSD-3-Clause.txt

    Guillaume Nodet <******@****.***> 1715973262 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/dag.txt

    quarkus/extensions/resteasy-classic/resteasy-mutiny/deployment/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy-mutiny-common/deployment/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy/deployment/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy-mutiny/runtime/pom.xml
    	quarkus/test-framework/junit5-internal/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy-jsonb/deployment/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/ModelValidator.java

         */
        void validateRawModel(Model model, ModelBuildingRequest request, ModelProblemCollector problems);
    
        /**
         * Checks the specified (raw) model for clashes with the passed active external profiles. The raw model is the
         * file model + buildpom filter transformation and has not been subjected to inheritance, interpolation or profile/default injection.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top