- Sort Score
- Num 10 results
- Language All
Results 601 - 610 of 1,955 for ADD (0.01 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResponseDataTest.java
byte[] content = "HTML content".getBytes(StandardCharsets.UTF_8); data.setResponseBody(content); // Add metadata data.addMetaData("title", "Test Page"); data.addMetaData("description", "Test description"); // Add child URLs RequestData child1 = new RequestData(); child1.setUrl("https://example.com/child1"); data.addChildUrl(child1);Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 13 13:29:22 GMT 2025 - 14.3K bytes - Click Count (0) -
guava/src/com/google/common/math/PairedStatsAccumulator.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 08 18:35:13 GMT 2025 - 10.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java
if (pluginDeclaration != null) { pluginDeclarations.add(pluginDeclaration); } pluginIssues .computeIfAbsent(issueLocality, k -> new LinkedHashSet<>()) .add(issue); } private synchronized void reportPluginMojoIssue(
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:32 GMT 2025 - 17.5K bytes - Click Count (0) -
compat/maven-model/src/test/java/org/apache/maven/model/pom/PomMemoryAnalyzer.java
for (PathAnalysis path : allPaths) { String finalComponent = path.path.substring(path.path.lastIndexOf('/') + 1); // Add path to its group groupedPaths.computeIfAbsent(finalComponent, k -> new ArrayList<>()).add(path); // Aggregate value frequencies for the groupCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 13.4K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java
if (next == null) { break; } else { inSection.clear(); inSection.add(next); heading = next; } } else { inSection.add(next); } next = next.nextElementSibling(); } } private void wrapContentInContainer(Document document) {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue May 27 09:07:14 GMT 2025 - 11.7K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
} /** * Test clear method */ public void test_clear() { String sessionId = "test-session-015"; urlFilter.init(sessionId); // Add some patterns urlFilter.addInclude("https://example.com/.*"); urlFilter.addExclude(".*\\.jpg$"); // Verify patterns are working assertTrue(urlFilter.match("https://example.com/page"));Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Wed Sep 03 14:42:53 GMT 2025 - 19K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderFactory.java
} return false; } @Override public String toString() { return MoreObjects.toStringHelper(this) .add("duration", duration) .add("unit", unit) .toString(); } }Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 8.4K bytes - Click Count (0) -
cmd/os-instrumented.go
return func() { duration := time.Since(startTime) atomic.AddUint64(&o.operations[s], 1) o.latency[s].add(duration) } } // incTime will increment time on metric s with a specific duration. func (o *osMetrics) incTime(s osMetric, d time.Duration) { atomic.AddUint64(&o.operations[s], 1) o.latency[s].add(d) } func osTrace(s osMetric, startTime time.Time, duration time.Duration, path string, err error) madmin.TraceInfo {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 6.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
final String executeType = System.getProperty("lasta.env"); if (Constants.EXECUTE_TYPE_CRAWLER.equalsIgnoreCase(executeType)) { ptList.add(Constants.PROCESS_TYPE_REPLACE); } else { ptList.add(Constants.PROCESS_TYPE_DISPLAYING); ptList.add(Constants.PROCESS_TYPE_BOTH); } return ptList; } /** * Sets the path mapping list for a session. *
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 9.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/EnumsTest.java
for (String entry : Splitter.on(PATH_SEPARATOR.value()).split(JAVA_CLASS_PATH.value())) { try { try { urls.add(new File(entry).toURI().toURL()); } catch (SecurityException e) { // File.toURI checks to see if the file is a directory urls.add(new URL("file", null, new File(entry).getAbsolutePath())); } } catch (MalformedURLException e) {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 20:07:52 GMT 2025 - 8.3K bytes - Click Count (0)