- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for deletion (0.09 sec)
-
popper.min.js.map
'';\n this.popper.style.bottom = '';\n this.popper.style.willChange = '';\n this.popper.style[getSupportedPropertyName('transform')] = '';\n }\n\n this.disableEventListeners();\n\n // remove the popper if user explicitly asked for the deletion on destroy\n // do not use `remove` because IE11 doesn't support it\n if (this.options.removeOnDestroy) {\n this.popper.parentNode.removeChild(this.popper);\n }\n return this;\n}\n","/**\n * Get the window associated with the element\n * @argument...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 120.9K bytes -
adminlte.min.css
.select2-selection--multiple .select2-search.select2-search--inline .select2-search__field{margin-top:8px}.select2-container--default .select2-selection--multiple.text-sm .select2-selection__choice,.text-sm .select2-container--default .select2-selection--multiple .select2-selection__choice{margin-top:.4rem}.select2-container--default.select2-container--focus .select2-selection--multiple,.select2-container--default.select2-container--focus .select2-selection--single{border-color:#80bdff}.select2-co...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 1.3M bytes -
adminlte.min.css.map
.select2-container--default .select2-selection--single .select2-selection__rendered {\n margin-top: -.4rem;\n}\n\n.text-sm .select2-container--default .select2-selection--single .select2-selection__arrow,\nselect.form-control-sm ~ .select2-container--default .select2-selection--single .select2-selection__arrow {\n top: -.12rem;\n}\n\n.text-sm .select2-container--default .select2-selection--multiple,\nselect.form-control-sm ~ .select2-container--default .select2-selection--multiple {\n min-height: calc(1.8125rem...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 3.7M bytes -
SearchResult.java
governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.rank.fusion; L17: L18:import java.util.ArrayList; L19:import java.util.List; L20:import java.util.Map; L21: L22:import org.apache.lucene.search.TotalHits.Relation; L23:import org.codelibs.fess.util.FacetResponse; L24: L25:public class SearchResult { L26: L27: protected final List<Map<String, Object>> documentList; L28: protected final long allRecordCount; L29: protected final String allRecordCountRelation;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.2K bytes -
daterangepicker.js
calendar[1][1].month()) L796: classes.push('off', 'ends'); L797: L798: //don't allow selection of dates before the minimum date L799: if (this.minDate && calendar[row][col].isBefore(this.minDate, 'day')) L800: classes.push('off', 'disabled'); L801: L802: //don't allow selection of dates after the maximum date L803: if (maxDate && calendar[row][col].isAfter(maxDate, 'day')) L804: ...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 64.8K bytes -
RankFusionProcessor.java
java.util.concurrent.Future; L31:import java.util.concurrent.TimeUnit; L32:import java.util.stream.Collectors; L33: L34:import org.apache.logging.log4j.LogManager; L35:import org.apache.logging.log4j.Logger; L36:import org.apache.lucene.search.TotalHits.Relation; L37:import org.codelibs.core.collection.ArrayUtil; L38:import org.codelibs.core.concurrent.CommonPoolUtil; L39:import org.codelibs.core.lang.StringUtil; L40:import org.codelibs.core.stream.StreamUtil; L41:import org.codelibs.fess.Constants; L42:import...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.3K bytes -
EsAbstractEntity.java
doBuildColumnString(String dm); L223: L224: @Override L225: public String toStringWithRelation() { // #pending L226: return toString(); L227: } L228: L229: @Override L230: public String buildDisplayString(String name, boolean column, boolean relation) { // #pending L231: return toString(); L232: } L233: L234: // =================================================================================== L235: // Assist...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.9K bytes -
EsAbstractEntity.java
doBuildColumnString(String dm); L223: L224: @Override L225: public String toStringWithRelation() { // #pending L226: return toString(); L227: } L228: L229: @Override L230: public String buildDisplayString(String name, boolean column, boolean relation) { // #pending L231: return toString(); L232: } L233: L234: // =================================================================================== L235: // Assist...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 10.9K bytes -
ThemeHelper.java
L114: try (Stream<Path> walk = Files.walk(dir, FileVisitOption.FOLLOW_LINKS)) { L115: walk.sorted(Comparator.reverseOrder()).forEach(f -> { L116: if (logger.isDebugEnabled()) { L117: logger.debug("Deleting {}", f); L118: } L119: try { L120: Files.delete(f); L121: } catch (final IOException e) { L122: logger.warn("Failed to delete {}", f, e); L123: } L124:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.7K bytes -
DefaultSearcher.java
Present(searchResponse -> { L65: final SearchHits searchHits = searchResponse.getHits(); L66: builder.allRecordCount(searchHits.getTotalHits().value); L67: builder.allRecordCountRelation(searchHits.getTotalHits().relation.toString()); L68: builder.queryTime(searchResponse.getTook().millis()); L69: L70: if (searchResponse.getTotalShards() != searchResponse.getSuccessfulShards()) { L71: builder.partialResults(true); L72: ...github.com/codelibs/fess/src/main/java/org/code...Mon Jul 22 06:56:21 UTC 2024 10.2K bytes