- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 237 for sb (0.01 seconds)
-
src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Test.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/MoreCollectors.java
throw exceptionSupplier.get(); } StringBuilder sb = new StringBuilder().append("expected one element but was: <").append(element); for (Object o : extras) { sb.append(", ").append(o); } if (overflow) { sb.append(", ..."); } sb.append('>'); throw new IllegalArgumentException(sb.toString()); } void add(T o) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 18 16:22:33 GMT 2026 - 6.3K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java
protected void commandStyle(LineReader reader, AttributedStringBuilder sb, boolean enable) { if (enable) { if (reader.getTerminal().getNumericCapability(InfoCmp.Capability.max_colors) >= 256) { sb.style(AttributedStyle.DEFAULT.bold().foreground(69)); } else { sb.style(AttributedStyle.DEFAULT.foreground(AttributedStyle.CYAN)); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 10.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/fscc/FileRenameInformation2Test.java
} @Test @DisplayName("Test with very long filename") void testWithVeryLongFilename() { StringBuilder sb = new StringBuilder(); for (int i = 0; i < 100; i++) { sb.append("longname"); } String longFileName = sb.toString() + ".txt"; FileRenameInformation2 info = new FileRenameInformation2(longFileName, false);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/FilesTest.java
} public void testCopyToAppendable() throws IOException { File i18nFile = getTestFile("i18n.txt"); StringBuilder sb = new StringBuilder(); Files.copy(i18nFile, UTF_8, sb); assertThat(sb.toString()).isEqualTo(I18N); } public void testCopyFile() throws IOException { File i18nFile = getTestFile("i18n.txt"); File temp = createTempFile();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 22.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java
} @Test public void test_constructor_withLongMessage() { // Test constructor with long message StringBuilder sb = new StringBuilder(); for (int i = 0; i < 1000; i++) { sb.append("Long message content "); } String message = sb.toString(); SearchEngineClientException exception = new SearchEngineClientException(message); assertNotNull(exception);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
return "empty"; } StringBuilder sb = new StringBuilder(512); for (MetadataGraphVertex v : vertices) { sb.append("Vertex: ").append(v.getMd().toString()).append('\n'); List<MetadataGraphEdge> ins = getIncidentEdges(v); if (ins != null) { for (MetadataGraphEdge e : ins) { sb.append(" from : ").append(e.toString()).append('\n');
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 13K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java
} @Test public void test_render_longContent() { StringBuilder sb = new StringBuilder(); for (int i = 0; i < 100; i++) { sb.append("Paragraph ").append(i).append("\n\n"); } String result = markdownRenderer.render(sb.toString()); assertNotNull(result); assertTrue(result.length() > 0); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 11.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/util/SettingsResourceLoader.java
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Feb 01 12:48:24 GMT 2026 - 5.7K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbOperationException.java
@Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("SmbOperationException{"); sb.append("errorCode=").append(errorCode); sb.append(", category=").append(errorCode.getCategory()); sb.append(", retryable=").append(isRetryable()); sb.append(", attempt=").append(attemptNumber); sb.append(", operation='").append(operationName).append('\'');Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 16.5K bytes - Click Count (0)