- Sort Score
- Result 10 results
- Languages All
Results 191 - 198 of 198 for setProperty (0.07 sec)
-
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
* @return The index settings as a string. * @throws IOException If an I/O error occurs. */ protected String loadIndexSettings() throws IOException { final String dictionaryPath = System.getProperty("fess.dictionary.path", StringUtil.EMPTY); final StringBuilder sb = new StringBuilder(); try (BufferedReader br =
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/LmhostsTest.java
File lmhostsFile = tempDir.resolve("lmhosts").toFile(); lmhostsFile.createNewFile(); // Make file unreadable on Unix-like systems boolean isWindows = System.getProperty("os.name").toLowerCase().contains("windows"); if (!isWindows) { assertTrue(lmhostsFile.setReadable(false)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
/** * Do not instantiate. */ protected StringUtil() { } /** * A system line separator. */ public static final String RETURN_STRING = System.getProperty("line.separator"); /** * An empty string <code>""</code>. */ public static final String EMPTY = ""; /** * An empty array of strings. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
private static int[] resolveOrder; private static InetAddress baddr; private static LogStream log = LogStream.getInstance(); static { final String ro = Config.getProperty("jcifs.smb1.resolveOrder"); final InetAddress nbns = NbtAddress.getWINSAddress(); try { baddr = Config.getInetAddress("jcifs.smb1.netbios.baddr", InetAddress.getByName("255.255.255.255"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
* Parses the "rank.fusion.searchers" system property to determine which searchers * are available for use in rank fusion processing. */ protected void load() { final String value = System.getProperty("rank.fusion.searchers"); if (StringUtil.isBlank(value)) { availableSearcherNameSet = Collections.emptySet(); } else { availableSearcherNameSet = StreamUtil.split(value, ",")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
// Android's response to the FAIL_HANDSHAKE } is SSLException -> { // JDK 11 response to the FAIL_HANDSHAKE val jvmVersion = System.getProperty("java.specification.version") assertThat(jvmVersion).isEqualTo("11") } else -> throw expected } } } @Test fun tlsHostnameVerificationFailure() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 146.6K bytes - Viewed (0)