- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 54 for sizes (0.09 sec)
-
popper.min.js.map
left: rect.left,\n top: rect.top,\n width: rect.right - rect.left,\n height: rect.bottom - rect.top,\n };\n\n // subtract scrollbar size from sizes\n const sizes = element.nodeName === 'HTML' ? getWindowSizes(element.ownerDocument) : {};\n const width =\n sizes.width || element.clientWidth || result.width;\n const height =\n sizes.height || element.clientHeight || result.height;\n\n let horizScrollbar = element.offsetWidth - width;\n let vertScrollbar = element.offsetHeight...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 120.9K bytes -
bootstrap.min.css.map
line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1, .h1 { @include font-size($h1-font-size); }\nh2, .h2 { @include font-size($h2-font-size); }\nh3, .h3 { @include font-size($h3-font-size); }\nh4, .h4 { @include font-size($h4-font-size); }\nh5, .h5 { @include font-size($h5-font-size); }\nh6, .h6 { @include font-size($h6-font-size); }\n\n.lead {\n @include font-size($lead-font-size);\n font-weight: $lead-font-weight;\n}\n\n// Type display classes\n.display-1 {\n @include f...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 639.3K bytes -
adminlte.min.css.map
{\n border-radius: 0.25rem;\n}\n\n.img-circle {\n border-radius: 50%;\n}\n\n.img-size-64,\n.img-size-50,\n.img-size-32 {\n height: auto;\n}\n\n.img-size-64 {\n width: 64px;\n}\n\n.img-size-50 {\n width: 50px;\n}\n\n.img-size-32 {\n width: 32px;\n}\n\n.size-32,\n.size-40,\n.size-50 {\n display: block;\n text-align: center;\n}\n\n.size-32 {\n height: 32px;\n line-height: 32px;\n width: 32px;\n}\n\n.size-40 {\n height: 40px;\n line-height: 40px;\n width: 40px;\n}\n\n.size-50 {\n height:...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 3.7M bytes -
SynonymFile.java
String[] outputs; L140: L141: final List<String> sides = split(line, "=>"); L142: if (sides.size() > 1) { // explicit mapping L143: if (sides.size() != 2) { L144: throw new DictionaryException("more than one explicit mapping specified on the same line"); L145: } L146: final List<String> inputStrings = split(sides.get(0), ","); L147: inputs = new String[inputStrings.size()];...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 12.5K bytes -
IndexingHelperTest.java
String())); L144: } L145: return deletedDocIdList.size(); L146: } L147: }; L148: ComponentUtil.register(client, "searchEngineClient"); L149: final DocList docList = new DocList(); L150: assertEquals(0, indexingHelper.deleteOldDocuments(client, docList)); L151: assertEquals(0, docList.size()); L152: assertEquals(0, deletedDocIdList.size()); L153: L154: docList.clear(); L155: deletedDocIdList.clear(); L156:...github.com/codelibs/fess/src/test/java/org/code...Wed Jul 24 08:54:24 UTC 2024 23.4K bytes -
CharMappingFile.java
PagingList<CharMappingItem> selectList(final int offset, final int size) { L83: if (mappingItemList == null) { L84: reload(null); L85: } L86: L87: if (offset >= mappingItemList.size() || offset < 0) { L88: return new PagingList<>(Collections.<CharMappingItem> emptyList(), offset, size, mappingItemList.size()); L89: } L90: L91: int toIndex = offset + size; L92: if (toIndex > mappingItemList.size()) { L93: toIndex = mappingItemList.size();...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.2K bytes -
FessConfig.java
H_SIZE = "page.roletype.max.fetch.size"; L1283: L1284: /** The key of the configuration. e.g. 1000 */ L1285: String PAGE_USER_MAX_FETCH_SIZE = "page.user.max.fetch.size"; L1286: L1287: /** The key of the configuration. e.g. 1000 */ L1288: String PAGE_ROLE_MAX_FETCH_SIZE = "page.role.max.fetch.size"; L1289: L1290: /** The key of the configuration. e.g. 1000 */ L1291: String PAGE_GROUP_MAX_FETCH_SIZE = "page.group.max.fetch.size"; L1292: L1293: /** The key of the configuration....github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
PluginHelperTest.java
return true; L76: } L77: }; L78: } L79: L80: public void test_processRepository1() { L81: List<Artifact> list = pluginHelper.processRepository(ArtifactType.DATA_STORE, "plugin/repo1/"); L82: assertEquals(7, list.size()); L83: assertEquals("fess-ds-atlassian", list.get(0).getName()); L84: assertEquals("12.2.0", list.get(0).getVersion()); L85: assertEquals("plugin/repo1/fess-ds-atlassian/12.2.0/fess-ds-atlassian-12.2.0.jar", list.get(0).getUrl());...github.com/codelibs/fess/src/test/java/org/code...Mon Jun 17 12:38:38 UTC 2024 5.9K bytes -
FessMultipartRequestHandler.java
you can override the boundary limit size"); L182: br.addElement(" in " + getClass().getSimpleName() + "."); L183: br.addItem("Content Type"); L184: br.addElement(contentType); L185: br.addItem("Boundary Size"); L186: br.addElement(boundarySize); L187: br.addItem("Limit Size"); L188: br.addElement(limitSize); L189: final String msg = br.buildExceptionMessage(); L190: throw new Forced404NotFoundException(msg, UserMessages.empty()); // heavy...github.com/codelibs/fess/src/main/java/org/code...Wed Oct 23 13:27:21 UTC 2024 18.6K bytes -
SearchBody.java
onversion.ValidateTypeFailure; L20: L21:public class SearchBody extends ListForm { L22: L23: // `size` is an alias of `num`. L24: // `size` is prepared to be compatible with other Admin APIs L25: @ValidateTypeFailure L26: public Integer size; L27: L28: @Override L29: public void initialize() { L30: if (size != null) { L31: num = num == null || num < size ? size : num; L32: } L33: super.initialize(); L34: } L35: L36:}...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 1.2K bytes