Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNextEntry (0.21 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

                        inputZip.withInputStream { stream ->
                            ZipInputStream inputStream = new ZipInputStream(stream)
                            ZipEntry entry
                            while ((entry = inputStream.getNextEntry()) != null) {
                                if (entry.isDirectory()) {
                                    new File(unzipDir, entry.getName()).mkdirs()
                                    continue
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

                        inputZip.withInputStream { stream ->
                            ZipInputStream inputStream = new ZipInputStream(stream)
                            ZipEntry entry
                            while ((entry = inputStream.getNextEntry()) != null) {
                                if (entry.isDirectory()) {
                                    new File(unzipDir, entry.getName()).mkdirs()
                                    continue
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top