Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isBlacklisted (0.04 sec)

  1. src/main/java/jcifs/util/PathValidator.java

            }
    
            // Normalize the path
            String normalized = normalizePath(path);
    
            // Check against blacklist
            if (isBlacklisted(normalized)) {
                log.warn("Path is blacklisted: {}", sanitizeForLog(normalized));
                throw new SmbException("Path is not allowed");
            }
    
            // Check against whitelist if configured
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

                return getId();
            }
    
            @Override
            public boolean isUniqueVersion() {
                return true;
            }
    
            @Override
            public boolean isBlacklisted() {
                return false;
            }
    
            @Override
            public void setBlacklisted(boolean blackListed) {}
    
            @Override
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 13.1K bytes
    - Viewed (0)
Back to top