- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for parseBoolean (0.04 sec)
-
api/maven-api-core/src/test/java/org/apache/maven/api/feature/FeaturesTest.java
// Test with integer 1 (should use toString() and then parseBoolean) Map<String, Object> properties = Map.of(Constants.MAVEN_DEPLOY_BUILD_POM, 1); assertFalse(Features.deployBuildPom(properties)); // "1".parseBoolean() = false } @Test void testDeployBuildPomWithIntegerZero() { // Test with integer 0 (should use toString() and then parseBoolean)
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 04 19:42:23 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
domainController = defaultDomain; loadBalance = Config.getBoolean("jcifs.smb1.http.loadBalance", true); } enableBasic = Boolean.parseBoolean(Config.getProperty("jcifs.smb1.http.enableBasic")); insecureBasic = Boolean.parseBoolean(Config.getProperty("jcifs.smb1.http.insecureBasic")); realm = Config.getProperty("jcifs.smb1.http.basicRealm"); if (realm == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
this.loadBalance = Config.getBoolean(p, "jcifs.http.loadBalance", true); } this.enableBasic = Boolean.parseBoolean(p.getProperty("jcifs.http.enableBasic")); this.insecureBasic = Boolean.parseBoolean(p.getProperty("jcifs.http.insecureBasic")); this.realm = p.getProperty("jcifs.http.basicRealm"); if (this.realm == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/feature/Features.java
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 04 19:42:23 UTC 2025 - 2.5K bytes - Viewed (0)