- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 66 for Separator (0.11 sec)
-
istioctl/pkg/util/handlers/handlers.go
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 6.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CharSinkTest.java
String separator = System.getProperty("line.separator"); assertEquals("foo" + separator + "bar" + separator + "baz" + separator, sink.getString()); } public void testWriteLines_stream() throws IOException { sink.writeLines(ImmutableList.of("foo", "bar", "baz").stream()); String separator = LINE_SEPARATOR.value();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:20:11 UTC 2024 - 4.5K bytes - Viewed (0) -
android/guava/src/com/google/common/io/CharSink.java
* the operating system's default line separator. This method is equivalent to {@code * writeLines(lines, System.getProperty("line.separator"))}. * * @throws IOException if an I/O error occurs while writing to this sink */ public void writeLines(Iterable<? extends CharSequence> lines) throws IOException { writeLines(lines, System.getProperty("line.separator")); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:20:11 UTC 2024 - 6.8K bytes - Viewed (0) -
src/packaging/deb/packaging.properties
packaging.env.file=/etc/default/fess # Simple marker to check that properties are correctly overridden packaging.type=deb # Custom header for package scripts packaging.scripts.header=#!/bin/sh${line.separator}set -e
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 401 bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java
File file = new File(s); if (file.isAbsolute()) { // path was already absolute, just normalize file separator and we're done s = file.getPath(); } else if (file.getPath().startsWith(File.separator)) { // drive-relative Windows path, don't align with project directory but with drive root s = file.getAbsolutePath(); } else {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/SystemUtil.java
/** * <code>line.separator</code> システムプロパティ。例えばMac OS Xなら * <code>"\n"</code> */ public static final String LINE_SEPARATOR = System.getProperty("line.separator"); /** * <code>path.separator</code> システムプロパティ。例えばMac OS Xなら * <code>":"</code> */ public static final String PATH_SEPARATOR = System.getProperty("path.separator"); /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.2K bytes - Viewed (0) -
android/guava/src/com/google/common/io/LineBuffer.java
/** Whether a line ending with a CR is pending processing. */ private boolean sawReturn; /** * Process additional characters from the stream. When a line separator is found the contents of * the line and the line separator itself are passed to the abstract {@link #handleLine} method. * * @param cbuf the character buffer to process * @param off the offset into the buffer
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 28 20:13:02 UTC 2023 - 3.9K bytes - Viewed (0) -
guava/src/com/google/common/io/LineBuffer.java
/** Whether a line ending with a CR is pending processing. */ private boolean sawReturn; /** * Process additional characters from the stream. When a line separator is found the contents of * the line and the line separator itself are passed to the abstract {@link #handleLine} method. * * @param cbuf the character buffer to process * @param off the offset into the buffer
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 28 20:13:02 UTC 2023 - 3.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
val idSuffix = if (idParts.isNotEmpty()) { "With${idParts.joinToString(separator = "And")}" } else "" id("${model.projectId}_Gradleception$idSuffix") name = "Gradleception - ${labels.joinToString(separator = " ")}" val descriptionSuffix = if (descriptionParts.isNotEmpty()) { " (${descriptionParts.joinToString(separator = ", ")})" } else "" description =
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 08 12:58:46 UTC 2024 - 6.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java
* @author shinsuke * */ public class CommandExtractorTest extends PlainTestCase { private File createScriptTempFile(final int sleep) { String extention; String content; if (File.separator.equals("/")) { // Unix extention = ".sh"; content = "#!/bin/bash\nsleep " + sleep + ";cp $1 $2"; } else { // Windows extention = ".bat";
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 9.8K bytes - Viewed (0)