- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 1,355 for add1 (0.02 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
CrawlingParameterUtil.setDataService(null); } log(logHelper, LogType.FINISHED_THREAD, crawlerContext); } /** * Adds sitemaps from robots.txt to the crawling queue. * @param urlQueue The URL queue to add sitemaps to. */ protected void addSitemapsFromRobotsTxt(final UrlQueue<?> urlQueue) { final String[] sitemaps = crawlerContext.removeSitemaps();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
} return responseData; } /** * Parses file ownership attributes and adds them to the response data. * * @param responseData the response data to add attributes to * @param file the file to parse attributes from * @return the file owner attribute view * @throws CrawlingAccessException if parsing fails */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
} else { UniAddress addr; try { addr = getAddress(); } catch (final UnknownHostException uhe) { throw new SmbException(url.toString(), uhe); } if (addr.getAddress() instanceof NbtAddress) { final int code = ((NbtAddress) addr.getAddress()).getNameType();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
cmd/admin-handlers.go
anonAddr := func(addr string) string { if anonParam != anonymizeStrict { return addr } newAddr, found := hostAnonymizer[addr] if found { return newAddr } // If we reach here, it means that the given addr doesn't contain any of the hosts. // Return it as is. Can happen for drive paths in non-distributed mode return addr }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 99.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
if (proxy == null) { if (StringUtil.isNotBlank(getHttpProxyHost()) && getHttpProxyPortAsInteger() != null) { final SocketAddress addr = new InetSocketAddress(getHttpProxyHost(), getHttpProxyPortAsInteger()); proxy = new Proxy(Type.HTTP, addr); if (StringUtil.isNotBlank(getHttpProxyUsername())) { Authenticator.setDefault(new Authenticator() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
*/ public void register() { ComponentUtil.getThumbnailManager().add(this); } /** * Default constructor for BaseThumbnailGenerator. */ public BaseThumbnailGenerator() { // Default constructor } /** * Adds a condition for thumbnail generation. * @param key The condition key.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
/** * Converts a sort field query to add sort criteria to the context. * * @param fessConfig the Fess configuration * @param context the query context * @param termQuery the term query to convert * @param boost the boost value to apply * @param field the field name * @param text the query text * @return null as this method only adds sort criteria */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.6K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
public static class RdmaChannelInfo { private final int remoteKey; private final long address; private final int length; public RdmaChannelInfo(int key, long addr, int len) { this.remoteKey = key; this.address = addr; this.length = len; } // Getters... } ``` ## 6. Configuration ### 6.1 Configuration Properties ```java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java
assertIntact(mmHeap); } public void testSmall() { MinMaxPriorityQueue<Integer> mmHeap = MinMaxPriorityQueue.create(); mmHeap.add(1); mmHeap.add(4); mmHeap.add(2); mmHeap.add(3); assertEquals(4, (int) mmHeap.pollLast()); assertEquals(3, (int) mmHeap.peekLast()); assertEquals(3, (int) mmHeap.pollLast()); assertEquals(1, (int) mmHeap.peek());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
- The DaemonSet, Deployment, ReplicaSet, and StatefulSet kinds are now in the apps/v1beta2 group and version. - The apps/v1beta2 group version adds a Scale subresource for the StatefulSet kind. - All kinds in the apps/v1beta2 group version add a corresponding conditions kind. #### Behavioral Changes - For all kinds in the API group version, a spec.selector default value is no longer
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0)