- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 1,408 for add8 (0.02 sec)
-
src/main/java/org/codelibs/fess/job/ExecJob.java
} cmdList.add(buf.toString()); } else if (defaultValue != null) { cmdList.add("-D" + name + "=" + defaultValue); } } /** * Adds all Fess configuration properties to the command list. * Properties starting with the Fess config prefix are included. * * @param cmdList the command list to add properties to */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SystemUtil.java
*/ package org.codelibs.fess.util; import org.codelibs.fess.Constants; /** * This class provides system-related utility methods. * It extends {@link org.codelibs.core.lang.SystemUtil} and adds * methods specific to the Fess application. */ public class SystemUtil extends org.codelibs.core.lang.SystemUtil { /** * Private constructor to prevent instantiation. */ private SystemUtil() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RuleManagerImpl.java
*/ /** * Adds a rule to the end of the rule list. * @param rule the rule to add */ @Override public void addRule(final Rule rule) { ruleList.add(rule); } /** * Adds a rule at the specified position in the rule list. * @param index the position to insert the rule * @param rule the rule to add */ @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/ChannelManagerTest.java
assertTrue(channelManager.getHealthyChannels().isEmpty()); // Add a healthy channel manually for testing InetAddress addr = InetAddress.getByName("192.168.1.100"); NetworkInterfaceInfo localInterface = new NetworkInterfaceInfo(addr, 1000); NetworkInterfaceInfo remoteInterface = new NetworkInterfaceInfo(addr, 1000);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/MultiChannelIntegrationTest.java
// Test failover mechanism ChannelFailover failover = new ChannelFailover(channelManager); // Create a channel InetAddress addr = InetAddress.getByName("192.168.1.100"); NetworkInterfaceInfo nic = new NetworkInterfaceInfo(addr, 445); // Mock transport doesn't have isConnected, but we can work around it ChannelInfo channel = new ChannelInfo("failover-test", mockTransport, nic, nic);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 8.2K bytes - Viewed (0) -
cmd/server-main.go
addrs.Add(net.JoinHostPort(ip, globalMinioPort)) } host, _ := mustSplitHostPort(globalMinioAddr) if host != "" { ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second) defer cancel() haddrs, err := globalDNSCache.LookupHost(ctx, host) if err == nil { for _, addr := range haddrs { addrs.Add(net.JoinHostPort(addr, globalMinioPort)) } } else {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:18:36 UTC 2025 - 35.9K bytes - Viewed (4) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java
urlQueueMap.put(sessionId, urlQueueList); } return urlQueueList; } /** * Adds the provided URL queue to the existing queue for the specified session. * @param sessionId the session ID * @param urlQueueList the URL queue to add */ public synchronized void addUrlQueueList(final String sessionId, final Queue<UrlQueueImpl<Long>> urlQueueList) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java
esUrlFilter.setFilterType(INCLUDE); esUrlFilter.setUrl(url); urlFilterList.add(esUrlFilter); invalidateSet.add(sessionId); } insertAll(urlFilterList, OpType.INDEX); invalidateSet.forEach(s -> includeFilterCache.invalidate(s)); } /** * Adds an exclude URL filter for the specified session. * * @param sessionId The session ID.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/EvictingQueue.java
return delegate; } /** * Adds the given element to this queue. If the queue is currently full, the element at the head * of the queue is evicted to make room. * * @return {@code true} always */ @Override @CanIgnoreReturnValue public boolean offer(E e) { return add(e); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.6K bytes - Viewed (0)