Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for toCompactString (0.15 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/codegen/GradleApiExtensionsTest.kt

            return generatedSourceFiles.single()
        }
    
        private
        fun hashTargetTypeSourceName(sourceName: String): String =
            Hashing.hashString(sourceName).toCompactString()
    }
    
    
    private
    val fixtureParameterNamesSupplier = { key: String ->
        when {
            key.startsWith("${ClassToKClass::class.qualifiedName}.") -> when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorFragments.kt

        INVOKESTATIC(InternalName("org/gradle/kotlin/dsl/accessors/runtime/RuntimeKt"), function, desc)
    }
    
    
    private
    fun hashOf(accessorSpec: TypedAccessorSpec) =
        hashString(accessorSpec.toString()).toCompactString()
    
    
    private
    fun TypeAccessibility.Accessible.internalName() =
        type.value.concreteClass.internalName
    
    
    private
    fun MethodVisitor.invokeAction() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

                .map(File::toURI)
                .map(Object::toString)
                .collect(Collectors.joining(" "));
            File cpJar = new File(getDefaultTmpDir(), "daemon-classpath-manifest-" + hashString(cpString).toCompactString() + ".jar");
            if (!cpJar.isFile()) {
                // Make sure the parent exists or the jar creation might fail
                cpJar.getParentFile().mkdirs();
                Manifest manifest = new Manifest();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top