- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 228 for line3 (0.02 sec)
-
dbflute_fess/dfprop/conditionBeanMap.dfprop
# } # # This means that Date does not includes NotEqual at all tables. # ; Date = map:{ # ; NotEqual = map:{} # } # } # # *The line that starts with '#' means comment-out. # map:{ ; String = map:{ # [Include] # String columns may not be needed # to be set these condition-keys basically. #; GreaterThan = map:{}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
public void test_parse_special_characters() { String value; String[] result; // Newline characters value = "\"line1\nline2\",normal"; result = KuromojiCSVUtil.parse(value); assertEquals(2, result.length); assertEquals("line1\nline2", result[0]); assertEquals("normal", result[1]); // Carriage return value = "\"with\rcarriage\",return";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
samples/tlssurvey/src/main/kotlin/okhttp3/survey/Clients.kt
ianaSuites.fromJavaName(it.javaName) }, ) fun historicOkHttp(version: String): Client { val enabled = FileSystem.RESOURCES.read("okhttp_$version.txt".toPath()) { this.readUtf8().lines().filter { it.isNotBlank() }.map { SuiteId(id = null, name = it.trim()) } } return Client( userAgent = "OkHttp", version = version, enabled = enabled, ) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.4K bytes - Viewed (0) -
dbflute_fess/dfprop/additionalForeignKeyMap.dfprop
# $$foreignAlias$$.VALID_BEGIN_DATE <= /*targetDate(Date)*/null # and $$foreignAlias$$.VALID_END_DATE >= /*targetDate(Date)*/null # ; fixedSuffix = AsValid # } # } # # *The line that starts with '#' means comment-out. # map:{ #; FK_MEMBER_MEMBER_STATUS_CODE = map:{ # ; localTableName = MEMBER ; foreignTableName = MEMBER_STATUS
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JobProcess.java
* * @param process the system process to wrap * @param bufferSize the buffer size for reading process output * @param outputCallback the callback function to handle process output lines */ public JobProcess(final Process process, final int bufferSize, final Consumer<String> outputCallback) { this.process = process;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/zh-tw/stopwords.txt
{ } [ ] < > * # & ^ $ @ ! ~ : ; + / \ 《 》 — - , 。 、 : ; ! · ? “ ” ) ( 【 】 [ ] ● # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese) # English Stop Words
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 17 08:00:22 UTC 2017 - 310 bytes - Viewed (0) -
dbflute_fess/dfprop/commonColumnMap.dfprop
# } # ; beforeUpdateMap = map:{ # ; UPDATE_DATETIME = $$AccessContext$$.getAccessLocalDateTimeOnThread() # ; UPDATE_USER = $$AccessContext$$.getAccessUserOnThread() # } # } # # *The line that starts with '#' means comment-out. # map:{ #; commonColumnMap = map:{ # ; REGISTER_DATETIME=TIMESTAMP ; REGISTER_USER=VARCHAR # ; UPDATE_DATETIME=TIMESTAMP ; UPDATE_USER=VARCHAR #}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 1.9K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/AndroidLog.kt
if (Log.isLoggable(tag, logLevel)) { var logMessage = message if (t != null) logMessage = logMessage + '\n'.toString() + Log.getStackTraceString(t) // Split by line, then ensure each line can fit into Log's maximum length. var i = 0 val length = logMessage.length while (i < length) { var newline = logMessage.indexOf('\n', i)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 22 20:03:31 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ReaderUtil.java
throw new IORuntimeException(e); } } /** * Reads a single line from the given {@link BufferedReader}. * * @param reader * the {@link BufferedReader} (must not be {@literal null}) * @return a line of text, or {@literal null} if the end of the stream has been reached * @see BufferedReader#readLine() */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CharSinkTest.java
} public void testWriteLines_withDefaultSeparator() throws IOException { sink.writeLines(ImmutableList.of("foo", "bar", "baz")); String separator = System.getProperty("line.separator"); assertEquals("foo" + separator + "bar" + separator + "baz" + separator, sink.getString()); } public void testWriteLines_stream() throws IOException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4.6K bytes - Viewed (0)