- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 152 for Ford (2.03 sec)
-
src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java
/** Number of records per page */ private int pageSize; /** Current page number */ private int currentPageNumber; /** Search parameter: elevate word ID */ public String id; /** Search parameter: suggest word */ public String suggestWord; /** Search parameter: boost value */ public String boost; /** Search parameter: created by user */ public String createdBy;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Crc32cHashFunction.java
static final int INVERSE_COMPUTE_FOR_WORD_OF_ALL_1S = 0xeee3ddcd; static int computeForWord(int word) { return strideTable[3][word & 0xFF] ^ strideTable[2][(word >>> 8) & 0xFF] ^ strideTable[1][(word >>> 16) & 0xFF] ^ strideTable[0][word >>> 24]; } static int combine(int csum, int crc) { csum ^= crc; for (int i = 0; i < 4; i++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 21.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
* This class represents a single protected word entry in the dictionary. */ public class ProtwordsItem extends DictionaryItem { private final String input; private String newInput; /** * Constructor for ProtwordsItem. * @param id the unique identifier for this item * @param input the protected word input */ public ProtwordsItem(final long id, final String input) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
PhraseQuery.Builder builder = new PhraseQuery.Builder(); String[] words = { "this", "is", "a", "very", "long", "phrase", "query" }; for (String word : words) { builder.add(new Term(Constants.DEFAULT_FIELD, word)); } PhraseQuery phraseQuery = builder.build(); QueryContext context = new QueryContext("test", false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/DownloadForm.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.badword; /** * The download form for Bad Word. * */ public class DownloadForm { /** * Default constructor. */ public DownloadForm() { // Use of default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 864 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
} public void deleteElevateWord(String word, boolean apply) { // Mock implementation } public void addElevateWord(org.codelibs.fess.suggest.entity.ElevateWord elevateWord, boolean apply) { // Mock implementation } public void addBadWord(String word, boolean apply) { // Mock implementation }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16K bytes - Viewed (0) -
src/main/resources/fess_label_fr.properties
labels.facet_contentLength_5m=5 Mo - labels.facet_filetype_title=Type de fichier 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=Feuille de calcul ODF labels.facet_filetype_odp=Présentation ODF 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 - 45.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Suggest Word */ public static final String LABELS_menu_suggest_word = "{labels.menu_suggest_word}"; /** The key of the message: Elevate Word */ public static final String LABELS_menu_elevate_word = "{labels.menu_elevate_word}"; /** The key of the message: Bad Word */ public static final String LABELS_menu_bad_word = "{labels.menu_bad_word}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 146.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComFindClose2Test.java
import org.mockito.junit.jupiter.MockitoExtension; import jcifs.Configuration; /** * Unit tests for {@link SmbComFindClose2}. * The class is intentionally tiny – the tests mainly verify that the * parameter word (the session identifier) is written in little‑endian form * and that the {@code toString} helper contains the expected values. * * <p>The tests also exercise edge cases such as negative (wrap‑around) session
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.1K bytes - Viewed (0)