- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 491 for getOs (0.34 sec)
-
src/main/java/jcifs/internal/fscc/FileSystemInformation.java
/** * File system size information constant. */ byte FS_SIZE_INFO = 3; /** * File system full size information constant. */ byte FS_FULL_SIZE_INFO = 7; /** * Gets the file system information class. * * @return file system information class */ byte getFileSystemInformationClass();
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/test/java/jcifs/dcerpc/msrpc/LsaPolicyHandleTest.java
// Act & Assert SmbException thrown = assertThrows(SmbException.class, () -> { new LsaPolicyHandle(mockDcerpcHandle, server, access); }); // The error code gets mapped to NT_STATUS_UNSUCCESSFUL because it's not a valid NT status code assertEquals(0xC0000001, thrown.getNtStatus()); // NT_STATUS_UNSUCCESSFUL
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
defaultSettings.put("onelogin.saml2.contacts.support.given_name", "Support Guy"); defaultSettings.put("onelogin.saml2.contacts.support.email_address", "support@@example.com"); } /** * Gets the SAML settings. * @return The SAML settings. */ protected Saml2Settings getSettings() { final Map<String, Object> params = new HashMap<>(defaultSettings);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
if (logger.isDebugEnabled()) { logger.debug("Loaded {}", origin); } handerMap.put(origin, handler); } /** * Gets the CORS handler for the specified origin. * If no specific handler is found, returns the wildcard handler. * * @param origin the origin to look up
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/jcifs/smb/SmbPipeOutputStream.java
} @Override protected synchronized SmbFileHandleImpl ensureOpen() throws CIFSException { return this.handle.ensureOpen(); } /** * Gets the pipe handle implementation for this output stream. * * @return the handle */ protected SmbPipeHandleImpl getHandle() { return this.handle; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryItem.java
/** * Default constructor for DictionaryItem. * Creates a new dictionary item with default values. */ public DictionaryItem() { // Default constructor } /** * Gets the unique identifier for this dictionary item. * * @return the ID of this dictionary item */ public long getId() { return id; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/NegotiateContextRequest.java
* for capability negotiation and security enhancements. * * @author mbechler */ public interface NegotiateContextRequest extends Encodable { /** * Gets the negotiate context type. * * @return the SMB2 negotiate context type */ int getContextType();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/NegotiateContextResponse.java
* in response to negotiate context requests. * * @author mbechler */ public interface NegotiateContextResponse extends Decodable { /** * Gets the negotiate context type. * * @return the SMB2 negotiate context type */ int getContextType();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/NotifyResponse.java
* about file system changes such as file creation, deletion, or modification events. * * @author mbechler */ public interface NotifyResponse extends CommonServerMessageBlockResponse { /** * Gets the file notification information from the response. * @return notify information containing file change notifications */ List<FileNotifyInformation> getNotifyInformation();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java
* * @param size the page size to set */ public void setPageSize(final int size) { this.size = Integer.toString(size); } /** * Gets the page size for search log results with validation. * Returns the default page size if the current size is invalid. * * @return the validated page size */ public int getPageSize() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0)