Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 975 for deflated (0.11 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/AbstractZipEntry.java

            switch (entry.getMethod()) {
                case java.util.zip.ZipEntry.STORED:
                    return ZipCompressionMethod.STORED;
                case java.util.zip.ZipEntry.DEFLATED:
                    return ZipCompressionMethod.DEFLATED;
                default:
                    return ZipCompressionMethod.OTHER;
            }
        }
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-05-28 12:11
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathWalker.java

                switch (entry.getCompressionMethod()) {
                    case STORED:
                        return CompressionMethod.STORED;
                    case DEFLATED:
                        return CompressionMethod.DEFLATED;
                    default:
                        // Zip entries can be in many formats but JARs are unlikely to have them as JVM doesn't
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-03-12 02:21
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/ZipEntry.java

    public interface ZipEntry {
        /**
         * The compression method used for an entry
         */
        enum ZipCompressionMethod {
            /**
             * The entry is compressed with DEFLATE algorithm.
             */
            DEFLATED,
    
            /**
             * The entry is stored uncompressed.
             */
            STORED,
            /**
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-05-28 12:11
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            then:
            cachedClasspath.asFiles == [cachedFile]
            def zip = new ZipTestFixture(cachedFile)
            zip.hasCompression("a.class", ZipEntry.DEFLATED)
            zip.hasCompression("res.txt", ZipEntry.STORED)
        }
    
        def "uses non-file URL from origin"() {
            given:
            def file = testDir.file("thing.jar")
            jar(file)
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-06-11 09:51
    - 20.8K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_4x.md

        If you want this update with the old behavior use [this interceptor][legacy_interceptor].
    
     *  Fix: Don't crash decompressing web sockets messages. We had a bug where we assumed deflated
        bytes in would always yield deflated bytes out and this isn't always the case!
    
     *  Fix: Reliably update and invalidate the disk cache on windows. As originally designed our
    Registered: 2024-06-16 04:42
    - Last Modified: 2024-04-17 13:25
    - 25.2K bytes
    - Viewed (0)
  6. src/compress/flate/deflate.go

    	// certain bytes in the input stream occur more frequently than others.
    	//
    	// Note that HuffmanOnly produces a compressed output that is
    	// RFC 1951 compliant. That is, any valid DEFLATE decompressor will
    	// continue to be able to decompress this output.
    	HuffmanOnly = -2
    )
    
    const (
    	logWindowSize = 15
    	windowSize    = 1 << logWindowSize
    	windowMask    = windowSize - 1
    
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-04-26 13:32
    - 20.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

                [bundles]
                ${MYDEPS_BUNDLE} = ["org-example-foo", "com-example-baz"]
            """)
            file(BAR_TXT).text = "bar"
        }
    
        def "dependency declared using #expression shows up in related configuration"() {
            given:
            file(dsl.fileNameFor("build")).text = """
            ${setupDependencies()}
    
            dependencies {
                testingCollector(${expression})
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-03-13 16:23
    - 15.9K bytes
    - Viewed (0)
  8. pkg/controller/resourceclaim/controller_test.go

    		},
    		{
    			name: "no-such-pod",
    			key:  podKey(testPodWithResource),
    		},
    		{
    			name: "pod-deleted",
    			pods: func() []*v1.Pod {
    				deleted := metav1.Now()
    				pods := []*v1.Pod{testPodWithResource.DeepCopy()}
    				pods[0].DeletionTimestamp = &deleted
    				return pods
    			}(),
    			key: podKey(testPodWithResource),
    		},
    		{
    			name: "no-volumes",
    			pods: []*v1.Pod{testPod},
    Registered: 2024-06-15 01:39
    - Last Modified: 2024-05-06 08:56
    - 28.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    +
    If not, directories for release versions are deleted after 30 days of inactivity, and snapshot versions after 7 days.
    - Shared caches in `caches/` (e.g., `jars-*`) are checked for whether they are still in use.
    +
    If no Gradle version still uses them, they are deleted.
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-04-24 23:00
    - 13K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

         * be declared.
         *
         * @since 3.4
         */
        public static final String API_CONFIGURATION_NAME = "api";
    
        /**
         * The name of the implementation configuration, where dependencies that are only used internally by
         * a component should be declared.
         *
         * @since 3.4
         */
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-03-13 19:52
    - 7K bytes
    - Viewed (0)
Back to top