- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 36 for mech (1.07 sec)
-
src/test/java/jcifs/spnego/NegTokenInitTest.java
private static byte[] buildInitToken(ASN1ObjectIdentifier[] mechs, Integer flags, byte[] mechToken, byte[] mic, boolean micInTag4, String spnegoOidOverride, Integer outerTagNoOverride, ASN1TaggedObject extraField) throws IOException { ASN1EncodableVector fields = new ASN1EncodableVector(); if (mechs != null) { ASN1EncodableVector v = new ASN1EncodableVector();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransWaitNamedPipeResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; class TransWaitNamedPipeResponse extends SmbComTransactionResponse { // not much to this one is there :~) TransWaitNamedPipeResponse() { } @Override int writeSetupWireFormat(final byte[] dst, final int dstIndex) { return 0; } @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/de/stopwords.txt
einiges einmal er ihn ihm es etwas euer eure eurem euren eurer eures für gegen gewesen hab habe haben hat hatte hatten hier hin hinter ich mich mir ihr ihre ihrem ihren ihrer ihres euch im in indem ins ist jede jedem jeden jeder jedes jene jenem jenen jener jenes jetzt
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 27 12:59:36 UTC 2023 - 1.5K bytes - Viewed (0) -
CLAUDE.md
# From command line (after building) ./bin/fess ``` ### Code Formatting ```bash # Format code mvn formatter:format # Add license headers mvn license:format ``` ## Tech Stack - **Web Framework**: LastaFlute (MVC framework) - **DI Container**: Lasta Di - **Data Access**: DBFlute (type-safe ORM for OpenSearch) - **Search Engine**: OpenSearch - **App Server**: Embedded Tomcat
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.bat
set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dlog4j.skipJansi=true REM SSL truststore for certificate validation over https REM FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Djavax.net.ssl.trustStore=/tech/elastic/config/truststore.jks REM FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Djavax.net.ssl.trustStorePassword=changeit REM Causes the JVM to dump its heap on OutOfMemory.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 03:48:59 UTC 2025 - 4.8K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<glob pattern="*.bup"/> </mime-type> <mime-type type="application/x-ebu-stl"> <acronym>EBU-STL</acronym> <_comment>EBU-STL subtitles</_comment> <tika:link>https://tech.ebu.ch/docs/tech/tech3264.pdf</tika:link> <magic priority="70"> <match value="STL" type="string" offset="3"> <match value=".01" type="string" offset="8" /> </match> </magic>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Oct 16 07:46:32 UTC 2025 - 320.2K bytes - Viewed (2) -
src/main/assemblies/files/fess.in.sh
#SEARCH_ENGINE_HTTP_URL=http://localhost:9200 #FESS_DICTIONARY_PATH=/var/lib/opensearch/config/ # SSL truststore for certificate validation over https #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djavax.net.ssl.trustStore=/tech/elastic/config/truststore.jks" #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djavax.net.ssl.trustStorePassword=changeit" # min and max heap sizes should be set to the same value to avoid
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 03:48:59 UTC 2025 - 5.3K bytes - Viewed (0) -
CLAUDE.md
### Essential Info - **Language**: Java 21+ - **Build**: Maven 3.x - **License**: Apache 2.0 - **DI**: LastaFlute DI - **Repo**: https://github.com/codelibs/fess-crawler ### Tech Stack - **HTTP**: Apache HttpComponents 4.5+ - **Extraction**: Apache Tika 3.0+, POI 5.3+, PDFBox 3.0+ - **Testing**: JUnit 4, UTFlute, Mockito 5.7.0 - **Storage**: In-memory (default), OpenSearch (optional)
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/HostIntervalControllerTest.java
} } long elapsed = (System.nanoTime() - time) / 1000000; // Different hosts should NOT wait for each other assertTrue(elapsed + " should be much less than " + (waittime * numTasks), elapsed < waittime * numTasks / 2); } /** * Test that file:// URLs are not delayed */ public void test_fileUrl_noDelay() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 11.4K bytes - Viewed (0) -
README.md
```java import org.codelibs.fess.suggest.request.popularwords.PopularWordsResponse; PopularWordsResponse popularWords = suggester.popularWords() .setSize(20) // top 20 words .setQuery("tech*") // filter pattern .execute() .getResponse(); popularWords.getItems().forEach(item -> { System.out.println("Popular: " + item.getText() +
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1)