Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 402 for delete (0.06 sec)

  1. SystemHelperTest.java

    ".properties"); L51: propFile.deleteOnExit(); L52: FileUtil.writeBytes(propFile.getAbsolutePath(), "fess.version=98.76.5".getBytes()); L53: final File desginJspRootFile = File.createTempFile("jsp", ""); L54: desginJspRootFile.delete(); L55: desginJspRootFile.deleteOnExit(); L56: systemHelper = new SystemHelper() { L57: @Override L58: protected void parseProjectProperties(final Path propPath) { L59: super.parseProjectProperti...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      18.5K bytes
  2. OkHttpTest.kt

    L900: assertNull(it.networkResponse) L901: } L902: L903: assertEquals(1, cache.hitCount()) L904: assertEquals(1, cache.networkCount()) L905: assertEquals(2, cache.requestCount()) L906: } finally { L907: cache.delete() L908: } L909: } L910: L911: private fun OkHttpClient.get(url: String) { L912: val request = Request.Builder().url(url).build() L913: val response = this.newCall(request).execute() L914: L915: response.use { L916: assertEquals(200,...
    github.com/square/okhttp/android-test/src/andro...
    Sat Jan 20 10:30:28 UTC 2024
      27K bytes
  3. 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
  4. 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
  5. CHANGELOG-1.15.md

    to be the end to end latency of volume provisioning/deletion. Existing metric "storage_operation_duration_seconds" will remain untouched, however it is exposed to the following potential issues: L1188: 1. For volumes provisioned/deleted via external provisioner/deleter, `storage_operation_duration_seconds` will NOT wait for the external operation to be done before reporting latency metric (effectively close to 0). This will be fixed by using `volume_operation_total_seconds` instead L1189: 2. if...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Thu May 05 13:44:43 UTC 2022
      278.9K bytes
  6. 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
  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. 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
  9. CHANGELOG-1.32.md

    unrelated changes that keep pods unschedulable. ([#127473](https://github.com/kubernetes/kubernetes/pull/127473), [@dom4ha](https://github.com/dom4ha)) [SIG Scheduling and Testing] L558:- 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] L559:- Improve performance of the job controller when handling job update events. ([#127228](https://github...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Tue Oct 29 20:17:52 UTC 2024
      121.6K bytes
  10. 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
Back to top