Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for DocumentationSection (0.6 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Logging.kt

        action: String,
        documentationSection: DocumentationSection? = null,
        message: StructuredMessageBuilder
    ) {
        logPropertyProblem(action, PropertyProblem(trace, build(message), documentationSection = documentationSection))
    }
    
    
    fun IsolateContext.logUnsupported(
        action: String,
        baseType: KClass<*>,
        documentationSection: DocumentationSection = RequirementsDisallowedTypes,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Unsupported.kt

        },
        decode = {
            logUnsupported("deserialize", T::class, documentationSection)
            null
        }
    )
    
    
    inline fun <reified T : Any> unsupported(
        description: String,
        documentationSection: DocumentationSection = DocumentationSection.RequirementsDisallowedTypes
    ) = unsupported<T>(documentationSection) {
        text(description)
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        fun reportInput(
            consumer: String?,
            documentationSection: DocumentationSection?,
            messageBuilder: StructuredMessage.Builder.() -> Unit
        ) {
            reportInput(locationFor(consumer), documentationSection, messageBuilder)
        }
    
        private
        fun reportInput(
            trace: PropertyTrace,
            documentationSection: DocumentationSection?,
            messageBuilder: StructuredMessage.Builder.() -> Unit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/DefaultProblemFactory.kt

                    locationMapper = mapper
                    return this
                }
    
                override fun documentationSection(documentationSection: DocumentationSection): ProblemFactory.Builder {
                    this.documentationSection = documentationSection
                    return this
                }
    
                override fun build(): PropertyProblem {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

    import org.gradle.internal.configuration.problems.DocumentationSection
    import org.gradle.internal.configuration.problems.DocumentationSection.RequirementsBuildListeners
    import org.gradle.internal.configuration.problems.DocumentationSection.RequirementsExternalProcess
    import org.gradle.internal.configuration.problems.DocumentationSection.RequirementsUseProjectDuringExecution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

            /**
             * Creates an InvalidUserCodeException for this problem, using the problem message to create the exception message.
             */
            fun exception(): Builder
    
            fun documentationSection(documentationSection: DocumentationSection): Builder
    
            /**
             * Allows the default location to be changed. The function is called by `build()`
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DocumentationTest.groovy

        def "formats message for documentation id #documentationId, section #documentationSection"() {
            given:
            def documentationReference = Documentation.userManual(documentationId, documentationSection)
    
            expect:
            documentationReference.getConsultDocumentationMessage() == expectedUrl
    
            where:
            documentationId | documentationSection | expectedUrl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheInjectedClasspathInstrumentationStrategy.kt

                    PropertyTrace.Gradle,
                    StructuredMessage.build { text("support for using a Java agent with TestKit builds is not yet implemented with the configuration cache.") },
                    documentationSection = DocumentationSection.NotYetImplementedTestKitJavaAgent
                )
            )
            return CachedClasspathTransformer.StandardTransform.BuildLogic
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskReferenceCodec.kt

    import org.gradle.api.internal.tasks.TaskContainerInternal
    import org.gradle.internal.cc.base.serialize.IsolateOwners
    import org.gradle.internal.serialize.graph.logUnsupportedBaseType
    import org.gradle.internal.configuration.problems.DocumentationSection.RequirementsTaskAccess
    import org.gradle.internal.serialize.graph.Codec
    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageDisplayConfiguration.groovy

        }
    
        T includeLink() {
            includeLink = true
            this
        }
    
        T noIntro() {
            hasIntro = false
            this
        }
    
        T documentationSection(String documentationSection) {
            section = documentationSection
            this
        }
    
        T documentationId(String id) {
            documentationId = id
            this
        }
    
        String getPropertyIntro() {
            "property"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top