Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for classPathWithType (0.18 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/TestWithClassPath.kt

            }
        )
    }
    
    
    internal
    fun TestWithTempFiles.classPathWithPublicType(name: String) =
        classPathWithType(name, ACC_PUBLIC)
    
    
    internal
    fun TestWithTempFiles.classPathWithPrivateType(name: String) =
        classPathWithType(name, ACC_PRIVATE)
    
    
    internal
    fun TestWithTempFiles.classPathWithType(name: String, vararg modifiers: Int): ClassPath = classPathOf(
        newFolder().also { rootDir ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaTest.kt

                )
            }
        }
    
        @Test
        fun `public synthetic type is represented as Inaccessible because Synthetic`() {
    
            val typeString = "synthetic.Type"
    
            val classPath = classPathWithType(typeString, ACC_PUBLIC, ACC_SYNTHETIC)
            classLoaderFor(classPath).useToRun {
                val type = schemaTypeFor(typeString)
                val projectSchema = availableProjectSchemaFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top