Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for rawType (0.2 sec)

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

             * This is usually {@link #PATCH_MODULE}.
             *
             * @return type of path without indication about the target module
             */
            @Nonnull
            public JavaPathType rawType() {
                return JavaPathType.this;
            }
    
            /**
             * Returns the name of the tool option for this path, not including the module name.
             *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         */
        private boolean containsPatches(Set<PathType> types) {
            for (PathType type : types) {
                if (type instanceof JavaPathType.Modular) {
                    type = ((JavaPathType.Modular) type).rawType();
                }
                if (JavaPathType.PATCH_MODULE.equals(type)) {
                    return true;
                }
            }
            return false;
        }
    
        /**
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         */
        private boolean containsPatches(Set<PathType> types) {
            for (PathType type : types) {
                if (type instanceof JavaPathType.Modular) {
                    type = ((JavaPathType.Modular) type).rawType();
                }
                if (JavaPathType.PATCH_MODULE.equals(type)) {
                    return true;
                }
            }
            return false;
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/PropertyContributorExtender.java

        private final Lookup lookup;
    
        @Inject
        PropertyContributorExtender(Lookup lookup) {
            this.lookup = lookup;
        }
    
        @SuppressWarnings({"rawtypes", "unchecked"})
        @Override
        public void extend(MavenExecutionRequest mavenExecutionRequest) {
            Map<String, PropertyContributor> effectivePropertyContributors = lookup.lookupMap(PropertyContributor.class);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Feb 20 15:38:09 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultTypeProvider.java

    import org.apache.maven.api.Type;
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.spi.TypeProvider;
    
    @Named
    public class DefaultTypeProvider implements TypeProvider {
        @SuppressWarnings({"rawtypes", "unchecked"})
        @Override
        public Collection<Type> provides() {
            return (Collection) types();
        }
    
        public Collection<DefaultType> types() {
            return Arrays.asList(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

        private static final Logger LOGGER = LoggerFactory.getLogger(MojoExecutor.class);
        private static final SessionData.Key<ProjectIndex> PROJECT_INDEX = SessionData.key(ProjectIndex.class);
    
        @SuppressWarnings({"unchecked", "rawtypes"})
        private static final SessionData.Key<Map<MavenProject, OwnerReentrantLock>> PROJECT_LOCKS =
                (SessionData.Key) SessionData.key(Map.class, ProjectLock.class);
    
        private final BuildPluginManager pluginManager;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 20.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                return versionScheme.parseVersionRange(spec);
            } catch (InvalidVersionSpecificationException e) {
                throw new RuntimeException(e);
            }
        }
    
        @SuppressWarnings({"unchecked", "rawtypes"})
        private Map<String, String> createMergedProperties(MavenExecutionRequest request) {
            // this throwaway map is really ONLY to get config from (profiles + env + system + user)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
Back to top