Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,244 for logb (0.21 sec)

  1. 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)
  2. 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)
  3. src/io/ioutil/example_test.go

    		log.Fatal(err)
    	}
    }
    
    func ExampleTempDir_suffix() {
    	parentDir := os.TempDir()
    	logsDir, err := ioutil.TempDir(parentDir, "*-logs")
    	if err != nil {
    		log.Fatal(err)
    	}
    	defer os.RemoveAll(logsDir) // clean up
    
    	// Logs can be cleaned out earlier if needed by searching
    	// for all directories whose suffix ends in *-logs.
    	globPattern := filepath.Join(parentDir, "*-logs")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 22 23:03:58 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  4. src/go/doc/testdata/testing.1.golden

    	func (c *B) Failed() bool
    
    	// 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 ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/log/nflog.go

    var iptablesTrace = log.RegisterScope("iptables", "trace logs for iptables")
    
    // ReadNFLOGSocket reads from the nflog socket, sending output to logs.
    // This is intended for debugging only.
    func ReadNFLOGSocket(ctx context.Context) {
    	if !TraceLoggingEnabled {
    		return
    	}
    	iptablesTrace.Infof("starting nftable log")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. pkg/log/uds.go

    }
    
    // Sync implements zapcore.Core. It sends log messages with HTTP POST.
    func (u *udsCore) Sync() error {
    	logs := u.logsFromBuffer()
    	msg, err := json.Marshal(logs)
    	if err != nil {
    		return fmt.Errorf("failed to sync uds log: %v", err)
    	}
    	resp, err := u.client.Post(u.url, "application/json", bytes.NewReader(msg))
    	if err != nil {
    		return fmt.Errorf("failed to send logs to uds server %v: %v", u.url, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 00:20:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLogger.java

         * Convenience method that sets descriptions and logs started() event.
         *
         * @param status The initial status message. Can be null or empty.
         * @return this logger instance
         */
        ProgressLogger start(String description, String status);
    
        /**
         * Logs the start of the operation, with no initial status.
         */
        void started();
    
        /**
         * Logs the start of the operation, with the given status.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. okhttp-android/src/test/kotlin/okhttp3/android/AndroidLoggingTest.kt

          // expected
        }
    
        val logs = ShadowLog.getLogsForTag("testHttpLoggingInterceptor")
        assertThat(logs.map { it.type }).containsOnly(Log.INFO)
        assertThat(logs.map { it.msg }).containsExactly(
          "--> GET http://google.com/robots.txt",
          "<-- HTTP FAILED: java.net.UnknownHostException: shortcircuit",
        )
        // We should consider if these logs should retain Exceptions
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/testing/iotest/logger.go

    // that it logs (using [log.Printf]) each write to standard error,
    // printing the prefix and the hexadecimal data written.
    func NewWriteLogger(prefix string, w io.Writer) io.Writer {
    	return &writeLogger{prefix, w}
    }
    
    type readLogger struct {
    	prefix string
    	r      io.Reader
    }
    
    func (l *readLogger) Read(p []byte) (n int, err error) {
    	n, err = l.r.Read(p)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/logging/kotlin/build.gradle.kts

    slf4jLogger.info("An info log message logged using SLF4j")
    // end::use-slf4j[]
    
    // tag::use-logger[]
    logger.quiet("An info log message which is always logged.")
    logger.error("An error log message.")
    logger.warn("A warning log message.")
    logger.lifecycle("A lifecycle info log message.")
    logger.info("An info log message.")
    logger.debug("A debug log message.")
    logger.trace("A trace log message.") // Gradle never logs TRACE level logs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top