Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for debugging (0.1 sec)

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

    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    
    /**
     * This object is tinted with ClasspathTransformation and GraphConflictResolver.
     * Get rid of them after debugging
     *
     */
    @Deprecated
    public class MetadataResolutionResult {
        MetadataTreeNode treeRoot;
    
        /**
         * these components are initialized on demand by
         * explicit call of the initTreeProcessing()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         */
        public boolean containsModule(String name) {
            return descriptors.containsValue(name);
        }
    
        /**
         * {@return a string representation of this object for debugging purposes}.
         * This string representation may change in any future version.
         */
        @Override
        public String toString() {
            return getClass().getCanonicalName() + '[' + filename + ']';
        }
    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. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            if (value.isEmpty()) {
                return new String[0];
            }
            return new String[] {option, value};
        }
    
        /**
         * {@return a string representation of this path type for debugging purposes}.
         */
        @Override
        public String toString() {
            return "PathType[" + id() + "]";
        }
    
        /**
         * Type of path which is applied to only one specific Java module.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top