Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseBoolean (0.09 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    if (Constants.TRUE.equalsIgnoreCase(trackTotalHits) || Constants.FALSE.equalsIgnoreCase(trackTotalHits)) {
                        searchRequestBuilder.setTrackTotalHits(Boolean.parseBoolean(trackTotalHits));
                        return;
                    }
                    try {
                        searchRequestBuilder.setTrackTotalHitsUpTo(Integer.parseInt(trackTotalHits));
                        return;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top