Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for Snappy (0.19 sec)

  1. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingTypeBenchmark.java

    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Param;
    
    public class TaskOutputPackagingTypeBenchmark extends AbstractTaskOutputPackagingBenchmark {
        @Param({"tar.snappy", "tar.snappy.commons", "tar.snappy.dain"})
        String packer;
    
        @Param({"direct", "buffered"})
        String accessor;
    
        @Override
        protected String getPackerName() {
            return packer;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractTaskOutputPackagingBenchmark.java

            .put("tar.snappy", new SnappyPacker(new CommonsTarPacker(4)))
            .put("tar.snappy.commons", new SnappyCommonsPacker(new CommonsTarPacker(4)))
            .put("tar.snappy.dain", new SnappyDainPacker(new CommonsTarPacker(4)))
            .put("tar.snappy.small", new SnappyPacker(new CommonsTarPacker(2)))
            .put("tar.snappy.large", new SnappyPacker(new CommonsTarPacker(64)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyPacker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import io.airlift.compress.snappy.SnappyFramedInputStream;
    import io.airlift.compress.snappy.SnappyFramedOutputStream;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    public class SnappyPacker implements Packer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyDainPacker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.iq80.snappy.SnappyFramedInputStream;
    import org.iq80.snappy.SnappyFramedOutputStream;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    public class SnappyDainPacker implements Packer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingBufferBenchmark.java

     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.openjdk.jmh.annotations.Param;
    
    public class TaskOutputPackagingBufferBenchmark extends AbstractTaskOutputPackagingBenchmark {
        @Param({"tar.snappy.small", "tar.snappy.large"})
        String packer;
    
        @Param({"direct", "buffered.small", "buffered.large"})
        String accessor;
    
        @Override
        protected String getPackerName() {
            return packer;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyCommonsPacker.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import org.apache.commons.compress.compressors.snappy.FramedSnappyCompressorInputStream;
    import org.apache.commons.compress.compressors.snappy.FramedSnappyCompressorOutputStream;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/compress/flate/deflatefast.go

    // license that can be found in the LICENSE file.
    
    package flate
    
    import "math"
    
    // This encoding algorithm, which prioritizes speed over output size, is
    // based on Snappy's LZ77-style encoder: github.com/golang/snappy
    
    const (
    	tableBits  = 14             // Bits used in the table.
    	tableSize  = 1 << tableBits // Size of the table.
    	tableMask  = tableSize - 1  // Mask for table indices. Redundant, but can eliminate bounds checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 19 18:48:17 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/build.gradle.kts

        jmhImplementation(libs.aircompressor)
        jmhImplementation(libs.commonsCompress)
        jmhImplementation(libs.commonsIo)
        jmhImplementation(libs.jtar)
        jmhImplementation(libs.snappy)
    
        testImplementation(testFixtures(project(":base-services")))
        testImplementation(testFixtures(project(":build-operations")))
        testImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. docs/select/README.md

    - Parquet API supports columnar compression for  using GZIP, Snappy, LZ4. Whole object compression is not supported for Parquet objects.
    - Server-side encryption - The Select API supports querying objects that are protected with server-side encryption.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  10. licenses/github.com/klauspost/compress/internal/snapref/LICENSE

    Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 19:13:15 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top