- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 34 for hdrs (0.16 sec)
-
tensorflow/c/BUILD
], ) cc_library( name = "tf_attrtype", hdrs = ["tf_attrtype.h"], visibility = ["//visibility:public"], ) cc_library( name = "c_api_macros_hdrs", hdrs = [ "c_api_macros.h", ], visibility = ["//visibility:public"], ) cc_library( name = "c_api_macros", hdrs = [ "c_api_macros.h", "c_api_macros_internal.h", ],
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Nov 02 06:47:06 UTC 2024 - 30.4K bytes - Viewed (0) -
src/archive/tar/reader_test.go
if cnt > 0 && hdr.Typeflag != TypeReg { t.Errorf("ReadFull(...): got %d bytes, want 0 bytes", cnt) } } // File is crafted with 16 entries. The later 8 are identical to the first // 8 except that the size is set. if len(hdrs) != 16 { t.Fatalf("len(hdrs): got %d, want %d", len(hdrs), 16) } for i := 0; i < 8; i++ { hdr1, hdr2 := hdrs[i+0], hdrs[i+8] hdr1.Size, hdr2.Size = 0, 0
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 03 15:48:09 UTC 2024 - 46.9K bytes - Viewed (0) -
tensorflow/c/eager/BUILD
cc_library( name = "abstract_op_attrs", hdrs = ["abstract_op_attrs.h"], visibility = [ "//tensorflow:internal", ], deps = [ "//tensorflow/core:lib", "//tensorflow/core:protos_all_cc", "@com_google_absl//absl/container:inlined_vector", ], ) cc_library( name = "abstract_operation", hdrs = ["abstract_operation.h"], visibility = [
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Apr 11 23:52:39 UTC 2024 - 33.3K bytes - Viewed (0) -
tensorflow/c/eager/parallel_device/BUILD
srcs = [ ":device_sources", ":lib_sources", ], visibility = ["//tensorflow/python:__pkg__"], ) cc_library( name = "parallel_device", srcs = [":device_sources"], hdrs = [":device_headers"], visibility = ["//visibility:private"], deps = [ ":parallel_device_lib", "//tensorflow/c:c_api", "//tensorflow/c:tf_status_helper",
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 21 04:14:14 UTC 2024 - 5.4K bytes - Viewed (0) -
cmd/object-api-options.go
metadata = make(map[string]string) } wantCRC, err := hash.GetContentChecksum(hdr) if err != nil { return opts, fmt.Errorf("invalid/unknown checksum sent: %v", err) } etag := strings.TrimSpace(hdr.Get(xhttp.MinIOSourceETag)) if crypto.S3KMS.IsRequested(hdr) { keyID, context, err := crypto.S3KMS.ParseHTTP(hdr) if err != nil { return ObjectOptions{}, err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 21 21:13:59 UTC 2024 - 14.4K bytes - Viewed (0) -
cmd/object-handlers.go
k = strings.TrimPrefix(k, "minio.metadata.") hdrs.Set(k, v) } } m, err := extractMetadata(ctx, textproto.MIMEHeader(hdrs)) if err != nil { return err } for k, v := range m { metadata[k] = v } } else { versionID = r.Form.Get(xhttp.VersionID) hdrs = r.Header }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 05 05:16:15 UTC 2024 - 117.4K bytes - Viewed (0) -
src/archive/tar/writer_test.go
t.Fatal(err) } hdr, err := FileInfoHeader(fileinfo, "") if err != nil { t.Fatalf("os.Stat:1 %v", err) } // some sample data chineseFilename := "文件名" chineseGroupname := "組" chineseUsername := "用戶名" hdr.Name = chineseFilename hdr.Gname = chineseGroupname hdr.Uname = chineseUsername contents := strings.Repeat(" ", int(hdr.Size)) var buf bytes.Buffer
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:32:33 UTC 2024 - 39.4K bytes - Viewed (0) -
architecture/standards/0001-use-architectural-decision-records.md
The main logic with ADRs is to describe (architectural) decisions made: * To provide best practices and solutions we (as the *build tool* team) want to promote. * To avoid asking the same thing multiple times during code review. * To explain *rejected solutions*, for now, and future development, in case they are proposed again. ADRs can be written by any team.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Mar 02 21:54:40 UTC 2024 - 2.8K bytes - Viewed (0) -
architecture/README.md
This directory contains documentation that describes Gradle's architecture and how the various pieces fit together and work. ## Architecture decision records (ADRs) The Gradle team uses ADRs to record architectural decisions that the team has made. See [Architecture decisions records](standards) for the list of ADRs.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu May 02 06:42:46 UTC 2024 - 2.4K bytes - Viewed (0) -
internal/bucket/bandwidth/reader.go
hdr := r.opts.HeaderSize // remaining header bytes var tokens int // number of tokens to request if hdr > 0 { // available tokens go towards header first if hdr < b { // all of header can be accommodated r.opts.HeaderSize = 0 need = int(math.Min(float64(b-hdr), float64(need))) // use remaining tokens towards payload tokens = need + hdr
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 14:57:31 UTC 2024 - 3.2K bytes - Viewed (0)