- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,034 for deflated (0.14 sec)
-
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) -
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) -
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) -
pkg/kubelet/pleg/evented.go
func (e *EventedPLEG) Healthy() (bool, error) { // GenericPLEG is declared unhealthy when relisting time is more // than the relistThreshold. In case EventedPLEG is turned on, // relistingPeriod and relistingThreshold are adjusted to higher // values. So the health check of Generic PLEG should check // the adjusted values of relistingPeriod and relistingThreshold. // EventedPLEG is declared unhealthy only if eventChannel is out of capacity.
Registered: 2024-06-15 01:39 - Last Modified: 2024-03-07 10:46 - 16.4K bytes - Viewed (0) -
pkg/util/iptables/testing/parse_test.go
-A KUBE-FORWARD -m comment --comment "kubernetes forwarding conntrack rule" -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT COMMIT `), error: `cannot add rules to deleted chain`, }, { name: "deleted non-empty chain", input: dedent.Dedent(` *filter :KUBE-SERVICES - [0:0] :KUBE-EXTERNAL-SERVICES - [0:0] :KUBE-FORWARD - [0:0]
Registered: 2024-06-15 01:39 - Last Modified: 2023-12-19 01:20 - 26K bytes - Viewed (0) -
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)