- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for deflate (0.06 sec)
-
cmd/admin-handlers.go
name: name, size: int64(len(data)), mode: fileMode, modTime: UTCNow(), isDir: false, sys: nil, }) if zerr != nil { return zerr } header.Method = zip.Deflate zwriter, zerr := zipWriter.CreateHeader(header) if zerr != nil { return zerr } _, err := io.Copy(zwriter, bytes.NewReader(data)) return err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 99.7K bytes - Viewed (0) -
tensorflow/c/c_api.cc
void FreeWhileResources(const TF_WhileParams* params) { TF_DeleteGraph(params->cond_graph); TF_DeleteGraph(params->body_graph); delete[] params->cond_inputs; delete[] params->body_inputs; delete[] params->body_outputs; } TF_WhileParams EmptyWhileParams() { return {0, nullptr, nullptr, {nullptr, 0}, nullptr, nullptr, nullptr, nullptr}; }
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 102.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
/** The key of the message: {0} file does not exist. */ public static final String ERRORS_target_file_does_not_exist = "{errors.target_file_does_not_exist}"; /** The key of the message: Failed to delete {0} file. */ public static final String ERRORS_failed_to_delete_file = "{errors.failed_to_delete_file}"; /** The key of the message: Not found Doc ID:{0} */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 119.9K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CacheTest.kt
.cache(cache) .cookieJar(JavaNetCookieJar(cookieManager)) .build() } @AfterEach fun tearDown() { ResponseCache.setDefault(null) cache.delete() } /** * Test that response caching is consistent with the RI and the spec. * http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.4 */ @Test
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 108.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CallTest.kt
assertThat(recordedRequest.body.size).isEqualTo(0) assertThat(recordedRequest.headers["Content-Length"]).isEqualTo("0") assertThat(recordedRequest.headers["Content-Type"]).isNull() } @Test fun delete_HTTPS() { enableTls() delete() } @Test fun delete_HTTP_2() { enableProtocol(Protocol.HTTP_2) delete() } @Test
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 142.5K bytes - Viewed (0) -
doc/go1.17_spec.html
<p> The built-in function <code>delete</code> removes the element with key <code>k</code> from a <a href="#Map_types">map</a> <code>m</code>. The type of <code>k</code> must be <a href="#Assignability">assignable</a> to the key type of <code>m</code>. </p> <pre class="grammar"> delete(m, k) // remove element m[k] from map m </pre> <p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
docs/metrics/prometheus/grafana/bucket/minio-bucket.json
"interval": "1m", "intervalFactor": 2, "legendFormat": "{{bucket}}", "refId": "A" } ], "title": "Delete Markers", "type": "timeseries" }, { "datasource": { "type": "prometheus", "uid": "Prometheus" }, "fieldConfig": { "defaults": {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 11:11:51 UTC 2024 - 101.8K bytes - Viewed (0) -
fastapi/routing.py
) -> Callable[[DecoratedCallable], DecoratedCallable]: """ Add a *path operation* using an HTTP DELETE operation. ## Example ```python from fastapi import APIRouter, FastAPI app = FastAPI() router = APIRouter() @router.delete("/items/{item_id}") def delete_item(item_id: str): return {"message": "Item deleted"}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 09:44:57 UTC 2024 - 172.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- Improve performance of the job controller when handling job delete events. ([#127378](https://github.com/kubernetes/kubernetes/pull/127378), [@hakuna-matatah](https://github.com/hakuna-matatah)) [SIG Apps]
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Oct 29 20:17:52 UTC 2024 - 121.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsScheduledJobCQ.java
import java.util.ArrayList; import java.util.Collection; import org.codelibs.fess.es.config.allcommon.EsAbstractConditionQuery; import org.codelibs.fess.es.config.cbean.cq.ScheduledJobCQ; import org.dbflute.cbean.ckey.ConditionKey; import org.opensearch.index.query.BoolQueryBuilder; import org.opensearch.index.query.CommonTermsQueryBuilder; import org.opensearch.index.query.ExistsQueryBuilder;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 98.1K bytes - Viewed (0)