Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for standard_out (0.21 seconds)

  1. src/main/java/org/codelibs/fess/FessBoot.java

                op.replace("fess.log.path", fessLogPath.replace("\\", "/"));
            }).asYouLikeIt(resource -> {
                final Host host = resource.getHost();
                if (host instanceof final StandardHost standardHost) {
                    standardHost.setErrorReportValveClass(SuppressErrorReportValve.class.getName());
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditTask.java

                    spec.setExecutable(javaHome + "/bin/java");
                }
                spec.setStandardOutput(standardOut);
            });
            if (execResult.getExitValue() == 0) {
                return Collections.emptySet();
            }
            final String jdkJarHellCheckList;
            try (ByteArrayOutputStream outputStream = standardOut) {
                jdkJarHellCheckList = outputStream.toString(StandardCharsets.UTF_8.name());
            }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 16.2K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. 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