- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 289 for masking (6 sec)
-
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
if (StringUtil.isNotBlank(sort)) { facetInfo.sort = sort; } final String missing = request.getParameter("facet.missing"); if (StringUtil.isNotBlank(missing)) { facetInfo.missing = missing; } return facetInfo; } /** * Creates a geo info. * * @param request The request.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
Handler handler = new Handler(); Handler.GcsURLConnection conn = (Handler.GcsURLConnection) handler.openConnection(url); // getInputStream should try to auto-connect (and fail due to missing project ID) try { conn.getInputStream(); fail("Should throw IOException"); } catch (IOException e) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbAuthExceptionTest.java
import org.junit.jupiter.params.provider.Arguments; import org.junit.jupiter.params.provider.MethodSource; /** * Tests for {@link SmbAuthException}. * * These tests exercise the constructor and the mapping logic of * {@link SmbException#getMessageByCode(int)} and * {@link SmbException#getStatusByCode(int)}. */ @DisplayName("SmbAuthException Tests") class SmbAuthExceptionTest { /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacMac.java
* @param data the data to calculate the MAC for * @return the calculated mac bytes * @throws PACDecodingException if the MAC calculation fails or required keys are missing */ public static byte[] calculateMac(int type, Map<Integer, KerberosKey> keys, byte[] data) throws PACDecodingException { try { int usage = 17;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/CreateBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.pathmap; import org.codelibs.fess.app.web.admin.pathmap.CreateForm; /** * Request body for creating path mapping via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1004 bytes - Viewed (0) -
src/test/java/jcifs/pac/PacMacTest.java
/** * Test calculateMac with a missing key. */ @Test void testCalculateMacMissingKey() { Map<Integer, KerberosKey> keys = new HashMap<>(); // Empty map PACDecodingException e = assertThrows(PACDecodingException.class, () -> PacMac.calculateMac(PacSignature.KERB_CHECKSUM_HMAC_MD5, keys, TEST_DATA)); assertEquals("Missing key", e.getMessage()); } /**Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
} // cookie if (StringUtil.isNotBlank(cookieKey)) { processCookie(request, roleSet); } // cookie mapping if (cookieNameMap != null) { buildByCookieNameMapping(request, roleSet); } final boolean hasAccessToken = processAccessToken(request, roleSet, isApiRequest);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
return path; } } return "suggest_indices/suggest_analyzer.json"; } /** * Loads the index mapping from a resource file. * @return The index mapping as a string. * @throws IOException If an I/O error occurs. */ protected String loadIndexMapping() throws IOException { final StringBuilder sb = new StringBuilder();Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K bytes - Viewed (0) -
src/main/resources/suggest_indices/suggest/mappings-default.json
{ "dynamic_templates": [ { "strings": { "mapping": { "type": "keyword" }, "match": "*", "match_mapping_type": "string" } } ], "properties": { "@timestamp": { "type": "date", "format": "epoch_millis" }, "docFreq": { "type": "long" }, "fields": { "type": "keyword" }, "kinds": {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Fri Jan 06 03:01:29 UTC 2017 - 760 bytes - Viewed (0) -
src/main/resources/fess_message_de.properties
errors.failed_to_upload_badword_file = Fehler beim Hochladen einer Bad-Word-Datei. errors.failed_to_download_mapping_file = Fehler beim Herunterladen einer Mapping-Datei. errors.failed_to_upload_mapping_file = Fehler beim Hochladen einer Mapping-Datei. errors.invalid_kuromoji_token={0} ist als Token ungültig. errors.invalid_kuromoji_segmentation=Die Anzahl der Segmentierungen für {0} und {1} ist unterschiedlich.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 12.7K bytes - Viewed (0)