Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 199 for onText (0.48 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     *
     */
    public abstract class AbstractMojo implements Mojo, ContextEnabled {
        /** Instance logger */
        private Log log;
    
        /** Plugin container context */
        private Map pluginContext;
    
        /**
         * @deprecated Use SLF4J directly
         */
        @Deprecated
        @Override
        public void setLog(Log log) {
            this.log = log;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuilder.java

        Result<? extends Model> buildRawModel(
                File pomFile, int validationLevel, boolean locationTracking, TransformerContext context);
    
        /**
         * @since 4.0.0
         */
        Result<? extends Model> buildRawModel(
                Path pomFile, int validationLevel, boolean locationTracking, TransformerContext context);
    
        TransformerContextBuilder newTransformerContextBuilder();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:27:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

            Activation activation = profile.getActivation();
    
            if (activation == null) {
                return false;
            }
    
            String jdk = activation.getJdk();
    
            if (jdk == null) {
                return false;
            }
    
            String version = context.getSystemProperties().get("java.version");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java

            Activation activation = profile.getActivation();
    
            if (activation == null) {
                return false;
            }
    
            String jdk = activation.getJdk();
    
            if (jdk == null) {
                return false;
            }
    
            String version = context.getSystemProperties().get("java.version");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            ProfileSelector customSelector = new DefaultProfileSelector() {
                @Override
                public List<Profile> getActiveProfiles(
                        Collection<Profile> profiles, ProfileActivationContext context, ModelProblemCollector problems) {
                    return new ArrayList<>();
                }
            };
            DefaultModelBuilder modelBuilder = new DefaultModelBuilder(
                    modelProcessor,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectSegment.java

    import java.util.List;
    
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.execution.ProjectDependencyGraph;
    import org.apache.maven.project.MavenProject;
    
    /**
     * A build context that matches a Maven project to a given task segment, and the session to be used.
     * <p>
     * A note to the reader;
     * </p>
     * <p>
     * There are several issues/discussions regarding how "aggregator" plugins should be handled.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

            // simple bean? assumes string constructor
            if (parser.next() == XmlPullParser.TEXT) {
                final String text = parser.getText();
    
                // confirm element doesn't contain nested XML
                if (parser.next() != XmlPullParser.START_TAG) {
                    return convertText(text, clazz == rawType ? toType : TypeLiteral.get(clazz));
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    DEFAULT_END_DELIM = }; public static final String DEFAULT_ESCAPE_SEQ = \; private static final char CARRIAGE_RETURN_CHAR = 13; private static final char NEWLINE_CHAR = 10; private final java.io.PushbackReader pushbackReader; private final java.util.Map context; private final String startDelim; private final String endDelim; private final String escapeSeq; private final int minExpressionSize; private final reflection.Reflector reflector; private int lineIdx; private String line; public void LineOriented...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

     extends Exception { private static final long serialVersionUID = 7559886640184983689; public void PlexusConfigurationE(String); public void PlexusConfigurationE(String, Throwable); } org/codehaus/plexus/context/Context.class package org.codehaus.plexus.context; public abstract interface Context { public abstract Object get(Object) throws ContextException; public abstract java.util.Map getContextData(); public abstract boolean contains(Object); public abstract void put(Object, Object) throws IllegalStateExceptio;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 35.3K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ProfileActivationFilePathInterpolator.java

                    return null;
                }
            });
    
            interpolator.addValueSource(new MapBasedValueSource(context.getProjectProperties()));
            interpolator.addValueSource(new MapBasedValueSource(context.getUserProperties()));
            interpolator.addValueSource(new MapBasedValueSource(context.getSystemProperties()));
    
            String absolutePath = interpolator.interpolate(path, "");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top