- Sort Score
- Result 10 results
- Languages All
Results 951 - 960 of 3,647 for findall (0.07 sec)
-
src/main/java/org/codelibs/fess/api/BaseApiManager.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/RepositorySystemSupplier.java
private final AtomicBoolean closed = new AtomicBoolean(false); public RepositorySystemSupplier() {} private void checkClosed() { if (closed.get()) { throw new IllegalStateException("Supplier is closed"); } } private PathProcessor pathProcessor; public final PathProcessor getPathProcessor() { checkClosed();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 45.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/entity/ElevateWord.java
public class ElevateWord { protected final String elevateWord; protected final float boost; protected final List<String> readings; protected final List<String> fields; protected final List<String> tags; protected final List<String> roles; public ElevateWord(final String elevateWord, final float boost, final List<String> readings, final List<String> fields, final List<String> tags, final List<String> roles) {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/TimeConversionUtilTest.java
final Date date = toDate("11:49:10 JST"); final SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss"); df.setTimeZone(TimeZone.getTimeZone("JST")); assertThat(df.format(date), is("11:49:10")); } /** * @throws Exception */ @Test public void testToDate_FullStyle() throws Exception { final Date date = toDate("11時49分10秒 JST");
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
protected Integer getDefaultInteger(final String key, final Integer defaultValue) { final String value = systemProperties.getProperty(key); if (value != null) { try { return Integer.parseInt(value); } catch (final NumberFormatException e) {} } return defaultValue; } protected Long getDefaultLong(final String key, final Long defaultValue) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.7K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java
public static final String ID = "id"; public static final String SESSION_ID = "sessionId"; public static final String RULE_ID = "ruleId"; public static final String URL = "url"; public static final String PARENT_URL = "parentUrl"; public static final String STATUS = "status"; public static final String HTTP_STATUS_CODE = "httpStatusCode";
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
public class ApiResult { protected ApiResponse response = null; public ApiResult(final ApiResponse response) { this.response = response; } public enum Status { OK(0), BAD_REQUEST(1), SYSTEM_ERROR(2), UNAUTHORIZED(3), FAILED(9); private final int id; Status(final int id) { this.id = id; } public int getId() { return id;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
if((read( tmp, 0, 4 )) < 0 ) { throw new SmbException( "EOF" ); } return Encdec.dec_uint32be( tmp, 0 ); } public final long readLong() throws SmbException { if((read( tmp, 0, 8 )) < 0 ) { throw new SmbException( "EOF" ); } return Encdec.dec_uint64be( tmp, 0 ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exbhv/SearchLogBhv.java
} @SuppressWarnings("unchecked") @Override protected <RESULT extends SearchLog> RESULT createEntity(final Map<String, Object> source, final Class<? extends RESULT> entityType) { try { final RESULT result = super.createEntity(source, entityType); final Object searchFieldObj = source.get("searchField"); if (searchFieldObj instanceof Map) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/concurrent/Deferred.java
private Throwable error = null; private final Promise promise = new Promise(); private final Queue<Consumer<RESPONSE>> doneCallbacks = new LinkedBlockingQueue<>(); private final Queue<Consumer<Throwable>> errorCallbacks = new LinkedBlockingQueue<>(); private final CountDownLatch latch = new CountDownLatch(1); public void resolve(final RESPONSE r) { final ArrayList<Consumer<RESPONSE>> executeCallbacks;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 5.4K bytes - Viewed (0)