- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 36 for dash (0.02 sec)
-
maven.yml
Plugins with Maven L35: run: mvn -B antrun:run --file pom.xml L36: - name: Build with Maven L37: run: mvn -B source:jar javadoc:jar package --file pom.xml L38: - name: Run Fess L39: run: bash src/test/resources/before_script.sh L40: - name: Run Integration Test L41: run: bash src/test/resources/run.sh...github.com/codelibs/fess/.github/workflows/mave...Sat Feb 10 11:19:11 UTC 2024 1.1K bytes -
CharMappingItem.java
(inputs != null) { L88: Arrays.sort(inputs); L89: } L90: if (newInputs != null) { L91: Arrays.sort(newInputs); L92: } L93: } L94: L95: @Override L96: public int hashCode() { L97: return Objects.hash(Arrays.hashCode(inputs), output); L98: } L99: L100: @Override L101: public boolean equals(final Object obj) { L102: if (this == obj) { L103: return true; L104: } L105: if (obj == null || getClass() != obj.getClass())...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 3.4K bytes -
SynonymItem.java
return newInputs != null && newOutputs != null; L87: } L88: L89: public boolean isDeleted() { L90: return isUpdated() && newInputs.length == 0; L91: } L92: L93: @Override L94: public int hashCode() { L95: return Objects.hash(Arrays.hashCode(inputs), Arrays.hashCode(outputs)); L96: } L97: L98: @Override L99: public boolean equals(final Object obj) { L100: if (this == obj) { L101: return true; L102: } L103: if (obj == null || getClass()...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 3.7K bytes -
KuromojiItem.java
L104: return newToken != null; L105: } L106: L107: public boolean isDeleted() { L108: return isUpdated() && newToken.length() == 0; L109: } L110: L111: @Override L112: public int hashCode() { L113: return Objects.hash(pos, reading, segmentation, token); L114: } L115: L116: @Override L117: public boolean equals(final Object obj) { L118: if (this == obj) { L119: return true; L120: } L121: if (obj == null || getClass() != obj.getClass())...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 4.5K bytes -
fe.tld
s> L246: <function-signature>java.lang.String url(java.lang.String)</function-signature> L247: <example><a href="${fe:url(param:info)}" ...</example> L248: </function> L249: L250: <function> L251: <description>Encode Similar Document Hash.</description> L252: <name>sdh</name> L253: <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> L254: <function-signature>java.lang.String sdh(java.lang.String)</function-signature> L255: <example>${fe:sdh(doc.simil...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Dec 23 06:18:48 UTC 2023 10K bytes -
codeql.yml
code. L80: # âšī¸ Command-line programs to run using the OS shell. L81: # đ See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun L82: - if: matrix.build-mode == 'manual' L83: shell: bash L84: run: | L85: echo 'If you are using a "manual" build mode for one or more of the' \ L86: 'languages you are analyzing, replace this with the commands to build' \ L87: 'your code, for example:' L88: echo ' make...github.com/codelibs/fess/.github/workflows/code...Wed Aug 14 23:51:19 UTC 2024 4.4K bytes -
ThumbnailManager.java
L304: final StringBuilder buf = new StringBuilder(50); L305: for (int i = 0; i < docid.length(); i += splitSize) { L306: int hash = docid.substring(i).hashCode() % splitHashSize; L307: if (hash < 0) { L308: hash *= -1; L309: } L310: buf.append('_').append(Integer.toString(hash)).append('/'); L311: } L312: buf.append(docid).append('.').append(imageExtention); L313: return buf.toString(); L314: } L315:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 21.5K bytes -
fess_label_en.properties
L123:labels.confirmPassword=Confirm L124:labels.crawler=Crawler L125:labels.crudMode=mode L126:labels.errorCountMax=Max Error Count L127:labels.errorCountMin=Min Error Count L128:labels.facet=Facet L129:labels.geo=Geo L130:labels.groups=Groups L131:labels.hash=Hash L132:labels.kuromojiFile=Kuromoji File L133:labels.maxSize=Max Size L134:labels.order=Order L135:labels.purgeSuggestSearchLogDay=Purge Suggest Documents Before L136:labels.q=Query L137:labels.roles=Roles L138:labels.suggestSearchLog=Suggest Search...github.com/codelibs/fess/src/main/resources/fes...Fri Mar 22 11:58:34 UTC 2024 40.7K bytes -
bootstrap.min.css.map
margin-bottom: $spacer;\n @include font-size($blockquote-font-size);\n}\n\n.blockquote-footer {\n display: block;\n @include font-size($blockquote-small-font-size);\n color: $blockquote-small-color;\n\n &::before {\n content: \"\\2014\\00A0\"; // em dash, nbsp\n }\n}\n","// Lists\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n@mixin list-unstyled() {\n padding-left: 0;\n list-style: none;\n}\n","// Responsive images (ensure images don't scale beyond...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 639.3K bytes -
PrunedTag.java
value = idAttr.getNodeValue(); L64: return id.equals(value); L65: } L66: } L67: } L68: return false; L69: } L70: L71: @Override L72: public int hashCode() { L73: return Objects.hash(css, id, tag); L74: } L75: L76: @Override L77: public boolean equals(final Object obj) { L78: if (this == obj) { L79: return true; L80: } L81: if (obj == null || getClass() != obj.getClass()) { L82: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 4.8K bytes