- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 227 for word2 (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java
} /** Dictionary identifier */ @Required public String dictId; /** CRUD operation mode (CREATE, EDIT, etc.) */ @ValidateTypeFailure public Integer crudMode; /** Token (word) to be added to the dictionary */ @Required @Size(max = 1000) public String token; /** Segmentation information for the token */ @Required @Size(max = 1000) public String segmentation;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
* This class provides constants for system configuration, crawling and indexing defaults, user agent strings, * status values, field names, date/time formats, authentication types, and various reserved words and patterns. * * <p>Key constant categories include:</p> * <ul> * <li>System configuration property keys</li> * <li>Default values for crawling and indexing operations</li>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/CreateBody.java
*/ package org.codelibs.fess.app.web.api.admin.elevateword; import org.codelibs.fess.app.web.admin.elevateword.CreateForm; /** * Request body for creating elevate word via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */ public CreateBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1012 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/CreateBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.badword; import org.codelibs.fess.app.web.admin.badword.CreateForm; /** * Request body for creating bad word via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */ public CreateBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1001 bytes - Viewed (0) -
src/main/resources/fess_label_ru.properties
labels.facet_contentLength_5m=5 МБ - labels.facet_filetype_title=Тип файла labels.facet_filetype_html=HTML labels.facet_filetype_word=MS Word labels.facet_filetype_excel=MS Excel labels.facet_filetype_powerpoint=MS PowerPoint labels.facet_filetype_odt=ODF Word labels.facet_filetype_ods=ODF Spreadsheet labels.facet_filetype_odp=ODF Presentation labels.facet_filetype_pdf=PDF labels.facet_filetype_fb2=FictionBook
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 55.8K bytes - Viewed (0) -
src/main/resources/fess_label_nl.properties
labels.facet_contentLength_5m=5MB - labels.facet_filetype_title=Bestandstype labels.facet_filetype_html=HTML labels.facet_filetype_word=MS Word labels.facet_filetype_excel=MS Excel labels.facet_filetype_powerpoint=MS PowerPoint labels.facet_filetype_odt=ODF Word labels.facet_filetype_ods=ODF Spreadsheet labels.facet_filetype_odp=ODF Presentatie labels.facet_filetype_pdf=PDF labels.facet_filetype_fb2=FictionBook
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 42.8K bytes - Viewed (1) -
src/test/java/jcifs/smb1/smb1/SmbComDeleteTest.java
assertEquals(ServerMessageBlock.SMB_COM_DELETE, smbComDelete.command); } @Test public void testWriteParameterWordsWireFormat() { // Test the writing of parameter words to a byte array byte[] dst = new byte[2]; int bytesWritten = smbComDelete.writeParameterWordsWireFormat(dst, 0); assertEquals(2, bytesWritten); // ATTR_HIDDEN (0x02) | ATTR_SYSTEM (0x04) = 0x06
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
import org.codelibs.fess.dict.DictionaryFile; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalEntity; /** * Dictionary file for protected words. * This class manages the reading, writing, and updating of protected words dictionary files. */ public class ProtwordsFile extends DictionaryFile<ProtwordsItem> { private static final String PROTWORDS = "protwords";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtCancelTest.java
void testWireFormatMethodsWithDifferentPositions(int position) throws Exception { // Given byte[] buffer = new byte[100]; // Test write parameter words Method writeParams = SmbComNtCancel.class.getDeclaredMethod("writeParameterWordsWireFormat", byte[].class, int.class); writeParams.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.8K bytes - Viewed (0) -
cmd/update.go
// parseReleaseData - parses release info file content fetched from // official minio download server. // // The expected format is a single line with two words like: // // fbe246edbd382902db9a4035df7dce8cb441357d minio.RELEASE.2016-10-07T01-16-39Z.<hotfix_optional> // // The second word must be `minio.` appended to a standard release tag. func parseReleaseData(data string) (sha256Sum []byte, releaseTime time.Time, releaseInfo string, err error) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0)