Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 655 for Dlog (0.14 sec)

  1. src/runtime/debuglog.go

    // license that can be found in the LICENSE file.
    
    // This file provides an internal debug logging facility. The debug
    // log is a lightweight, in-memory, per-M ring buffer. By default, the
    // runtime prints the debug log on panic.
    //
    // To print something to the debug log, call dlog to obtain a dlogger
    // and use the methods on that to add values. The values will be
    // space-separated in the output (much like println).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. 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)
  3. src/log/log.go

    // of each logged message.
    // Every log message is output on a separate line: if the message being
    // printed does not end in a newline, the logger will add one.
    // The Fatal functions call [os.Exit](1) after writing the log message.
    // The Panic functions call panic after writing the log message.
    package log
    
    import (
    	"fmt"
    	"io"
    	"log/internal"
    	"os"
    	"runtime"
    	"sync"
    	"sync/atomic"
    	"time"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.523826Z	warning	envoy config	[bazel-out/k8-opt/bin/external/envoy/source/common/config/_virtual_includes/grpc_stream_lib/common/config/grpc_stream.h:92] StreamAggregatedResources...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_plugin.go

    	klog.V(4).Info(log("mounter created successfully"))
    	return mounter, nil
    }
    
    func (p *csiPlugin) NewUnmounter(specName string, podUID types.UID) (volume.Unmounter, error) {
    	klog.V(4).Infof(log("setting up unmounter for [name=%v, podUID=%v]", specName, podUID))
    
    	kvh, ok := p.host.(volume.KubeletVolumeHost)
    	if !ok {
    		return nil, errors.New(log("cast from VolumeHost to KubeletVolumeHost failed"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. 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)
  7. cluster/log-dump/log-dump.sh

    readonly master_logfiles="kube-apiserver.log kube-apiserver-audit.log kube-scheduler.log kube-controller-manager.log cloud-controller-manager.log etcd.log etcd-events.log glbc.log cluster-autoscaler.log kube-addon-manager.log konnectivity-server.log fluentd.log kubelet.cov"
    readonly node_logfiles="kube-proxy.log containers/konnectivity-agent-*.log fluentd.log node-problem-detector.log kubelet.cov kube-network-policies.log"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. pkg/log/scope_test.go

    	cases := []struct {
    		log      func()
    		expected string
    	}{
    		{
    			func() { klog.Error("foo") },
    			"error\tklog\tfoo$",
    		},
    		{
    			func() { klog.Error("foo") },
    			"foo$",
    		},
    		{
    			func() { klog.Errorf("fmt %v", "item") },
    			"fmt item$",
    		},
    		{
    			func() { klog.Errorf("fmt %v", "item") },
    			"fmt item$",
    		},
    		{
    			func() { klog.ErrorS(errors.New("my error"), "info") },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    }
    
    func (o *AuditLogOptions) newBackend(w io.Writer) audit.Backend {
    	groupVersion, _ := schema.ParseGroupVersion(o.GroupVersionString)
    	log := pluginlog.NewBackend(w, o.Format, groupVersion)
    	log = o.BatchOptions.wrapBackend(log)
    	log = o.TruncateOptions.wrapBackend(log, groupVersion)
    	return log
    }
    
    func (o *AuditWebhookOptions) AddFlags(fs *pflag.FlagSet) {
    	fs.StringVar(&o.ConfigFile, "audit-webhook-config-file", o.ConfigFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  10. pkg/proxy/serviceport.go

    		}
    	}
    	if len(invalidIPs) > 0 {
    		klog.V(4).InfoS("Service change tracker ignored the following load balancer ingress IPs for given Service as they don't match the IP Family",
    			"ipFamily", ipFamily, "loadBalancerIngressIPs", invalidIPs, "service", klog.KObj(service))
    	}
    
    	if apiservice.NeedsHealthCheck(service) {
    		p := service.Spec.HealthCheckNodePort
    		if p == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top