- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,238 for format (0.04 sec)
-
scripts/format.sh
#!/usr/bin/env bash set -x ruff check fastapi tests docs_src scripts --fix
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 17 03:59:06 UTC 2024 - 119 bytes - Viewed (0) -
src/archive/tar/format.go
FormatGNU // Schily's tar format, which is incompatible with USTAR. // This does not cover STAR extensions to the PAX format; these fall under // the PAX format. formatSTAR formatMax ) func (f Format) has(f2 Format) bool { return f&f2 != 0 } func (f *Format) mayBe(f2 Format) { *f |= f2 } func (f *Format) mayOnlyBe(f2 Format) { *f &= f2 } func (f *Format) mustNotBe(f2 Format) { *f &^= f2 }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Oct 13 18:36:46 UTC 2023 - 11.3K bytes - Viewed (0) -
.clang-format
# Run manually to reformat a file: # clang-format -i --style=file <file> BasedOnStyle: Google
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Dec 07 04:00:43 UTC 2021 - 124 bytes - Viewed (0) -
cmd/format-meta.go
package cmd // Format related consts const ( // Format config file carries backend format specific details. formatConfigFile = "format.json" ) const ( // Version of the formatMetaV1 formatMetaVersionV1 = "1" ) // format.json currently has the format: // { // "version": "1", // "format": "XXXXX", // "XXXXX": { // // } // }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 1.7K bytes - Viewed (0) -
tensorflow/.clang-format
# Run manually to reformat a file: # clang-format -i --style=file <file> BasedOnStyle: Google
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Jan 12 22:28:35 UTC 2017 - 124 bytes - Viewed (0) -
cmd/format-erasure_test.go
t.Fatal(err) } } format := newFormatErasureV3(1, 8) format.Erasure.DistributionAlgo = formatErasureVersionV2DistributionAlgoV1 formats := make([]*formatErasureV3, 8) for j := 0; j < 8; j++ { newFormat := format.Clone() newFormat.Erasure.This = format.Erasure.Sets[0][j] formats[j] = newFormat } formats[1] = nil expThis := formats[2].Erasure.This formats[2].Erasure.This = ""
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Apr 15 08:25:46 UTC 2024 - 12.9K bytes - Viewed (0) -
cmd/format-erasure.go
osErrToFileErr(err))) } // format-V2 struct is exactly same as format-V1 except that version is "3" // which indicates the simplified multipart backend. formatV3 := formatErasureV3{} formatV3.Version = formatV2.Version formatV3.Format = formatV2.Format formatV3.Erasure = formatV2.Erasure formatV3.Erasure.Version = formatErasureVersionV3 return json.Marshal(formatV3) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 23.2K bytes - Viewed (0) -
common/config/.golangci-format.yml
Istio Automation <******@****.***> 1712286157 -0700
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Apr 05 03:02:37 UTC 2024 - 2K bytes - Viewed (0) -
cmd/xl-storage-format-utils_test.go
Harshavardhana <******@****.***> 1723130998 -0700
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 7.1K bytes - Viewed (0) -
cmd/xl-storage-format-v1_gen.go
case "Version": z.Version, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "Version") return } case "Format": z.Format, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "Format") return } case "Stat": err = z.Stat.DecodeMsg(dc) if err != nil { err = msgp.WrapError(err, "Stat") return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 41.2K bytes - Viewed (0)