- Sort Score
- Num 10 results
- Language All
Results 1571 - 1580 of 1,653 for FIRST (0.34 seconds)
-
RELEASE.md
* Added `tf.keras.optimizers.Lion` optimizer. * Added `tf.keras.layers.SpectralNormalization` layer wrapper to perform spectral normalization on the weights of a target layer.
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Mar 30 18:31:38 GMT 2026 - 746.5K bytes - Click Count (3) -
CHANGELOG/CHANGELOG-1.17.md
- Fixes a problem with 63-second or 1-second connection delays with some VXLAN-based network plugins which was first widely noticed in 1.16 (though some users saw it earlier than that, possibly only with specific network plugins). If you were previously using ethtool to disable checksum offload on your primary network interface, you should
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Jan 28 10:44:33 GMT 2021 - 346.2K bytes - Click Count (1) -
cmd/storage-rest-server.go
} tmp := make([]byte, len(b)) copy(tmp, b) h.block <- tmp return len(b), h.err } // CloseWithError will close the stream and return the specified error. // This can be done several times, but only the first error will be sent. // After calling this the stream should not be written to. func (h *httpStreamResponse) CloseWithError(err error) { if h.done == nil { return } h.done <- err h.err = err
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue May 27 15:19:03 GMT 2025 - 45.7K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java
* * @param value The date string to parse * @return The parsed date, or null if parsing fails */ protected Date parseLastModifiedDate(final String value) { // Try RFC 1123 format first try { final Instant instant = Instant.from(RFC_1123_FORMATTER.parse(value)); return Date.from(instant); } catch (final DateTimeParseException e) { // Try fallbackCreated: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sat Jan 31 12:23:29 GMT 2026 - 62.2K bytes - Click Count (0) -
fastapi/applications.py
AppType = TypeVar("AppType", bound="FastAPI") class FastAPI(Starlette): """ `FastAPI` app class, the main entrypoint to use FastAPI. Read more in the [FastAPI docs for First Steps](https://fastapi.tiangolo.com/tutorial/first-steps/). ## Example ```python from fastapi import FastAPI app = FastAPI() ``` """ def __init__( self: AppType, *,
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 16:16:24 GMT 2026 - 178.6K bytes - Click Count (0) -
docs/ko/docs/tutorial/dependencies/sub-dependencies.md
# 하위 의존성 { #sub-dependencies } **하위 의존성**을 가지는 의존성을 만들 수 있습니다. 필요한 만큼 **깊게** 중첩할 수도 있습니다. 이것을 해결하는 일은 **FastAPI**가 알아서 처리합니다. ## 첫 번째 의존성 "dependable" { #first-dependency-dependable } 다음과 같이 첫 번째 의존성("dependable")을 만들 수 있습니다: {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[8:9] *} 이 의존성은 선택적 쿼리 파라미터 `q`를 `str`로 선언하고, 그대로 반환합니다. 매우 단순한 예시(그다지 유용하진 않음)이지만, 하위 의존성이 어떻게 동작하는지에 집중하는 데 도움이 됩니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 4.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/sub-dependencies.md
# 子相依 { #sub-dependencies } 你可以建立具有「子相依」的相依項。 它們可以按你的需要,層級任意加深。 **FastAPI** 會負責解析它們。 ## 第一個相依項 "dependable" { #first-dependency-dependable } 你可以建立第一個相依項("dependable")如下: {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[8:9] *} 它宣告了一個可選的查詢參數 `q`(型別為 `str`),然後直接回傳它。 這很簡單(不太實用),但有助於我們專注於子相依如何運作。 ## 第二個相依,同時是 "dependable" 也是 "dependant" { #second-dependency-dependable-and-dependant }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 3.6K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.33.md
- Fixed SELinux warning controller not to emit events for completed pods. ...
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Mar 19 03:17:58 GMT 2026 - 369K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt
// incomplete. val creator = cache.edit("k1")!! creator.newSink(0).buffer().use { it.writeUtf8("Hello") } // Simulate a severe Filesystem failure on the first initialization. filesystem.setFaultyDelete(cacheDir / "k1.0.tmp", true) filesystem.setFaultyDelete(cacheDir, true) cache =Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 59.4K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/design/admin_design.jsp
<c:forEach var="item" items="${jspFileNameItems}"> <la:option value="${f:u(item.first)}">${f:h(item.second)}</la:option> </c:forEach> </la:select> </div> </div>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 11.2K bytes - Click Count (0)