Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for JarEntry (0.13 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

    import org.objectweb.asm.Opcodes
    import org.objectweb.asm.tree.ClassNode
    import org.objectweb.asm.util.TraceClassVisitor
    import spock.lang.Issue
    import spock.lang.Specification
    
    import java.util.jar.JarEntry
    import java.util.jar.JarFile
    
    @UsesNativeServices
    @CleanupTestDirectory(fieldName = "tmpDir")
    class RuntimeShadedJarCreatorTest extends Specification {
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

    import java.net.URL;
    import java.security.CodeSource;
    import java.security.ProtectionDomain;
    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    import java.util.jar.JarEntry;
    import java.util.jar.JarFile;
    
    /**
     * A helper class that can remap classes loaded from the original JARs of the TransformedClassPath to the classes from the corresponding transformed JARs.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryCompilationIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.java
    
    import org.codehaus.groovy.control.CompilerConfiguration
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    import java.util.jar.JarEntry
    import java.util.jar.JarOutputStream
    
    class JavaLibraryCompilationIntegrationTest extends AbstractIntegrationSpec {
    
        private toggleCompileClasspathPackaging(boolean activate) {
            if (activate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/codegen/GradleApiExtensionsTest.kt

    import org.junit.Test
    import org.objectweb.asm.Type
    import org.slf4j.Logger
    import java.io.File
    import java.util.Properties
    import java.util.function.Consumer
    import java.util.jar.Attributes
    import java.util.jar.JarEntry
    import java.util.jar.JarOutputStream
    import java.util.jar.Manifest
    import kotlin.reflect.KClass
    
    
    @LeaksFileHandles("embedded Kotlin compiler environment keepalive")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

    package org.codelibs.core.io;
    
    import static org.codelibs.core.collection.EnumerationIterator.iterable;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.io.File;
    import java.util.jar.JarEntry;
    import java.util.jar.JarFile;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipInputStream;
    
    import org.codelibs.core.lang.ClassUtil;
    import org.codelibs.core.zip.ZipInputStreamUtil;
    
    /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/ClassPath.java

            }
          }
        }
    
        private void scanJarFile(JarFile file, ImmutableSet.Builder<ResourceInfo> builder) {
          Enumeration<JarEntry> entries = file.entries();
          while (entries.hasMoreElements()) {
            JarEntry entry = entries.nextElement();
            if (entry.isDirectory() || entry.getName().equals(JarFile.MANIFEST_NAME)) {
              continue;
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/ClassPath.java

            }
          }
        }
    
        private void scanJarFile(JarFile file, ImmutableSet.Builder<ResourceInfo> builder) {
          Enumeration<JarEntry> entries = file.entries();
          while (entries.hasMoreElements()) {
            JarEntry entry = entries.nextElement();
            if (entry.isDirectory() || entry.getName().equals(JarFile.MANIFEST_NAME)) {
              continue;
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.io.File;
    import java.io.FilterInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.jar.JarEntry;
    import java.util.jar.JarFile;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipInputStream;
    
    import org.codelibs.core.jar.JarFileUtil;
    import org.codelibs.core.zip.ZipInputStreamUtil;
    
    /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

    import java.util.TreeSet;
    import java.util.concurrent.CopyOnWriteArrayList;
    import java.util.concurrent.CopyOnWriteArraySet;
    import java.util.function.Consumer;
    import java.util.jar.Attributes;
    import java.util.jar.JarEntry;
    import java.util.jar.JarOutputStream;
    import java.util.jar.Manifest;
    import java.util.regex.Pattern;
    import java.util.stream.Collectors;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

            TarArchiveEntry tarEntry;
            OriginMetadata originMetadata = null;
            Map<String, FileSystemLocationSnapshot> snapshots = new HashMap<>();
    
            tarEntry = tarInput.getNextEntry();
            AtomicLong entries = new AtomicLong();
            while (tarEntry != null) {
                entries.incrementAndGet();
                String path = safeEntryName(tarEntry);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top