- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 855 for Function1 (0.05 sec)
-
docs_src/websockets/tutorial002_py310.py
- </ul>
- <script>
- var ws = null;
- function connect(event) {
- var itemId = document.getElementById("itemId")
- var token = document.getElementById("token")
- ws = new WebSocket("ws://localhost:8000/items/" + itemId.value + "/ws?token=" + token.value);
- ws.onmessage = function(event) {
- var messages = document.getElementById('messages')
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 2.7K bytes - Viewed (0) -
docs/en/docs/reference/background.md
- # Background Tasks - `BackgroundTasks`
- You can declare a parameter in a *path operation function* or dependency function with the type `BackgroundTasks`, and then you can use it to schedule the execution of background tasks after the response is sent.
- You can import it directly from `fastapi`:
- ```python
- from fastapi import BackgroundTasks
- ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:53:19 UTC 2024 - 377 bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ForwardingListIteratorTest.java
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package com.google.common.collect;
- import com.google.common.base.Function;
- import com.google.common.testing.ForwardingWrapperTester;
- import java.util.ListIterator;
- import junit.framework.TestCase;
- /**
- * Tests for {@code ForwardingListIterator}.
- *
- * @author Robert Konigsberg
- */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 20:09:59 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Absent.java
- public T orNull() {
- return null;
- }
- @Override
- public Set<T> asSet() {
- return Collections.emptySet();
- }
- @Override
- public <V> Optional<V> transform(Function<? super T, V> function) {
- checkNotNull(function);
- return Optional.absent();
- }
- @Override
- public boolean equals(@CheckForNull Object object) {
- return object == this;
- }
- @Override
- public int hashCode() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon May 17 14:07:47 UTC 2021 - 2.5K bytes - Viewed (0) -
docs_src/websockets/tutorial002_an.py
- </ul>
- <script>
- var ws = null;
- function connect(event) {
- var itemId = document.getElementById("itemId")
- var token = document.getElementById("token")
- ws = new WebSocket("ws://localhost:8000/items/" + itemId.value + "/ws?token=" + token.value);
- ws.onmessage = function(event) {
- var messages = document.getElementById('messages')
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 2.8K bytes - Viewed (0) -
docs_src/websockets/tutorial002_an_py39.py
- </ul>
- <script>
- var ws = null;
- function connect(event) {
- var itemId = document.getElementById("itemId")
- var token = document.getElementById("token")
- ws = new WebSocket("ws://localhost:8000/items/" + itemId.value + "/ws?token=" + token.value);
- ws.onmessage = function(event) {
- var messages = document.getElementById('messages')
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 2.8K bytes - Viewed (0) -
buildscripts/checkdeps.sh
- PHYS_DIR=$(pwd -P)
- RESULT=$PHYS_DIR/$TARGET_FILE
- echo $RESULT
- }
- ## FIXME:
- ## In OSX, 'sort -V' option does not exist, hence
- ## we have our own version compare function.
- ## Once OSX has the option, below function is good enough.
- ##
- ## check_minimum_version() {
- ## versions=($(echo -e "$1\n$2" | sort -V))
- ## return [ "$1" == "${versions[0]}" ]
- ## }
- ##
- check_minimum_version() {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 05:08:11 UTC 2024 - 3.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/bucket-extensions.kt
- *
- * @param list the list to split, must be ordered by size desc
- * @param toIntFunction the function used to map the element to its "size"
- * @param largeElementSplitFunction the function used to further split the large element into smaller pieces
- * @param smallElementAggregateFunction the function used to aggregate tiny elements into a large bucket
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Nov 17 05:17:44 UTC 2022 - 4K bytes - Viewed (0) -
docs/changelogs/upgrading_to_okhttp_4.md
- * **Route**: address, proxy, socketAddress
- * **TlsVersion**: javaName
- #### Renamed Functions
- * **Headers.of()**: for symmetry with `listOf()`, `setOf()`, etc., we’ve replaced
- `Headers.of(String...)` with `headersOf(vararg String)`.
- #### Extension Functions
- We’ve migrated from static functions to extension functions where we think they fit.
- | Java | Kotlin |
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 16:58:16 UTC 2022 - 10.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/HashFunctionEnum.java
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package com.google.common.hash;
- /**
- * An enum that contains all of the known hash functions.
- *
- * @author Kurt Alfred Kluever
- */
- enum HashFunctionEnum {
- ADLER32(Hashing.adler32()),
- CRC32(Hashing.crc32()),
- GOOD_FAST_HASH_32(Hashing.goodFastHash(32)),
- GOOD_FAST_HASH_64(Hashing.goodFastHash(64)),
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 08 13:56:22 UTC 2021 - 1.7K bytes - Viewed (0)