- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 654 for dirent (0.09 sec)
-
licenses/github.com/go-jose/go-jose/v4/LICENSE
other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Apr 08 17:05:56 UTC 2024 - 11.1K bytes - Viewed (0) -
licenses/github.com/go-openapi/jsonpointer/LICENSE
other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Oct 26 02:47:39 UTC 2019 - 11.1K bytes - Viewed (0) -
LICENSE
other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Mon Jan 11 04:26:17 UTC 2021 - 11.1K bytes - Viewed (0) -
docs/de/docs/advanced/templates.md
Sie können jede gewünschte Template-Engine mit **FastAPI** verwenden. Eine häufige Wahl ist Jinja2, dasselbe, was auch von Flask und anderen Tools verwendet wird. Es gibt Werkzeuge zur einfachen Konfiguration, die Sie direkt in Ihrer **FastAPI**-Anwendung verwenden können (bereitgestellt von Starlette). ## Abhängigkeiten installieren Installieren Sie `jinja2`: <div class="termy"> ```console $ pip install jinja2
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.6K bytes - Viewed (0) -
docs/de/docs/advanced/websockets.md
``` /// note | "Technische Details" Sie können auch `from starlette.websockets import WebSocket` verwenden. **FastAPI** stellt den gleichen `WebSocket` direkt zur Verfügung, als Annehmlichkeit für Sie, den Entwickler. Er kommt aber direkt von Starlette. /// ## Nachrichten erwarten und Nachrichten senden In Ihrer WebSocket-Route können Sie Nachrichten `await`en und Nachrichten senden.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/Lists.java
* syntax</a>. */ @GwtCompatible(serializable = true) @SuppressWarnings("NonApiType") // acts as a direct substitute for a constructor call public static <E extends @Nullable Object> ArrayList<E> newArrayList() { return new ArrayList<>(); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 43.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/HMACT64.java
} protected byte[] engineDigest() { byte[] digest = md5.digest(); md5.update(opad); return md5.digest(digest); } protected int engineDigest(byte[] buf, int offset, int len) { byte[] digest = md5.digest(); md5.update(opad); md5.update(digest); try { return md5.digest(buf, offset, len); } catch (Exception ex) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/util/HMACT64.java
@Override protected byte[] engineDigest () { byte[] digest = this.md5.digest(); this.md5.update(this.opad); return this.md5.digest(digest); } @Override protected int engineDigest ( byte[] buf, int offset, int len ) { byte[] digest = this.md5.digest(); this.md5.update(this.opad); this.md5.update(digest); try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
ci/official/containers/linux_arm64/builder.devtoolset/fixlinks_aarch64.sh
# See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== # # Re-direct all links in $1 that are relative to be canonical BASE="$1" find "${BASE}" -type l | \ while read l ; do if [[ "$(readlink "$l")" == \.\./* ]]; then CANONICAL="$(readlink "$l")"; rm "$l";
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Sep 18 14:52:45 UTC 2023 - 969 bytes - Viewed (0) -
docs/de/docs/tutorial/testing.md
Dadurch können Sie `pytest` ohne Komplikationen direkt nutzen. /// /// note | "Technische Details" Sie könnten auch `from starlette.testclient import TestClient` verwenden. **FastAPI** stellt denselben `starlette.testclient` auch via `fastapi.testclient` bereit, als Annehmlichkeit für Sie, den Entwickler. Es kommt aber tatsächlich direkt von Starlette. /// /// tip | "Tipp"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.9K bytes - Viewed (0)