- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 805 for dana (0.02 sec)
-
docs/security/README.md
- `GenerateKey`: Takes a key ID and generates a new data key from a master key referenced by the key ID. It returns the new data key in two different forms: The plain data key and the data key encrypted using the master key. - `DecryptKey`: Takes a key ID and an encrypted data key and returns the plain data key - the decryption of the encrypted data key using the master key referenced by the key ID - on success or an error otherwise.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Feb 26 09:25:50 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSignature.java
* * @param data the raw signature data to parse * @throws PACDecodingException if the data is malformed or cannot be parsed */ public PacSignature(final byte[] data) throws PACDecodingException { try { final PacDataInputStream bufferStream = new PacDataInputStream(new DataInputStream(new ByteArrayInputStream(data)));
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/org/codelibs/fess/helper/SearchHelper.java
data.setAllPageCount(queryResponseList.getAllPageCount()); data.setExistNextPage(queryResponseList.isExistNextPage()); data.setExistPrevPage(queryResponseList.isExistPrevPage()); data.setCurrentStartRecordNumber(queryResponseList.getCurrentStartRecordNumber()); data.setCurrentEndRecordNumber(queryResponseList.getCurrentEndRecordNumber()); data.setPageNumberList(queryResponseList.getPageNumberList());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu May 26 01:48:41 UTC 2022 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
pageSize = data.getPageSize(); pageNumber = data.getCurrentPageNumber(); recordCount = data.getAllRecordCount(); recordCountRelation = data.getAllRecordCountRelation(); pageCount = data.getAllPageCount(); nextPage = data.isExistNextPage(); prevPage = data.isExistPrevPage(); startRecordNumber = data.getCurrentStartRecordNumber();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
try { final StatsObject data = statsCache.getIfPresent(key); if (data != null && data.decrement() <= 0) { statsCache.invalidate(key); final Long begin = data.remove(BEGIN_KEY); if (begin != null) { printStats(keyObj, data, begin, true); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java
searchPaging(data, form); }); } /** * Sets up search paging data for rendering the related query list. * * @param data the render data to populate * @param form the search form containing current search criteria */ protected void searchPaging(final RenderData data, final SearchForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.9K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosEncDataTest.java
byte[] data = new byte[32]; // Dummy data, must be multiple of 8 byte[] decrypted = KerberosEncData.decrypt(data, key, KerberosConstants.DES_ENC_TYPE); assertNotNull(decrypted); // With dummy data, we can't verify the content, just that it decrypts without error // and returns a result of the expected size. assertEquals(data.length - 24, decrypted.length); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosAuthData.java
* @param token the authorization data token * @param keys the Kerberos keys for decryption * @return a list of parsed authorization data * @throws PACDecodingException if the data cannot be decoded */ public static List<KerberosAuthData> parse(int authType, byte[] token, Map<Integer, KerberosKey> keys) throws PACDecodingException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
okhttp-sse/src/main/kotlin/okhttp3/sse/internal/ServerSentEventReader.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 11:47:47 UTC 2025 - 4.3K bytes - Viewed (0)