- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 254 for ridentifier (0.27 sec)
-
src/main/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenAlias.java
/** * Creates a new request to open an alias handle. * * @param handle the domain handle * @param access the desired access rights * @param rid the relative identifier of the alias * @param aliasHandle the alias handle to be populated */ public MsrpcSamrOpenAlias(final SamrDomainHandle handle, final int access, final int rid, final SamrAliasHandle aliasHandle) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
public class lsarpc { /** * Private constructor to prevent instantiation of utility class. */ private lsarpc() { // Utility class } /** * Returns the RPC syntax identifier for LSA RPC interface. * * @return the RPC syntax string */ public static String getSyntax() { return "12345778-1234-abcd-ef00-0123456789ab:0.0"; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
*/ private String newOutput; /** * Constructs a new CharMappingItem with the specified ID, input sequences, and output sequence. * * @param id the unique identifier for this mapping item * @param inputs array of input character sequences that will be mapped to the output * @param output the output character sequence that inputs will be mapped to */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
cb.query().setFileConfigId_Equal(fileConfigId); }); } /** * Retrieves a file configuration by its unique identifier. * * @param id the unique identifier of the file configuration * @return an OptionalEntity containing the file configuration if found, empty otherwise */ public OptionalEntity<FileConfig> getFileConfig(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/UploadForm.java
* This form is used in the admin interface to upload custom character mapping dictionary files. */ public class UploadForm { /** * The dictionary ID that identifies which character mapping dictionary configuration to update. * This ID corresponds to a specific character mapping dictionary instance in the system. */ @Required public String dictId; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/UploadForm.java
* This form is used in the admin interface to upload custom synonym dictionary files. */ public class UploadForm { /** * The dictionary ID that identifies which synonym dictionary configuration to update. * This ID corresponds to a specific synonym dictionary instance in the system. */ @Required public String dictId; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
}).createPageNumberList()); return failureUrlList; } /** * Retrieves a specific failure URL by its ID. * * @param id the unique identifier of the failure URL * @return an OptionalEntity containing the FailureUrl if found, empty otherwise */ public OptionalEntity<FailureUrl> getFailureUrl(final String id) { return failureUrlBhv.selectByPK(id);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
private final String input; /** The new stopword, if updated. */ private String newInput; /** * Constructs a new stopword item. * * @param id The unique identifier of the item. * @param input The stopword. */ public StopwordsItem(final long id, final String input) { this.id = id; this.input = input; if (id == 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComClose.java
private final int fid; private final long lastWriteTime; /** * Creates a new SMB1 close file request. * * @param config the CIFS configuration * @param fid the file identifier to close * @param lastWriteTime the last write time to set on the file */ public SmbComClose(final Configuration config, final int fid, final long lastWriteTime) { super(config, SMB_COM_CLOSE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipe.java
/** * Constructs a TransPeekNamedPipe request to check the status of a named pipe. * * @param config the SMB configuration * @param pipeName the name of the pipe to peek * @param fid the file identifier for the pipe */ public TransPeekNamedPipe(final Configuration config, final String pipeName, final int fid) { super(config, SMB_COM_TRANSACTION, TRANS_PEEK_NAMED_PIPE); this.name = pipeName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0)