- Sort Score
- Num 10 results
- Language All
Results 181 - 190 of 840 for Zstandard (0.09 seconds)
-
docs/es/docs/tutorial/extra-data-types.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 2.8K bytes - Click Count (0) -
build-tools-internal/src/main/resources/checkstyle.xml
<!-- Checks that the order of modifiers conforms to the suggestions in the Java Language specification, sections 8.1.1, 8.3.1 and 8.4.3. It is not that the standard is perfect, but having a consistent order makes the code more readable and no other order is compellingly better than the standard. The correct order is: public protected private abstract static finalCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Sep 13 12:48:46 GMT 2021 - 6K bytes - Click Count (0) -
.ci/README.md
simmilar to [JJB](https://elasticsearch-ci.elastic.co/view/Elasticsearch%20master/). Macros are not allowed, and each job must be defined in its own file. Merging of the default configuration is customized so unlike in standard JJB, it recurses into YML objects. Further (internal) documentation on the setup [is available](https://github.com/elastic/infra/blob/master/flavortown/jjbb/README.md)
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Nov 13 15:12:00 GMT 2019 - 679 bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java
return new ArrayList<>(Sets.newTreeSet(insertionOrder)); } }) .named("ForwardingNavigableSet[SafeTreeSet] with standard implementations") .withFeatures( CollectionSize.ANY, CollectionFeature.KNOWN_ORDER, CollectionFeature.GENERAL_PURPOSE) .createTestSuite());
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 18:46:00 GMT 2025 - 7K bytes - Click Count (0) -
misc/go_android_exec/README
Android ======= For details on developing Go for Android, see the documentation in the mobile subrepository: https://github.com/golang/mobile To run the standard library tests, enable Cgo and use an appropriate C compiler from the Android NDK. For example, CGO_ENABLED=1 \ GOOS=android \ GOARCH=arm64 \ CC_FOR_TARGET=$NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang \ ./all.bash
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon May 01 14:45:55 GMT 2023 - 732 bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingNavigableSet.java
* * <p>Each of the {@code standard} methods uses the set's comparator (or the natural ordering of the * elements, if there is no comparator) to test element equality. As a result, if the comparator is * not consistent with equals, some of the standard implementations may violate the {@code Set} * contract. * * <p>The {@code standard} methods and the collection views they return are not guaranteed to beCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 8.8K bytes - Click Count (0) -
docs/ko/docs/deployment/versions.md
예를 들어, 앱에서 `0.112.0` 버전을 사용하고 있다고 가정해 보겠습니다. `requirements.txt` 파일을 사용한다면 다음과 같이 버전을 지정할 수 있습니다: ```txt fastapi[standard]==0.112.0 ``` 이는 정확히 `0.112.0` 버전을 사용한다는 의미입니다. 또는 다음과 같이 고정할 수도 있습니다: ```txt fastapi[standard]>=0.112.0,<0.113.0 ``` 이는 `0.112.0` 이상이면서 `0.113.0` 미만의 버전을 사용한다는 의미입니다. 예를 들어 `0.112.2` 버전도 허용됩니다.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 4.2K bytes - Click Count (0) -
src/main/assemblies/files/fess
# -p pidfile write PID to <pidfile> # -h # --help print command line options # -v print fess version, then exit # -D prop set JAVA system property # -X prop set non-standard JAVA system property # --prop=val # --prop val set fess property (i.e. -Des.<prop>=<val>) CDPATH="" SCRIPT="$0" # SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 15 06:32:15 GMT 2023 - 5.4K bytes - Click Count (0) -
docs/zh-hant/docs/deployment/versions.md
首先,你應該將你使用的 **FastAPI** 版本「鎖定(pin)」到你知道對你的應用可正常運作的最新特定版本。 例如,假設你的應用使用 `0.112.0` 版本。 如果你使用 `requirements.txt` 檔案,可以這樣指定版本: ```txt fastapi[standard]==0.112.0 ``` 這表示你會使用完全相同的 `0.112.0` 版本。 或你也可以這樣鎖定: ```txt fastapi[standard]>=0.112.0,<0.113.0 ``` 這表示會使用 `0.112.0`(含)以上但小於 `0.113.0` 的版本,例如 `0.112.2` 也會被接受。 如果你使用其他安裝管理工具,例如 `uv`、Poetry、Pipenv 等,它們也都有可用來指定套件特定版本的方法。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 3.1K bytes - Click Count (0) -
fastapi/datastructures.py
A file uploaded in a request. Define it as a *path operation function* (or dependency) parameter. If you are using a regular `def` function, you can use the `upload_file.file` attribute to access the raw standard Python file (blocking, not async), useful and needed for non-async code. Read more about it in the [FastAPI docs for Request Files](https://fastapi.tiangolo.com/tutorial/request-files/). ## ExampleCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 5.2K bytes - Click Count (0)