- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 172 for 4094 (0.05 sec)
-
src/main/java/jcifs/dcerpc/msrpc/samr.java
public static final int ACB_PWNOEXP = 512; public static final int ACB_AUTOLOCK = 1024; public static final int ACB_ENC_TXT_PWD_ALLOWED = 2048; public static final int ACB_SMARTCARD_REQUIRED = 4096; public static final int ACB_TRUSTED_FOR_DELEGATION = 8192; public static final int ACB_NOT_DELEGATED = 16384; public static final int ACB_USE_DES_KEY_ONLY = 32768;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:40:13 UTC 2019 - 15.1K bytes - Viewed (0) -
internal/ioutil/ioutil.go
} return fi1.Size() == fi2.Size() } // DirectioAlignSize - DirectIO alignment needs to be 4K. Defined here as // directio.AlignSize is defined as 0 in MacOS causing divide by 0 error. const DirectioAlignSize = 4096 // CopyAligned - copies from reader to writer using the aligned input // buffer, it is expected that input buffer is page aligned to // 4K page boundaries. Without passing aligned buffer may cause
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 26 12:55:01 UTC 2024 - 10.9K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), const MAP_ALIGNMENT_SHIFT = 24 pkg syscall (freebsd-arm64), const MAP_ALIGNMENT_SHIFT ideal-int pkg syscall (freebsd-arm64), const MAP_ANON = 4096 pkg syscall (freebsd-arm64), const MAP_ANON ideal-int pkg syscall (freebsd-arm64), const MAP_ANONYMOUS = 4096 pkg syscall (freebsd-arm64), const MAP_ANONYMOUS ideal-int pkg syscall (freebsd-arm64), const MAP_COPY = 2 pkg syscall (freebsd-arm64), const MAP_COPY ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), const SO_REUSESHAREUID = 4133 pkg syscall (darwin-arm64), const SO_REUSESHAREUID ideal-int pkg syscall (darwin-arm64), const SO_SNDBUF = 4097 pkg syscall (darwin-arm64), const SO_SNDLOWAT = 4099 pkg syscall (darwin-arm64), const SO_SNDLOWAT ideal-int pkg syscall (darwin-arm64), const SO_SNDTIMEO = 4101 pkg syscall (darwin-arm64), const SO_SNDTIMEO ideal-int
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K bytes - Viewed (0) -
docs/em/docs/tutorial/handling-errors.md
๐ฐ ๐โโ โ ๐คญ `return`๐ ๐ฒ ๐ ๐ โญ ๐ ๐ ๐ & ๐โโ. ๐ ๐ผ, ๐โ ๐ฉโ๐ป ๐จ ๐ฌ ๐ ๐ ๐ซ ๐, ๐ค โ โฎ๏ธ ๐ ๐ `404`: ```Python hl_lines="11" {!../../docs_src/handling_errors/tutorial001.py!} ``` ### ๐ ๐จ ๐ฅ ๐ฉโ๐ป ๐จ `http://example.com/items/foo` ( `item_id` `"foo"`), ๐ ๐ฉโ๐ป ๐ ๐จ ๐บ๐ธ๐ ๐ ๐ 2๏ธโฃ0๏ธโฃ0๏ธโฃ, & ๐ป ๐จ:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.3K bytes - Viewed (0) -
cmd/update_test.go
}{ {httpServer1.URL, "", nil}, {httpServer2.URL, "fbe246edbd382902db9a4035df7dce8cb441357d minio.RELEASE.2016-10-07T01-16-39Z\n", nil}, {httpServer3.URL, "", fmt.Errorf("Error downloading URL %s. Response: 404 Not Found", httpServer3.URL)}, } for _, testCase := range testCases { u, err := url.Parse(testCase.releaseChecksumURL) if err != nil { t.Fatal(err) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 10.4K bytes - Viewed (0) -
docs/em/docs/tutorial/bigger-applications.md
```Python hl_lines="30-31" title="app/routers/items.py" {!../../docs_src/bigger_applications/app/routers/items.py!} ``` /// tip ๐ ๐ โก ๐ ๏ธ ๐ โ๏ธ ๐ ๐: `["items", "custom"]`. & โซ๏ธ ๐ โ๏ธ ๐ฏโโ๏ธ ๐จ ๐งพ, 1๏ธโฃ `404` & 1๏ธโฃ `403`. /// ## ๐ `FastAPI` ๐, โก๏ธ ๐ ๐น `app/main.py`. ๐ฅ ๐โ ๐ ๐ & โ๏ธ ๐ `FastAPI`. ๐ ๐ ๐ ๐ ๐ ๐ธ ๐ ๐ ๐ ๐ฏโโ๏ธ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 15.5K bytes - Viewed (0) -
lib/wasm/wasm_exec.js
this.exited = false; // whether the Go program has exited // Pass command line arguments and environment variables to WebAssembly by writing them to the linear memory. let offset = 4096; const strPtr = (str) => { const ptr = offset; const bytes = encoder.encode(str + "\0"); new Uint8Array(this.mem.buffer, offset, bytes.length).set(bytes); offset += bytes.length;
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Aug 30 19:15:21 UTC 2024 - 16.5K bytes - Viewed (0) -
src/bufio/scan.go
// The actual maximum token size may be smaller as the buffer // may need to include, for instance, a newline. MaxScanTokenSize = 64 * 1024 startBufSize = 4096 // Size of initial allocation for buffer. ) // NewScanner returns a new [Scanner] to read from r. // The split function defaults to [ScanLines]. func NewScanner(r io.Reader) *Scanner { return &Scanner{
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 23 09:06:30 UTC 2023 - 14.2K bytes - Viewed (0) -
docs/en/docs/management-tasks.md
* Make sure the new link is in the correct category (e.g. "Podcasts") and language (e.g. "Japanese"). * A new link should be at the top of its list. * The link URL should work (it should not return a 404). * The content of the link should be about FastAPI. * The new addition should have these fields: * `author`: The name of the author. * `link`: The URL with the content.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 16 21:56:33 UTC 2024 - 14.2K bytes - Viewed (0)