Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 100 for Here (0.05 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

            val problem = problemFactory.problem {
                text("Project ")
                reference(referrerProject.identityPath.toString())
                text(" cannot access the tasks in the task graph that were created by other projects")
            }.exception { message ->
                // As the exception message is not used for grouping, we can safely add the exact task name to it:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonGreeter.java

                throw new GradleException(prepareMessage(output, startupArgs));
            }
            String[] lines = output.split("\n");
            //Assuming that the diagnostics were printed out to the last line. It's not bullet-proof but seems to be doing fine.
            String lastLine = lines[lines.length - 1];
            return startupCommunication.readDiagnostics(lastLine);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/util/internal/NameMatcher.java

                pos = matcher.end();
            }
            builder.append(Pattern.quote(name.substring(pos)));
            return Pattern.compile(builder.toString());
        }
    
        /**
         * Returns all matches, when there were more than 1.
         *
         * @return The matches. Returns an empty set when there are no matches.
         */
        public Set<String> getMatches() {
            return matches;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 8.5K 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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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