Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 235 for formik (1.69 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

                )
                .getOrMapFailure(loadFailure -> new AfterExecutionResult(
                    Duration.ZERO,
                    Try.failure(new RuntimeException(
                        String.format("Failed to load cache entry %s for %s: %s",
                            cacheKey.getHashCode(),
                            work.getDisplayName(),
                            loadFailure.getMessage()
                        ),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/LinkRendererTest.groovy

            then:
            format(link) == '<apilink class="org.gradle.SomeClass"/>'
            _ * model.isKnownType('org.gradle.SomeClass') >> true
        }
    
        def rendersLinkToApiClassArray() {
            when:
            def link = renderer.link(type('org.gradle.SomeClass', true), listener)
    
            then:
            format(link) == '<classname><apilink class="org.gradle.SomeClass"/>[]</classname>'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileResolver.java

            throw new InvalidUserDataException(String.format("Cannot convert URL '%s' to a file.", converted));
        }
    
        protected void validate(File file, PathValidation validation) {
            switch (validation) {
                case NONE:
                    break;
                case EXISTS:
                    if (!file.exists()) {
                        throw new InvalidUserDataException(String.format("File '%s' does not exist.", file));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/IdentityFileResolver.java

            File file = convertObjectToFile(path);
    
            if (file == null) {
                throw new IllegalArgumentException(String.format(
                    "Cannot convert path to File. path='%s'", path));
            }
    
            if (!file.isAbsolute()) {
                throw new UnsupportedOperationException(String.format("Cannot convert relative path %s to an absolute file.", path));
            }
            return file;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/ServiceReferencePropertyAnnotationHandler.java

                        .contextualLabel(String.format("has @ServiceReference annotation used on property of type '%s' which is not a build service implementation", typeVariables.get(0).getName()))
                        .documentedAt(userManual("validation_problems", SERVICE_REFERENCE_MUST_BE_A_BUILD_SERVICE.toLowerCase(Locale.ROOT)))
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilder.java

                    throw new RuntimeException(String.format("Expected %s <td> elements in <tr>, found: %s", header.size(), tr));
                }
                String propName = cells.get(0).getTextContent().trim();
                PropertyMetaData property = classDoc.getClassMetaData().findProperty(propName);
                if (property == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            if (!prefix.equals("") && current.entries.size() < maxChildIndexEntries / 2) {
                throw new IOException(String.format("Too few entries found in %s", current));
            }
            if (current.entries.size() > maxChildIndexEntries) {
                throw new IOException(String.format("Too many entries found in %s", current));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepository.java

            } catch (IOException e) {
                throw new GradleException(String.format("Could not write meta-data to %s.", repoFile), e);
            }
        }
    
        @Override
        public T get(String fullyQualifiedClassName) {
            T t = find(fullyQualifiedClassName);
            if (t == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4K bytes
    - Viewed (0)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenModule.groovy

      <artifactId>$artifactId</artifactId>
      <version>$version</version>
      <versioning>
        <snapshot>
          <timestamp>${timestampFormat.format(publishTimestamp)}</timestamp>
          <buildNumber>$publishCount</buildNumber>
        </snapshot>
        <lastUpdated>${updateFormat.format(publishTimestamp)}</lastUpdated>
      </versioning>
    </metadata>
    """
            }
    
            pomFile.text = ""
            pomFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ConfigurationCycleIntegrationTest.groovy

                    }
                }
            '''
    
            then:
            fails "tasks"
    
            and:
            failure.assertHasCause("""A cycle has been detected in model rule dependencies. References forming the cycle:
    first
    \\- Rules#first(String)
       \\- second
          \\- second { ... } @ build.gradle line 26, column 17
             \\- third
                \\- Rules#third(String)
                   \\- first""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top