Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for parseBoolean (0.05 sec)

  1. src/main/java/jcifs/config/PropertyConfiguration.java

            }
    
            value = props.getProperty("jcifs.smb.client.signingEnforced");
            if (value != null) {
                this.signingEnforced = Boolean.parseBoolean(value);
            }
    
            value = props.getProperty("jcifs.smb.client.encryptionEnforced");
            if (value != null) {
                this.encryptionEnabled = Boolean.parseBoolean(value);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/smb1/http/NtlmHttpFilter.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 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmHttpFilter.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");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

            return (getChildScmConnectionInheritAppendPath() != null) ? Boolean.parseBoolean(getChildScmConnectionInheritAppendPath()) : true;
        }
    
        public boolean isChildScmDeveloperConnectionInheritAppendPath() {
            return (getChildScmDeveloperConnectionInheritAppendPath() != null) ? Boolean.parseBoolean(getChildScmDeveloperConnectionInheritAppendPath()) : true;
        }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

    import static com.google.common.util.concurrent.AbstractFuture.getDoneValue;
    import static com.google.common.util.concurrent.AbstractFuture.notInstanceOfDelegatingToFuture;
    import static java.lang.Boolean.parseBoolean;
    import static java.security.AccessController.doPrivileged;
    import static java.util.Objects.requireNonNull;
    import static java.util.concurrent.TimeUnit.NANOSECONDS;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

    import static com.google.common.util.concurrent.AbstractFuture.getDoneValue;
    import static com.google.common.util.concurrent.AbstractFuture.notInstanceOfDelegatingToFuture;
    import static java.lang.Boolean.parseBoolean;
    import static java.security.AccessController.doPrivileged;
    import static java.util.Objects.requireNonNull;
    import static java.util.concurrent.TimeUnit.NANOSECONDS;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

            final Object obj = get(key);
    
            final boolean value;
            if (obj == null) {
                value = defaultValue;
            } else {
                value = Boolean.parseBoolean(obj.toString());
            }
    
            return value;
        }
    
        /**
         * Sets a setting value.
         * @param key The key of the setting.
         * @param value The value to set.
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            if (ignore == null) {
                if (fessConfig.isCrawlerIgnoreRobotsTags()) {
                    return;
                }
            } else if (Boolean.parseBoolean(ignore)) {
                return;
            }
    
            // meta tag
            try {
                final Node value = getXPathAPI().selectSingleNode(document, META_NAME_ROBOTS_CONTENT);
                if (value != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
Back to top