Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for formik (0.25 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                forkedProjects = new ArrayList<>(forkedExecutions.size());
    
                try {
                    for (Map.Entry<String, List<MojoExecution>> fork : forkedExecutions.entrySet()) {
                        String projectId = fork.getKey();
    
                        ProjectIndex projectIndex = session.getSession()
                                .getData()
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 20.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataReader.java

    import java.io.InputStream;
    import java.io.Reader;
    import java.util.Map;
    
    import org.apache.maven.artifact.repository.metadata.Metadata;
    
    /**
     * Handles deserialization of metadata from some kind of textual format like XML.
     *
     */
    public interface MetadataReader {
    
        /**
         * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolator.java

    import org.apache.maven.project.ProjectBuilderConfiguration;
    
    /**
     */
    @Deprecated
    public interface ModelInterpolator {
        String DEFAULT_BUILD_TIMESTAMP_FORMAT = "yyyyMMdd-HHmm";
    
        String BUILD_TIMESTAMP_FORMAT_PROPERTY = "maven.build.timestamp.format";
    
        String ROLE = ModelInterpolator.class.getName();
    
        /**
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/prefix/NoPluginFoundForPrefixException.java

            super("No plugin found for prefix '" + prefix + "' in the current project and in the plugin groups "
                    + pluginGroups + " available from the repositories " + format(localRepository, remoteRepositories));
        }
    
        private static String format(LocalRepository localRepository, List<RemoteRepository> remoteRepositories) {
            StringBuilder repos = new StringBuilder("[");
    
            if (localRepository != null) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.4K bytes
    - Viewed (0)
  5. maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    parseDouble(CharSequence) throws NumberFormatExceptio; public static StringBuffer format(boolean, StringBuffer); public static StringBuffer format(short, StringBuffer); public static StringBuffer format(short, int, StringBuffer); public static StringBuffer format(int, StringBuffer); public static StringBuffer format(int, int, StringBuffer); private static void format2(int, int, StringBuffer); public static StringBuffer format(long, StringBuffer); public static StringBuffer format(long, int, StringBuffer);...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Oct 23 23:48:02 GMT 2009
    - 164.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    parseDouble(CharSequence) throws NumberFormatExceptio; public static StringBuffer format(boolean, StringBuffer); public static StringBuffer format(short, StringBuffer); public static StringBuffer format(short, int, StringBuffer); public static StringBuffer format(int, StringBuffer); public static StringBuffer format(int, int, StringBuffer); private static void format2(int, int, StringBuffer); public static StringBuffer format(long, StringBuffer); public static StringBuffer format(long, int, StringBuffer);...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 164.6K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

            } catch (InvalidVersionSpecificationException e) {
                // MNG-5368: Log a message instead of returning 'null' silently.
                this.logger.error(
                        String.format(
                                "Invalid version specification '%s' creating dependency artifact '%s'.", d.getVersion(), d),
                        e);
                return null;
            }
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadata.java

        @Override
        protected void merge(Metadata recessive) {
            Versioning original = metadata.getVersioning();
    
            Versioning.Builder versioning = Versioning.newBuilder(original);
            versioning.lastUpdated(fmt.format(timestamp));
    
            if (recessive.getVersioning() != null) {
                if (original.getLatest() == null) {
                    versioning.latest(recessive.getVersioning().getLatest());
                }
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  9. maven-core/src/main/mdo/extension.mdo

              <version>1.0.0</version>
              <association>
                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
              <description><![CDATA[Artifacts in the format <code>groupId:artifactId</code>. All the ones listed here are filtered (i.e. removed) from plugin and build extension class realms,
              i.e. referencing any of those coordinates in plugin/build extension dependencies has no effect.]]>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

        If you feel the source code should be reformatted, create a separate PR for this change.
      + Check for unnecessary whitespace with `git diff --check` before committing.
    + Make sure your commit messages are in the proper format. Your commit message should contain the key of the JIRA issue.
    ```
    [MNG-XXX] - Subject of the JIRA Ticket
     Optional supplemental description.
    ```
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
Back to top