Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for James (0.16 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                 * sake of backward-compat with 2.x (MNG-5000). In general, it is wrong to
                 * base URL inheritance on the module directory names as this information is unavailable for POMs in the
                 * repository. In other words, modules where artifactId != moduleDirName will see different effective URLs
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

    import java.util.Hashtable;
    import java.util.Map;
    
    /**
     * A cache of introspection information for a specific class instance.
     * Keys {@link Method} objects by a concatenation of the
     * method name and the names of classes that make up the parameters.
     */
    class ClassMap {
        private static final class CacheMiss {}
    
        private static final CacheMiss CACHE_MISS = new CacheMiss();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

                return;
            }
    
            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
            // in first step get parameter names of current goal
            Set<String> parametersNamesGoal = mojoDescriptor.getParameters().stream()
                    .flatMap(this::getParameterNames)
                    .collect(Collectors.toSet());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                    Path subdir = test;
                    if (isModuleHierarchy) {
                        // If module hierarchy is used, the directory names shall be the module names.
                        Path path = test.resolve(moduleName);
                        if (!Files.isDirectory(path)) {
                            // Main module without tests. It is okay.
                            continue;
    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-embedder/src/main/java/org/apache/maven/cli/ExtensionConfigurationModule.java

                binder.bind(XmlNode.class)
                        .annotatedWith(Names.named(extension.getKey()))
                        .toInstance(configuration);
                binder.bind(PlexusConfiguration.class)
                        .annotatedWith(Names.named(extension.getKey()))
                        .toInstance(XmlPlexusConfiguration.toPlexusConfiguration(configuration));
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:53:33 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

    import java.util.Set;
    import java.util.function.Supplier;
    import java.util.stream.Collectors;
    
    import com.google.inject.AbstractModule;
    import com.google.inject.binder.AnnotatedBindingBuilder;
    import com.google.inject.name.Names;
    import org.apache.maven.api.di.MojoExecutionScoped;
    import org.apache.maven.api.di.SessionScoped;
    import org.apache.maven.api.services.MavenException;
    import org.apache.maven.di.Injector;
    import org.apache.maven.di.Key;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

    import java.util.stream.Stream;
    
    import com.google.inject.Key;
    import com.google.inject.OutOfScopeException;
    import com.google.inject.Provider;
    import com.google.inject.Scope;
    import com.google.inject.name.Names;
    
    /**
     * SessionScope
     */
    public class SessionScope implements Scope, org.apache.maven.di.Scope {
    
        private static final Provider<Object> SEEDED_KEY_PROVIDER = () -> {
            throw new IllegalStateException();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                TaskSegment taskSegment,
                Map<MavenProject, ProjectSegment> projectBuildList,
                ThreadOutputMuxer muxer) {
            // gather artifactIds which are not unique so that the respective thread names can be extended with the groupId
            Set<String> duplicateArtifactIds = projectBuildList.keySet().stream()
                    .map(MavenProject::getArtifactId)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                 * sake of backward-compat with 2.x (MNG-5000). In general, it is wrong to
                 * base URL inheritance on the module directory names as this information is unavailable for POMs in the
                 * repository. In other words, modules where artifactId != moduleDirName will see different effective URLs
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top