- Sort Score
- Result 10 results
- Languages All
Results 1151 - 1160 of 3,018 for strana (0.06 sec)
-
src/test/java/org/codelibs/core/lang/ModifierUtilTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/exception/SuggestSettingsException.java
* <p>There are three constructors available for this exception:</p> * <ul> * <li>{@link #SuggestSettingsException(String)}: Constructs a new exception with the specified detail message.</li> * <li>{@link #SuggestSettingsException(Throwable)}: Constructs a new exception with the specified cause.</li> * <li>{@link #SuggestSettingsException(String, Throwable)}: Constructs a new exception with the specified detail message and cause.</li> * </ul> *
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java
/** * Default constructor. */ public AdminSearchlogAction() { super(); } /** Role name for admin search log operations */ public static final String ROLE = "admin-searchlog"; private static final String[] CONDITION_FIELDS = { "logType", "queryId", "userSessionId", "accessType", "requestedTimeRange", "pageSize" };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java
extractor.destroy(); super.tearDown(); } public void test_getText() throws Exception { final String testStr = "testdata"; final String content = ATTR_NAME + "," + testStr; final Map<String, String> params = new HashMap<String, String>(); //final ExtractData text = extractor.getText(new ByteArrayInputStream(FileUtils.readFileToByteArray(new File(filePath))), params);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 5.4K bytes - Viewed (0) -
cmd/warm-backend-gcs.go
client *storage.Client Bucket string Prefix string StorageClass string } func (gcs *warmBackendGCS) getDest(object string) string { destObj := object if gcs.Prefix != "" { destObj = fmt.Sprintf("%s/%s", gcs.Prefix, object) } return destObj } func (gcs *warmBackendGCS) PutWithMeta(ctx context.Context, key string, data io.Reader, length int64, meta map[string]string) (remoteVersionID, error) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 6.1K bytes - Viewed (0) -
callbacks/helper.go
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Apr 14 12:32:57 UTC 2022 - 3.7K bytes - Viewed (0) -
cmd/batch-expire.go
} return nil } //msgp:ignore batchExpireJobError type batchExpireJobError struct { Code string Description string HTTPStatusCode int } func (e batchExpireJobError) Error() string { return e.Description } // maxBatchRules maximum number of rules a batch-expiry job supports const maxBatchRules = 50
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Apr 22 11:16:32 UTC 2025 - 23K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
*/ @Override public void connect() throws IOException { final String endpoint = System.getenv().get("STORAGE_ENDPOINT"); final String accessKey = System.getenv().get("STORAGE_ACCESS_KEY"); final String secretKey = System.getenv().get("STORAGE_SECRET_KEY"); final String region = System.getenv().get("STORAGE_SECRET_KEY"); try {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/ShortConversionUtil.java
* @param pattern * The pattern string * @return The converted {@literal short} */ public static short toPrimitiveShort(final Object o, final String pattern) { if (o == null) { return 0; } else if (o instanceof Number) { return ((Number) o).shortValue(); } else if (o instanceof String) { return toPrimitiveShort((String) o);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java
*/ public FtpAuthentication() { // Default constructor } private String server; private int port; private String username; private String password; /** * Returns the server address. * @return The server address. */ public String getServer() { return server; } /** * Sets the server address.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.7K bytes - Viewed (0)