Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for standard_out (0.77 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rerun/InternalTestRerunPluginFuncTest.groovy

                testImplementation 'junit:junit:4.13.1'
            }
            
            tasks.named("test").configure {
                maxParallelForks = 4
                testLogging {
                    events "standard_out", "failed"
                    exceptionFormat "short"
                }
            }
            
            """
            createTest("SimpleTest")
            createTest("SimpleTest2")
            createTest("SimpleTest3")
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 8.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

        }
    
        @Test
        public void test_inheritance() {
            // Verify that FessWebResourceRoot extends StandardRoot
            assertTrue("FessWebResourceRoot should extend StandardRoot", StandardRoot.class.isAssignableFrom(FessWebResourceRoot.class));
            assertTrue("FessWebResourceRoot should implement WebResourceRoot",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

    import org.apache.catalina.WebResource;
    import org.apache.catalina.webresources.StandardRoot;
    
    /**
     * Fess-specific web resource root implementation for Tomcat.
     * This class extends StandardRoot to provide custom web resource handling
     * for Fess plugins, including support for plugin JAR files in the WEB-INF/plugin directory.
     */
    public class FessWebResourceRoot extends StandardRoot {
        /** Logger instance for this class */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java

          return standardSubMultiset(lowerBound, lowerBoundType, upperBound, upperBoundType);
        }
    
        @Override
        public int count(@Nullable Object element) {
          return standardCount(element);
        }
    
        @Override
        public boolean equals(@Nullable Object object) {
          return standardEquals(object);
        }
    
        @Override
        public int hashCode() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/collect/ForwardingMultisetTest.java

          return standardAdd(element);
        }
    
        @Override
        public void clear() {
          standardClear();
        }
    
        @Override
        public int count(Object element) {
          return standardCount(element);
        }
    
        @Override
        public boolean contains(Object object) {
          return standardContains(object);
        }
    
        @Override
        public boolean containsAll(Collection<?> collection) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jul 16 20:34:52 GMT 2025
    - 11.8K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/ForwardingMultiset.java

       * you override {@link #entrySet}, you may wish to override {@link #count} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      protected int standardCount(@Nullable Object object) {
        for (Entry<?> entry : this.entrySet()) {
          if (Objects.equals(entry.getElement(), object)) {
            return entry.getCount();
          }
        }
        return 0;
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  7. guava/src/com/google/common/collect/ForwardingMultiset.java

       * you override {@link #entrySet}, you may wish to override {@link #count} to forward to this
       * implementation.
       *
       * @since 7.0
       */
      protected int standardCount(@Nullable Object object) {
        for (Entry<?> entry : this.entrySet()) {
          if (Objects.equals(entry.getElement(), object)) {
            return entry.getCount();
          }
        }
        return 0;
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 10.3K bytes
    - Click Count (0)
Back to Top