- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for textContent (0.04 sec)
-
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
return 0; } @Override public String getTextContent() { return null; } @Override public void setTextContent(String textContent) { } @Override public boolean isSameNode(Node other) { return false; } @Override public String lookupPrefix(String namespaceURI) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 21K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
assertEquals(testContent, result); } } @Test public void testMemoryBasedCacheMultipleReads() throws IOException { String testContent = "Hello, World!"; byte[] data = testContent.getBytes("UTF-8"); ContentCache cache = new ContentCache(data); // First read try (InputStream stream1 = cache.getInputStream()) {
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlResponseTest.java
response.setEncoding("UTF-8"); String testContent = "Hello, World!"; byte[] data = testContent.getBytes("UTF-8"); ContentCache cache = new ContentCache(data); response.setContentCache(cache); String content = response.getContentAsString(); assertEquals(testContent, content); } @Test
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 11.5K bytes - Viewed (0) -
cmd/object_api_suite_test.go
ExecExtendedObjectLayerTest(t, testPutObject) } // Tests validate PutObject without prefix. func testPutObject(obj ObjectLayer, instanceType string, t TestErrHandler) { content := []byte("testcontent") length := int64(len(content)) readerEOF := newTestReaderEOF(content) readerNoEOF := newTestReaderNoEOF(content) err := obj.MakeBucket(context.Background(), "bucket", MakeBucketOptions{}) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.5K bytes - Viewed (0)