Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 507 for loggers (0.18 sec)

  1. internal/logger/targets.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package logger
    
    import (
    	"context"
    	"fmt"
    	"strings"
    	"sync"
    
    	"github.com/minio/minio/internal/logger/target/http"
    	"github.com/minio/minio/internal/logger/target/kafka"
    	"github.com/minio/minio/internal/logger/target/types"
    )
    
    // Target is the entity that we will receive
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ScopedListenerManager.java

         * However, the reverse is not true:
         * events broadcast in the parent are not received by the listeners in the children.
         * The child inherits the loggers of its parent, though these can be replaced.
         *
         * @return The child
         */
        ScopedListenerManager createChild(Class<? extends Scope> scope);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 10:09:43 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    * Defining machine-specific details (e.g., JDK locations)
    * Registering build listeners (e.g., external tools that wish to listen to Gradle events might find this helpful)
    * Registering loggers (e.g., customize how Gradle logs the events that it generates)
    
    One main <<sharing_build_logic_between_subprojects.adoc#sec:using_buildsrc,limitation of init scripts>> is that they cannot access classes in the `buildSrc` project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/JULRedirectorTest.groovy

        private final StandardOutputRedirector.OutputListener stdErrListener = Mock()
        private final Logger logger1 = Logger.getLogger("")
        private final Logger logger2 = Logger.getLogger("hello")
        private final Logger logger3 = Logger.getLogger("hello.world")
        private static String savedJULConfigClassProperty = null;
    
        public static class DummyFormatter extends Formatter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Logger.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.wrapper;
    
    public class Logger implements Appendable {
    
        private final boolean quiet;
    
        public Logger(boolean quiet) {
            this.quiet = quiet;
        }
    
        public void log(String message) {
            if (!quiet) {
                System.out.println(message);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. cmd/metrics-v3-logger-webhook.go

    		"Total number of messages sent to this target",
    		allWebhookLabels...)
    )
    
    // loadLoggerWebhookMetrics - `MetricsLoaderFn` for logger webhook
    // such as failed messages and total messages.
    func loadLoggerWebhookMetrics(ctx context.Context, m MetricValues, c *metricsCache) error {
    	tgts := append(logger.SystemTargets(), logger.AuditTargets()...)
    	for _, t := range tgts {
    		labels := []string{nameL, t.String(), endpointL, t.Endpoint()}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:27:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/LLFirStandaloneLibrarySymbolProviderFactory.kt

    import java.nio.file.Path
    import kotlin.io.path.absolutePathString
    import kotlin.io.path.extension
    import kotlin.io.path.isDirectory
    import org.jetbrains.kotlin.util.Logger as KLogger
    
    class LLFirStandaloneLibrarySymbolProviderFactory(private val project: Project) : LLFirLibrarySymbolProviderFactory() {
        override fun createJvmLibrarySymbolProvider(
            session: FirSession,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Apr 15 11:10:29 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

        private final Logger logger;
    
        public HealthExpirationStrategy(DaemonHealthStats stats, GarbageCollectorMonitoringStrategy strategy) {
            this(stats, strategy, LoggerFactory.getLogger(HealthExpirationStrategy.class));
        }
    
        HealthExpirationStrategy(DaemonHealthStats stats, GarbageCollectorMonitoringStrategy strategy, Logger logger) {
            this.stats = stats;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top