Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Warner (0.18 sec)

  1. build-logic/performance-testing/build.gradle.kts

        implementation(project(":integration-testing"))
        implementation(project(":cleanup"))
        implementation(project(":build-update-utils"))
    
        implementation("org.openmbee.junit:junit-xml-parser") {
            exclude(module = "lombok") // don't need it at runtime
        }
        implementation("com.google.guava:guava")
        implementation("com.google.code.gson:gson")
        implementation("commons-io:commons-io")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

    package org.gradle.internal.cc.impl
    
    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.internal.exceptions.Contextual
    import org.gradle.internal.exceptions.DefaultMultiCauseException
    
    
    /**
     * Marker interface for exception handling.
     */
    internal
    interface ConfigurationCacheThrowable
    
    
    /**
     * State might be corrupted and should be discarded.
     */
    @Contextual
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/DecoratedPropertyProblem.kt

        val documentationSection: DocumentationSection? = null
    )
    
    
    data class DecoratedFailure(
        val summary: StructuredMessage?,
        val parts: List<StackTracePart>?
    ) {
        companion object {
            val MARKER = DecoratedFailure(null, null)
        }
    }
    
    
    data class StackTracePart(
        val isInternal: Boolean,
        val text: String
    )
    
    
    class FailureDecorator {
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/Parser.kt

    Sergey Igushkin <******@****.***> 1712225595 +0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/HashSetCodec.kt

                return container
            }
            container.add(element)
        }
        return container
    }
    
    
    private
    object CircularReferenceMarker {
    
        val INSTANCE: Any = Marker.INSTANCE
    
        private
        enum class Marker {
            INSTANCE
        }
    }
    
    
    private
    fun Class<*>.overridesHashCode(): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ParseTestUtils.kt

    import org.gradle.internal.declarativedsl.prettyPrintLanguageTreeResult
    import org.intellij.lang.annotations.Language
    import kotlin.test.assertEquals
    
    
    class ParseTestUtil {
    
        companion object Parser {
            fun parse(@Language("kts") code: String): LanguageTreeResult {
                val parsedTree = org.gradle.internal.declarativedsl.parsing.parse(code)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. build-logic/settings.gradle.kts

            }
            maven {
                name = "Gradle public repository"
                url = uri("https://repo.gradle.org/gradle/public")
                content {
                    includeModule("org.openmbee.junit", "junit-xml-parser")
                }
            }
            mavenCentral()
            gradlePluginPortal()
        }
    }
    
    apply(from = "../gradle/shared-with-buildSrc/mirrors.settings.gradle.kts")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. architecture/standards/0002-avoid-using-java-serialization.md

    This is due to Java's use of reflection and the need to maintain a lot of metadata.
    
    - **Size of Serialized Data:**
    Java serialization tends to produce larger serialized objects because it includes class metadata and other overhead.
    
    - **Flexibility and Control:**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. build-logic-commons/build-platform/build.gradle.kts

            api("org.jsoup:jsoup:1.15.3")
            api("org.junit.jupiter:junit-jupiter:5.8.2")
            api("org.junit.vintage:junit-vintage-engine:5.8.2")
            api("org.openmbee.junit:junit-xml-parser:1.0.0")
            api("org.ow2.asm:asm:$asmVersion")
            api("org.ow2.asm:asm-commons:$asmVersion")
            api("org.ow2.asm:asm-tree:$asmVersion")
            api("xerces:xercesImpl:2.12.2") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

    import org.gradle.internal.declarativedsl.dom.fromLanguageTree.convertBlockToDocument
    import org.gradle.internal.declarativedsl.dom.resolution.resolutionContainer
    import org.gradle.internal.declarativedsl.parsing.ParseTestUtil.Parser.parseAsTopLevelBlock
    import org.gradle.internal.declarativedsl.schemaBuilder.schemaFromTypes
    import org.junit.jupiter.api.Test
    import kotlin.test.assertEquals
    
    
    object DomResolutionTest {
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top