Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for IOException (0.15 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

    import org.gradle.tooling.events.task.TaskFinishEvent
    import org.gradle.tooling.events.task.TaskSuccessResult
    import java.io.File
    import java.io.FileOutputStream
    import java.io.IOException
    import java.nio.charset.StandardCharsets
    import java.nio.file.Files
    import java.nio.file.LinkOption
    import java.util.stream.Collectors
    import java.util.zip.ZipEntry
    import java.util.zip.ZipOutputStream
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jul 28 16:19:47 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt

                    }
                })
            }
    
            @Throws(IOException::class)
            private
            fun processEntry(zipEntry: ZipEntry, builder: Trie.Builder) {
                val name = zipEntry.name
                if (name.endsWith(".class")) {
                    processClassFile(zipEntry, builder)
                }
            }
    
            @Throws(IOException::class)
            private
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

    import org.gradle.configuration.DefaultImportsReader
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.intellij.lang.annotations.Language
    import java.io.File
    import java.io.IOException
    import java.lang.reflect.Method
    import java.lang.reflect.Type
    import kotlin.reflect.full.memberFunctions
    import kotlin.reflect.jvm.javaMethod
    
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jun 22 10:58:31 GMT 2022
    - 6.9K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/AnalyzeAndShade.kt

                        return FileVisitResult.CONTINUE
                    }
    
                    override fun visitFileFailed(file: Path?, exc: IOException?) =
                        FileVisitResult.TERMINATE
    
                    override fun postVisitDirectory(dir: Path?, exc: IOException?) =
                        FileVisitResult.CONTINUE
    
                    private
                    fun Path.isClassFilePath() =
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  5. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/PluginEntries.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.internal.sharedruntime.codegen
    
    import java.io.File
    import java.io.IOException
    import java.util.Properties
    import java.util.jar.JarEntry
    import java.util.jar.JarFile
    
    
    data class PluginEntry(val pluginId: String, val implementationClass: String)
    
    
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Sat Sep 30 16:17:27 GMT 2023
    - 1.8K bytes
    - Viewed (0)
Back to top