Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for Sentry (0.24 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                    if (edge == null) { // no edges - don't need this vertex anymore
                        if (entry.equals(v)) { // unless it's an entry point.
                            // currently processing the entry point - it should not have any entry incident edges
                            res.getEntry().getMd().setWhy("This is a graph entry point. No links.");
                        } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

                 */
                try (JarFile jar = new JarFile(path.toFile())) {
                    ZipEntry entry = jar.getEntry(MODULE_INFO);
                    if (entry != null) {
                        String name = null;
                        if (resolve) {
                            try (InputStream in = jar.getInputStream(entry)) {
                                name = getModuleName(in);
                            }
                        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            // single project build entry point
            ProjectBuildingResult result = getContainer()
                    .lookup(org.apache.maven.project.ProjectBuilder.class)
                    .build(pomFile, configuration);
            assertEquals(1, result.getProject().getArtifacts().size());
            // multi projects build entry point
            List<ProjectBuildingResult> results = getContainer()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 18.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                 * Except for this unusual case, tests should never be added to the module-path.
                 */
                for (Map.Entry<Path, String> entry : testModules.getModuleNames().entrySet()) {
                    if (!outputModules.containsModule(entry.getValue())) {
                        addPathElement(JavaPathType.MODULES, entry.getKey());
                        addToClasspath = false;
                    }
                }
                if (addToClasspath) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java

            builder.append("type:").append(getType());
            builder.append('{');
    
            Iterator<Map.Entry<String, RequirementMatcher>> providesIter =
                    provides.entrySet().iterator();
            while (providesIter.hasNext()) {
                Map.Entry<String, RequirementMatcher> provideEntry = providesIter.next();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributePointer.java

    /**
     * An attribute pointer for JXPath to support <code>Xpp3Dom</code>.
     *
     */
    class Xpp3DomAttributePointer extends NodePointer {
    
        private Map.Entry<String, String> attrib;
    
        public Xpp3DomAttributePointer(NodePointer parent, Map.Entry<String, String> attrib) {
            super(parent);
            this.attrib = attrib;
        }
    
        @Override
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                    for (Map.Entry<Object, Plugin> entry : master.entrySet()) {
                        List<Plugin> pre = predecessors.get(entry.getKey());
                        if (pre != null) {
                            result.addAll(pre);
                        }
                        result.add(entry.getValue());
                    }
                    result.addAll(pending);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributeIterator.java

     *
     */
    class Xpp3DomAttributeIterator implements NodeIterator {
    
        private NodePointer parent;
    
        private XmlNodeImpl node;
    
        private List<Map.Entry<String, String>> attributes;
    
        private Map.Entry<String, String> attribute;
    
        private int position;
    
        public Xpp3DomAttributeIterator(NodePointer parent, QName qname) {
            this.parent = parent;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/Maven.java

     * under the License.
     */
    package org.apache.maven;
    
    import org.apache.maven.execution.MavenExecutionRequest;
    import org.apache.maven.execution.MavenExecutionResult;
    
    /**
     * The main Maven execution entry point, which will execute a full Maven execution session.
     *
     * @see org.apache.maven.execution.MavenSession
     */
    public interface Maven {
        @Deprecated
        @SuppressWarnings("checkstyle:constantname")
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    String id; public void DuplicateRealmExcept(org.codehaus.plexus.classworlds.ClassWorld, String); public String getId(); } org/codehaus/plexus/classworlds/realm/Entry.class package org.codehaus.plexus.classworlds.realm; public synchronized class Entry implements Comparable { private final ClassRealm realm; private final String pkgName; void Entry(ClassRealm, String); ClassRealm getRealm(); String getPackageName(); boolean matches(String); public int compareTo(Object); public boolean equals(Object); public...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 41.5K bytes
    - Viewed (0)
Back to top