Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 120 for Unpack (0.08 sec)

  1. okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/HpackJsonUtil.kt

        fileSystem.read(file) {
          return readStory(this)
        }
      }
    
      /** Iterate through the hpack-test-case resources, only picking stories for the current draft.  */
      fun storiesForCurrentDraft(): Array<String> {
        val resource =
          HpackJsonUtil::class.java.getResource("/hpack-test-case")
            ?: return arrayOf()
    
        val testCaseDirectory = File(resource.toURI()).toOkioPath()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/tests/control_flow.mlir

        }
        scf.yield %reduce : !tfr.tensor
      }
      tfr.return %res : !tfr.tensor
    }
    
    // CHECK-LABEL: pack_one
    func.func @pack_one(%arg0: tensor<2x3xf32>) -> tensor<1x2x3xf32> {
      %0 = "tf.MyPack"(%arg0) {N=1:i32, axis=0:i32} : (tensor<2x3xf32>) -> tensor<1x2x3xf32>
      func.return %0 : tensor<1x2x3xf32>
    
    // CHECK-NEXT: %[[AXIS:.*]] = arith.constant 0 : i32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:58:25 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/http2/Huffman.kt

    import okio.ByteString
    
    /**
     * This class was originally composed from the following classes in
     * [Twitter Hpack][twitter_hpack].
     *
     *  * `com.twitter.hpack.HuffmanEncoder`
     *  * `com.twitter.hpack.HuffmanDecoder`
     *  * `com.twitter.hpack.HpackUtil`
     *
     * [twitter_hpack]: https://github.com/twitter/hpack
     */
    object Huffman {
      // Appendix C: Huffman Codes
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_list_std.txt

    [!compiler:gc] skip
    [short] skip
    
    # Outside of GOROOT, our vendored packages should be reported as part of the standard library.
    go list -f '{{if .Standard}}{{.ImportPath}}{{end}}' std cmd
    stdout ^vendor/golang\.org/x/net/http2/hpack
    stdout ^cmd/vendor/golang\.org/x/arch/x86/x86asm
    ! stdout ^golang\.org/x/
    
    # The dependencies of those packages should also be vendored.
    go list -deps vendor/golang.org/x/crypto/chacha20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/http2/hpack/tables.go

    // If both name and value match, i is the matched index and nameValueMatch
    // becomes true. If only name matches, i points to that index and
    // nameValueMatch becomes false.
    //
    // The returned index is a 1-based HPACK index. For dynamic tables, HPACK says
    // that index 1 should be the newest entry, but t.ents[0] is the oldest entry,
    // meaning t.ents is reversed for dynamic tables. Hence, when t is a dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/promote_resources_to_args_functions.mlir

        // CHECK-NOT: "tf.VarHandleOp"
        // CHECK-NOT: "tf.ReadVariableOp"
        // CHECK: %[[CONST:.*]] = "tf.Const"()
        // CHECK: %[[ADD:[0-9]*]] = "tf.AddV2"(%arg1, %[[CONST]])
        // CHECK: %[[PACK:[0-9]*]] = "tf.Pack"(%[[CONST]], %[[ADD]])
        // CHECK: return %[[PACK]]
        %0 = "tf.Const"() {value = dense<4.200000e+01> : tensor<f32>} : () -> tensor<f32>
        %1 = "tf.VarHandleOp"() {container = "", shared_name = "x"} : () -> tensor<!tf_type.resource<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_std.txt

    ! stdout vendor/golang.org
    ! stdout cmd/vendor
    
    # In GOPATH mode, packages vendored into GOROOT should be reported as standard.
    go list -f '{{if .Standard}}{{.ImportPath}}{{end}}' std cmd
    stdout golang.org/x/net/http2/hpack
    stdout cmd/vendor/golang\.org/x/arch/x86/x86asm
    
    # However, vendored packages should not match wildcard patterns beginning with cmd.
    go list cmd/...
    stdout cmd/compile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 702 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/BUILD

            "@snappy//:__subpackages__",
            "@sobol_data//:__subpackages__",
            "@stablehlo//:__subpackages__",
            "//:__subpackages__",
            "@upb//:__subpackages__",
            "@XNNPACK//:__subpackages__",
            "@zlib//:__subpackages__",
            "@local_tsl//tsl:__subpackages__",
            "@local_xla//xla:__subpackages__",
        ],
        deps = [
            ":tac_wrapper_lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/std_vendor.txt

    go list -f '{{.TestImports}}'
    stdout net/http # from .TestImports
    
    # 'go list' should report standard-vendored packages by path.
    go list -f '{{.Dir}}' vendor/golang.org/x/net/http2/hpack
    stdout $GOROOT[/\\]src[/\\]vendor
    
    # 'go list -test' should report vendored transitive dependencies of _test.go
    # imports in the Deps field, with a 'vendor' prefix on their import paths.
    go list -test -f '{{.Deps}}'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 975 bytes
    - Viewed (0)
  10. src/vendor/modules.txt

    golang.org/x/crypto/sha3
    # golang.org/x/net v0.25.1-0.20240603202750-6249541f2a6c
    ## explicit; go 1.18
    golang.org/x/net/dns/dnsmessage
    golang.org/x/net/http/httpguts
    golang.org/x/net/http/httpproxy
    golang.org/x/net/http2/hpack
    golang.org/x/net/idna
    golang.org/x/net/lif
    golang.org/x/net/nettest
    golang.org/x/net/route
    # golang.org/x/sys v0.21.0
    ## explicit; go 1.18
    golang.org/x/sys/cpu
    # golang.org/x/text v0.16.0
    ## explicit; go 1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 872 bytes
    - Viewed (0)
Back to top