Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for failureCount (5.14 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final int failureCount = fessConfig.getFailureCountThreshold();
            final String ignoreFailureType = fessConfig.getIgnoreFailureType();
    
            if (failureCount < 0) {
                return Collections.emptyList();
            }
    
            final int count = failureCount;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/EventListenerTest.kt

            }
    
            override fun writeTo(sink: BufferedSink) {
              var failureCount = 0
              for (i in 0..1023) {
                try {
                  sink.write(ByteArray(1024 * 256))
                  sink.flush()
                } catch (e: IOException) {
                  failureCount++
                  if (failureCount == 3) throw e
                }
              }
            }
          }
        server.enqueue(
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    public synchronized void removeListener(TestListener); private synchronized java.util.List cloneListeners(); public void endTest(Test); public synchronized int errorCount(); public synchronized java.util.Enumeration errors(); public synchronized int failureCount(); public synchronized java.util.Enumeration failures(); protected void run(TestCase); public synchronized int runCount(); public void runProtected(Test, Protectable); public synchronized boolean shouldStop(); public void startTest(Test); public...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

            var containingFailures = false
    
            val serializer = TestResultSerializer(testBinaryResultsDir)
            if (serializer.isHasResults) {
                serializer.read {
                    if (failuresCount > 0) {
                        containingFailures = true
                    }
                }
            }
            return containingFailures
        }
    
        /**
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jul 28 16:19:47 GMT 2023
    - 12.5K bytes
    - Viewed (0)
Back to top