Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 302 for if (0.16 sec)

  1. src/main/java/jcifs/smb1/smb1/Dfs.java

            if (DISABLED)
                return null;
    
            try {
                String p = "\\" + domain + "\\" + root;
                if (path != null)
                    p += path;
                DfsReferral dr = trans.getDfsReferrals(auth, p, 0);
                if (dr != null)
                    return dr;
            } catch (IOException ioe) {
                if (log.level >= 4)
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            if (lastModifiedObj instanceof Date) {
                return (Date) lastModifiedObj;
            }
            if (lastModifiedObj instanceof String) {
                final Date lastModified = FessFunctions.parseDate(lastModifiedObj.toString());
                if (lastModified != null) {
                    return lastModified;
                }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

        public Set<String> getMatchedLabelValueSet(final String path) {
            if (labelTypePatternList == null) {
                synchronized (this) {
                    if (labelTypePatternList == null) {
                        buildLabelTypePatternList(ComponentUtil.getComponent(LabelTypeService.class).getLabelTypeList());
                    }
                }
            }
    
            if (labelTypePatternList.isEmpty()) {
                return Collections.emptySet();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (2)
  4. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                while( st.hasMoreTokens() ) {
                    String s = st.nextToken().trim();
                    if( s.equalsIgnoreCase( "LMHOSTS" )) {
                        tmp[i++] = RESOLVER_LMHOSTS;
                    } else if( s.equalsIgnoreCase( "WINS" )) {
                        if( NbtAddress.getWINSAddress() == null ) {
                            if( log.level > 1 ) {
                                log.println( "NetBIOS resolveOrder specifies WINS however the " +
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsThumbnailQueueCA.java

            ThumbnailQueueCQ cq = new ThumbnailQueueCQ();
            if (queryLambda != null) {
                queryLambda.callback(cq);
            }
            FilterAggregationBuilder builder = regFilterA(name, cq.getQuery());
            if (opLambda != null) {
                opLambda.callback(builder);
            }
            if (aggsLambda != null) {
                ThumbnailQueueCA ca = new ThumbnailQueueCA();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 38.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SpnegoContext.java

        private void verifyMechListMIC ( byte[] mechanismListMIC ) throws CIFSException {
            if ( this.disableMic ) {
                return;
            }
    
            // No MIC verification if not present and not required
            // or if the chosen mechanism is our preferred one
            if ( ( mechanismListMIC == null || !this.mechContext.supportsIntegrity() ) && this.requireMic
                    && !this.mechContext.isPreferredMech(this.selectedMech) ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                char c = data[ i ];
                if ( c < 48 || c > 57 ) {
                    return doNameQuery(name, svr);
                }
                int b = 0x00;
                while ( c != '.' ) {
                    if ( c < 48 || c > 57 ) {
                        return doNameQuery(name, svr);
                    }
                    b = b * 10 + c - '0';
    
                    if ( ++i >= data.length )
                        break;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                    if (url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("file:") || url.startsWith("ftp:")) {
                        if (url.endsWith("/")) {
                            // directory
                            return true;
                        }
                        final PermissionHelper permissionHelper = ComponentUtil.getPermissionHelper();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/UniAddress.java

                while( st.hasMoreTokens() ) {
                    String s = st.nextToken().trim();
                    if( s.equalsIgnoreCase( "LMHOSTS" )) {
                        tmp[i++] = RESOLVER_LMHOSTS;
                    } else if( s.equalsIgnoreCase( "WINS" )) {
                        if( nbns == null ) {
                            if( log.level > 1 ) {
                                log.println( "UniAddress resolveOrder specifies WINS however the " +
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

            if (isLoginRequired()) {
                return redirectToLogin();
            }
    
            if (viewHelper.isUseSession()) {
                final HttpSession session = request.getSession(false);
                if (session != null) {
                    final Object resultsPerPage = session.getAttribute(Constants.RESULTS_PER_PAGE);
                    if (resultsPerPage instanceof Integer) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
Back to top