Search Options

Results per page
Sort
Preferred Languages
Advance

Results 301 - 310 of 402 for delete (0.06 sec)

  1. 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
  2. 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
  3. 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
  4. 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
  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. FessConfig.java

    nteger(); L3499: L3500: /** L3501: * Get the value for the key 'indexer.data.max.delete.cache.size'. <br> L3502: * The value is, e.g. 100 <br> L3503: * @return The value of found property. (NotNull: if not found, exception but basically no way) L3504: */ L3505: String getIndexerDataMaxDeleteCacheSize(); L3506: L3507: /** L3508: * Get the value for the key 'indexer.data.max.delete.cache.size' as {@link Integer}. <br> L3509: * The value is, e.g. 100 <br> L3510: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
  7. bootstrap-timepicker.min.js

    om"),this.$widget.addClass("timepicker-orient-"+q),"top"===q?n+=k:n-=d+parseInt(this.$widget.css("padding-top"),10),this.$widget.css({top:n,left:m,zIndex:i})}},remove:function(){a("document").off(".timepicker"),this.$widget&&this.$widget.remove(),delete this.$element.data().timepicker},setDefaultTime:function(a){if(this.$element.val())this.updateFromElementVal();else if("current"===a){var b=new Date,c=b.getHours(),d=b.getMinutes(),e=b.getSeconds(),f="AM";0!==e&&(e=Math.ceil(b.getSeconds()/this.s...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Thu Feb 13 04:21:06 UTC 2020
      18.2K bytes
  8. 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
  9. CHANGELOG-1.16.md

    rnetes/kubernetes/pull/93722), [@liggitt](https://github.com/liggitt)) [SIG Apps and Node] L332:- Fixes an issue that can result in namespaced custom resources being orphaned when their namespace is deleted, if the CRD defining the custom resource is removed concurrently with namespaces being deleted, then recreated. ([#93790](https://github.com/kubernetes/kubernetes/pull/93790), [@liggitt](https://github.com/liggitt)) [SIG API Machinery and Apps] L333:- Kube-apiserver: fixed a bug returning inconsistent...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Thu Feb 11 10:00:57 UTC 2021
      345.2K bytes
  10. CHANGELOG-1.31.md

    deprecated and unsupported kubectl run flags: L984: - filename L985: - force L986: - grace-period L987: - kustomize L988: - recursive L989: - timeout L990: - wait L991: L992: Drop support for the deprecated --delete-local-data from kubectl drain, users should use --delete-emptydir-data, instead. ([#125842](https://github.com/kubernetes/kubernetes/pull/125842), [@soltysh](https://github.com/soltysh)) [SIG CLI] L993:- Dynamic Resource Allocation (DRA): fixed some small, unlikely race condition...
    github.com/kubernetes/kubernetes/CHANGELOG/CHAN...
    Wed Oct 23 12:18:32 UTC 2024
      315.4K bytes
Back to top