Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,332 for logb (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    // is preferable to logging the error - the default behavior is to log but the
    // errors may be sent to a remote server for analysis. The context is used to
    // determine how to log the error.
    //
    // If contextual logging is enabled, the default log output is equivalent to
    //
    //	logr.FromContext(ctx).WithName("UnhandledError").Error(err, msg, keysAndValues...)
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        # monitored resource to ingest logs against.
    
        # Json Log Example:
        # {"log":"[info:2016-02-16T16:04:05.930-08:00] Some log text here\n","stream":"stdout","time":"2016-02-17T00:04:05.931087621Z"}
        # CRI Log Example:
        # 2016-02-17T00:04:05.931087621Z stdout F [info:2016-02-16T16:04:05.930-08:00] Some log text here
        <source>
          @type tail
          path /var/log/containers/*.log
          pos_file /var/log/gcp-containers.log.pos
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/testprog/annotations-stress.go

    	t3.End()
    	trace.Stop()
    	t2.End()
    	t0.End()
    }
    
    func do(ctx context.Context, k int) {
    	trace.Log(ctx, "log", "before do")
    
    	var t *trace.Task
    	ctx, t = trace.NewTask(ctx, "do")
    	defer t.End()
    
    	trace.Log(ctx, "log2", "do")
    
    	// Create a region and spawn more tasks and more workers.
    	trace.WithRegion(ctx, "fanout", func() {
    		for i := 0; i < k; i++ {
    			go func(i int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/Logger.java

        void log(LogLevel level, String message);
    
        /**
         * Logs the given message at the given log level.
         *
         * @param level the log level.
         * @param message the log message.
         * @param objects the log message parameters.
         */
        void log(LogLevel level, String message, Object... objects);
    
        /**
         * Logs the given message at the given log level.
         *
         * @param level the log level.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. tools/dump-docker-logs.sh

      # When not in CI, do nothing
      exit 0;
    fi
    
    echo "Fetching docker container status"
    docker ps || true
    echo "Fetching buildx logs"
    docker logs buildx_buildkit_container-builder0 || true
    echo "Fetching docker logs"
    cat /var/log/docker.log || true
    echo "Fetching local registry logs"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 25 20:37:36 UTC 2021
    - 939 bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

        # visible in the log viewer
    
        # Json Log Example:
        # {"log":"[info:2016-02-16T16:04:05.930-08:00] Some log text here\n","stream":"stdout","time":"2016-02-17T00:04:05.931087621Z"}
        # CRI Log Example:
        # 2016-02-17T00:04:05.931087621Z stdout F [info:2016-02-16T16:04:05.930-08:00] Some log text here
        <source>
          @type tail
          path /var/log/containers/*.log
          pos_file /var/log/gcp-containers.log.pos
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    			sourceURL:    "http://mynode.com/logs/log.log",
    			transport:    testTransport,
    			output:       `<pre><a href="kubelet.log">kubelet.log</a><a href="/google.log">google.log</a></pre>`,
    			contentType:  "text/plain",
    			forwardedURI: "/proxy/node/node1:10250/logs/log.log",
    		},
    		"subdir": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/go/doc/testdata/testing.0.golden

    	// Fatal is equivalent to Log() followed by FailNow(). 
    	func (c *B) Fatal(args ...any)
    
    	// Fatalf is equivalent to Logf() followed by FailNow(). 
    	func (c *B) Fatalf(format string, args ...any)
    
    	// Log formats its arguments using default formatting, analogous ...
    	func (c *B) Log(args ...any)
    
    	// Logf formats its arguments according to the format, analogous ...
    	func (c *B) Logf(format string, args ...any)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/bugreport/bugreport.go

    	go func() {
    		defer func() {
    			wg.Done()
    			logRuntime(startTime, "Done getting CNI logs for %v", pod)
    		}()
    
    		clog, _, _, err := getLog(runner, resources, config, namespace, pod, "")
    		appendGlobalErr(err)
    		writeFile(filepath.Join(archive.CniPath(tempDir, pod), "cni.log"), clog, config.DryRun)
    		log.Infof("Done with CNI logs %v", pod)
    	}()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/log/slog/logger.go

    	if _, ok := l.Handler().(*defaultHandler); !ok {
    		capturePC := log.Flags()&(log.Lshortfile|log.Llongfile) != 0
    		log.SetOutput(&handlerWriter{l.Handler(), &logLoggerLevel, capturePC})
    		log.SetFlags(0) // we want just the log message, no time or location
    	}
    }
    
    // handlerWriter is an io.Writer that calls a Handler.
    // It is used to link the default log.Logger to the default slog.Logger.
    type handlerWriter struct {
    	h         Handler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top