- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 850 for htaccess (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/DataService.java
/** * Interface for data service operations related to access results. * * @param <RESULT> the type of access result */ public interface DataService<RESULT extends AccessResult<?>> { /** * Stores the given access result. * * @param accessResult the access result to store */ void store(RESULT accessResult); /** * Updates the given access result. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java
*/ public class AccessResultImpl<IDTYPE> implements AccessResult<IDTYPE> { /** * Creates a new instance of AccessResultImpl. */ public AccessResultImpl() { // NOP } /** The unique identifier for the access result. */ protected IDTYPE id; /** The session ID associated with the access result. */ protected String sessionId;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
return accessTokenList; } /** * Get the access token. * @param id The ID of the access token. * @return The access token. */ public OptionalEntity<AccessToken> getAccessToken(final String id) { return accessTokenBhv.selectByPK(id); } /** * Store the access token. * @param accessToken The access token. */ public void store(final AccessToken accessToken) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
* @param fileName the name of the file to open * @param access the desired access mode * @param shareAccess the share access mode * @param flags the open flags * @param fileAttributes the file attributes * @param andx the next command in the chain */ public SmbComOpenAndX(final Configuration config, final String fileName, final int access, final int shareAccess, final int flags,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
int FILE_WRITE_EA = 0x00000010; // 5 /** File execute access right */ int FILE_EXECUTE = 0x00000020; // 6 /** File delete child access right */ int FILE_DELETE = 0x00000040; // 7 /** File read attributes access right */ int FILE_READ_ATTRIBUTES = 0x00000080; // 8 /** File write attributes access right */ int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9 /** Delete access right */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
testBuffer[2] = 0x20; // Size low byte (32) testBuffer[3] = 0x00; // Size high byte testBuffer[4] = (byte) 0xA9; // Access mask byte 0 testBuffer[5] = 0x00; // Access mask byte 1 testBuffer[6] = 0x12; // Access mask byte 2 testBuffer[7] = 0x00; // Access mask byte 3 // Add minimal SID data (S-1-1-0 - Everyone) testBuffer[8] = 0x01; // Revision
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/SamrPolicyHandleTest.java
String server = "testServer"; int access = 123; // No exception thrown by sendrecv for MsrpcSamrConnect4 doNothing().when(mockHandle).sendrecv(any(MsrpcSamrConnect4.class)); try (SamrPolicyHandle handle = new SamrPolicyHandle(mockHandle, server, access)) { assertNotNull(handle); // Verify that sendrecv was called with MsrpcSamrConnect4
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/LsaPolicyHandleTest.java
String server = "testServer"; int access = 123; doThrow(new IOException("Network error")).when(mockDcerpcHandle).sendrecv(any(MsrpcLsarOpenPolicy2.class)); // Act & Assert IOException thrown = assertThrows(IOException.class, () -> { new LsaPolicyHandle(mockDcerpcHandle, server, access); }); assertEquals("Network error", thrown.getMessage());
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/api/engine/SearchEngineApiManager.java
* @throws FessSystemException if no access token is available */ public String getServerPath() { return getSessionManager().getAttribute(Constants.SEARCH_ENGINE_API_ACCESS_TOKEN, String.class) .map(token -> ADMIN_SERVER + token) .orElseThrow(() -> new FessSystemException("Cannot create an access token.")); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
.status(Status.OK) .result()); } // GET /api/admin/accesstoken/setting/{id} /** * Retrieves a specific access token setting by ID. * * @param id the access token ID to retrieve * @return JSON response with the access token setting */ @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0)