Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 140 for formik (0.49 sec)

  1. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        Any Covered Software that You distribute or otherwise make available
        in Executable form must also be made available in Source Code form
        and that Source Code form must be distributed only under the terms
        of this License. You must include a copy of this License with every
        copy of the Source Code form of the Covered Software You distribute
        or otherwise make available. You must inform recipients of any such
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                throws InvalidRepositoryException {
            if (layout == null) {
                throw new InvalidRepositoryException(
                        String.format("Cannot find ArtifactRepositoryLayout instance for: %s %s", layoutId, repositoryId),
                        repositoryId);
            }
        }
    
        public static ArtifactRepository createArtifactRepository(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            SimpleProblemCollector result = validate("bad-snapshot-version.xml");
    
            assertViolations(result, 0, 1, 0);
    
            assertContains(result.getErrors().get(0), "'version' uses an unsupported snapshot version format");
        }
    
        @Test
        void testBadRepositoryId() throws Exception {
            SimpleProblemCollector result = validate("bad-repository-id.xml");
    
            assertViolations(result, 0, 4, 0);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

            if (!forkedExecutions.isEmpty()) {
                for (Map.Entry<String, List<MojoExecution>> fork : forkedExecutions.entrySet()) {
                    logger.debug("--- init fork of " + fork.getKey() + " for " + mojoExecId + " ---");
    
                    debugDependencyRequirements(fork.getValue());
    
                    for (MojoExecution forkedExecution : fork.getValue()) {
                        debugMojoExecution(forkedExecution);
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

        -->
        <prop0>A <![CDATA[ Test ]]> Project<![CDATA[ ]]>Property</prop0>
    
        <!--
        This checks the coalescing of CHARACTERS events that are interleaved with comments. Note that inner whitespace
        formed by whitespace-only events must be retained.
        -->
        <prop1><!-- X -->That's<!-- X --> <!-- X -->a<!-- X --> <!-- X -->test!<!-- X --></prop1>
    
        <!--
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingResult.java

    /**
     * Collects the output of the project builder.
     *
     */
    public interface ProjectBuildingResult {
    
        /**
         * Gets the identifier of the project that could not be built. The general format of the identifier is {@code
         * <groupId>:<artifactId>:<version>} but some of these coordinates may still be unknown at the point the exception
         * is thrown so this information is merely meant to assist the user.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. maven-settings-builder/src/main/java/org/apache/maven/settings/io/DefaultSettingsWriter.java

    import java.util.Map;
    import java.util.Objects;
    
    import org.apache.maven.settings.Settings;
    import org.apache.maven.settings.v4.SettingsStaxWriter;
    
    /**
     * Handles serialization of settings into the default textual format.
     *
     */
    @Named
    @Singleton
    public class DefaultSettingsWriter implements SettingsWriter {
    
        @Override
        public void write(File output, Map<String, Object> options, Settings settings) throws IOException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

        public Ansi newline() {
            flushAttributes();
            builder.append(System.lineSeparator());
            return this;
        }
    
        public Ansi format(String pattern, Object... args) {
            flushAttributes();
            builder.append(String.format(pattern, args));
            return this;
        }
    
        /**
         * Applies another function to this Ansi instance.
         *
         * @param fun the function to apply
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/Apache-2.0.txt

          exercising permissions granted by this License.
    
          "Source" form shall mean the preferred form for making modifications,
          including but not limited to software source code, documentation
          source, and configuration files.
    
          "Object" form shall mean any form resulting from mechanical
          transformation or translation of a Source form, including but
          not limited to compiled object code, generated documentation,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 28 11:47:17 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java

         *
         * @return the location
         */
        public String getLocation() {
            return this.location;
        }
    
        /**
         * Get the identifier of the POM in the format {@code <groupId>:<artifactId>:<version>}.
         *
         * @return the model id
         */
        public String getModelId() {
            return this.modelId;
        }
    
        @Override
        public boolean equals(Object o) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top