- Sort Score
- Result 10 results
- Languages All
Results 611 - 620 of 1,433 for bread (0.15 sec)
-
.github/workflows/containers.yml
name: containers on: push: branches: - master pull_request: types: [opened, labeled, unlabeled, synchronize] permissions: contents: read env: GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" jobs: test_containers: permissions: checks: write # for actions/upload-artifact runs-on: ubuntu-latestRegistered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 07:15:58 UTC 2025 - 872 bytes - Viewed (0) -
buildscripts/cross-compile.sh
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jun 08 16:12:05 UTC 2025 - 972 bytes - Viewed (0) -
ci/official/containers/ml_build/builder.devtoolset/fixlinks.sh
# ============================================================================== # # Re-direct all links in $1 that point to /lib... to point to $1/lib... instead. BASE="$1" find "${BASE}" -type l | \ while read l ; do if [[ "$(readlink "$l")" == /lib* ]]; then ORIG="$(readlink "$l")"; rm "$l"; ln -s "${BASE}${ORIG}" "$l" fiRegistered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue Sep 24 20:45:58 UTC 2024 - 984 bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaBufferManagerTest.java
assertTrue(region.getSize() >= 1024, "Region should be at least requested size"); assertTrue(region.hasAccess(RdmaAccess.LOCAL_READ), "Should have local read access"); assertTrue(region.hasAccess(RdmaAccess.REMOTE_READ), "Should have remote read access"); // Verify provider was called verify(mockProvider, atLeastOnce()).registerMemory(any(ByteBuffer.class), any()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.1K bytes - Viewed (0) -
docs/en/docs/help-fastapi.md
* Read what I write (or follow me) on <a href="https://dev.to/tiangolo" class="external-link" target="_blank">**Dev.to**</a> or <a href="https://medium.com/@tiangolo" class="external-link" target="_blank">**Medium**</a>. * Read other ideas, articles, and read about tools I have created. * Follow me to read when I publish something new.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 14K bytes - Viewed (0) -
.github/workflows/create-release.yml
name: Create Release on: push: tags: - 'v*.*.*' permissions: contents: write pull-requests: read jobs: create_release: name: Create Release runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Generate Release Notes and Publish id: generate_release_notes uses: release-drafter/release-drafter@v6Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Oct 09 11:31:04 UTC 2024 - 663 bytes - Viewed (0) -
docs/en/docs/tutorial/query-param-models.md
``` ## Summary { #summary } You can use **Pydantic models** to declare **query parameters** in **FastAPI**. π /// tip Spoiler alert: you can also use Pydantic models to declare cookies and headers, but you will read about that later in the tutorial. π€«Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.2K bytes - Viewed (0) -
src/bytes/bytes.go
for len(s) > 0 { if !as.contains(s[0]) { break } s = s[1:] } if len(s) == 0 { // This is what we've historically done. return nil } return s } func trimLeftUnicode(s []byte, cutset string) []byte { for len(s) > 0 { r, n := utf8.DecodeRune(s) if !containsRune(cutset, r) { break } s = s[n:] } if len(s) == 0 {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 35.5K bytes - Viewed (0) -
docs/ko/docs/tutorial/request-files.md
* `write(data)`: `data`(`str` λλ `bytes`)λ₯Ό νμΌμ μμ±ν©λλ€. * `read(size)`: νμΌμ λ°μ΄νΈ λ° κΈμμ `size`(`int`)λ₯Ό μ½μ΅λλ€. * `seek(offset)`: νμΌ λ΄ `offset`(`int`) μμΉμ λ°μ΄νΈλ‘ μ΄λν©λλ€. * μ) `await myfile.seek(0)` λ₯Ό μ¬μ©νλ©΄ νμΌμ μμλΆλΆμΌλ‘ μ΄λν©λλ€. * `await myfile.read()` λ₯Ό μ¬μ©ν ν λ΄μ©μ λ€μ μ½μ λ μ μ©ν©λλ€. * `close()`: νμΌμ λ«μ΅λλ€. μκΈ° λͺ¨λ λ©μλλ€μ΄ `async` λ©μλμ΄κΈ° λλ¬Έμ βawaitβμ μ¬μ©νμ¬μΌ ν©λλ€.Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 8K bytes - Viewed (0) -
lib/time/README
For more information, see https://www.iana.org/time-zones ftp://ftp.iana.org/tz/code/tz-link.html https://datatracker.ietf.org/doc/html/rfc6557
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Sun Aug 15 02:18:46 UTC 2021 - 390 bytes - Viewed (0)