- Sort Score
- Result 10 results
- Languages All
Results 1011 - 1020 of 1,288 for Deleted (0.16 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/connection/RouteSelector.kt
else -> addresses } for (inetAddress in orderedAddresses) { mutableInetSocketAddresses += InetSocketAddress(inetAddress, socketPort) } } } /** A set of selected Routes. */ class Selection(val routes: List<Route>) { private var nextRouteIndex = 0 operator fun hasNext(): Boolean = nextRouteIndex < routes.size operator fun next(): Route {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Mar 06 17:33:38 UTC 2024 - 7.2K bytes - Viewed (0) -
docs/en/docs/advanced/generate-clients.md
### Preprocess the OpenAPI Specification for the Client Generator The generated code still has some **duplicated information**. We already know that this method is related to the **items** because that word is in the `ItemsService` (taken from the tag), but we still have the tag name prefixed in the method name too. π
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.7K bytes - Viewed (0) -
cmd/metacache-server-pool.go
return } objInfo := fi.ToObjectInfo(o.Bucket, obj.name, versioned) if o.Lifecycle != nil { act := evalActionFromLifecycle(ctx, *o.Lifecycle, o.Retention, o.Replication.Config, objInfo).Action skip = act.Delete() && !act.DeleteRestored() } } fiv, err := obj.fileInfoVersions(o.Bucket) if err != nil { return } // Expire all versions if needed, if not attempt to queue for replication.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 16:23:16 UTC 2024 - 12.7K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Request.kt
open fun get(): Builder = commonGet() open fun head(): Builder = commonHead() open fun post(body: RequestBody): Builder = commonPost(body) @JvmOverloads open fun delete(body: RequestBody? = commonEmptyRequestBody): Builder = commonDelete(body) open fun put(body: RequestBody): Builder = commonPut(body) open fun patch(body: RequestBody): Builder = commonPatch(body)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:17:44 UTC 2024 - 10.5K bytes - Viewed (0) -
docs/ko/docs/tutorial/response-model.md
# μλ΅ λͺ¨λΈ μ΄λ€ *κ²½λ‘ μλ*μ΄λ 맀κ°λ³μ `response_model`λ₯Ό μ¬μ©νμ¬ μλ΅μ μν λͺ¨λΈμ μ μΈν μ μμ΅λλ€: * `@app.get()` * `@app.post()` * `@app.put()` * `@app.delete()` * κΈ°ν. ```Python hl_lines="17" {!../../docs_src/response_model/tutorial001.py!} ``` /// note | "μ°Έκ³ " `response_model`μ "λ°μ½λ μ΄ν°" λ©μλ(`get`, `post`, λ±)μ 맀κ°λ³μμ λλ€. λͺ¨λ 맀κ°λ³μλ€κ³Ό λ³Έλ¬Έ(body)μ²λΌ *κ²½λ‘ μλ ν¨μ*κ° μλλλ€. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/BaseCIFSTest.java
f.mkdir(); return f; } } protected void cleanupTestDirectory ( SmbResource f ) throws CIFSException { if ( f != null ) { f.delete(); } } protected String makeRandomName () { return "jcifs-test-" + Math.abs(this.rand.nextLong()); } protected String makeRandomDirectoryName () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.1K bytes - Viewed (0) -
cmd/data-usage-utils.go
// Objects total count across all buckets ObjectsTotalCount uint64 `json:"objectsCount"` // Versions total count across all buckets VersionsTotalCount uint64 `json:"versionsCount"` // Delete markers total count across all buckets DeleteMarkersTotalCount uint64 `json:"deleteMarkersCount"` // Objects total size across all buckets ObjectsTotalSize uint64 `json:"objectsTotalSize"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Mar 10 09:15:15 UTC 2024 - 6.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
} final Map<String, Object> requestBody = new HashMap<>(); requestBody.put("q", "Example Domain"); checkMethodBase(requestBody).delete("/api/admin/searchlist/query"); refresh(); for (String sId : getSchedulerIds(NAME_PREFIX)) { deleteMethod("/api/admin/scheduler/setting/" + sId); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 18.6K bytes - Viewed (0) -
cmd/iam-etcd-store.go
} func (ies *IAMEtcdStore) addUser(ctx context.Context, user string, userType IAMUserType, u UserIdentity, m map[string]UserIdentity) error { if u.Credentials.IsExpired() { // Delete expired identity. deleteKeyEtcd(ctx, ies.client, getUserIdentityPath(user, userType)) deleteKeyEtcd(ctx, ies.client, getMappedPolicyPath(user, userType, false)) return nil } if u.Credentials.AccessKey == "" {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 01:29:20 UTC 2024 - 14K bytes - Viewed (0) -
cmd/object-api-options.go
// Objects matching prefixes should not leave delete markers, // dramatically reduces namespace pollution while keeping the // benefits of replication, make sure to apply version suspension // only at bucket level instead. opts.VersionSuspended = globalBucketVersioningSys.Suspended(bucket) // For directory objects, delete `null` version permanently. if isDirObject(object) && opts.VersionID == "" {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 21 21:13:59 UTC 2024 - 14.4K bytes - Viewed (0)