Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 226 for Fpack (0.04 sec)

  1. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitHttpRepository.java

            server.expect(server.post(backingRepo.getName() + "/git-upload-pack", new ErroringAction<HttpExchange>() {
                @Override
                protected void doExecute(HttpExchange httpExchange) throws Exception {
                    httpExchange.getResponseHeaders().add("content-type", "application/x-git-upload-pack-result");
                    httpExchange.sendResponseHeaders(200, 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ArchiveTaskPermissionsIntegrationTest.groovy

            def archName = "test.${taskName.toLowerCase()}"
            and:
            buildFile << """
                task pack(type: $taskName) {
                    archiveFileName = "$archName"
                    destinationDirectory = projectDir
                    from 'parent'
                }
                """
            when:
            run "pack"
            file(archName).usingNativeTools()."$unpackMethod"(file("build"))
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 06:18:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

    import org.junit.jupiter.api.Test
    
    class HpackTest {
      private val bytesIn = Buffer()
      private var hpackReader: Hpack.Reader? = null
      private val bytesOut = Buffer()
      private var hpackWriter: Hpack.Writer? = null
    
      @BeforeEach
      fun reset() {
        hpackReader = newReader(bytesIn)
        hpackWriter = Hpack.Writer(4096, false, bytesOut)
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/promote_resources_to_args.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: Mon Oct 30 06:52:55 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CacheTaskArchiveErrorIntegrationTest.groovy

            """
    
            then:
            fails "customTask"
    
            failureHasCause(~/Failed to store cache entry $CACHE_KEY_PATTERN for task ':customTask': Could not pack tree 'output': Expected '${escapeString(file('build/output'))}' to be a file/)
            errorOutput =~ /Could not pack tree 'output'/
            def cacheKey = cacheOperations.getCacheKeyForTask(":customTask")
            !localCache.hasCacheEntry(cacheKey)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyCommonsPacker.java

        private final Packer delegate;
    
        public SnappyCommonsPacker(Packer delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
            delegate.pack(inputs, new DelegatingDataTarget(output) {
                @Override
                public OutputStream openOutput() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/install_cross_gobin.txt

    env GOBIN=$WORK/bin
    ! go install mycmd
    ! exists $GOBIN/linux_$GOARCH
    
    # The install directory for a cross-compiled standard command should include GOARCH.
    go list -f '{{.Target}}'  cmd/pack
    stdout ${GOROOT}[/\\]pkg[/\\]tool[/\\]${GOOS}_${GOARCH}[/\\]pack$
    
    -- mycmd/x.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 667 bytes
    - Viewed (0)
Back to top