- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,527 for toText (0.11 sec)
-
src/main/java/org/codelibs/core/lang/StringUtil.java
* @param text * テキスト * @param suffix * サフィックス * @return 結果の文字列 */ public static final String trimSuffix(final String text, final String suffix) { if (text == null) { return null; } if (suffix == null) { return text; } if (text.endsWith(suffix)) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 21.7K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
} fun BuildResult.assertOutputContains(text: String) = assertTrue("Output should contain text:\n'$text',\nbut given text was not matched.\n", output.contains(text)) protected fun File.withFile(path: String, text: String = ""): File = resolve(path).apply { parentFile.mkdirs() writeText(text.trimIndent()) } private
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jun 04 14:00:46 UTC 2024 - 16.4K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt
select("tr.severity-$severity").map { tr -> val entry = tr.select("td")[1] ReportMessage( entry.select("span") .text().substringBefore(" If you did this intentionally"), entry.select("ul li") .map { it.text() } ) } internal data class ReportMessage( val message: String, val details: List<String> ) internal
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 2.3K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt
<META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Incubating APIs for $title</title> <link xmlns:xslthl="http://xslthl.sf.net" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700"> <meta xmlns:xslthl="http://xslthl.sf.net" content="width=device-width, initial-scale=1" name="viewport">
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 12.8K bytes - Viewed (0) -
api/go1.19.txt
pkg go/doc/comment, type DocLink struct, Text []Text #51082 pkg go/doc/comment, type Heading struct #51082 pkg go/doc/comment, type Heading struct, Text []Text #51082 pkg go/doc/comment, type Italic string #51082 pkg go/doc/comment, type Link struct #51082 pkg go/doc/comment, type Link struct, Auto bool #51082 pkg go/doc/comment, type Link struct, Text []Text #51082 pkg go/doc/comment, type Link struct, URL string #51082
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Dec 02 16:29:41 UTC 2022 - 17.9K bytes - Viewed (0) -
fess-crawler-lasta/src/test/resources/test/text 3.txt
Shinsuke Sugaya <******@****.***> 1444529815 +0900
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sun Oct 11 02:16:55 UTC 2015 - 6 bytes - Viewed (0) -
fess-crawler/src/test/resources/test/text 3.txt
Shinsuke Sugaya <******@****.***> 1444529815 +0900
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sun Oct 11 02:16:55 UTC 2015 - 6 bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 6.5K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
val originalText = file.readText() val text = originalText.lineSequence() .filterNot { it.trim().startsWith("//") } .joinToString("\n") if (text.contains(content) && exceptions.all { !text.contains(it) }) { println("Found suspicious test file: $file") return true
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 13.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/ToStringHelperTest.java
assertEquals("{}", toTest); } public void testConstructorLenient_anonymousClass() { String toTest = MoreObjects.toStringHelper(new Object() {}).toString(); assertTrue(toTest, toTest.matches(".*\\{\\}")); } @GwtIncompatible // Class names are obfuscated in GWT public void testConstructor_classObject() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 21:19:18 UTC 2024 - 21.3K bytes - Viewed (0)