Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 102 for uncompressed (0.18 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2Test.kt

              assertThat(associatedStreamId).isEqualTo(-1)
              assertThat(headerBlock).isEqualTo(sentHeaders)
            }
          },
        )
      }
    
      /** Headers are compressed, then framed.  */
      @Test fun headersFrameThenContinuation() {
        val sentHeaders = largeHeaders()
        val headerBlock = literalHeaders(sentHeaders)
    
        // Write the first headers frame.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. cmd/object_api_suite_test.go

    			enableEncryption(t)
    		}, MakeBucketOptions{
    			VersioningEnabled: true,
    		})
    	})
    
    	t.Run("compressed+encrypted", func(t *testing.T) {
    		fn(t, func() {
    			resetCompressEncryption()
    			enableCompression(t, true, []string{"*"}, []string{"*"})
    		}, MakeBucketOptions{})
    	})
    	t.Run("compressed+encryptedVerioned", func(t *testing.T) {
    		fn(t, func() {
    			resetCompressEncryption()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. src/internal/profile/profile.go

    	nameX       int64
    	systemNameX int64
    	filenameX   int64
    }
    
    // Parse parses a profile and checks for its validity. The input must be an
    // encoded pprof protobuf, which may optionally be gzip-compressed.
    func Parse(r io.Reader) (*Profile, error) {
    	orig, err := io.ReadAll(r)
    	if err != nil {
    		return nil, err
    	}
    
    	if len(orig) >= 2 && orig[0] == 0x1f && orig[1] == 0x8b {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. pkg/controller/job/indexed_job_utils.go

    }
    
    type interval struct {
    	First int
    	Last  int
    }
    
    type orderedIntervals []interval
    
    // calculateSucceededIndexes returns the old and new list of succeeded indexes
    // in compressed format (intervals).
    // The old list is solely based off .status.completedIndexes, but returns an
    // empty list if this Job is not tracked with finalizers. The new list includes
    // the indexes that succeeded since the last sync.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarFileTree.java

                } catch (Exception e) {
                    String message = "Unable to expand " + getDisplayName() + "\n"
                            + "  The tar might be corrupted or it is compressed in an unexpected way.\n"
                            + "  By default the tar tree tries to guess the compression based on the file extension.\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

            archive.md5Hash == firstFileHash
    
            where:
            taskName << ['tar', 'zip']
            taskType = taskName.capitalize()
            fileExtension = taskName
        }
    
        def "#compression compressed tar files are reproducible"() {
            given:
            createTestFiles()
            buildFile << """
                task tar(type: Tar) {
                    reproducibleFileOrder = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_tls13.go

    		hello.earlyData = false
    		c.quicRejectedEarlyData()
    	}
    
    	if isInnerHello {
    		// Any extensions which have changed in hello, but are mirrored in the
    		// outer hello and compressed, need to be copied to the outer hello, so
    		// they can be properly decompressed by the server. For now, the only
    		// extension which may have changed is keyShares.
    		hs.hello.keyShares = hello.keyShares
    		hs.echContext.innerHello = hello
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

       * servers it should be the agreed-upon extensions immediately.
       */
      private var extensions: WebSocketExtensions?,
      /** If compression is negotiated, outbound messages of this size and larger will be compressed. */
      private var minimumDeflateSize: Long,
      private val webSocketCloseTimeout: Long,
    ) : WebSocket, WebSocketReader.FrameCallback {
      private val key: String
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"proto":     {report.Proto, nil, awayFromTTY("pb.gz"), false, "Outputs the profile in compressed protobuf format", ""},
    	"topproto":  {report.TopProto, nil, awayFromTTY("pb.gz"), false, "Outputs top entries in compressed protobuf format", ""},
    
    	// Generate report in DOT format and postprocess with dot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

        val server = serverListener.assertOpen()
    
        // Server to client message big enough to be compressed.
        val message1 = repeat('a', RealWebSocket.DEFAULT_MINIMUM_DEFLATE_SIZE.toInt())
        server.send(message1)
        clientListener.assertTextMessage(message1)
    
        // Client to server message big enough to be compressed.
        val message2 = repeat('b', RealWebSocket.DEFAULT_MINIMUM_DEFLATE_SIZE.toInt())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top