Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for Binary1 (0.11 sec)

  1. cmd/handler-utils.go

    			return nil, err
    		}
    	}
    
    	// Set content-type to default value if it is not set.
    	if _, ok := metadata[strings.ToLower(xhttp.ContentType)]; !ok {
    		metadata[strings.ToLower(xhttp.ContentType)] = "binary/octet-stream"
    	}
    
    	// https://github.com/google/security-research/security/advisories/GHSA-76wf-9vgp-pj7w
    	for k := range metadata {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. cmd/encryption-v1.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"bufio"
    	"bytes"
    	"context"
    	"crypto/hmac"
    	"crypto/rand"
    	"crypto/subtle"
    	"encoding/binary"
    	"encoding/hex"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"path"
    	"strconv"
    	"strings"
    
    	"github.com/minio/kms-go/kes"
    	"github.com/minio/minio/internal/crypto"
    	"github.com/minio/minio/internal/etag"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. pom.xml

                libraries that provide a widely-used project build tool, targeting mainly Java
                development. Apache Maven promotes the use of dependencies via a
                standardized coordinate system, binary plugins, and a standard build
                lifecycle.</charter>
              </asfExtOptions>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.apache.rat</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>> CreateTPUColocateSplitsPass();
    
    // Creates a pass that replicates the tf._TPUCompileMlir op on each host that
    // needs the compiled program. It helps avoid transferring the compiled binary
    // between hosts.
    std::unique_ptr<OperationPass<mlir::ModuleOp>>
    CreateTPUCompileOpReplicationPass();
    
    // Creates a pass that applies space to depth transform
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    		resourceVersion = w.resourceVersion
    	}
    	if resourceVersion < oldest-1 {
    		return nil, errors.NewResourceExpired(fmt.Sprintf("too old resource version: %d (%d)", resourceVersion, oldest-1))
    	}
    
    	// Binary search the smallest index at which resourceVersion is greater than the given one.
    	f := func(i int) bool {
    		return w.cache[(w.startIndex+i)%w.capacity].ResourceVersion > resourceVersion
    	}
    	first := sort.Search(size, f)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/helpdoc.go

    		Valid values are satconv, signext.
    
    Environment variables for use with code coverage:
    
    	GOCOVERDIR
    		Directory into which to write code coverage data files
    		generated by running a "go build -cover" binary.
    		Requires that GOEXPERIMENT=coverageredesign is enabled.
    
    Special-purpose environment variables:
    
    	GCCGOTOOLDIR
    		If set, where to find gccgo tools, such as cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top