- Sort Score
- Result 10 results
- Languages All
Results 2321 - 2330 of 6,120 for stringy (0.07 sec)
-
src/main/java/org/codelibs/fess/app/pager/UserPager.java
private List<Integer> pageNumberList; private int pageSize; private int currentPageNumber; public String id; public String name; public String[] roles; public String[] groups; public String versionNo; public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false; existNextPage = false;
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/service/KuromojiService.java
} public OptionalEntity<KuromojiFile> getKuromojiFile(final String dictId) { return dictionaryManager.getDictionaryFile(dictId).filter(KuromojiFile.class::isInstance) .map(file -> OptionalEntity.of((KuromojiFile) file)).orElse(OptionalEntity.empty()); } public OptionalEntity<KuromojiItem> getKuromojiItem(final String dictId, final long id) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/BinaryCompatibilityRepository.kt
else ApiSourceFile.Java(sourceFile, sourceRoot) } } private val JApiClass.sourceFilePath: String get() = if (isKotlin) kotlinSourceFilePath else javaSourceFilePath private val JApiClass.javaSourceFilePath: String get() = fullyQualifiedName .replace(".", "/") .replace(innerClassesPartRegex, "") + ".java" private
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
} RenderDataUtil.register(data, "fileConfigItems", itemList); } protected Map<String, String> createItem(final String label, final String value) { final Map<String, String> map = new HashMap<>(2); map.put(Constants.ITEM_LABEL, label); map.put(Constants.ITEM_VALUE, value); return map; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/HashCodeTest.java
} public void testRoundTrip() { for (ExpectedHashCode expected : expectedHashCodes) { String string = HashCode.fromBytes(expected.bytes).toString(); assertEquals(expected.toString, string); assertEquals( expected.toString, HashCode.fromBytes(BaseEncoding.base16().lowerCase().decode(string)).toString()); } } public void testFromStringFailsWithInvalidHexChar() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 13.1K bytes - Viewed (0) -
tests/test_security_oauth2_optional_description.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 10.9K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTestSupport.java
Path pom = cwd.resolve("pom.xml").toAbsolutePath(); Files.writeString(pom, pomString); String appJavaString = """ package org.apache.maven.samples.sample; public class App { public static void main(String... args) { System.out.println("Hello World!"); } }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/io/ModelReader.java
*/ String IS_STRICT = "org.apache.maven.model.io.isStrict"; /** * The key for the option to enable tracking of line/column numbers. This option is of type * {@link org.apache.maven.model.InputSource} and defaults to {@code null}. Providing an input source enables * location tracking. */ String INPUT_SOURCE = "org.apache.maven.model.io.inputSource"; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.4K bytes - Viewed (0) -
internal/s3select/sql/timestampfuncs.go
) var tformats = []string{ layoutYear, layoutMonth, layoutDay, layoutMinute, layoutSecond, layoutNanosecond, } func parseSQLTimestamp(s string) (t time.Time, err error) { for _, f := range tformats { t, err = time.Parse(f, s) if err == nil { break } } return } // FormatSQLTimestamp - returns the a string representation of the
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 4.8K bytes - Viewed (0)