Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for accumulate (5.21 sec)

  1. src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java

            File file = cos.getFile();
            assertTrue(file.exists());
            cos.close();
        }
    
        @Test
        public void testMultipleWrites() throws IOException {
            // Multiple write calls should accumulate
            ContentOutputStream cos = new ContentOutputStream(10, Curl.tmpDir);
            cos.write(new byte[] { 0, 1, 2 });
            assertTrue(cos.isInMemory());
            cos.write(new byte[] { 3, 4 });
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Wed Nov 12 14:01:04 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        protected WebConfig webConfig = null;
    
        /** Generated file crawling configuration from parsed GSA config. */
        protected FileConfig fileConfig = null;
    
        /** Buffer to accumulate character data between XML tags. */
        protected StringBuilder textBuf = new StringBuilder(1000);
    
        /** User agent string to be used for web crawling. */
        protected String userAgent = "gsa-crawler";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 21.6K bytes
    - Viewed (0)
Back to top