- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 815 for vort (0.03 sec)
-
ci/official/wheel.sh
# Copy the wheel that was just created tfrun bash -c "$TFCI_FIND_BIN ./bazel-bin/tensorflow/tools/pip_package -iname "${wheel_name}*.whl" -printf '%T+ %p\n' | sort | tail -n 1 | awk '{print \$2}' | xargs -I {} cp {} $TFCI_OUTPUT_DIR" done fi if [[ "$TFCI_ARTIFACT_STAGING_GCS_ENABLE" == 1 ]]; then # Note: -n disables overwriting previously created files.
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Mar 03 17:29:53 UTC 2025 - 3.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMap.java
* the same order. If you want a different order, consider using {@link ImmutableSortedMap} to * sort by keys, or call {@link #orderEntriesByValue(Comparator)}, which changes this builder to * sort entries by value. * * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 44.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java
*/ public String jobLogging; /** * Whether the scheduled job is available. */ public String available; /** * Sort order of the scheduled job. */ public String sortOrder; /** * The user who created the scheduled job. */ public String createdBy; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
CODE_OF_CONDUCT.md
standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Oct 17 06:18:13 UTC 2024 - 5K bytes - Viewed (0) -
cmd/peer-s3-client.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "context" "errors" "fmt" "slices" "sort" "strconv" "sync/atomic" "time" "github.com/minio/madmin-go/v3" "github.com/minio/minio/internal/grid" "github.com/minio/pkg/v3/sync/errgroup" ) var errPeerOffline = errors.New("peer is offline")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.6K bytes - Viewed (0) -
docs/de/docs/tutorial/body-nested-models.md
### `List` von `typing` importieren In Python 3.9 oder darรผber kรถnnen Sie einfach `list` verwenden, um diese Typannotationen zu deklarieren, wie wir unten sehen werden. ๐ก In Python-Versionen vor 3.9 (3.6 und darรผber), mรผssen Sie zuerst `List` von Pythons Standardmodul `typing` importieren. {* ../../docs_src/body_nested_models/tutorial002.py hl[1] *} ### Eine `list`e mit einem Typ-Parameter deklarieren
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.8K bytes - Viewed (0) -
docs/ko/docs/deployment/docker.md
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt COPY ./app /code/app CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] # If running behind a proxy like Nginx or Traefik add --proxy-headers # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80", "--proxy-headers"] ``` </details> ## ์ปจํ ์ด๋๋
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 42.7K bytes - Viewed (0) -
docs/ko/docs/deployment/server-workers.md
```Python import uvicorn.workers.UvicornWorker ``` * `--bind`: ๊ตฌ๋์ฝ์ด ๊ด์ฐฐํ IP์ ํฌํธ๋ฅผ ์๋ฏธํฉ๋๋ค. ์ฝ๋ก (`:`)์ ์ฌ์ฉํ์ฌ IP์ ํฌํธ๋ฅผ ๊ตฌ๋ถํฉ๋๋ค. * ๋ง์ฝ์ `--bind 0.0.0.0:80` (๊ตฌ๋์ฝ ์ต์ ) ๋์ ์ ๋น์ฝ์ ์ง์ ์คํํ๊ณ ์ถ๋ค๋ฉด `--host 0.0.0.0`๊ณผ `--port 80`์ ์ฌ์ฉํด์ผ ํฉ๋๋ค. ์ถ๋ ฅ์์ ๊ฐ ํ๋ก์ธ์ค์ ๋ํ **PID** (process ID)๋ฅผ ํ์ธํ ์ ์์ต๋๋ค. (๋จ์ํ ์ซ์์ ๋๋ค) ์ถ๋ ฅ ๋ด์ฉ: * ๊ตฌ๋์ฝ **ํ๋ก์ธ์ค ๋งค๋์ **๋ PID `19499`๋ก ์คํ๋ฉ๋๋ค. (์ง์ ์คํํ ๊ฒฝ์ฐ ์ซ์๊ฐ ๋ค๋ฅผ ์ ์์ต๋๋ค) * ๋ค์์ผ๋ก `Listening at: http://0.0.0.0:80`์ ์์ํฉ๋๋ค.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 10.2K bytes - Viewed (0) -
cmd/s3-zip-handlers.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "bytes" "context" "errors" "io" "mime" "net/http" "path/filepath" "sort" "strings" "github.com/minio/minio/internal/auth" "github.com/minio/minio/internal/crypto" xhttp "github.com/minio/minio/internal/http" xioutil "github.com/minio/minio/internal/ioutil"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.8K bytes - Viewed (0) -
LICENSE
risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Nov 29 17:31:56 UTC 2021 - 13.3K bytes - Viewed (0)