Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 681 for delete (0.05 sec)

  1. changelog_4x.md

    yield deflated bytes out and this isn't always the case! L216: L217: * Fix: Reliably update and invalidate the disk cache on windows. As originally designed our L218: internal `DiskLruCache` assumes an inode-like file system, where it's fine to delete files that L219: are currently being read or written. On Windows the file system forbids this so we must be more L220: careful when deleting and renaming files. L221: L222: * Fix: Don't crash on Java 8u252 which introduces an API previously...
    github.com/square/okhttp/docs/changelogs/change...
    Wed Apr 17 13:25:31 UTC 2024
      25.2K bytes
  2. Cookie.kt

    which case it will expire at the L52: * end of the current session. L53: * L54: * This may return a value less than the current time, in which case the cookie is already L55: * expired. Webservers may return expired cookies as a mechanism to delete previously set cookies L56: * that may or may not themselves be expired. L57: */ L58: @get:JvmName("expiresAt") val expiresAt: Long, L59: /** L60: * Returns the cookie's domain. If [hostOnly] returns true this is the only domain that matches...
    github.com/square/okhttp/okhttp/src/main/kotlin...
    Sat Apr 06 04:12:05 UTC 2024
      23.1K bytes
  3. CHANGELOG-1.22.md

    inline volume namespace issue in csi migration translation ([#101235](https://github.com/kubernetes/kubernetes/pull/101235), [@andyzhangx](https://github.com/andyzhangx)) [SIG Apps, Cloud Provider, Node and Storage] L4009:- Fix: not delete existing pip when service is deleted ([#100694](https://github.com/kubernetes/kubernetes/pull/100694), [@nilo19](https://github.com/nilo19)) [SIG Cloud Provider] L4010:- Fix: set "host is down" as corrupted mount ([#101398](https://github.com/kubernetes/kubernetes/pull/101398),...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Tue Dec 13 12:43:45 UTC 2022
      454.1K bytes
  4. okhttp.api

    fun cacheControl (Lokhttp3/CacheControl;)Lokhttp3/Request$Builder; L1067: public final fun cacheUrlOverride (Lokhttp3/HttpUrl;)Lokhttp3/Request$Builder; L1068: public final fun delete ()Lokhttp3/Request$Builder; L1069: public fun delete (Lokhttp3/RequestBody;)Lokhttp3/Request$Builder; L1070: public static synthetic fun delete$default (Lokhttp3/Request$Builder;Lokhttp3/RequestBody;ILjava/lang/Object;)Lokhttp3/Request$Builder; L1071: public fun get ()Lokhttp3/Request$Builder; L1072: public fun head ...
    github.com/square/okhttp/okhttp/api/okhttp.api
    Mon Apr 15 13:41:01 UTC 2024
      70.2K bytes
  5. URLConnectionTest.kt

    L3994: val response = L3995: getResponse( L3996: Request.Builder() L3997: .url(server.url("/")) L3998: .delete("BODY".toRequestBody(null)) L3999: .build(), L4000: ) L4001: assertThat(response.code).isEqualTo(200) L4002: val request = server.takeRequest() L4003: assertThat(request.method).isEqualTo("DELETE") L4004: assertThat(request.body.readUtf8()).isEqualTo("BODY") L4005: } L4006: L4007: @Test L4008: fun userAgentDefaultsToOkHttpVersion()...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Sat Jan 20 10:30:28 UTC 2024
      131.7K bytes
  6. CHANGELOG-1.23.md

    Lost PVC as `UnschedulableAndUnresolvable` ([#105245](https://github.com/kubernetes/kubernetes/pull/105245), [@yibozhuang](https://github.com/yibozhuang)) L2453:- Ensures that volume is deleted from the storage backend when the user tries to delete the PV object manually and the PV `ReclaimPolicy` is set to `Delete`. ([#105773](https://github.com/kubernetes/kubernetes/pull/105773), [@deepakkinni](https://github.com/deepakkinni)) L2454:- Expose a `NewUnstructuredExtractor` from apply configurations...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Tue Feb 28 21:06:52 UTC 2023
      424.5K bytes
  7. CHANGELOG-1.10.md

    transition from the v1beta1 API to the v1 API. ([#58393](https://github.com/kubernetes/kubernetes/pull/58393), [@deads2k](https://github.com/deads2k)) L1908: L1909:* Fixes an issue where the resourceVersion of an object in a DELETE watch event was not the resourceVersion of the delete itself, but of the last update to the object. This could disrupt the ability of clients clients to re-establish watches properly. ([#58547](https://github.com/kubernetes/kubernetes/pull/58547), [@liggitt](https://github.com/liggitt))...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Thu May 05 13:44:43 UTC 2022
      341.8K bytes
  8. IndexingHelperTest.java

    L242: L243: public void test_deleteDocument() { L244: final Map<String, String> resultMap = new HashMap<>(); L245: final SearchEngineClient client = new SearchEngineClient() { L246: @Override L247: public boolean delete(final String index, final String id) { L248: resultMap.put("index", index); L249: resultMap.put("id", id); L250: return true; L251: } L252: }; L253: ComponentUtil.register(client,...
    github.com/codelibs/fess/src/test/java/org/code...
    Wed Jul 24 08:54:24 UTC 2024
      23.4K bytes
  9. Iterables.java

    {@code Iterator} is created, not when {@code skip()} is called. L901: * L902: * <p>The returned iterable's iterator supports {@code remove()} if the iterator of the underlying L903: * iterable supports it. Note that it is <i>not</i> possible to delete the last skipped element by L904: * immediately calling {@code remove()} on that iterator, as the {@code Iterator} contract states L905: * that a call to {@code remove()} before a call to {@code next()} will throw an {@link L906: * IllegalStateException}....
    github.com/google/guava/android/guava/src/com/g...
    Wed Apr 24 19:38:27 UTC 2024
      42.8K bytes
  10. HttpOverHttp2Test.kt

    L1555: ) { L1556: setUp(protocol, mockWebServer) L1557: server.enqueue(MockResponse(body = "ABC")) L1558: val call = L1559: client.newCall( L1560: Request.Builder() L1561: .url(server.url("/")) L1562: .method("DELETE", null) L1563: .build(), L1564: ) L1565: val response = call.execute() L1566: assertThat(response.body.string()).isEqualTo("ABC") L1567: assertThat(response.protocol).isEqualTo(protocol) L1568: val logs = testLogHandler.takeAll()...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Thu Apr 11 22:09:35 UTC 2024
      75.3K bytes
Back to top