Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unsupportedThings (0.19 sec)

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

        noinline unsupportedMessage: StructuredMessageBuilder
    ): Codec<T> = codec(
        encode = {
            logUnsupported("serialize", documentationSection, unsupportedThings = unsupportedMessage)
        },
        decode = {
            logUnsupported("deserialize", documentationSection, unsupportedThings = unsupportedMessage)
            null
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Logging.kt

        appendix: StructuredMessageBuilder = {},
        unsupportedThings: StructuredMessageBuilder
    ) {
        logPropertyProblem(
            action,
            documentationSection = documentationSection,
        ) {
            text("cannot ")
            text(action)
            unsupportedThings()
            text(" as these are not supported with the configuration cache.")
            appendix()
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top