- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 321 for Identifier (0.04 sec)
-
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) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
} /** * Constructs an SMB2 IOCTL request with a specified file ID * @param config the client configuration * @param controlCode the IOCTL control code * @param fileId the file identifier */ public Smb2IoctlRequest(final Configuration config, final int controlCode, final byte[] fileId) { super(config, SMB2_IOCTL); this.controlCode = controlCode; this.fileId = fileId;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
*/ private int pageSize; /** * The current page number for pagination. */ private int currentPageNumber; /** * The unique identifier of the request header. */ public String id; /** * The name of the request header. */ public String name; /** * The value of the request header. */
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/thumbnail/ThumbnailGenerator.java
* @return The generator name. */ String getName(); /** * Generates a thumbnail for the given thumbnail ID and saves it to the output file. * * @param thumbnailId the unique identifier for the thumbnail * @param outputFile the file where the generated thumbnail will be saved * @return true if the thumbnail was successfully generated, false otherwise */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/EditForm.java
* */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() { super(); } /** * The unique identifier of the access token being edited. * This is a required field for identifying which token to update. */ @Required @Size(max = 1000) public String id; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/EditForm.java
* */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() { super(); } /** * The unique identifier of the bad word entry being edited. * This is a required field for identifying which bad word to update. */ @Required @Size(max = 1000) public String id; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/boostdoc/EditForm.java
* */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() { super(); } /** * The unique identifier of the boost document configuration being edited. * This is a required field for identifying which boost document to update. */ @Required @Size(max = 1000) public String id; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/EditForm.java
* */ public class EditForm extends CreateForm { /** * Creates a new EditForm instance. */ public EditForm() { super(); } /** * The unique identifier of the file authentication configuration being edited. * This is a required field for identifying which file authentication entry to update. */ @Required @Size(max = 1000) public String id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0)