- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 75 for zterm (0.02 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/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/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRelatedQuery.java
this.queries = value; } public String getTerm() { checkSpecifiedProperty("term"); return convertEmptyToNull(term); } public void setTerm(String value) { registerModifiedProperty("term"); this.term = value; } public String getUpdatedBy() { checkSpecifiedProperty("updatedBy");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRelatedContent.java
this.sortOrder = value; } public String getTerm() { checkSpecifiedProperty("term"); return convertEmptyToNull(term); } public void setTerm(String value) { registerModifiedProperty("term"); this.term = value; } public String getUpdatedBy() { checkSpecifiedProperty("updatedBy");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsKeyMatch.java
this.query = value; } public String getTerm() { checkSpecifiedProperty("term"); return convertEmptyToNull(term); } public void setTerm(String value) { registerModifiedProperty("term"); this.term = value; } public String getUpdatedBy() { checkSpecifiedProperty("updatedBy");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.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/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) -
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
QueryBuilder result = fuzzyQueryCommand.convertFuzzyQuery(context, fuzzyQuery, 1.0f); assertNotNull(result); assertTrue(result.toString().contains(text)); } } // Test with empty term text public void test_convertFuzzyQuery_withEmptyTerm() { QueryContext context = new QueryContext("test", false); Term term = new Term("title", "");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0)