- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 2,435 for deflated (0.1 sec)
-
subprojects/core/src/main/java/org/gradle/internal/classpath/InPlaceClasspathBuilder.java
private void configureCompression(ZipArchiveEntry entry, CompressionMethod compressionMethod, byte[] contents) { if (shouldCompress(compressionMethod)) { entry.setMethod(ZipArchiveEntry.DEFLATED); } else { entry.setMethod(ZipArchiveEntry.STORED); // A stored ZipEntry requires setting size and CRC32 upfront. // See https://stackoverflow.com/q/1206970.
Registered: 2024-06-12 18:38 - Last Modified: 2024-02-09 14:05 - 6.9K bytes - Viewed (0) -
platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingResourceHasherTest.groovy
return !unsafe } @Override ZipEntry.ZipCompressionMethod getCompressionMethod() { return ZipEntry.ZipCompressionMethod.DEFLATED } } return new DefaultZipEntryContext(zipEntry, file.path, "foo.zip") } RegularFileSnapshotContext snapshotContext(File file, FileType fileType = FileType.RegularFile) {
Registered: 2024-06-12 18:38 - Last Modified: 2023-09-28 15:09 - 7.9K bytes - Viewed (0) -
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) -
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) -
platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasherTest.groovy
return !unsafe } @Override ZipEntry.ZipCompressionMethod getCompressionMethod() { return ZipEntry.ZipCompressionMethod.DEFLATED } } return new DefaultZipEntryContext(zipEntry, path, "foo.zip") } def fileSnapshot(String path, Map<String, Object> attributesMap = [:], Exception exception = null) {
Registered: 2024-06-12 18:38 - Last Modified: 2023-09-28 15:09 - 16.9K bytes - Viewed (0) -
platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasherTest.groovy
return !unsafe } @Override ZipEntry.ZipCompressionMethod getCompressionMethod() { return ZipEntry.ZipCompressionMethod.DEFLATED } } return new DefaultZipEntryContext(zipEntry, path, "foo.zip") } RegularFileSnapshotContext fileSnapshot(String path, Map<String, String> attributes, String comments = "") {
Registered: 2024-06-12 18:38 - Last Modified: 2023-12-11 13:37 - 15.6K bytes - Viewed (0) -
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) -
pkg/kube/kclient/delayed.go
if c := s.inf.Load(); c != nil { return (*c).HasSynced() } // If we haven't loaded the informer yet, we want to check if the delayed filter is synced. // This ensures that at startup, we only return HasSynced=true if we are sure the CRD is not ready. hs := s.delayed.HasSynced() return hs } func (s *delayedClient[T]) ShutdownHandlers() { if c := s.inf.Load(); c != nil { (*c).ShutdownHandlers() } else {
Registered: 2024-06-14 15:00 - Last Modified: 2023-05-31 02:32 - 3.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/ws/MessageDeflater.kt
private val deflatedBytes = Buffer() private val deflater = Deflater( Deflater.DEFAULT_COMPRESSION, // nowrap (omits zlib header): true, ) private val deflaterSink = DeflaterSink(deflatedBytes, deflater) /** Deflates [buffer] in place as described in RFC 7692 section 7.2.1. */ @Throws(IOException::class) fun deflate(buffer: Buffer) { require(deflatedBytes.size == 0L)
Registered: 2024-06-16 04:42 - Last Modified: 2024-01-08 01:13 - 2.1K bytes - Viewed (0) -
tensorflow/compiler/mlir/lite/tests/dilated-conv.mlir
// RUN: tf-opt %s -tfl-identify-dilated-conv | FileCheck %s func.func @testDilatedConv(%arg0: tensor<1x128x128x3xf32>, %arg1: tensor<5x5x3x8xf32>) -> tensor<1x120x120x8xf32> { %cst = arith.constant dense<[2, 2]> : tensor<2xi32> %cst_0 = arith.constant dense<4> : tensor<2x2xi32> %0 = "tf.SpaceToBatchND"(%arg0, %cst, %cst_0) : (tensor<1x128x128x3xf32>, tensor<2xi32>, tensor<2x2xi32>) -> tensor<4x68x68x3xf32>
Registered: 2024-06-16 05:45 - Last Modified: 2023-10-30 06:52 - 44.7K bytes - Viewed (0)