Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 108 of 108 for Here (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolveExceptionMapper.java

                .map(cause -> mapRepositoryOverrideFailure(contextDisplayName, cause))
                .collect(ImmutableList.toImmutableList());
    
            // Keep the original exception if no changes were made to
            // the causes to avoid losing the original stack trace
            if (mappedCauses.equals(resolveException.getCauses())) {
                return resolveException;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvedConfiguration.java

     * to both the artifacts and the meta-data of the result.
     */
    public interface ResolvedConfiguration {
        /**
         * Returns whether all dependencies were successfully retrieved or not.
         */
        boolean hasError();
    
        /**
         * Provides configuration that does not fail eagerly when some dependencies are not resolved.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

        public String getAdvice() {
            return advice;
        }
    
        /**
         * Advice on what to do about the notice, specific to this usage.
         *
         * Example: Annotation processors Foo, Bar and Baz were found on the compile classpath.
         */
        @Nullable
        public String getContextualAdvice() {
            return contextualAdvice;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/plugins/SoftwareTypeRegistrationPluginTarget.java

                    String.format(typeValidationContext.getProblems().size() == 1
                            ? "A problem was found with the %s plugin."
                            : "Some problems were found with the %s plugin.",
                        softwareTypePluginImplClass.getSimpleName()),
                    typeValidationContext.getProblems().stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         *
         * Endorsing strict versions of another module/platform means that all strict versions will be interpreted during dependency
         * resolution as if they were defined by the endorsing module itself.
         *
         * @since 6.0
         */
        void endorseStrictVersions();
    
        /**
         * Resets the {@link #isEndorsingStrictVersions()} state of this dependency.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top