- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 172 for compressed (0.13 sec)
-
docs/changelogs/changelog_2x.md
#### Implementation changes * Support Android `TrafficStats` socket tagging. * Drop authentication headers on redirect. * Added support for compressed data frames. * Process push promise callbacks in order. * Update to http/2 draft 12. * Update to HPACK draft 07. * Add ALPN support. Maven will use ALPN on OpenJDK 8.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
src/archive/zip/reader_test.go
// log.Fatal(err) // } // if err := w.Close(); err != nil { // log.Fatal(err) // } // return buf.Bytes() // } // // The 4 GB of zeros compresses to 4 MB, which compresses to 20 kB, // which compresses to 1252 bytes (in the hex dump below). // // It's here in hex for the same reason as rZipBytes above: to avoid // problems with on-disk virus scanners or other zip processors.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 25 00:25:45 UTC 2024 - 55.6K bytes - Viewed (0) -
cmd/object-multipart-handlers.go
// Read compression metadata preserved in the init multipart for the decision. _, isCompressed := mi.UserDefined[ReservedMetadataPrefix+"compression"] // Compress only if the compression is enabled during initial multipart. var idxCb func() []byte if isCompressed { wantEncryption := crypto.Requested(r.Header) || isEncrypted s2c, cb := newS2CompressReader(reader, actualPartSize, wantEncryption)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Aug 31 18:25:48 UTC 2024 - 39.2K bytes - Viewed (0) -
cmd/server-main.go
Value: 10 * humanize.MiByte, EnvVar: "MINIO_LOG_SIZE", Hidden: true, }, cli.BoolFlag{ Name: "log-compress", Usage: "specify if we want the rotated logs to be gzip compressed or not", EnvVar: "MINIO_LOG_COMPRESS", Hidden: true, }, cli.StringFlag{ Name: "log-prefix", Usage: "specify the log prefix name for the server log",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 21:50:11 UTC 2024 - 35.2K bytes - Viewed (1) -
guava/src/com/google/common/net/MediaType.java
*/ public static final MediaType KML = createConstant(APPLICATION_TYPE, "vnd.google-earth.kml+xml"); /** * <a href="http://www.opengeospatial.org/standards/kml/">OGC KML (Keyhole Markup Language)</a>, * compressed using the ZIP format into KMZ archives. */ public static final MediaType KMZ = createConstant(APPLICATION_TYPE, "vnd.google-earth.kmz"); /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Sep 26 19:15:09 UTC 2024 - 47.5K bytes - Viewed (0) -
src/main/resources/fess_config.properties
application/x-ibooks+zip=ibooks\n\ text/plain=txt\n\ application/rtf=rtf\n\ application/vnd.ms-htmlhelp=chm\n\ application/zip=zip\n\ application/x-7z-comressed=7z\n\ application/x-bzip=bz\n\ application/x-bzip2=bz2\n\ application/x-tar=tar\n\ application/x-rar-compressed=rar\n\ video/3gp=3gp\n\ video/3g2=3g2\n\ video/x-msvideo=avi\n\ video/x-flv=flv\n\ video/mpeg=mpeg\n\ video/mp4=mp4\n\ video/ogv=ogv\n\
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
internal/config/compress/compress.go
cfg := Config{} if err = config.CheckValidKeys(config.CompressionSubSys, kvs, DefaultKVS); err != nil { return cfg, err } compress := env.Get(EnvCompressState, kvs.Get(config.Enable)) if compress == "" { compress = env.Get(EnvCompress, "") } cfg.Enabled, err = config.ParseBool(compress) if err != nil { // Parsing failures happen due to empty KVS, ignore it. if kvs.Empty() { return cfg, nil }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5K bytes - Viewed (0) -
cmd/test-utils_test.go
// clean up the temporary test backend. removeRoots(append(erasureDisks, fsDir)) } // ExecExtendedObjectLayerTest will execute the tests with combinations of encrypted & compressed. // This can be used to test functionality when reading and writing data. func ExecExtendedObjectLayerAPITest(t *testing.T, objAPITest objAPITestType, endpoints []string) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 77K bytes - Viewed (0) -
src/archive/zip/register.go
func RegisterCompressor(method uint16, comp Compressor) { if _, dup := compressors.LoadOrStore(method, comp); dup { panic("compressor already registered") } } func compressor(method uint16) Compressor { ci, ok := compressors.Load(method) if !ok { return nil } return ci.(Compressor) } func decompressor(method uint16) Decompressor {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* application/rtf=rtf<br> * application/vnd.ms-htmlhelp=chm<br> * application/zip=zip<br> * application/x-7z-comressed=7z<br> * application/x-bzip=bz<br> * application/x-bzip2=bz2<br> * application/x-tar=tar<br> * application/x-rar-compressed=rar<br> * video/3gp=3gp<br> * video/3g2=3g2<br> * video/x-msvideo=avi<br> * video/x-flv=flv<br>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1)