Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 356 for pack20 (0.16 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		"Length: " + printUint16(h.Length) + "}"
    }
    
    // pack appends the wire format of the ResourceHeader to oldMsg.
    //
    // lenOff is the offset in msg where the Length field was packed.
    func (h *ResourceHeader) pack(oldMsg []byte, compression map[string]uint16, compressionOff int) (msg []byte, lenOff int, err error) {
    	msg = oldMsg
    	if msg, err = h.Name.pack(msg, compression, compressionOff); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. internal/config/help.go

    // Region help is documented in default config
    var (
    	SiteHelp = HelpKVS{
    		HelpKV{
    			Key:         NameKey,
    			Type:        "string",
    			Description: `name for the site e.g. "cal-rack0"`,
    			Optional:    true,
    		},
    		HelpKV{
    			Key:         RegionKey,
    			Type:        "string",
    			Description: `name of the location of the server e.g. "us-west-1"`,
    			Optional:    true,
    		},
    		HelpKV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 23 14:45:27 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyCommonsPacker.java

    import java.io.OutputStream;
    import java.util.List;
    
    public class SnappyCommonsPacker implements Packer {
        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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockCommunicator.java

            for (SocketAddress address : addresses) {
                DatagramPacket packet = new DatagramPacket(bytes, bytes.length);
                packet.setSocketAddress(address);
                LOGGER.debug("Confirming lock release to Gradle process at port {} for lock with id {}.", packet.getPort(), lockId);
                try {
                    socket.send(packet);
                } catch (IOException e) {
                    if (!stopped) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingBufferBenchmark.java

        @Param({"tar.snappy.small", "tar.snappy.large"})
        String packer;
    
        @Param({"direct", "buffered.small", "buffered.large"})
        String accessor;
    
        @Override
        protected String getPackerName() {
            return packer;
        }
    
        @Override
        protected String getAccessorName() {
            return accessor;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/low_bit_packing.mlir

      // CHECK:     name: "min_runtime_version",
      // CHECK:     buffer: 2
      // CHECK:   } ],
      // CHECK:   signature_defs: [  ]
      // CHECK: }
    
      // Test that i4 buffers are densely packed, i.e. [-8, 3, -2, -5] should be
      // be packed low-bits-first as [0x38, 0xBE] or [56, 190]. Tensor type should
      // be INT4.
      %0 = "tfl.pseudo_const" () {value = dense<[-8, 3, -2, -5]> : tensor<4xi4>} : () -> tensor<4xi4> loc("Const")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 12 20:13:51 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/caching/internal/services/DefaultBuildCacheControllerFactory.java

            TemporaryFileProvider temporaryFileProvider,
            BuildCacheEntryPacker packer
        ) {
            super(
                startParameter,
                buildOperationRunner,
                originMetadataFactory,
                stringInterner
            );
            this.temporaryFileProvider = temporaryFileProvider;
            this.packer = packer;
            this.buildOperationProgressEmitter = buildOperationProgressEmitter;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: %[[PACK2:.*]] = "tf.Pack"
    
      // CHECK: return %[[SHAPE0]], %[[SHAPE1]], %[[PACK0]], %[[PACK1]], %[[PACK2]]
      func.return %5, %9, %15, %17, %20 : tensor<2xi32>, tensor<3xi32>, tensor<3xi32>, tensor<3xi32>, tensor<*xi32>
    }
    
    // CHECK-LABEL: testTileMultiplesAllOnes
    func.func @testTileMultiplesAllOnes(%arg0: tensor<2x3xf32>) -> tensor<2x3xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    mkdir .git/refs/remotes/origin
    echo 'ref: refs/remotes/origin/master'
    cp stdout .git/refs/remotes/origin/HEAD
    unquote '# pack-refs with: peeled fully-peeled \n7f800d2ac276dd7042ea0e8d7438527d236fd098 refs/remotes/origin/master\n'
    cp stdout .git/packed-refs
    git branch --set-upstream-to=origin/master
    
    git add pkg/pkg.go
    at 2017-09-22T11:41:28-04:00
    git commit -a -m 'add pkg'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/cpu_hardware.cc

    TAC_REGISTER_CPU_OP(AddOp, CreateArithmeticOp);
    TAC_REGISTER_CPU_OP(MulOp, CreateArithmeticOp);
    TAC_REGISTER_CPU_OP(ConcatenationOp, CreateConcatOp);
    TAC_REGISTER_CPU_OP(ReshapeOp, CreateConcatOp);
    TAC_REGISTER_CPU_OP(PackOp, CreateConcatOp);
    
    #undef TAC_REGISTER_CPU_OP
    }  // namespace
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top