- Sort Score
- Result 10 results
- Languages All
Results 671 - 680 of 681 for 11 (0.05 sec)
-
CHANGELOG/CHANGELOG-1.8.md
- [v1.8.4](#v184) - [Downloads for v1.8.4](#downloads-for-v184) - [Client Binaries](#client-binaries-11) - [Server Binaries](#server-binaries-11) - [Node Binaries](#node-binaries-11) - [Changelog since v1.8.3](#changelog-since-v183) - [Other notable changes](#other-notable-changes-11) - [v1.8.3](#v183) - [Downloads for v1.8.3](#downloads-for-v183) - [Client Binaries](#client-binaries-12)Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
okhttp/src/androidMain/baseline-prof.txt
Lokhttp3/internal/http2/Http2Connection$Listener; Lokhttp3/internal/http2/Http2Connection$ReaderRunnable$applyAndAckSettings$1$1$2; Lokhttp3/internal/http2/Http2Connection$ReaderRunnable$headers$1$1; Lokhttp3/internal/http2/Http2Connection$ReaderRunnable$ping$2; Lokhttp3/internal/http2/Http2Connection$ReaderRunnable$settings$1; Lokhttp3/internal/http2/Http2Connection$ReaderRunnable;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Dec 30 23:28:56 UTC 2024 - 127.9K bytes - Viewed (1) -
cmd/data-usage-cache_gen.go
} // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message func (z *dataUsageCacheInfo) Msgsize() (s int) { s = 1 + 5 + msgp.StringPrefixSize + len(z.Name) + 10 + msgp.Uint32Size + 11 + msgp.TimeSize + 12 + msgp.BoolSize return } // DecodeMsg implements msgp.Decodable func (z *dataUsageCacheV2) DecodeMsg(dc *msgp.Reader) (err error) { var field []byte _ = field var zb0001 uint32
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Dec 15 22:50:12 UTC 2024 - 86.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.15.md
- [Changelog since v1.15.1](#changelog-since-v1151) - [v1.15.1](#v1151) - [Downloads for v1.15.1](#downloads-for-v1151) - [Client Binaries](#client-binaries-11) - [Server Binaries](#server-binaries-11) - [Node Binaries](#node-binaries-11) - [Changelog since v1.15.0](#changelog-since-v1150) - [Other notable changes](#other-notable-changes-6) - [v1.15.0](#v1150) - [Downloads for v1.15.0](#downloads-for-v1150)Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 278.9K bytes - Viewed (0) -
RELEASE.md
in the TensorFlow 1.1 release is gone: The first time an RNNCell is used, it caches its scope. All future uses of the RNNCell will reuse variables from that same scope. This is a breaking change from the behavior of RNNCells in TensorFlow versions <= 1.0.1. TensorFlow 1.1 had checks in place to ensureRegistered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (3) -
CHANGELOG/CHANGELOG-1.6.md
- [v1.6.2](#v162) - [Downloads for v1.6.2](#downloads-for-v162) - [Client Binaries](#client-binaries-11) - [Server Binaries](#server-binaries-11) - [Changelog since v1.6.1](#changelog-since-v161) - [Other notable changes](#other-notable-changes-11) - [v1.6.1](#v161) - [Downloads for v1.6.1](#downloads-for-v161) - [Client Binaries](#client-binaries-12)Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 304K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.9.md
- [Other notable changes](#other-notable-changes-10) - [v1.9.0](#v190) - [Downloads for v1.9.0](#downloads-for-v190) - [Client Binaries](#client-binaries-11) - [Server Binaries](#server-binaries-11) - [Node Binaries](#node-binaries-11) - [1.9 Release Notes](#19-release-notes) - [WARNING: etcd backup strongly recommended](#warning-etcd-backup-strongly-recommended)Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Nov 16 10:46:27 UTC 2021 - 313.7K bytes - Viewed (0) -
src/main/webapp/js/admin/bootstrap.min.js.map
isPrevDirection && activeIndex === 0 ||\n isNextDirection && activeIndex === lastItemIndex\n\n if (isGoingToWrap && !this._config.wrap) {\n return activeElement\n }\n\n const delta = direction === DIRECTION_PREV ? -1 : 1\n const itemIndex = (activeIndex + delta) % this._items.length\n\n return itemIndex === -1 ?\n this._items[this._items.length - 1] : this._items[itemIndex]\n }\n\n _triggerSlideEvent(relatedTarget, eventDirectionName) {\n const targetIndex...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 180.9K bytes - Viewed (0) -
okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
aero // 2LDs airline.aero airport.aero // 2LDs (currently not accepting registration, seemingly never have) // As of 2024-07, these are marked as reserved for potential 3LD // registrations (clause 11 "allocated subdomains" in the 2006 TLD // policy), but the relevant industry partners have not opened them up // for registration. Current status can be determined from the TLD's
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 309.7K bytes - Viewed (1) -
src/main/webapp/js/bootstrap.min.js.map
the element does not exist in the list return an element\n // depending on the direction and if cycle is allowed\n if (index === -1) {\n return !shouldGetNext && isCycleAllowed ? list[listLength - 1] : list[0]\n }\n\n index += shouldGetNext ? 1 : -1\n\n if (isCycleAllowed) {\n index = (index + listLength) % listLength\n }\n\n return list[Math.max(0, Math.min(index, listLength - 1))]\n}\n\nexport {\n defineJQueryPlugin,\n execute,\n executeAfterTransition,\n findShadowRoot,\n getElement,\n...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 12 06:14:02 UTC 2025 - 211.9K bytes - Viewed (0)