Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 214 for problem (0.17 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                        List<ModelProblem> problems = modelResult.getProblems();
                        logger.warn(
                                "{} {} encountered while building the effective model for {}",
                                problems.size(),
                                (problems.size() == 1) ? "problem was" : "problems were",
                                request.getArtifact());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/ide/problems/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """Problem SPI implementations.
        |
        |This project contains the SPI implementations for the problem reporting infrastructure.
    """.trimMargin()
    
    dependencies {
        api(project(":problems-api"))
        api(project(":build-operations"))
        api(project(":stdlib-java-extensions"))
        api(project(":service-provider"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/UserTypesCodecTest.kt

            val unsupportedBean = 42 to "42"
            val problems = serializationProblemsOf(unsupportedBean, codecs().internalTypesCodec())
            val problem = problems.single()
            assertInstanceOf<PropertyTrace.Gradle>(
                problem.trace
            )
            assertThat(
                problem.message.toString(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/release/notes.md

    > nothing that affects the build configuration has changed.
    
    #### FILL-IN-FEATURE
    > HIGHLIGHT the use case or existing problem the feature solves
    > EXPLAIN how the new release addresses that problem or use case
    > PROVIDE a screenshot or snippet illustrating the new feature, if applicable
    > LINK to the full documentation for more details
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

    class ProcessInPluginIntegrationTest extends AbstractProcessIntegrationTest {
        def "using #snippetsFactory.summary in convention plugin #file is a problem"() {
            given:
            def snippets = snippetsFactory.newSnippets(execOperationsFixture)
            testDirectory.file("buildSrc/build.gradle.kts") << """
                plugins {
                    `$plugin`
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultDynamicCallProblemReportingTest.kt

            val latch = CountDownLatch(3)
            val problem = Any()
            val results = Collections.synchronizedList(mutableListOf<Boolean>())
    
            fun doTest() {
                reporting.enterDynamicCall(this)
                latch.countDown()
                latch.await()
                results += reporting.unreportedProblemInCurrentCall(problem)
            }
    
            (1..3).map { thread { doTest() } }.forEach(Thread::join)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

    import org.gradle.internal.configuration.problems.PropertyTrace
    import org.gradle.internal.configuration.problems.StructuredMessage
    import org.gradle.internal.configuration.problems.firstTypeFrom
    import org.gradle.internal.configuration.problems.projectPathFrom
    import org.gradle.internal.configuration.problems.taskPathFrom
    import java.io.Writer
    
    
    internal
    enum class DiagnosticKind {
        PROBLEM,
        INPUT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

                message.capitalized() + if (requestPath != null) "; tried to access '$requestPath'" else '"'
            }.build()
            problems.onProblem(problem)
        }
    
        private
        fun TaskExecutionGraphListener.wrap() = CrossProjectAccessTrackingTaskExecutionGraphListener(this, referrerProject, crossProjectModelAccess)
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializer.kt

    }
    
    
    /**
     * TODO: report problems via the Problems API
     */
    private
    object ThrowingProblemsListener : AbstractProblemsListener() {
        override fun onProblem(problem: PropertyProblem) {
            // TODO: consider throwing more specific exception
            throw ConfigurationCacheError("Failed to isolate 'GradleLifecycle' action: ${problem.message}")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/NonGradleCause.java

     * limitations under the License.
     */
    
    package org.gradle.internal.exceptions;
    
    /**
     * An exception that is not caused by a Gradle specific problem. e.g. a problem caused by a compilation error.
     * This serves as a marker interface.
     */
    public interface NonGradleCause {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 851 bytes
    - Viewed (0)
Back to top