- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 714 for complex (0.05 sec)
-
src/main/java/jcifs/util/InputValidator.java
private static final Pattern VALID_USERNAME = Pattern.compile("^[a-zA-Z0-9._\\-@]+$"); private static final Pattern VALID_DOMAIN = Pattern.compile("^[a-zA-Z0-9._\\-]+$"); private static final Pattern VALID_SHARE = Pattern.compile("^[a-zA-Z0-9._\\-$]+$"); private static final Pattern PATH_TRAVERSAL = Pattern.compile("\\.\\.[\\\\/]"); private static final Pattern INVALID_PATH_CHARS = Pattern.compile("[\\x00-\\x1f\"*:<>?|]"); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.5K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t12/ProjectInheritanceTest.java
Plugin compilerPlugin = (Plugin) pluginMap.get("org.apache.maven.plugins:maven-compiler-plugin"); assertNotNull(compilerPlugin); Map executionMap = compilerPlugin.getExecutionsAsMap(); assertNull( executionMap.get("test"), "Plugin execution: 'test' should NOT exist in the compiler plugin specification for the child project!"); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue May 27 13:59:13 UTC 2025 - 2.6K bytes - Viewed (0) -
callbacks.go
c.processor.callbacks = append(c.processor.callbacks, c) return c.processor.compile() } func (c *callback) Remove(name string) error { c.processor.db.Logger.Warn(context.Background(), "removing callback `%s` from %s\n", name, utils.FileWithLineNum()) c.name = name c.remove = true c.processor.callbacks = append(c.processor.callbacks, c) return c.processor.compile() } func (c *callback) Replace(name string, fn func(*DB)) error {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Aug 26 06:24:29 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
// Patterns for sensitive data - compiled once and cached private static final Pattern PASSWORD_PATTERN = Pattern.compile( "(?i)(password|passwd|pwd|secret|token|key|credential|auth)([\"']?\\s*[:=]\\s*[\"']?)([^\"',\\s]+)", Pattern.CASE_INSENSITIVE); private static final Pattern IP_PATTERN = Pattern.compile("\\b(?:[0-9]{1,3}\\.){3}[0-9]{1,3}\\b");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
/** Pattern for matching local file paths */ protected static final Pattern LOCAL_PATH_PATTERN = Pattern.compile("^file:/+[a-zA-Z]:"); /** Pattern for matching shared folder paths */ protected static final Pattern SHARED_FOLDER_PATTERN = Pattern.compile("^file:/+[^/]\\."); /** Ellipsis string for text truncation */ protected static final String ELLIPSIS = "...";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java
return null; } if (requestType.equals(MetadataResolutionRequestTypeEnum.classpathCompile)) { return conflictResolver.resolveConflicts(getGraph(), ArtifactScopeEnum.compile); } else if (requestType.equals(MetadataResolutionRequestTypeEnum.classpathRuntime)) { return conflictResolver.resolveConflicts(getGraph(), ArtifactScopeEnum.runtime);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplSecurityTest.java
}); } // Start all threads simultaneously startLatch.countDown(); // Wait for completion assertTrue(endLatch.await(30, TimeUnit.SECONDS), "All threads should complete within timeout"); executor.shutdown(); // Then - Verify no exceptions occurred if (!exceptions.isEmpty()) { fail("Concurrent operations caused exceptions: " + exceptions.get(0));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
Set<String> sessionIds = processHelper.getRunningSessionIdSet(); assertTrue(sessionIds.contains(sessionId)); // Wait a bit for the process to complete Thread.sleep(100); // Clean up processHelper.destroyProcess(sessionId); } catch (Exception e) { fail("Unexpected exception: " + e.getMessage()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/util/PathValidator.java
private static final Pattern TRAVERSAL_PATTERN = Pattern.compile("\\.\\.[\\\\/]|[\\\\/]\\.\\."); private static final Pattern DOUBLE_DOT_PATTERN = Pattern.compile("\\.\\."); private static final Pattern ENCODED_TRAVERSAL = Pattern.compile("%2e%2e|%252e%252e", Pattern.CASE_INSENSITIVE); private static final Pattern UNICODE_TRAVERSAL = Pattern.compile("\\\\u002e\\\\u002e|\\\\u002E\\\\u002E", Pattern.CASE_INSENSITIVE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java
* If the user did not specify any includes, the given {@code defaultIncludes} are used. * These defaults depend on the plugin. * For example, the default include of the Java compiler plugin is <code>"**/*.java"</code>. * * <p>If the user did not specify any excludes, the default is often files generated * by Source Code Management (<abbr>SCM</abbr>) software or by the operating system.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 6.5K bytes - Viewed (0)