Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,731 for Dlog (0.03 sec)

  1. 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)
  2. pkg/kubelet/cm/dra/plugin/plugin.go

    	klog.InfoS("Validate DRA plugin", "name", pluginName, "endpoint", endpoint, "versions", strings.Join(versions, ","))
    
    	_, err := h.validateVersions("ValidatePlugin", pluginName, versions)
    	if err != nil {
    		return fmt.Errorf("validation failed for DRA plugin %s at endpoint %s: %+v", pluginName, endpoint, err)
    	}
    
    	return err
    }
    
    // log prepends log string with `kubernetes.io/dra`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/log/slog/internal/slogtest/slogtest.go

    // Package slogtest contains support functions for testing slog.
    package slogtest
    
    import "log/slog"
    
    // RemoveTime removes the top-level time attribute.
    // It is intended to be used as a ReplaceAttr function,
    // to make example output deterministic.
    func RemoveTime(groups []string, a slog.Attr) slog.Attr {
    	if a.Key == slog.TimeKey && len(groups) == 0 {
    		return slog.Attr{}
    	}
    	return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 20:33:11 UTC 2023
    - 553 bytes
    - Viewed (0)
  4. operator/cmd/mesh/shared.go

    var installerScope = log.RegisterScope("installer", "installer")
    
    func init() {
    	// adding to remove message about the controller-runtime logs not getting displayed
    	// We cannot do this in the `log` package since it would place a runtime dependency on controller-runtime for all binaries.
    	scope := log.RegisterScope("controlleruntime", "scope for controller runtime")
    	controllruntimelog.SetLogger(log.NewLogrAdapter(scope))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. releasenotes/notes/default-access-log.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 27903
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 230 bytes
    - Viewed (0)
  6. releasenotes/notes/json-log-sort.yaml

    John Howard <******@****.***> 1706030446 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 23 17:20:46 UTC 2024
    - 148 bytes
    - Viewed (0)
  7. pkg/kubelet/server/auth.go

    	case isSubpath(requestPath, metricsPath):
    		attrs.Subresource = "metrics"
    	case isSubpath(requestPath, logsPath):
    		// "log" to match other log subresources (pods/log, etc)
    		attrs.Subresource = "log"
    	case isSubpath(requestPath, checkpointPath):
    		attrs.Subresource = "checkpoint"
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-log-link.png

    teamcity-log-link.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 42K bytes
    - Viewed (0)
Back to top