- Sort Score
- Result 10 results
- Languages All
Results 981 - 990 of 3,503 for 1final (0.09 sec)
-
android/guava-tests/test/com/google/common/collect/RegularImmutableTableTest.java
private static final ImmutableSet<Cell<Character, Integer, String>> CELLS = ImmutableSet.of( immutableCell('a', 1, "foo"), immutableCell('b', 1, "bar"), immutableCell('a', 2, "baz")); private static final ImmutableSet<Character> ROW_SPACE = ImmutableSet.of('a', 'b'); private static final ImmutableSet<Integer> COLUMN_SPACE = ImmutableSet.of(1, 2);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
*/ protected static void traverseFileSystem(final File rootDir, final File baseDir, final ResourceHandler handler) { for (final File file : baseDir.listFiles()) { if (file.isDirectory()) { traverseFileSystem(rootDir, file, handler); } else { final int pos = FileUtil.getCanonicalPath(rootDir).length(); final String filePath = FileUtil.getCanonicalPath(file);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 10.5K 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) -
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/pager/DuplicateHostPager.java
import java.util.List; import org.codelibs.fess.util.ComponentUtil; public class DuplicateHostPager 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.5K bytes - Viewed (0) -
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/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)