github.com/NVIDIA/aistore@v1.3.23-0.20240517131212-7df6609be51d/ext/dsort/shard/init.go (about)

     1  // Package shard provides Extract(shard), Create(shard), and associated methods
     2  // across all suppported archival formats (see cmn/archive/mime.go)
     3  /*
     4   * Copyright (c) 2018-2023, NVIDIA CORPORATION. All rights reserved.
     5   */
     6  package shard
     7  
     8  import (
     9  	"github.com/NVIDIA/aistore/cmn/archive"
    10  )
    11  
    12  // padding buffer (zero-filled)
    13  var (
    14  	padBuf [archive.TarBlockSize]byte
    15  )