- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 93 for zterm (0.04 sec)
-
src/main/java/jcifs/dcerpc/UnicodeString.java
* */ public class UnicodeString extends rpc.unicode_string { boolean zterm; /** * Constructs a UnicodeString with zero termination option. * * @param zterm * whether the string should be zero terminated */ public UnicodeString(final boolean zterm) { this.zterm = zterm; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UnicodeStringTest.java
assertFalse(unicodeStringFalse.zterm, "zterm should be false"); } @Test void testConstructorWithStringAndZterm() { // Test with a non-empty string and zterm = true String testStringTrue = "Test"; UnicodeString unicodeStringTrue = new UnicodeString(testStringTrue, true); assertTrue(unicodeStringTrue.zterm, "zterm should be true");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UnicodeString.java
*/ public class UnicodeString extends rpc.unicode_string { boolean zterm; /** * Constructs a UnicodeString with zero termination option. * * @param zterm whether the string should be zero terminated */ public UnicodeString(final boolean zterm) { this.zterm = zterm; } /** * Constructs a UnicodeString by wrapping an existing unicode_string.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java
} public void test_execute_withTermQuery() { // Test executing BoostQuery with a TermQuery inside Term term = new Term("field", "value"); TermQuery termQuery = new TermQuery(term); BoostQuery boostQuery = new BoostQuery(termQuery, 2.5f); 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 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
} } public void test_convertPhraseQuery_singleTerm_defaultField_bool() { // Test with single term in default field PhraseQuery.Builder builder = new PhraseQuery.Builder(); builder.add(new Term(Constants.DEFAULT_FIELD, "test")); 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/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
BooleanQuery.Builder boolQueryBuilder = new BooleanQuery.Builder(); TermQuery termQuery1 = new TermQuery(new Term("field1", "value1")); TermQuery termQuery2 = new TermQuery(new Term("field2", "value2")); TermQuery termQuery3 = new TermQuery(new Term("field3", "value3")); boolQueryBuilder.add(termQuery1, BooleanClause.Occur.MUST);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
} private String toLowerCase(final String term) { return term != null ? term.toLowerCase(Locale.ROOT) : term; } /** * Sets the prefix used to identify regex patterns in related content terms. * When a term starts with this prefix, it is treated as a regular expression * pattern rather than an exact match term. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java
WildcardQuery wildcardQuery = new WildcardQuery(new Term("title", "test*")); QueryBuilder queryBuilder = queryCommand.execute(queryContext, wildcardQuery, 1.0f); assertNotNull(queryBuilder); } public void test_execute_withNonWildcardQuery() { QueryContext queryContext = new QueryContext("test", false); TermQuery termQuery = new TermQuery(new Term("title", "test")); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
return buildMatchPhraseQuery(field, text).boost(boost); } /** * Converts a term query to a keyword-based exact term query. * * @param fessConfig the Fess configuration * @param context the query context * @param termQuery the term query to convert * @param boost the boost value to apply * @param field the field name * @param text the query text
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
return queries; } } return StringUtil.EMPTY_STRINGS; } private String toLowerCase(final String term) { return term != null ? term.toLowerCase(Locale.ROOT) : term; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0)