- Sort Score
- Result 10 results
- Languages All
Results 1741 - 1750 of 1,879 for buildId (0.07 sec)
-
docs/ja/docs/index.md
</p> <p align="center"> <a href="https://travis-ci.com/fastapi/fastapi" target="_blank"> <img src="https://travis-ci.com/fastapi/fastapi.svg?branch=master" alt="Build Status"> </a> <a href="https://codecov.io/gh/fastapi/fastapi" target="_blank"> <img src="https://img.shields.io/codecov/c/github/fastapi/fastapi" alt="Coverage"> </a>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 21K bytes - Viewed (0) -
docs/em/docs/deployment/docker.md
COPY ./app /code/app ``` ### ๐ โ ๐ผ ๐ ๐ ๐ ๐ ๐ฅ, โก๏ธ ๐ ๐ฆ ๐ผ. * ๐ถ ๐ ๐ (๐โ ๐ `Dockerfile` , โ ๐ `app` ๐). * ๐ ๐ FastAPI ๐ผ: <div class="termy"> ```console $ docker build -t myimage . ---> 100% ``` </div> /// tip ๐ `.` ๐, โซ๏ธ ๐ `./`, โซ๏ธ ๐ฌ โ ๐ โ๏ธ ๐ ๐ฆ ๐ผ. ๐ ๐ผ, โซ๏ธ ๐ โฎ๏ธ ๐ (`.`). /// ### โถ๏ธ โ ๐ฆ * ๐ ๐ฆ โ๏ธ ๐ ๐ ๐ผ:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 12 21:47:53 UTC 2024 - 27.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.11.md
unnecessary redirection from ci/latest.txt to ci-cross/latest.txt. Users should know exactly where the builds are stored on Google Cloud storage buckets from now on. For example for 1.9 and 1.10, users can specify ci/latest-1.9 and ci/latest-1.10 as the CI build jobs what build images correctly updates those. The CI jobs for master update the ci-cross/latest location, so if you are looking for latest master builds, then the correct parameter to use would be ci-cross/latest. ([#63504](https://github.com/ku...
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 328.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.19.md
## Changelog since v1.19.2 ## Changes by Kind ### Feature - Kubernetes is now built using go1.15.2 - build: Update to k/repo-infra@v0.1.1 (supports go1.15.2) - build: Use go-runner:buster-v2.0.1 (built using go1.15.1) - bazel: Replace --features with Starlark build settings flag - hack/lib/util.sh: some bash cleanups - switched one spot to use kube::logging
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jan 05 05:42:32 UTC 2022 - 489.7K bytes - Viewed (0) -
docs/uk/docs/alternatives.md
/// ### <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> Starlette โ ัะต ะปะตะณะบะธะน ััะตะนะผะฒะพัะบ/ะฝะฐะฑัั ัะฝััััะผะตะฝััะฒ <abbr title="The new standard for build asynchronous Python web">ASGI</abbr>, ัะบะธะน ัะดะตะฐะปัะฝะพ ะฟัะดั ะพะดะธัั ะดะปั ััะฒะพัะตะฝะฝั ะฒะธัะพะบะพะฟัะพะดัะบัะธะฒะฝะธั asyncio ัะตัะฒัััะฒ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 38.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/CharMatcherTest.java
} public void testPrecomputedOptimizations() { // These are testing behavior that's never promised by the API. // Some matchers are so efficient that it is a waste of effort to // build a precomputed version. CharMatcher m1 = is('x'); assertSame(m1, m1.precomputed()); assertEquals(m1.toString(), m1.precomputed().toString()); CharMatcher m2 = anyOf("Az");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 21 18:32:41 UTC 2024 - 30.1K bytes - Viewed (0) -
README.md
MinIO is a High Performance Object Storage released under GNU Affero General Public License v3.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Oct 13 13:34:11 UTC 2024 - 18.2K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/MoreExecutors.java
executor.setThreadFactory( new ThreadFactoryBuilder() .setDaemon(true) .setThreadFactory(executor.getThreadFactory()) .build()); } /** * Creates an executor service that runs each task in the thread that invokes {@code * execute/submit}, as in {@code ThreadPoolExecutor.CallerRunsPolicy}. This applies both to
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 44.1K bytes - Viewed (0) -
tensorflow/c/eager/c_api_experimental.h
TF_Status* status); // Get a comma-separated list of op names executed in graph functions dispatched // to `ctx`. This feature is currently only enabled for TFRT debug builds, for // performance and simplicity reasons. TF_CAPI_EXPORT extern void TFE_GetExecutedOpNames(TFE_Context* ctx, TF_Buffer* buf,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Feb 21 22:37:46 UTC 2024 - 39.5K bytes - Viewed (0) -
src/bufio/bufio.go
func (b *Reader) ReadString(delim byte) (string, error) { full, frag, n, err := b.collectFragments(delim) // Allocate new buffer to hold the full pieces and the fragment. var buf strings.Builder buf.Grow(n) // Copy full pieces and fragment in. for _, fb := range full { buf.Write(fb) } buf.Write(frag) return buf.String(), err } // WriteTo implements io.WriterTo.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 12 14:39:08 UTC 2023 - 21.8K bytes - Viewed (0)