Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 652 for problem (0.25 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

    import org.gradle.api.logging.Logging;
    import org.gradle.api.problems.ProblemSpec;
    import org.gradle.api.problems.Problems;
    import org.gradle.api.problems.Severity;
    import org.gradle.api.problems.internal.GeneralDataSpec;
    import org.gradle.api.problems.internal.GradleCoreProblemGroup;
    import org.gradle.api.problems.internal.InternalProblemReporter;
    import org.gradle.api.problems.internal.InternalProblemSpec;
    
    import javax.tools.Diagnostic;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    - link:{javadocPath}/org/gradle/api/problems/ProblemReporter.html#throwing-org.gradle.api.Action-[Throwing] a problem is used for reporting problems that are not recoverable, and the build should fail.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

            );
    
            ImmutableList<Problem> validationMessages = validationContext.getProblems();
            if (!validationMessages.isEmpty()) {
                throw new DefaultMultiCauseException(
                    String.format(validationMessages.size() == 1
                            ? "A problem was found with the configuration of the artifact transform parameter %s."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/RecoverFromBrokenResolutionIntegrationTest.groovy

            run 'retrieve'
            and:
            file('libs/projectA-1.0-SNAPSHOT.jar').assertIsCopyOf(module.artifact.file)
        }
    
        @ToBeFixedForConfigurationCache
        def "can run offline mode after connection problem with repo url using unique snapshot version"() {
            given:
            buildFileWithSnapshotDependency()
            noAuthorizationRepo()
            publishedMavenModule()
    
            when:
            moduleAvailableViaHttp()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

                LOGGER.warn("");
                LOGGER.warn("Some problems were encountered while building the effective settings");
    
                for (SettingsProblem problem : settingsResult.getProblems()) {
                    LOGGER.warn("{} @ {}", problem.getMessage(), problem.getLocation());
                }
                LOGGER.warn("");
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

    import org.gradle.api.problems.internal.DocLink;
    import org.gradle.api.problems.internal.FileLocation;
    import org.gradle.api.problems.internal.GeneralData;
    import org.gradle.api.problems.internal.LineInFileLocation;
    import org.gradle.api.problems.internal.OffsetInFileLocation;
    import org.gradle.api.problems.internal.Problem;
    import org.gradle.api.problems.internal.ProblemCategory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    // and corresponding verifier.
    //
    // # Example
    //
    // Here is a well-formed signed note:
    //
    //	If you think cryptography is the answer to your problem,
    //	then you don't know what your problem is.
    //
    //	— PeterNeumann x08go/ZJkuBS9UG/SffcvIAQxVBtiFupLLr8pAcElZInNIuGUgYN1FFYC2pZSNXgKvqfqdngotpRZb6KE6RyyBwJnAM=
    //
    // It can be constructed and displayed using:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

            validationContext.visitPropertyProblem(problem ->
                problem.id(TextUtil.screamingSnakeToKebabCase(IMPLICIT_DEPENDENCY), "Property has implicit dependency", GradleCoreProblemGroup.validation().property()) // TODO (donat) missing test coverage
                    .contextualLabel("Gradle detected a problem with the following location: '" + consumerProducerPath + "'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/runtime/lockrank_on.go

    		// rank recording for it, since print/println are used when
    		// printing out a lock ordering problem below.
    		//
    		// paniclk is only used for fatal throw/panic. Don't do lock
    		// ranking recording for it, since we throw after reporting a
    		// lock ordering problem. Additionally, paniclk may be taken
    		// after effectively any lock (anywhere we might panic), which
    		// the partial order doesn't cover.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            when:
            fails(":printTestSoftwareTypeExtensionConfiguration")
    
            then:
            failure.assertHasCause("Failed to apply plugin 'com.example.test-software-type'.")
            failure.assertHasCause("A problem was found with the SoftwareTypeImplPlugin plugin.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top