Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 91 for hugger (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

    /**
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     * This class in particular may spontaneously self-combust and be replaced by a plexus-compliant thread aware
     * logger implementation at any time.
     *
     * @since 3.0
     */
    @SuppressWarnings({"SynchronizationOnLocalVariableOrMethodParameter"})
    public class ThreadOutputMuxer {
        private final Iterator<ProjectSegment> projects;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    protected int parseThreshold(String); public void setThreshold(int); public void setThresholds(int); public int getThreshold(); public void setThreshold(String, String, int); public int getThreshold(String, String); public Logger getLoggerForComponen(String, String); protected abstract Logger createLogger(String); public void returnComponentLogge(String, String); public int getActiveLoggerCount(); public String getThresholdAsString(); } org/codehaus/plexus/logging/console/ConsoleLogger.class package org...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 205.7K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

            this.logger = logger;
        }
    
        public void testArtifact(Artifact node) {}
    
        public void startProcessChildren(Artifact artifact) {
            indent += "  ";
        }
    
        public void endProcessChildren(Artifact artifact) {
            indent = indent.substring(2);
        }
    
        public void includeArtifact(Artifact artifact) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManager.java

            this.factories = factories;
            this.logger = LoggerFactory.getLogger(DefaultToolchainManager.class);
        }
    
        /**
         * Ctor needed for UT.
         */
        DefaultToolchainManager(Map<String, ToolchainFactory> factories, Logger logger) {
            this.factories = factories;
            this.logger = requireNonNull(logger);
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/rtinfo/internal/DefaultRuntimeInformation.java

    import org.eclipse.aether.version.VersionScheme;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Provides information about the current Maven runtime.
     */
    @Named
    @Singleton
    public class DefaultRuntimeInformation implements RuntimeInformation {
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        private final VersionScheme versionScheme;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 11:03:17 GMT 2023
    - 4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java

    import org.eclipse.aether.resolution.MetadataResult;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Resolves a plugin prefix.
     *
     * @since 3.0
     */
    @Named
    @Singleton
    public class DefaultPluginPrefixResolver implements PluginPrefixResolver {
        private static final String REPOSITORY_CONTEXT = "plugin";
    
        private final Logger logger = LoggerFactory.getLogger(getClass());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/profiles/DefaultProfileManager.java

    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    import org.codehaus.plexus.logging.Logger;
    
    /**
     * DefaultProfileManager
     */
    @Deprecated
    public class DefaultProfileManager implements ProfileManager {
    
        @Inject
        private Logger logger;
    
        @Inject
        private ProfileSelector profileSelector;
    
        private List<String> activatedIds = new ArrayList<>();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 6.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginMavenPrerequisiteChecker.java

    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.rtinfo.RuntimeInformation;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    @Named
    @Singleton
    public class MavenPluginMavenPrerequisiteChecker implements MavenPluginPrerequisitesChecker {
        private final Logger logger = LoggerFactory.getLogger(getClass());
        private final RuntimeInformation runtimeInformation;
    
        @Inject
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

                throws ModelInterpolationException {
            if (!src.contains("${")) {
                return src;
            }
    
            Logger logger = getLogger();
    
            String result = src;
            synchronized (this) {
                for (ValueSource vs : valueSources) {
                    interpolator.addValueSource(vs);
                }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 13.5K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    class AbstractLogEnabled implements LogEnabled { private Logger logger; public void AbstractLogEnabled(); public void enableLogging(Logger); protected Logger getLogger(); protected void setupLogger(Object); protected void setupLogger(Object, String); protected void setupLogger(Object, Logger); } org/codehaus/plexus/logging/AbstractLogger.class package org.codehaus.plexus.logging; public abstract synchronized class AbstractLogger implements Logger { private int threshold; private String name; public void...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 32.4K bytes
    - Viewed (0)
Back to top