Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for sample (0.2 sec)

  1. apache-maven/src/assembly/maven/conf/toolchains.xml

     |                 users on a machine (assuming they're all using the same Maven
     |                 installation). It's normally provided in
     |                 ${maven.conf}/toolchains.xml.
     |
     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -gt /path/to/global/toolchains.xml
     |
     | The sections in this sample file are intended to give you a running start at
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  2. maven-settings-builder/src/test/resources/settings/factory/simple.xml

    Benjamin Bentmann <******@****.***> 1279276518 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jul 16 10:35:18 UTC 2010
    - 895 bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/factory/simple.xml

          <properties>
            <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
          </properties>
        </profile>
        <profile>
          <id>file</id>
          <activation>
            <file>
              <exists>simple.xml</exists>
            </file>
          </activation>
          <properties>
            <profile.file>activated</profile.file>
          </properties>
        </profile>
      </profiles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Describes a problem that was encountered during project building. A problem can either be an exception that was
     * thrown or a simple string message. In addition, a problem carries a hint about its source.
     *
     * @since 4.0.0
     */
    @Experimental
    @Immutable
    public interface BuilderProblem {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/factory/complex.xml

            <my.filter.value>hello</my.filter.value>
        </properties>
    
        <profiles>
            <profile>
                <id>two-conditions</id>
                <activation>
                    <file>
                        <exists>simple.xml</exists>
                    </file>
                    <property>
                        <name>myproperty</name>
                        <value>test</value>
                    </property>
                </activation>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/test/resources/settings-simple.xml

    Guillaume Nodet <******@****.***> 1711363801 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 895 bytes
    - Viewed (0)
  7. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenLoggerFactory.java

    import java.util.Optional;
    
    import org.apache.maven.logwrapper.LogLevelRecorder;
    import org.apache.maven.logwrapper.MavenSlf4jWrapperFactory;
    import org.slf4j.Logger;
    import org.slf4j.simple.SimpleLoggerFactory;
    
    /**
     * LogFactory for Maven which can create a simple logger or one which, if set, fails the build on a severity threshold.
     */
    public class MavenLoggerFactory extends SimpleLoggerFactory implements MavenSlf4jWrapperFactory {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/test/resources/repo/ut/simple/artifact/maven-metadata.xml

    <metadata xmlns="http://maven.apache.org/METADATA/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/METADATA/1.1.0 http://maven.apache.org/xsd/metadata-1.1.0.xsd">
      <groupId>ut.simple</groupId>
      <artifactId>artifact</artifactId>
      <versioning>
        <latest>1.0</latest>
        <release>1.0</release>
        <versions>
          <version>1.0</version>
        </versions>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 01 06:59:53 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildThreadFactory.java

     * under the License.
     */
    package org.apache.maven.lifecycle.internal;
    
    import java.util.concurrent.ThreadFactory;
    import java.util.concurrent.atomic.AtomicInteger;
    
    /**
     * Simple {@link ThreadFactory} implementation that ensures the corresponding threads have a meaningful name.
     */
    public class BuildThreadFactory implements ThreadFactory {
        private final AtomicInteger id = new AtomicInteger();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. maven-settings-builder/src/test/java/org/apache/maven/settings/building/DefaultSettingsBuilderFactoryTest.java

            assertNotNull(builder);
    
            DefaultSettingsBuildingRequest request = new DefaultSettingsBuildingRequest();
            request.setSystemProperties(System.getProperties());
            request.setUserSettingsFile(getSettings("simple"));
    
            SettingsBuildingResult result = builder.build(request);
            assertNotNull(result);
            assertNotNull(result.getEffectiveSettings());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top