- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for getBoolean (0.22 sec)
-
src/main/java/jcifs/smb1/smb1/SmbConstants.java
/** Whether to use Unicode strings */ boolean USE_UNICODE = Config.getBoolean("jcifs.smb1.smb.client.useUnicode", true); /** Whether to force Unicode usage */ boolean FORCE_UNICODE = Config.getBoolean("jcifs.smb1.smb.client.useUnicode", false); /** Whether to use NT status codes */ boolean USE_NTSTATUS = Config.getBoolean("jcifs.smb1.smb.client.useNtStatus", true); /** Whether signing is preferred */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
String response = checkMethodBase(requestBody).post("/api/admin/webconfig/setting").asString(); JsonPath jsonPath = JsonPath.from(response); assertTrue(jsonPath.getBoolean("response.created")); assertEquals(0, jsonPath.getInt("response.status")); return jsonPath.getString("response.id"); } protected static List<String> getWebConfigIds(final String namePrefix) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
} } static LogStream log = LogStream.getInstance(); static final boolean strictView = Config.getBoolean("jcifs.smb1.smb.client.dfs.strictView", false); static final long TTL = Config.getLong("jcifs.smb1.smb.client.dfs.ttl", 300); static final boolean DISABLED = Config.getBoolean("jcifs.smb1.smb.client.dfs.disabled", false); /** * Sentinel cache entry indicating a negative cache result */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
Response response = checkMethodBase(labelBody).post("/api/admin/labeltype/setting"); JsonPath jsonPath = JsonPath.from(response.asString()); assertTrue(jsonPath.getBoolean("response.created")); assertEquals(0, jsonPath.getInt("response.status")); return jsonPath.get("response.id"); } private static String createCrawlLabel() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
} catch (final IOException ioe) { throw new ServletException(ioe.getMessage()); } this.enableBasic = Config.getBoolean(p, "jcifs.http.enableBasic", false); this.insecureBasic = Config.getBoolean(p, "jcifs.http.insecureBasic", false); this.realm = p.getProperty("jcifs.http.basicRealm"); if (this.realm == null) { this.realm = "jCIFS";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
style = sb.toString(); } catch (final IOException ioe) { throw new ServletException(ioe.getMessage()); } enableBasic = Config.getBoolean("jcifs.smb1.http.enableBasic", false); insecureBasic = Config.getBoolean("jcifs.smb1.http.insecureBasic", false); realm = Config.getProperty("jcifs.smb1.http.basicRealm"); if (realm == null) { realm = "jCIFS"; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
domainController = Config.getProperty("jcifs.smb1.http.domainController"); if (domainController == null) { domainController = defaultDomain; loadBalance = Config.getBoolean("jcifs.smb1.http.loadBalance", true); } enableBasic = Boolean.parseBoolean(Config.getProperty("jcifs.smb1.http.enableBasic"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
* @param def the default value to return if the property is not found * @return the property value as a boolean, or the default value */ public static boolean getBoolean(final String key, boolean def) { final String b = getProperty(key); if (b != null) { def = b.toLowerCase().equals("true"); } return def; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type2Message.java
private String target; private byte[] context; private byte[] targetInformation; static { DEFAULT_FLAGS = NTLMSSP_NEGOTIATE_NTLM | (Config.getBoolean("jcifs.smb1.smb.client.useUnicode", true) ? NTLMSSP_NEGOTIATE_UNICODE : NTLMSSP_NEGOTIATE_OEM); DEFAULT_DOMAIN = Config.getProperty("jcifs.smb1.smb.client.domain", null); byte[] domain = {};
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
if (this.domainController == null) { this.domainController = this.defaultDomain; this.loadBalance = Config.getBoolean(p, "jcifs.http.loadBalance", true); } this.enableBasic = Boolean.parseBoolean(p.getProperty("jcifs.http.enableBasic"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0)