Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,192 for slog (1.83 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: only enable the klog flags that are still supported for kubeadm, rather than hiding the unwanted flags. This means that the previously unrecommended hidden flags about klog (including `--alsologtostderr`, `--log-backtrace-at`, `--log-dir`, `--logtostderr`, `--log-file`, `--log-file-max-size`, `--one-output`, `--skip-log-headers`, `--stderrthreshold` and `--vmodule`) are no longer allowed to be used. ([#125179](https...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. operator/pkg/util/clog/clog.go

    	stdOut io.Writer
    	stdErr io.Writer
    	scope  *log.Scope
    }
    
    // NewConsoleLogger creates a new logger and returns a pointer to it.
    // stdOut and stdErr can be used to capture output for testing. If scope is nil, the default scope is used.
    func NewConsoleLogger(stdOut, stdErr io.Writer, scope *log.Scope) *ConsoleLogger {
    	s := scope
    	if s == nil {
    		s = log.RegisterScope(log.DefaultScopeName, log.DefaultScopeName)
    	}
    	return &ConsoleLogger{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/math/cmplx/log.go

    // In IEEE arithmetic the peak absolute error is 5.2e-16, rms
    // absolute error 1.0e-16.
    
    // Log returns the natural logarithm of x.
    func Log(x complex128) complex128 {
    	return complex(math.Log(Abs(x)), Phase(x))
    }
    
    // Log10 returns the decimal logarithm of x.
    func Log10(x complex128) complex128 {
    	z := Log(x)
    	return complex(math.Log10E*real(z), math.Log10E*imag(z))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    	// listed in the log from the previous run.
    	// Then we look up test output using a combination of
    	// the hash from the first part (testID) and the hash of the
    	// test inputs (testInputsID).
    	//
    	// In order to store a new test result, we must redo the
    	// testInputsID computation using the log from the run
    	// we want to cache, and then we store that new log and
    	// the new outputs.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    // license that can be found in the LICENSE file.
    
    // Package tlog implements a tamper-evident log
    // used in the Go module go.sum database server.
    //
    // This package follows the design of Certificate Transparency (RFC 6962)
    // and its proofs are compatible with that system.
    // See TestCertificateTransparency.
    package tlog
    
    import (
    	"crypto/sha256"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"math/bits"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/go/printer/testdata/slow.golden

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/testdata/output/range_equals.log

    Martin Ostrowski <******@****.***> 1598993753 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 242 bytes
    - Viewed (0)
  8. tools/bug-report/pkg/testdata/output/range_not_equals.log

    Martin Ostrowski <******@****.***> 1598993753 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 242 bytes
    - Viewed (0)
  9. tools/bug-report/pkg/testdata/input/format_json.log

    Siyi Wang <******@****.***> 1684532673 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/rest/log.go

    )
    
    // LogREST implements the log endpoint for a Pod
    type LogREST struct {
    	KubeletConn client.ConnectionInfoGetter
    	Store       *genericregistry.Store
    }
    
    // LogREST implements GetterWithOptions
    var _ = rest.GetterWithOptions(&LogREST{})
    
    // New creates a new Pod log options object
    func (r *LogREST) New() runtime.Object {
    	// TODO - return a resource that represents a log
    	return &api.Pod{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 24 10:50:43 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top