- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for NB (0.03 sec)
-
src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java
assertEquals("<%= a %>", AdminDesignAction.decodeJsp("<%= a %>")); assertEquals("<% a\nb %>", AdminDesignAction.decodeJsp("<% a\nb %>")); assertEquals("<%= a\nb %>", AdminDesignAction.decodeJsp("<%= a\nb %>")); assertEquals("<% a", AdminDesignAction.decodeJsp("<% a")); assertEquals("<%= a", AdminDesignAction.decodeJsp("<%= a"));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jul 28 09:03:48 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.6K bytes - Viewed (0) -
src/archive/tar/reader.go
// special headers that contain no data section. func (tr *Reader) handleRegularFile(hdr *Header) error { nb := hdr.Size if isHeaderOnlyType(hdr.Typeflag) { nb = 0 } if nb < 0 { return ErrHeader } tr.pad = blockPadding(nb) tr.curr = ®FileReader{r: tr.r, nb: nb} return nil } // handleSparseFile checks if the current file is a sparse format of any type
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Mar 08 01:59:14 UTC 2024 - 26.8K bytes - Viewed (0) -
.gitignore
/.teamcity/target /gradle.ipr /gradle.iws # Eclipse # ------- *.classpath *.project *.settings /bin /subprojects/*/bin atlassian-ide-plugin.xml .metadata/ # NetBeans # -------- .nb-gradle .nb-gradle-properties # Vim # --- *.sw[nop] # Emacs # ----- *~ \#*\# .\#* # Textmate # -------- .textmate # Sublime Text # ------------ *.sublime-* # jEnv
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 09:50:46 UTC 2024 - 1.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
src/archive/tar/writer.go
type regFileWriter struct { w io.Writer // Underlying Writer nb int64 // Number of remaining bytes to write } func (fw *regFileWriter) Write(b []byte) (n int, err error) { overwrite := int64(len(b)) > fw.nb if overwrite { b = b[:fw.nb] } if len(b) > 0 { n, err = fw.w.Write(b) fw.nb -= int64(n) } switch { case err != nil: return n, err case overwrite:
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 14:22:59 UTC 2024 - 19.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/HeadersTest.kt
} @Test fun headersToString() { val headers = Headers.Builder() .add("A", "a") .add("B", "bb") .build() assertThat(headers.toString()).isEqualTo("A: a\nB: bb\n") } @Test fun headersToStringRedactsSensitiveHeaders() { val headers = Headers.Builder() .add("content-length", "99") .add("authorization", "peanutbutter")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 8.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/StringUtilTest.java
assertEquals("4", "a234a", StringUtil.replace("12341", "1", "a")); assertEquals("5", "ab234abab234ab", StringUtil.replace("1234112341", "1", "ab")); assertEquals("6", "a\\nb", StringUtil.replace("a\nb", "\n", "\\n")); } /** * @throws Exception */ @Test public void testSplit() throws Exception { final String[] array = StringUtil.split("aaa\nbbb", "\n");
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 12K bytes - Viewed (0) -
docs/language_names.yml
lv: latviešu valoda mg: fiteny malagasy mh: Kajin M̧ajeļ mi: te reo Māori mk: македонски јазик ml: മലയാളം mn: Монгол хэл mr: मराठी ms: Bahasa Malaysia mt: Malti my: ဗမာစာ na: Ekakairũ Naoero nb: Norsk bokmål nd: isiNdebele ne: नेपाली ng: Owambo nl: Nederlands nn: Norsk nynorsk 'no': Norsk nr: isiNdebele nv: Diné bizaad ny: chiCheŵa oc: occitan oj: ᐊᓂᔑᓈᐯᒧᐎᓐ om: Afaan Oromoo
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jan 22 19:42:53 UTC 2024 - 3.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CharStreamsTest.java
} public void testReadLines() throws IOException { List<String> lines = CharStreams.readLines(new StringReader("a\nb\nc")); assertEquals(ImmutableList.of("a", "b", "c"), lines); } public void testReadLines_withLineProcessor() throws IOException { String text = "a\nb\nc"; // Test a LineProcessor that always returns false. Reader r = new StringReader(text); LineProcessor<Integer> alwaysFalse =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 11.2K bytes - Viewed (0)