- Sort Score
- Result 10 results
- Languages All
Results 1331 - 1340 of 1,390 for delete (0.07 sec)
-
docs/es/docs/async.md
### Hamburguesas Concurrentes Vas con la persona que te gusta ๐ a pedir comida rรกpida ๐, haces cola mientras el cajero ๐ recoge los pedidos de las personas de delante tuyo. <img src="https://fastapi.tiangolo.com/img/async/concurrent-burgers/concurrent-burgers-01.png" alt="illustration"> Llega tu turno, haces tu pedido de 2 hamburguesas impresionantes para esa persona ๐ y para ti.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 19 18:15:21 UTC 2024 - 24.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt
* accessed by the connection closer task. */ var concurrentCallCapacity: Int = 0 } companion object { fun get(connectionPool: ConnectionPool): RealConnectionPool = connectionPool.delegate private var addressStatesUpdater = AtomicReferenceFieldUpdater.newUpdater( RealConnectionPool::class.java, Map::class.java, "addressStates", ) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 16.2K bytes - Viewed (0) -
tensorflow/c/c_api_experimental.h
struct TF_ShapeAndType { // Number of dimensions. -1 indicates unknown rank. int num_dims; // Array of dimensions. -1 indicates unknown dim. int64_t* dims; // The data type. May be 0 to denote unknown type. TF_DataType dtype; }; typedef struct TF_ShapeAndType TF_ShapeAndType; // A list of TF_ShapeAndType elements.. struct TF_ShapeAndTypeList { int num_items; TF_ShapeAndType* items;
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Apr 27 21:07:00 UTC 2023 - 15.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeMultiset.java
result[0] = elemCount; if (expectedCount == elemCount) { if (newCount == 0) { return deleteMe(); } this.totalCount += newCount - elemCount; this.elemCount = newCount; } return this; } @CheckForNull private AvlNode<E> deleteMe() { int oldElemCount = this.elemCount; this.elemCount = 0; successor(pred(), succ());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 34.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java
attachArtifact(project, artifact, path); } /** * Attaches a produced artifact to the project at the specified path. This is the base method * that the other attachArtifact methods delegate to. * * @param project the project to attach the artifact to * @param artifact the produced artifact to attach * @param path the path to the artifact file
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 24 11:52:48 UTC 2024 - 7.6K bytes - Viewed (0) -
cni/pkg/nodeagent/informers.go
} case controllers.EventDelete: // We are the only thing that should be annotating the pods for mesh inclusion. // If we did, remove it from ztunnel if util.PodRedirectionActive(pod) { log.Debugf("pod is deleted and was captured, removing from ztunnel") err := s.dataplane.RemovePodFromMesh(s.ctx, pod, true) if err != nil { log.Warnf("DelPodFromMesh returned: %v", err) } } else {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 11.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/SetsTest.java
ImmutableSet<?> deserialized = (ImmutableSet<?>) in.readObject(); EnumSet<?> delegate = (EnumSet<?>) in.readObject(); assertEquals(original, deserialized); assertTrue(delegate.remove(SomeEnum.A)); assertTrue(deserialized.contains(SomeEnum.A)); } @J2ktIncompatible @GwtIncompatible // java serialization not supported in GWT.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 48.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt
val originalRequest: Request, val forWebSocket: Boolean, ) : Call, Cloneable { internal val lock: ReentrantLock = ReentrantLock() private val connectionPool: RealConnectionPool = client.connectionPool.delegate internal val eventListener: EventListener = client.eventListenerFactory.create(this) private val timeout = object : AsyncTimeout() { override fun timedOut() { ******@****.***()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 17.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 54.1K bytes - Viewed (0) -
docs/ko/docs/features.md
# ๊ธฐ๋ฅ ## FastAPI์ ๊ธฐ๋ฅ **FastAPI**๋ ๋ค์๊ณผ ๊ฐ์ ๊ธฐ๋ฅ์ ์ ๊ณตํฉ๋๋ค: ### ๊ฐ๋ฐฉํ ํ์ค์ ๊ธฐ๋ฐ์ผ๋ก * <abbr title="์๋ํฌ์ธํธ, ๋ผ์ฐํธ๋ก๋ ์๋ ค์ ธ ์์ต๋๋ค">๊ฒฝ๋ก</abbr><abbr title="POST, GET, PUT, DELETE์ ๊ฐ์ HTTP ๋ฉ์๋๋ก ์๋ ค์ ธ ์์ต๋๋ค">์๋</abbr>, ๋งค๊ฐ๋ณ์, ๋ณธ๋ฌธ ์์ฒญ, ๋ณด์ ๊ทธ ์ธ์ ์ ์ธ์ ํฌํจํ API ์์ฑ์ ์ํ <a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank"><strong>OpenAPI</strong></a>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.8K bytes - Viewed (0)