Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for completa (0.04 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerStatusTest.java

            statusMap.put(CrawlerStatus.DONE, "Completed");
    
            // Verify entries
            assertEquals(3, statusMap.size());
            assertEquals("Starting up", statusMap.get(CrawlerStatus.INITIALIZING));
            assertEquals("In progress", statusMap.get(CrawlerStatus.RUNNING));
            assertEquals("Completed", statusMap.get(CrawlerStatus.DONE));
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java

                        }
                    }
                });
            }
    
            startLatch.countDown();
            boolean completed = endLatch.await(30, TimeUnit.SECONDS);
            assertTrue("Test should complete within timeout", completed);
            executor.shutdown();
    
            assertEquals(threadCount * operationsPerThread * 2, successCount.get());
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 28K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java

         * Test basic initialization with session ID
         */
        public void test_init_withSessionId() {
            String sessionId = "test-session-001";
            urlFilter.init(sessionId);
            // Initialization should complete without errors
            assertNotNull(urlFilter);
        }
    
        /**
         * Test initialization with null session ID
         */
        public void test_init_withNullSessionId() {
            urlFilter.init(null);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java

            executor.shutdown();
    
            assertTrue(exceptions.isEmpty());
            assertEquals(threadCount * operationsPerThread, crawlerContext.getAccessCount());
        }
    
        /**
         * Test complete workflow scenario
         */
        public void test_completeWorkflow() {
            // Initialize context
            crawlerContext.setSessionId("workflow-session");
            crawlerContext.setStatus(CrawlerStatus.INITIALIZING);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java

                    }
                });
            }
    
            // Start all threads
            for (Thread thread : threads) {
                thread.start();
            }
    
            // Wait for all threads to complete
            for (Thread thread : threads) {
                thread.join();
            }
    
            // Verify results
            assertTrue(exceptions.isEmpty());
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  6. cmd/erasure-multipart.go

    	}
    	return errors.New(part.Error)
    }
    
    // CompleteMultipartUpload - completes an ongoing multipart
    // transaction after receiving all the parts indicated by the client.
    // Returns an md5sum calculated by concatenating all the individual
    // md5sums of all the parts.
    //
    // Implements S3 compatible Complete multipart API.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 47.3K bytes
    - Viewed (0)
  7. go.mod

    	github.com/olekukonko/tablewriter v0.0.5 // indirect
    	github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
    	github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
    	github.com/posener/complete v1.2.3 // indirect
    	github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
    	github.com/prometheus/prom2json v1.4.2 // indirect
    	github.com/prometheus/prometheus v0.303.0 // indirect
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Sep 06 17:33:19 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  8. cmd/object-multipart-handlers.go

    	w.Header()[xhttp.ETag] = []string{"\"" + etag + "\""}
    	hash.TransferChecksumHeader(w, r)
    
    	writeSuccessResponseHeadersOnly(w)
    }
    
    // CompleteMultipartUploadHandler - Complete multipart upload.
    func (api objectAPIHandlers) CompleteMultipartUploadHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "CompleteMultipartUpload")
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 39.5K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java

            testTransformer.setName(maxName.toString());
            assertEquals(10000, testTransformer.getName().length());
            assertEquals(maxName.toString(), testTransformer.getName());
        }
    
        /**
         * Test complete workflow
         */
        public void test_completeWorkflow() {
            // Create transformer with name
            TestTransformer transformer = new TestTransformer();
            transformer.setName("workflowTransformer");
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  10. src/bufio/bufio.go

    // collectFragments reads until the first occurrence of delim in the input. It
    // returns (slice of full buffers, remaining bytes before delim, total number
    // of bytes in the combined first two elements, error).
    // The complete result is equal to
    // `bytes.Join(append(fullBuffers, finalFragment), nil)`, which has a
    // length of `totalLen`. The result is structured in this way to allow callers
    // to minimize allocations and copies.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Sep 03 14:04:47 UTC 2025
    - 22K bytes
    - Viewed (0)
Back to top