- Sort Score
- Num 10 results
- Language All
Results 781 - 790 of 840 for Zstandard (0.07 seconds)
-
src/cmd/asm/internal/asm/testdata/riscv64validation.s
CSUBW X10, X5 // ERROR "expected integer prime register in rd" CNOP X10 // ERROR "expected no register in rs2" CEBREAK X10 // ERROR "expected no register in rs2" // // "V" Standard Extension for Vector Operations, Version 1.0 // VSETVLI $32, E16, M1, TU, MU, X12 // ERROR "must be in range [0, 31] (5 bits)" VSETVLI $-1, E32, M2, TA, MA, X12 // ERROR "must be in range [0, 31] (5 bits)"
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Nov 13 12:17:37 GMT 2025 - 42.1K bytes - Click Count (0) -
docs/zh-hant/docs/deployment/docker.md
你的應用通常會把「套件需求」放在某個檔案中。 這主要取決於你用什麼工具來安裝那些需求。 最常見的方式是準備一個 `requirements.txt` 檔案,逐行列出套件名稱與版本。 當然,你會用與在 [關於 FastAPI 版本](versions.md) 中讀到的相同概念,來設定版本範圍。 例如,你的 `requirements.txt` 可能像這樣: ``` fastapi[standard]>=0.113.0,<0.114.0 pydantic>=2.7.0,<3.0.0 ``` 接著你通常會用 `pip` 來安裝這些套件相依,例如: <div class="termy"> ```console $ pip install -r requirements.txt ---> 100%
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 24.9K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFile.java
} if (th.hasCapability(SmbConstants.CAP_NT_SMBS)) { /* * Trans2 Query Path Information Request / Response * Optimized to request both basic and standard info in fewer round trips when possible */ Trans2QueryPathInformationResponse response = new Trans2QueryPathInformationResponse(th.getConfig(), infoLevel);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.19.md
- Remove already deprecated options `resyncperiod` and `upstream` in the Kubernetes plugin. - Includes Prometheus metrics name changes (to bring them in line with standard Prometheus metrics naming convention). They will be backward incompatible with existing reporting formulas that use the old metrics' names. - The federation plugin (allows for v1 Kubernetes federation) has been removed.
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Wed Jan 05 05:42:32 GMT 2022 - 489.7K bytes - Click Count (0) -
docs/ko/docs/deployment/docker.md
가장 일반적인 방법은 패키지 이름과 버전을 한 줄에 하나씩 적어 둔 `requirements.txt` 파일을 사용하는 것입니다. 버전 범위를 설정할 때는 [FastAPI 버전들에 대하여](versions.md)에서 읽은 것과 같은 아이디어를 사용하면 됩니다. 예를 들어 `requirements.txt`는 다음과 같을 수 있습니다: ``` fastapi[standard]>=0.113.0,<0.114.0 pydantic>=2.7.0,<3.0.0 ``` 그리고 보통 `pip`로 패키지 의존성을 설치합니다. 예를 들면: <div class="termy"> ```console $ pip install -r requirements.txt ---> 100%
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 32.6K bytes - Click Count (0) -
guava/src/com/google/common/base/Preconditions.java
* * <h3>Other types of preconditions</h3> * * <p>Not every type of precondition failure is supported by these methods. Continue to throw * standard JDK exceptions such as {@link java.util.NoSuchElementException} or {@link * UnsupportedOperationException} in the situations they are intended for. * * <h3>Non-preconditions</h3> *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 53.5K bytes - Click Count (0) -
android/guava/src/com/google/common/net/InetAddresses.java
// contain non-decimal characters. int length = end - start; if (length <= 0 || length > 3) { throw new NumberFormatException(); } // Disallow leading zeroes, because no clear standard exists on // whether these should be interpreted as decimal or octal. if (length > 1 && ipString.charAt(start) == '0') { throw new NumberFormatException(); } int octet = 0;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 47.7K bytes - Click Count (0) -
guava/src/com/google/common/base/CharMatcher.java
*/ public static CharMatcher none() { return None.INSTANCE; } /** * Determines whether a character is whitespace according to the latest Unicode standard, as * illustrated <a * href="http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5Cp%7Bwhitespace%7D">here</a>. * This is not the same definition used by other Java APIs. (See a <a
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 54.4K bytes - Click Count (0) -
cmd/object-handlers.go
// AWS S3 silently drops checksums on range requests. cs, _ := objInfo.decryptChecksums(opts.PartNumber, r.Header) hash.AddChecksumHeader(w, cs) } // Set standard object headers. if err = setObjectHeaders(ctx, w, objInfo, rs, opts); err != nil { writeErrorResponseHeadersOnly(w, toAPIError(ctx, err)) return } // Set Parts Count Header
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 120.6K bytes - Click Count (0) -
.bazelrc
common:windows --copt=-DWIN32_LEAN_AND_MEAN common:windows --host_copt=-DWIN32_LEAN_AND_MEAN common:windows --copt=-DNOGDI common:windows --host_copt=-DNOGDI # MSVC (Windows): Standards-conformant preprocessor mode # See https://docs.microsoft.com/en-us/cpp/preprocessor/preprocessor-experimental-overview common:windows --copt=/Zc:preprocessor common:windows --host_copt=/Zc:preprocessor
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Mar 28 04:33:01 GMT 2026 - 58.9K bytes - Click Count (0)