Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for pattern (0.19 sec)

  1. gradle/wrapper/gradle-wrapper.jar

    State onArgument(String); public final CommandLineParser$ParserState onComplete(); } org/gradle/cli/CommandLineParser.class package org.gradle.cli; public final synchronized class CommandLineParser { public static final java.util.regex.Pattern OPTION_NAME_PATTERN; public final java.util.HashMap optionsByString; public boolean allowUnknownOptions; public void CommandLineParser(); static void <clinit>(); public final transient CommandLineOption option(String[]); } org/gradle/cli/ParsedCommandLine.class...
    Archive
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Dec 24 09:00:26 GMT 2023
    - 42.4K bytes
    - Viewed (0)
  2. 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)
  3. maven-core/src/test/resources/apiv4-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 Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 200.2K bytes
    - Viewed (0)
  4. 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)
  5. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    org.hamcrest.Description; import org.hamcrest.Factory; import org.hamcrest.Matcher; import java.util.regex.Pattern; import static java.lang.Integer.parseInt; /** * Provides a custom description to another matcher. */ public class DescribedAs<T> extends BaseMatcher<T> { private final String descriptionTemplate; private final Matcher<T> matcher; private final Object[] values; private final static Pattern ARG_PATTERN = Pattern.compile("%([0-9]+)"); public DescribedAs(String descriptionTemplate, Matcher<T> matcher, Object[]...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    messages to be logged (if the corresponding detail level is enabled) by calling appropriate methods (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"); into a single method call: Log log = LogFactory.getLog("Foo"); For example, you might use the following technique to initialize and use a Log instance in an application component: import org....
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 30.9K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-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 14 03:35:08 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 160.1K bytes
    - Viewed (0)
Back to top