- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 149 for metadata (0.08 sec)
-
src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java
import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /** * SMB2 Set Info request message. This command is used to modify file attributes, * security information, or other metadata on the server. * * @author mbechler * */ public class Smb2SetInfoRequest extends ServerMessageBlock2Request<Smb2SetInfoResponse> implements RequestWithFileId { private byte[] fileId;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
/** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FtpClient.class); /** Metadata key for FTP file group */ public static final String FTP_FILE_GROUP = "ftpFileGroup"; /** Metadata key for FTP file user */ public static final String FTP_FILE_USER = "ftpFileUser"; /** Property name for FTP authentications */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 40K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancerTest.java
when(mockChannelManager.getHealthyChannels()).thenReturn(Arrays.asList(channel1, channel2)); ChannelInfo selected = loadBalancer.selectChannel(queryInfo); // Should prefer less loaded channel for metadata operations assertEquals(channel1, selected); } @Test void testAffinityBasedStrategy() throws Exception { loadBalancer.setStrategy(LoadBalancingStrategy.AFFINITY_BASED);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
* This method checks for concurrent modifications by comparing timestamps * and uploads the file content to the ConfigSync API. * * @param dictFile the dictionary file metadata to store * @param file the actual file containing the dictionary content * @throws DictionaryException if the file was updated by another process,Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
* <p> * This client supports authentication, content retrieval, and metadata extraction from SMB files. * It handles file access, directory listing, and access control entries (ACEs) processing. * </p> * * <p> * The class provides methods to: * </p> * <ul> * <li>Initialize the client with SMB authentication details.</li> * <li>Retrieve content and metadata from SMB files.</li>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 23.3K bytes - Viewed (0) -
CLAUDE.md
[Normalization] - NormalizerChain ↓ [Reading Conversion] - ReadingConverterChain ↓ [Analysis] - SuggestAnalyzer ``` Note: Suggester has TWO ReadingConverter instances: - `readingConverter` - For query/metadata fields - `contentsReadingConverter` - For content/document fields --- ## Key Components ### Suggester (Main Entry Point) Location: `src/main/java/org/codelibs/fess/suggest/Suggester.java`Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancer.java
} } return maxBandwidthChannel != null ? maxBandwidthChannel : channels.iterator().next(); } if (isMetadataOperation(message)) { // For metadata operations, prefer low-latency channels return selectLeastLoaded(channels); } // Default to weighted random for general operations return selectWeightedRandom(channels); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * GroupPager provides pagination functionality for group management operations in Fess. * This class manages the state and metadata required for paginated display of group lists, * including page navigation, record counts, and search criteria. * */ public class GroupPager implements Serializable {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
* * This class encapsulates all the information returned from a search query, * including the list of matching documents, total record count, query execution * time, facet information, and metadata about the search results. */ public class SearchResult { /** The list of documents returned by the search query. */ protected final List<Map<String, Object>> documentList;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java
} /** * Upload character mapping file for the specified dictionary. * * @param dictId identifier of the dictionary to upload mapping for * @param form upload form containing the file and metadata * @return JSON response indicating the API result status */ // PUT /api/admin/dict/mapping/upload/{dictId} @ExecuteRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.5K bytes - Viewed (0)