Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for encloses (1.28 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriterTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    import org.hamcrest.Matchers.hasEntry
    import org.junit.Test
    import java.io.StringWriter
    
    
    class JsonModelWriterTest {
    
        @Test
        fun `encodes model with empty strings correctly`() {
            assertThat(
                jsonModelFor {
                    beginModel()
                    writeDiagnostic(
                        DiagnosticKind.INPUT,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

         */
        fun loadOrCreateProjectMetadata(identityPath: Path, creator: () -> LocalComponentGraphResolveState): LocalComponentGraphResolveState
    
        /**
         * Flushes any remaining state to the cache and closes any resources
         */
        fun finalizeCacheEntry()
    
        // This is a temporary property to allow migration from a root build scoped cache to a build tree scoped cache
        val isLoaded: Boolean
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Contexts.kt

        override val sharedIdentities = WriteIdentities()
    
        override val circularReferences = CircularReferences()
    
        /**
         * Closes the given [encoder] if it is [AutoCloseable].
         */
        override fun close() {
            (encoder as? AutoCloseable)?.close()
        }
    
        override fun beanStateWriterFor(beanType: Class<*>): BeanStateWriter =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top