Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 208 for Here (0.03 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/DefaultTypeValidationContext.java

            if (!validationMessages.isEmpty()) {
                String formatString = validationMessages.size() == 1
                    ? "A problem was found with the configuration of %s."
                    : "Some problems were found with the configuration of %s.";
                throw new DefaultMultiCauseException(
                    String.format(formatString, ModelType.of(implementation).getDisplayName()),
                    validationMessages.stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/ResolutionFailureDescriber.java

         * for the given failure.
         *
         * @param failure the failure to describe
         * @param schema the schema of the attributes that were used to select the variant, if available
         * @return the exception that describes the failure
         *
         * @implSpec Testing {@link #canDescribeFailure(ResolutionFailure)} should <strong>NOT</strong> be done by
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExecutionResult.java

         */
        ExecutionResult assertTasksExecutedAndNotSkipped(Object... taskPaths);
    
        /**
         * Asserts that the given task has not been executed.
         */
        ExecutionResult assertTaskNotExecuted(String taskPath);
    
        /**
         * Asserts that the provided tasks were executed in the given order.  Each task path can be either a String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

        /**
         * Should be provided if a link to the report is expected even if no errors were found.
         * Useful in testing.
         */
        val alwaysLogReportLinkAsWarning: Boolean = options.getInternalFlag("org.gradle.configuration-cache.internal.report-link-as-warning", false)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScopeIdsFixture.groovy

                    UniqueId.from(it.value.buildInvocation),
                    UniqueId.from(it.value.workspace),
                    UniqueId.from(it.value.user)
                )
            }
    
            // Assert that same IDs were used for all builds in build
            def allScopeIds = ids.values()
            def buildInvocationIds = allScopeIds*.buildInvocation
    
            assert buildInvocationIds.unique(false).size() == 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ConfigurationCacheOutputCleaner.java

        private static final Pattern CONFIGURATION_CACHE_OUTPUT = Pattern.compile(
            "((Configuration cache entry[^\\n]+\\.)|" +
                "(See the complete report at [^\\n]+\\n)|" +
                "(0 problems were found storing the configuration cache.\\n))(\\n)?"
        );
    
        @Override
        public String normalize(String commandOutput, ExecutionMetadata executionMetadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSpecFactory.java

            sortedNewExcludes.sort(Comparator.naturalOrder());
            throw new InvalidUserCodeException(String.format("Cannot change default excludes during the build. They were changed from %s to %s. Configure default excludes in the settings script instead.",  sortedExcludesFromSettings, sortedNewExcludes));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

     * capabilities. Some variants may expose additional capabilities than those of its owning feature,
     * for example with fat jars.</p>
     *
     * <p>TODO: The current API is written as if this were a single-target feature. Before we make this API
     * public, we should make this API multi-target aware. Alternatively, we could implement a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                    // the next run from cache.
                    mutatedSystemProperties[key] = SystemPropertyRemove(key)
                } else {
                    // If the key is not a string, it can only affect properties that were set by the build logic. There is
                    // no need to persist the removal, but the set value should not be persisted too. A placeholder value
                    // will keep the key mutated to avoid recording it as an input.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryConsumptionIntegrationTest.groovy

            failure.assertHasErrorOutput('error: package rx.observers does not exist')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/11995")
        def "provides a human understable error message when some variants were discarded and the remainder is ambiguous"() {
            buildFile << """
                apply plugin: 'java-base'
    
                configurations {
                    consumer {
                        assert canBeResolved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 16:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top