- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 198 for setProperty (0.24 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
final String tempDir = tempDirFile.getAbsolutePath(); if (tempDir != null && tempDir.length() > 0) { return tempDir; } } return System.getProperty(JAVA_IO_TMPDIR_KEY); } // ----------------------------------------------------- // ServletFileUpload Settings // --------------------------
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } if (baseDir == null) { baseDir = new File(System.getProperty("java.io.tmpdir")); } destoryTimer = new Timer("CommandGeneratorDestoryTimer-" + ComponentUtil.getSystemHelper().getCurrentTimeAsLong(), true); updateProperties(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
private ByteArrayOutputStream cachedOutput; private String authProperty; private String authMethod; private boolean handshakeComplete; static { String domain = System.getProperty("http.auth.ntlm.domain"); if (domain == null) { domain = Type3Message.getDefaultDomain(); } DEFAULT_DOMAIN = domain; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
* JCIFS34_172_A6 will be dynamically generated for the * client. This is primarily (exclusively?) used as a * CallingName during session establishment. */ localHostname = Config.getProperty("jcifs.smb1.netbios.hostname", null); if (localHostname == null || localHostname.length() == 0) { final byte[] addr = localInetAddress.getAddress(); localHostname =
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServiceClient.java
private static final int LPORT = Config.getInt("jcifs.smb1.netbios.lport", 0); private static final InetAddress LADDR = Config.getInetAddress("jcifs.smb1.netbios.laddr", null); private static final String RO = Config.getProperty("jcifs.smb1.resolveOrder"); private static LogStream log = LogStream.getInstance(); private final Object LOCK = new Object(); private final int lport; private int closeTimeout;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
assertNotNull(testConfig.getMachineId()); assertEquals(32, testConfig.getMachineId().length); // Check native OS assertNotNull(testConfig.getNativeOs()); assertEquals(System.getProperty("os.name"), testConfig.getNativeOs()); // Check flags2 assertTrue(testConfig.getFlags2() > 0); assertTrue((testConfig.getFlags2() & SmbConstants.FLAGS2_LONG_FILENAMES) != 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/BigIntegerMathTest.java
private static final BigInteger BAD_FOR_ANDROID_Q = new BigInteger("-1"); @GwtIncompatible // TODO @AndroidIncompatible // slow public void testDivNonZeroExact() { String runtimeName = System.getProperty("java.runtime.name"); boolean isAndroid = runtimeName != null && runtimeName.contains("Android"); for (BigInteger p : NONZERO_BIGINTEGER_CANDIDATES) { for (BigInteger q : NONZERO_BIGINTEGER_CANDIDATES) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HexdumpTest.java
assertNotNull(output); assertTrue(output.contains("00000:")); // Calculate expected number of lines int expectedLines = (size + 15) / 16; String[] lines = output.split(System.getProperty("line.separator")); assertTrue(lines.length >= expectedLines); } @Test @DisplayName("Should handle hexdump with offset") void testHexdumpWithOffset() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java
* Load index settings. * @return Index settings * @throws IOException I/O exception */ protected String loadIndexSettings() throws IOException { final String dictionaryPath = System.getProperty("fess.dictionary.path", StringUtil.EMPTY); final StringBuilder sb = new StringBuilder(); try (BufferedReader br = new BufferedReader(new InputStreamReader(
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 15.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
protected static void deleteLabel(String id) { checkMethodBase(new HashMap<>()).delete("/api/admin/labeltype/setting/" + id); } public static String getTestDataPath() { return System.getProperty("test.testdata.path", DEFAULT_TESTDATA_PATH); } protected String getApiPath() { return "json"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0)