Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 681 for delete (0.05 sec)

  1. CHANGELOG-1.9.md

    metadata proxy to v0.1.9 to pick up security fixes. ([#58221](https://github.com/kubernetes/kubernetes/pull/58221), [@ihmccreery](https://github.com/ihmccreery)) L902:* 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...
    Tue Nov 16 10:46:27 UTC 2021
      313.7K bytes
  2. 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
  3. MinMaxPriorityQueue.java

    'actualLastElement' is now at 'lastElementAt', and the element that was at 'lastElementAt' L430: // is now at the end of queue. If that's the element we wanted to remove in the first place, L431: // don't try to (incorrectly) trickle it. Instead, just delete it and we're done. L432: queue[size] = null; L433: return null; L434: } L435: E toTrickle = elementData(size); L436: queue[size] = null; L437: MoveDesc<E> changes = fillHole(index, toTrickle); L438: if (lastElementAt < index)...
    github.com/google/guava/android/guava/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      34.1K bytes
  4. LinkedHashMultimap.java

    succeedsIn*() to initialize them immediately thereafter. L174: * L175: * The exception is the *InValueSet fields of multimapHeaderEntry, which are never set. (That L176: * works out fine as long as we continue to be careful not to try to delete them or iterate L177: * past them.) L178: * L179: * We could consider "lying" and omitting @CheckNotNull from all these fields. Normally, I'm not L180: * a fan of that: What if we someday implement (presumably to be enabled during...
    github.com/google/guava/guava/src/com/google/co...
    Thu Feb 22 21:19:52 UTC 2024
      24.3K bytes
  5. AdminUpgradeAction.java

    for (final String index : crawlerIndices) { L1332: if (client.existsIndex(index)) { L1333: if (client.deleteIndex(index)) { L1334: logger.warn("Deleted {}.", index); L1335: } else { L1336: logger.warn("Failed to delete {}.", index); L1337: } L1338: } else if (logger.isDebugEnabled()) { L1339: logger.debug("{} does not exist.", index); L1340: } L1341: } L1342:...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      54K bytes
  6. 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
  7. CHANGELOG-1.3.md

    ThirdPartyResource L396: L397:If you use ThirdPartyResource objects, they have moved from being namespaced-scoped to be cluster-scoped. Before upgrading to 1.3.0, export and delete any existing ThirdPartyResource objects using a 1.2.x client: L398: L399:kubectl get thirdpartyresource --all-namespaces -o yaml > tprs.yaml L400:kubectl delete -f tprs.yaml L401: L402:After upgrading to 1.3.0, re-register the third party resource objects at the root scope (using a 1.3 server and client): L403: L404:kubectl create...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Thu Dec 24 02:28:26 UTC 2020
      84K bytes
  8. security.js

    return new a.formUtils.validators.validate_strength.strengthDisplay(this,b),this};var g=function(b,c,d){if(c||(c=a("form")),"undefined"!=typeof grecaptcha&&!a.formUtils.hasLoadedGrecaptcha)throw new Error("reCaptcha API can not be loaded by hand, delete reCaptcha API snippet.");if(!a.formUtils.hasLoadedGrecaptcha&&a('[data-validation~="recaptcha"]',c).length){a.formUtils.hasLoadedGrecaptcha=!0;var e="//www.google.com/recaptcha/api.js?onload=reCaptchaLoaded&render=explicit"+(d.lang?"&hl="+d.lang:...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Mon Jan 01 05:12:47 UTC 2018
      10.5K bytes
  9. EventListenerTest.kt

    ctionPool)) L112: listener.forbidLock(client.dispatcher) L113: } L114: L115: @AfterEach L116: fun tearDown() { L117: if (socksProxy != null) { L118: socksProxy!!.shutdown() L119: } L120: if (cache != null) { L121: cache!!.delete() L122: } L123: } L124: L125: @Test L126: fun successfulCallEventSequence() { L127: server.enqueue( L128: MockResponse.Builder() L129: .body("abc") L130: .build(), L131: ) L132: val call = L133: client.newCall(...
    github.com/square/okhttp/okhttp/src/test/java/o...
    Sat Jan 20 10:30:28 UTC 2024
      56.9K bytes
  10. 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
Back to top