Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 356 for pack20 (0.18 sec)

  1. platforms/core-execution/build-cache-packaging/src/test/groovy/org/gradle/caching/internal/packaging/impl/AbstractTarBuildCacheEntryPackerSpec.groovy

                }
                return [(treeDef.name): result]
            }
            packer.pack(entity(treeDefs), snapshots, output, writeOrigin)
        }
    
        def unpack(InputStream input, OriginReader readOrigin = this.readOrigin, TreeDefinition... treeDefs) {
            packer.unpack(entity(treeDefs), input, readOrigin)
        }
    
        def entity(TreeDefinition... treeDefs) {
            Stub(CacheableEntity) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/runtime/netpoll_windows.go

    		// GetQueuedCompletionStatusEx doesn't use a high resolution timer internally,
    		// so we use a separate higher resolution timer associated with a wait completion
    		// packet to wake up the poller. Note that the completion packet can be delivered
    		// to another thread, and the Go scheduler expects netpoll to only block up to delay,
    		// so we still need to use a timeout with GetQueuedCompletionStatusEx.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/pack/pack_test.go

    	}
    
    	goBin := testenv.GoToolPath(t)
    	run(goBin, "tool", "compile", "-pack", "-p=p", "-o", "p.a", "p.go")
    	run(packPath(t), "c", "packed.a", "p.a")
    	fi, err := os.Stat(filepath.Join(dir, "p.a"))
    	if err != nil {
    		t.Fatalf("stat p.a failed: %v", err)
    	}
    	fi2, err := os.Stat(filepath.Join(dir, "packed.a"))
    	if err != nil {
    		t.Fatalf("stat packed.a failed: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/pack/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Pack is a simple version of the traditional Unix ar tool.
    It implements only the operations needed by Go.
    
    Usage:
    
    	go tool pack op file.a [name...]
    
    Pack applies the operation to the archive, using the names as arguments to the operation.
    
    The operation op is given by one of these letters:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.h

    namespace mlir {
    namespace TFL {
    namespace tac {
    
    // TODO(renjieliu): add more patterns.
    
    // This basically:
    // Pack => (Concat -> Reshape)
    struct LowerPackIntoConcatReshape : public OpRewritePattern<TFL::PackOp> {
      using OpRewritePattern<TFL::PackOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TFL::PackOp pack_op,
                                    PatternRewriter& rewriter) const override;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 03 16:37:16 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/JTarPacker.java

    import java.io.IOException;
    import java.util.List;
    
    public class JTarPacker implements Packer {
    
        private final byte[] buffer;
    
        public JTarPacker(int bufferSizeInKBytes) {
            this.buffer = new byte[bufferSizeInKBytes * 1024];
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            !localMissLoadOp.result.hit
    
            packOp.details.cacheKey == cacheKey
    
            packOp.result.archiveSize == archiveSize
            packOp.result.archiveEntryCount == 5
    
            storeOp.details.cacheKey == cacheKey
            storeOp.details.archiveSize == archiveSize
            storeOp.result.stored
    
            when:
            succeeds("clean", "t")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/CommonsTarPacker.java

    import java.io.IOException;
    import java.util.List;
    
    public class CommonsTarPacker implements Packer {
    
        private final byte[] buffer;
    
        public CommonsTarPacker(int bufferSizeInKBytes) {
            this.buffer = new byte[bufferSizeInKBytes * 1024];
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/nnapi_hardware.cc

    // Op registeration
    TAC_REGISTER_NNAPI_OP(SquaredDifferenceOp, CreateBasicOpNoCost);
    TAC_REGISTER_NNAPI_OP(ConcatenationOp, CreateConcatOp);
    TAC_REGISTER_NNAPI_OP(ReshapeOp, CreateConcatOp);
    TAC_REGISTER_NNAPI_OP(PackOp, CreateConcatOp);
    
    #undef TAC_REGISTER_NNAPI_OP
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top