Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for James (0.14 sec)

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

        /**
         * Returns a collection of {@link ChecksumAlgorithm} in same order as algorithm names are ordered, or throws if
         * any of the algorithm name is not supported. The returned collection has equal count of elements as passed in
         * collection of names, and if names contains duplicated elements, the returned list of algorithms will have
         * duplicates as well.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 21 08:05:10 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

                                }
                                names.put(mf, name);
                            }
                        });
                    } catch (UncheckedIOException e) {
                        throw e.getCause();
                    }
                    if (!names.isEmpty()) {
                        descriptors = Collections.unmodifiableMap(names);
                        isModuleHierarchy = true;
                        return;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

    import java.util.function.Supplier;
    
    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;
    import com.google.inject.util.Providers;
    import org.apache.maven.execution.MojoExecutionEvent;
    import org.apache.maven.execution.MojoExecutionListener;
    import org.apache.maven.execution.scope.WeakMojoExecutionListener;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/properties/internal/EnvironmentUtils.java

         * env.PATH}. Unlike native environment variables, properties are always case-sensitive. For the sake of
         * determinism, the environment variable names will be normalized to upper case on platforms with case-insensitive
         * variable lookup.
         *
         * @param props The properties to add the environment variables to, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

                    }
    
                    Map<String, Iterator<XmlNode>> commonChildren = new HashMap<>();
                    Set<String> names =
                            recessive.getChildren().stream().map(XmlNode::getName).collect(Collectors.toSet());
                    for (String name : names) {
                        List<XmlNode> dominantChildren = dominant.getChildren().stream()
                                .filter(n -> n.getName().equals(name))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

        /**
         * In case of complex XML structures, combining can be done based on keys.
         * This is a comma separated list of attribute names.
         */
        String KEYS_COMBINATION_MODE_ATTRIBUTE = "combine.keys";
    
        /**
         * This default mode for combining a DOM node during merge means that where element names match, the process will
         * try to merge the element attributes and values, rather than overriding the recessive element completely with the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/PluginConfigurationModule.java

                }
                binder.bind(XmlNode.class)
                        .annotatedWith(Names.named(plugin.getKey()))
                        .toInstance(configuration);
                binder.bind(PlexusConfiguration.class)
                        .annotatedWith(Names.named(plugin.getKey()))
                        .toInstance(XmlPlexusConfiguration.toPlexusConfiguration(configuration));
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 07:14:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. maven-di/src/main/java/org/apache/maven/di/Key.java

        }
    
        public @Nullable Object getQualifier() {
            return qualifier;
        }
    
        /**
         * Returns an underlying type with display string formatting (package names stripped)
         * and prepended qualifier display string if this key has a qualifier.
         */
        public String getDisplayString() {
            return (qualifier != null ? Utils.getDisplayString(qualifier) + " " : "")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java

         * Model interpolation does not give same result when calculated from build or from repo...
         * This is why MNG-5000 fix in code is marked as bad practice (uses file names)
         * @throws IOException Model read problem
         */
        @Test
        void testFlatTrickyUrls() throws IOException {
            // parent references child with artifactId (which is not directory name)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         */
        private final Map<Path, PathModularization> moduleInfo;
    
        /**
         * Whether JAR files are modular. This map is redundant with {@link #moduleInfo},
         * but cheaper to compute when the module names are not needed.
         *
         * @see #getPathType(Path)
         */
        private final Map<Path, PathType> pathTypes;
    
        /**
         * Creates an initially empty cache.
         */
        PathModularizationCache() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top