Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ZipException (0.16 sec)

  1. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ManifestUtil.java

    import java.net.URI;
    import java.net.URISyntaxException;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    import java.util.jar.JarFile;
    import java.util.jar.Manifest;
    import java.util.zip.ZipException;
    
    public class ManifestUtil {
        private static final String[] EMPTY = new String[0];
    
        public static String createManifestClasspath(File jarFile, Collection<File> classpath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Install.java

    import java.util.Enumeration;
    import java.util.Formatter;
    import java.util.List;
    import java.util.Locale;
    import java.util.concurrent.Callable;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipException;
    import java.util.zip.ZipFile;
    
    import static java.lang.String.format;
    import static java.util.Collections.emptyList;
    import static org.gradle.internal.file.PathTraversalChecker.safePathName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            def failedUnpackOp = operations.only(BuildCacheArchiveUnpackBuildOperationType)
            failedUnpackOp.details.cacheKey != null
            failedUnpackOp.result == null
            failedUnpackOp.failure =~ /java.util.zip.ZipException: Not in GZIP format/
        }
    
        def "records ops for miss then store"() {
            def localCache = new TestBuildCache(file("local-cache"))
            settingsFile << localCache.localCacheConfiguration()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top