Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for logErrs (0.4 sec)

  1. src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java

                }
            }
            return event;
        }
    
        @PluginFactory
        public static ErrorToWarnRewritePolicy createPolicy(@PluginAttribute("loggers") final String loggerNamePrefix) {
            final String[] loggerNames = loggerNamePrefix != null
                    ? Arrays.stream(loggerNamePrefix.split(",")).map(String::trim).filter(s -> s.length() > 0).toArray(n -> new String[n])
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidLog.kt

      }
    
      override fun flush() {
      }
    
      override fun close() {
      }
    }
    
    @SuppressSignatureCheck
    object AndroidLog {
      private const val MAX_LOG_LENGTH = 4000
    
      // Keep references to loggers to prevent their configuration from being GC'd.
      private val configuredLoggers = CopyOnWriteArraySet<Logger>()
    
      private val knownLoggers =
        LinkedHashMap<String, String>().apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLoggerManager.java

            return (null == hint
                    ? getLoggerForComponent(role)
                    : new Slf4jLogger(loggerFactory.getLogger(role + '.' + hint)));
        }
    
        //
        // Trying to give loggers back is a bad idea. Ceki said so :-)
        // notice to self: what was this method supposed to do?
        //
        /**
         * <b>Warning</b>: ignored.
         */
        public void returnComponentLogger(String role) {}
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/TestWorkerProgressListener.java

                }
            }
        }
    
        @Override
        public void output(TestDescriptorInternal testDescriptor, TestOutputEvent event) {
        }
    
        /**
         * Completes and clears registered progress loggers even if test worker crashed.
         */
        public void completeAll() {
            for (ProgressLogger progressLogger : testWorkerProgressLoggers.values()) {
                progressLogger.completed();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

    public class DefaultWagonManager extends org.apache.maven.repository.legacy.DefaultWagonManager
            implements WagonManager {
    
        // NOTE: This must use a different field name than in the super class or IoC has no chance to inject the loggers
        @Inject
        private Logger log;
    
        @Inject
        private LegacySupport legacySupport;
    
        @Inject
        private SettingsDecrypter settingsDecrypter;
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

     istioctl ztunnel-config log
    
     # Update levels of the all loggers for a specific Ztunnel pod
     istioctl ztunnel-config log <pod-name[.namespace]> --level off
    
     # Update levels of the specified loggers for all Ztunnl pods
     istioctl ztunnel-config log --level access:debug,info
    
     # Reset levels of all the loggers to default value (warning)  for a specific Ztunnel pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. istioctl/pkg/admin/istiodconfig.go

      istioctl admin l istiod-5c868d8bdd-pmvgg
    
      # Update levels of the specified loggers.
      istioctl admin log --level ads:debug,authorization:debug
    
      # Retrieve information about istiod logging levels for a specified revision.
      istioctl admin log --revision v1
    
      # Reset levels of all the loggers to default value (info).
      istioctl admin log --reset
    `,
    		Aliases: []string{"l"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/go.mod

    	github.com/prometheus/client_model v0.6.0 // indirect
    	github.com/prometheus/common v0.48.0 // indirect
    	github.com/prometheus/procfs v0.12.0 // indirect
    	github.com/sirupsen/logrus v1.9.3 // indirect
    	github.com/soheilhy/cmux v0.1.5 // indirect
    	github.com/spf13/cobra v1.8.0 // indirect
    	github.com/stoewer/go-strcase v1.2.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/proxyconfig.go

      istioctl proxy-config log <pod-name[.namespace]>
    
      # Update levels of the all loggers
      istioctl proxy-config log <pod-name[.namespace]> --level none
    
      # Update levels of the specified loggers.
      istioctl proxy-config log <pod-name[.namespace]> --level http:debug,redis:debug
    
      # Reset levels of all the loggers to default value (warning).
      istioctl proxy-config log <pod-name[.namespace]> -r
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerManager.java

        /**
         * Uses the given object as a logger. Each listener class has exactly one logger associated with it. Any existing
         * logger for the listener class is discarded. Loggers are otherwise treated the same way as listeners.
         *
         * @param logger The new logger to use.
         */
        void useLogger(Object logger);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top