Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toCompactString (0.12 sec)

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

                    }
                    return reportFile
                }
    
                private
                fun reportHash() =
                    hashingStream.hash().toCompactString()
            }
    
            object Closed : State() {
                override fun close(): State = this
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. 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