- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 644 for Fstatfs (0.07 sec)
-
api/go1.20.txt
pkg syscall (freebsd-riscv64), const CSTART = 17 #53466 pkg syscall (freebsd-riscv64), const CSTART ideal-int #53466 pkg syscall (freebsd-riscv64), const CSTATUS = 20 #53466 pkg syscall (freebsd-riscv64), const CSTATUS ideal-int #53466 pkg syscall (freebsd-riscv64), const CSTOP = 19 #53466 pkg syscall (freebsd-riscv64), const CSTOP ideal-int #53466 pkg syscall (freebsd-riscv64), const CSTOPB = 1024 #53466
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 21:23:32 UTC 2023 - 602.6K bytes - Viewed (0) -
internal/disk/stat_linux.go
iostats = IOStats{ ReadIOs: stats[0], ReadMerges: stats[1], ReadSectors: stats[2], ReadTicks: stats[3], WriteIOs: stats[4], WriteMerges: stats[5], WriteSectors: stats[6], WriteTicks: stats[7], CurrentIOs: stats[8], TotalTicks: stats[9], ReqTicks: stats[10], } // as per the doc, only 11 fields are guaranteed
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Feb 26 19:34:50 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
@SuppressWarnings("unchecked") final Map<String, StateData> states = (Map<String, StateData>) session.getAttribute(STATES); if (states != null) { final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); states.entrySet().stream().filter(e -> (now - e.getValue().getExpiration()) / 1000L > getStateTtl()).map(Map.Entry::getKey)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 28.2K bytes - Viewed (0) -
cmd/bucket-replication-utils_test.go
expStatus: replication.Pending, }, { // 3. replication status for one target - incorrect format name: "replication status for one target", rs: ReplicationState{ReplicationStatusInternal: "arn1=PENDING"}, expStatus: replication.StatusType(""), }, { // 4. replication status for 3 targets, one of them failed name: "replication status for 3 targets - one failed", rs: ReplicationState{
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 08 20:27:40 UTC 2023 - 9.3K bytes - Viewed (0) -
docs/em/docs/advanced/response-change-status-code.md
# ๐จ - ๐ ๐ ๐ ๐ ๐ฒ โ โญ ๐ ๐ ๐ช โ ๐ข [๐จ ๐ ๐](../tutorial/response-status-code.md){.internal-link target=_blank}. โ๏ธ ๐ผ ๐ ๐ช ๐จ ๐ ๐ ๐ ๐ ๐ข. ## โ๏ธ ๐ผ ๐ผ, ๐ ๐ ๐ ๐ ๐จ ๐บ๐ธ๐ ๐ ๐ "๐" `200` ๐ข. โ๏ธ ๐ฅ ๐ฝ ๐ซ ๐, ๐ ๐ โ โซ๏ธ, & ๐จ ๐บ๐ธ๐ ๐ ๐ "โ" `201`. โ๏ธ ๐ ๐ ๐ช โฝ & ๐ ๐ฝ ๐ ๐จ โฎ๏ธ `response_model`. ๐ ๐ผ, ๐ ๐ช โ๏ธ `Response` ๐ข. ## โ๏ธ `Response` ๐ข
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.2K bytes - Viewed (0) -
internal/disk/stat_linux_32bit.go
} return fsTypeString } // GetInfo returns total and free bytes available in a directory, e.g. `/`. func GetInfo(path string, _ bool) (info Info, err error) { s := syscall.Statfs_t{} err = syscall.Statfs(path, &s) if err != nil { return Info{}, err } reservedBlocks := s.Bfree - s.Bavail info = Info{ Total: uint64(s.Frsize) * (s.Blocks - reservedBlocks), Free: uint64(s.Frsize) * s.Bavail,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Feb 26 19:34:50 UTC 2024 - 2.6K bytes - Viewed (0) -
cmd/object-api-interface.go
func (o *ObjectOptions) PutReplicationState() (r ReplicationState) { rstatus, ok := o.UserDefined[ReservedMetadataPrefixLower+ReplicationStatus] if !ok { return } r.ReplicationStatusInternal = rstatus r.Targets = replicationStatusesMap(rstatus) return } // SetEvalMetadataFn sets the metadata evaluation function
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 22 21:57:20 UTC 2024 - 17.3K bytes - Viewed (0) -
docs/em/docs/advanced/additional-status-codes.md
/// /// note | "๐ก โน" ๐ ๐ช โ๏ธ `from starlette.responses import JSONResponse`. **FastAPI** ๐ ๐ `starlette.responses` `fastapi.responses` ๐ช ๐, ๐ฉโ๐ป. โ๏ธ ๐ ๐ช ๐จ ๐ ๐ โช๏ธโก๏ธ ๐. ๐ โฎ๏ธ `status`. /// ## ๐ & ๐ ๏ธ ๐ฉบ ๐ฅ ๐ ๐จ ๐ ๐ ๐ & ๐จ ๐, ๐ซ ๐ ๐ซ ๐ ๐ ๐ (๐ ๏ธ ๐ฉบ), โฉ๏ธ FastAPI ๐ซ โ๏ธ ๐ ๐ญ โช โซ๏ธโ ๐ ๐ถ ๐จ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 1.7K bytes - Viewed (0) -
docs/de/docs/advanced/additional-status-codes.md
**FastAPI** bietet dieselben `starlette.responses` auch via `fastapi.responses` an, als Annehmlichkeit fรผr Sie, den Entwickler. Die meisten verfรผgbaren Responses kommen aber direkt von Starlette. Das Gleiche gilt fรผr `status`. /// ## OpenAPI- und API-Dokumentation
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.9K bytes - Viewed (0) -
docs/pt/docs/advanced/additional-status-codes.md
# Cรณdigos de status adicionais Por padrรฃo, o **FastAPI** retornarรก as respostas utilizando o `JSONResponse`, adicionando o conteรบdo do retorno da sua *operaรงรฃo de caminho* dentro do `JSONResponse`. Ele usarรก o cรณdigo de status padrรฃo ou o que vocรช definir na sua *operaรงรฃo de caminho*. ## Cรณdigos de status adicionais
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.8K bytes - Viewed (0)