Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 264 for Fpack (0.04 sec)

  1. src/syscall/ztypes_linux_386.go

    	Nodename   [65]int8
    	Release    [65]int8
    	Version    [65]int8
    	Machine    [65]int8
    	Domainname [65]int8
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	Tinode uint32
    	Fname  [6]int8
    	Fpack  [6]int8
    }
    
    type EpollEvent struct {
    	Events uint32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    	_AT_FDCWD            = -0x64
    	_AT_REMOVEDIR        = 0x200
    	_AT_SYMLINK_NOFOLLOW = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_amd64.go

    	Release    [65]int8
    	Version    [65]int8
    	Machine    [65]int8
    	Domainname [65]int8
    }
    
    type Ustat_t struct {
    	Tfree     int32
    	Pad_cgo_0 [4]byte
    	Tinode    uint64
    	Fname     [6]int8
    	Fpack     [6]int8
    	Pad_cgo_1 [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    	_AT_FDCWD            = -0x64
    	_AT_REMOVEDIR        = 0x200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package hpack implements HPACK, a compression format for
    // efficiently representing HTTP header fields in the context of HTTP/2.
    //
    // See http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-09
    package hpack
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  4. src/cmd/pack/pack.go

    	log.SetPrefix("pack: ")
    	telemetry.Start()
    	// need "pack op archive" at least.
    	if len(os.Args) < 3 {
    		log.Print("not enough arguments")
    		fmt.Fprintln(os.Stderr)
    		usage()
    	}
    	setOp(os.Args[1])
    	telemetry.Inc("pack/invocations")
    	telemetry.Inc("pack/op:" + string(op))
    	var ar *Archive
    	switch op {
    	case 'p':
    		ar = openArchive(os.Args[2], os.O_RDONLY, os.Args[3:])
    		ar.scan(ar.printContents)
    	case 'r':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

    import okio.buffer
    
    /**
     * Read and write HPACK v10.
     *
     * http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-12
     *
     * This implementation uses an array for the dynamic table and a list for indexed entries. Dynamic
     * entries are added to the array, starting in the last position moving forward. When the array
     * fills, it is doubled.
     */
    @Suppress("NAME_SHADOWING")
    object Hpack {
      private const val PREFIX_4_BITS = 0x0f
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. src/cmd/distpack/pack.go

    Michael Matloob <******@****.***> 1715626742 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gopath_std_vendor.txt

    ! stdout $GOROOT[/\\]src[/\\]vendor
    
    -- issue16333/issue16333.go --
    package vendoring17
    
    import _ "golang.org/x/net/http2/hpack"
    -- issue16333/issue16333_test.go --
    package vendoring17
    
    import _ "testing"
    import _ "golang.org/x/net/http2/hpack"
    -- importnethttp/http.go --
    package importnethttp
    
    import _ "net/http"
    -- $GOPATH/src/vendor/golang.org/x/net/http2/hpack/hpack.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. okhttp-hpacktests/README.md

    OkHttp HPACK tests
    ==================
    
    These tests use the [hpack-test-case][1] project to validate OkHttp's HPACK
    implementation.  The HPACK test cases are in a separate git submodule, so to
    initialize them, you must run:
    
        git submodule init
        git submodule update
    
    TODO
    ----
    
     * Add maven goal to avoid manual call to git submodule init.
     * Make hpack-test-case update itself from git, and run new tests.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 15 16:59:53 UTC 2014
    - 578 bytes
    - Viewed (0)
  9. .gitmodules

    [submodule "okhttp-hpacktests/src/test/resources/hpack-test-case"]
    	path = okhttp-hpacktests/src/test/resources/hpack-test-case
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 10 09:33:37 UTC 2022
    - 182 bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPackerTest.groovy

            DIRECTORY | "dir"
            DIRECTORY | "none"
        }
    
        def "can pack single tree file with #type name"() {
            def sourceOutputFile = temporaryFolder.file("source.txt")
            sourceOutputFile << "output"
            def targetOutputFile = temporaryFolder.file("target.txt")
            def output = new ByteArrayOutputStream()
            pack output, prop(FILE, sourceOutputFile)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top