- Sort Score
- Result 10 results
- Languages All
Results 971 - 980 of 3,496 for 1Final (0.13 sec)
-
src/main/java/org/codelibs/fess/app/pager/JobLogPager.java
import java.util.List; import org.codelibs.fess.util.ComponentUtil; public class JobLogPager implements Serializable { private static final long serialVersionUID = 1L; public static final int DEFAULT_PAGE_SIZE = 20; public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; private int allRecordCount; private int allPageCount; private boolean existPrePage;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/PathMapPager.java
import java.util.List; import org.codelibs.fess.util.ComponentUtil; public class PathMapPager implements Serializable { private static final long serialVersionUID = 1L; public static final int DEFAULT_PAGE_SIZE = 20; public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; private int allRecordCount; private int allPageCount; private boolean existPrePage;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/exception/SQLRuntimeExceptionTest.java
public void testErrorMessage_ja() throws Exception { // ## Arrange ## Locale.setDefault(Locale.JAPANESE); final SQLException sqlException = new SQLException("some reason", "fooState", 7650); final SQLException sqlException2 = new SQLException("hoge reason", "barState", 7660); final SQLException sqlException3 = new SQLException("fuga reason", "bazState", 7670); sqlException.setNextException(sqlException2);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
assertNull(pathMappingHelper.getPathMappingList(sessionId + "1")); } public void test_replaceUrl() { final String sessionId = "test"; final List<PathMapping> pathMappingList = new ArrayList<PathMapping>(); final PathMapping pathMapping = new PathMapping(); pathMapping.setRegex("file:///home/"); pathMapping.setReplacement("http://localhost/");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java
// GET /api/admin/boostdoc // POST /api/admin/boostdoc @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final BoostDocPager pager = copyBeanToNewBean(body, BoostDocPager.class); final List<BoostDocumentRule> list = boostDocumentRuleService.getBoostDocumentRuleList(pager);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java
public HtmlResponse list(final Integer pageNumber, final SearchForm form) { failureUrlPager.setCurrentPageNumber(pageNumber); return asHtml(path_AdminFailureurl_AdminFailureurlJsp).renderWith(data -> { searchPaging(data, form); }); } @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse search(final SearchForm form) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/eventbus/DispatcherTest.java
* * @author Colin Decker */ public class DispatcherTest extends TestCase { private final EventBus bus = new EventBus(); private final IntegerSubscriber i1 = new IntegerSubscriber("i1"); private final IntegerSubscriber i2 = new IntegerSubscriber("i2"); private final IntegerSubscriber i3 = new IntegerSubscriber("i3"); private final ImmutableList<Subscriber> integerSubscribers = ImmutableList.of(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 27 15:41:25 UTC 2022 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/Referral.java
/** * @return the version */ public final int getVersion () { return this.version; } /** * @return the size */ public final int getSize () { return this.size; } /** * @return the serverType */ public final int getServerType () { return this.serverType; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.2K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCache.java
return "GavCacheKey{" + "gav='" + gav + '\'' + ", tag='" + tag + '\'' + '}'; } } private static final class SourceCacheKey { private final Source source; private final String tag; private final int hash; SourceCacheKey(Source source, String tag) { this.source = source; this.tag = tag;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java
*/ public static final int TRANSFER_INITIATED = 0; /** * A transfer was started. */ public static final int TRANSFER_STARTED = 1; /** * A transfer is completed. */ public static final int TRANSFER_COMPLETED = 2; /** * A transfer is in progress. */ public static final int TRANSFER_PROGRESS = 3; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.7K bytes - Viewed (0)