Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for patreon (0.25 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/Artifact.java

     */
    public interface Artifact extends Comparable<Artifact> {
    
        String RELEASE_VERSION = "RELEASE";
    
        String LATEST_VERSION = "LATEST";
    
        String SNAPSHOT_VERSION = "SNAPSHOT";
    
        Pattern VERSION_FILE_PATTERN = Pattern.compile("^(.*)-(\\d{8}\\.\\d{6})-(\\d+)$");
    
        // TODO into artifactScope handler
    
        String SCOPE_COMPILE = "compile";
    
        String SCOPE_COMPILE_PLUS_RUNTIME = "compile+runtime";
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Feb 09 17:47:51 GMT 2023
    - 4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

    import org.apache.maven.api.settings.Settings;
    
    /**
     */
    public class DefaultSettingsValidator {
    
        private static final String ID = "[\\w.-]+";
        private static final Pattern ID_REGEX = Pattern.compile(ID);
    
        private static final String ILLEGAL_REPO_ID_CHARS = "\\/:\"<>|?*"; // ILLEGAL_FS_CHARS
    
        public void validate(Settings settings, boolean isProjectSettings, List<BuilderProblem> problems) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  3. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionIT.java

    import java.nio.file.attribute.BasicFileAttributes;
    import java.util.regex.Pattern;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    class ComparableVersionIT {
    
        @Test
        void test() throws Exception {
            Files.walkFileTree(Paths.get("target"), new SimpleFileVisitor<Path>() {
                Pattern mavenArtifactJar = Pattern.compile("maven-artifact-[\\d.]+(-SNAPSHOT)?\\.jar");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

            // respectively. Using a simple replacement of these patterns will allow them
            // to specify the absolute path to these files in a customized components.xml
            // file. Ideally, we'd do full pattern-evaluation against the sysprops, but this
            // is a first step. There are several replacements below, in order to normalize
            // the path character before we operate on the string as a regex input, and
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

    package org.apache.maven;
    
    import org.apache.maven.execution.MavenSession;
    
    /**
     * Allows core extensions to participate in Maven build session lifecycle.
     *
     * All callback methods (will) follow beforeXXX/afterXXX naming pattern to
     * indicate at what lifecycle point it is being called.
     *
     * @see <a href="https://maven.apache.org/examples/maven-3-lifecycle-extensions.html">example</a>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    org.hamcrest.core; public synchronized class DescribedAs extends org.hamcrest.BaseMatcher { private final String descriptionTemplate; private final org.hamcrest.Matcher matcher; private final Object[] values; private static final java.util.regex.Pattern ARG_PATTERN; public void DescribedAs(String, org.hamcrest.Matcher, Object[]); public boolean matches(Object); public void describeTo(org.hamcrest.Description); public void describeMismatch(Object, org.hamcrest.Description); public static transient org.hamcrest.Matcher...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 44K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    private static final String EBCDIC = CP1047; private static String _staticDefaultEncodin; private java.io.Reader _reader; private String _encoding; private String _defaultEncoding; private static final java.util.regex.Pattern CHARSET_PATTERN; static final java.util.regex.Pattern ENCODING_PATTERN; private static final java.text.MessageFormat RAW_EX_1; private static final java.text.MessageFormat RAW_EX_2; private static final java.text.MessageFormat HTTP_EX_1; private static final java.text.MessageFormat...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 200.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

     package org.apache.maven.artifact; public abstract interface Artifact extends Comparable { public static final String LATEST_VERSION = LATEST; public static final String SNAPSHOT_VERSION = SNAPSHOT; public static final java.util.regex.Pattern VERSION_FILE_PATTERN; public static final String SCOPE_COMPILE = compile; public static final String SCOPE_TEST = test; public static final String SCOPE_RUNTIME = runtime; public static final String SCOPE_PROVIDED = provided; public static final String SCOPE_SYSTEM...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    to be logged (if the corresponding detail level is enabled) by calling appropriate methods (trace(), debug(), info(), warn(), error, and fatal()). For convenience, LogFactory also offers a static method getLog() that combines the typical two-step pattern: Log log = LogFactory.getFactory().getInstance(Foo.class); into a single method call: Log log = LogFactory.getLog(Foo.class); For example, you might use the following technique to initialize and use a Log instance in an application component: import...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 37.1K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    Result$1 { } org/junit/runner/Description.class package org.junit.runner; public synchronized class Description implements java.io.Serializable { private static final long serialVersionUID = 1; private static final java.util.regex.Pattern METHOD_AND_CLASS_NAME_PATTERN; public static final Description EMPTY; public static final Description TEST_MECHANISM; private final java.util.Collection fChildren; private final String fDisplayName; private final java.io.Serializable fUniqueId; private final an...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
Back to top