Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 139 for formik (1.84 sec)

  1. maven-compat/src/main/resources/META-INF/maven/plugin.xml

            <session implementation="org.apache.maven.execution.MavenSession" default-value="${session}"/>
            <forkId implementation="int" default-value="-1">${forkId}</forkId>
          </configuration>
        </mojo>
        <mojo>
          <goal>end-fork</goal>
          <description>Restore the non-fork currentProject instance, for use in the forking mojo.</description>
          <requiresDirectInvocation>false</requiresDirectInvocation>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/bin.xml

        xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
      <id>bin</id>
      <formats>
        <format>zip</format>
        <format>tar.gz</format>
      </formats>
      <componentDescriptors>
        <componentDescriptor>src/assembly/component.xml</componentDescriptor>
      </componentDescriptors>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 27 13:14:24 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

                define its own format and semantics. This was generally a properties format.
                &lt;p>Since Maven 3.2.4, the type for this field has been changed to Properties to match the de-facto
                format.
                &lt;p>Each toolchain defines its own properties names and semantics.
              </description>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

         * @see String#format(String, Object...)
         *
         * @param pattern a <a href="../util/Formatter.html#syntax">format string</a>
         * @param args arguments referenced by the format specifiers in the format string
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder format(String pattern, Object... args) {
            return append(String.format(pattern, args));
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java

            msgs.add("*****************************************************************");
    
            assertEquals(
                    msgs,
                    MultilineMessageHelper.format(
                            "Your build is requesting parallel execution, but project contains the following "
                                    + "plugin(s) that have goals not marked as @threadSafe to support parallel building.",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java

     */
    public class ConsoleMavenTransferListener extends AbstractMavenTransferListener {
    
        private final Map<TransferResourceIdentifier, TransferResourceAndSize> transfers = new LinkedHashMap<>();
        private final FileSizeFormat format = new FileSizeFormat(); // use in a synchronized fashion
        private final StringBuilder buffer = new StringBuilder(128); // use in a synchronized fashion
    
        private final boolean printResourceNames;
        private int lastLength;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterException.java

            super(
                    mojo.getPluginDescriptor(),
                    "The parameters " + format(parameters) + " for goal " + mojo.getRoleHint() + " are missing or invalid");
    
            this.mojo = mojo;
    
            this.parameters = parameters;
        }
    
        private static String format(List<Parameter> parameters) {
            StringBuilder buffer = new StringBuilder(128);
            if (parameters != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 09 23:46:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. maven-slf4j-wrapper/src/main/java/org/apache/maven/logwrapper/LogLevelRecorder.java

        }
    
        private Level determineThresholdLevel(String input) {
            final Level result = ACCEPTED_LEVELS.get(input);
            if (result == null) {
                String message = String.format(
                        "%s is not a valid log severity threshold. Valid severities are WARN/WARNING and ERROR.", input);
                throw new IllegalArgumentException(message);
            }
            return result;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.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);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  10. maven-settings-builder/src/main/java/org/apache/maven/settings/io/DefaultSettingsReader.java

    import org.apache.maven.api.settings.InputSource;
    import org.apache.maven.settings.Settings;
    import org.apache.maven.settings.v4.SettingsStaxReader;
    
    /**
     * Handles deserialization of settings from the default textual format.
     *
     */
    @Named
    @Singleton
    public class DefaultSettingsReader implements SettingsReader {
    
        @Override
        public Settings read(File input, Map<String, ?> options) throws IOException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top