Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,982 for logR (0.04 sec)

  1. pkg/log/logr.go

    // limitations under the License.
    
    package log
    
    import (
    	"fmt"
    
    	"github.com/go-logr/logr"
    )
    
    // zapLogger is a logr.Logger that uses Zap to log. This is needed to get
    // libraries, namely Kubernetes/klog, that use logr, to use our standard logging.
    // This enables standard formatting, scope filtering, and options. The logr
    // interface does not have a concept of Debug/Info/Warn/Error as we do. Instead,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. pkg/log/logr_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package log
    
    import (
    	"errors"
    	"testing"
    
    	"github.com/go-logr/logr"
    )
    
    func runLogrTestWithScope(t *testing.T, s *Scope, f func(l logr.Logger)) []string {
    	lines, err := captureStdout(func() {
    		Configure(DefaultOptions())
    		l := NewLogrAdapter(s)
    		f(l)
    		_ = Sync()
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/go.mod

    	k8s.io/apimachinery v0.0.0
    )
    
    require (
    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
    	github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/golang/protobuf v1.5.4 // indirect
    	github.com/google/go-cmp v0.6.0 // indirect
    	github.com/google/gofuzz v1.2.0 // indirect
    	github.com/json-iterator/go v1.1.12 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. pkg/proxy/util/linebuffer.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package util
    
    import (
    	"bytes"
    	"fmt"
    	"strings"
    
    	"github.com/go-logr/logr"
    )
    
    // LineBuffer is an interface for writing lines of input to a bytes.Buffer
    type LineBuffer interface {
    	// Write takes a list of arguments, each a string or []string, joins all the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    	utilpath "k8s.io/utils/path"
    	utilstrings "k8s.io/utils/strings"
    )
    
    // these interfaces are necessary to keep the structures private
    // and at the same time log them correctly in structured logs.
    var _ logr.Marshaler = podVolume{}
    var _ logr.Marshaler = reconstructedVolume{}
    var _ logr.Marshaler = globalVolumeInfo{}
    
    type podVolume struct {
    	podName        volumetypes.UniquePodName
    	volumeSpecName string
    	volumePath     string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/go.mod

    	k8s.io/utils v0.0.0-20230726121419-3b25d923346b
    	sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
    	sigs.k8s.io/structured-merge-diff/v4 v4.4.1
    	sigs.k8s.io/yaml v1.4.0
    )
    
    require (
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/go-openapi/jsonpointer v0.19.6 // indirect
    	github.com/go-openapi/jsonreference v0.20.2 // indirect
    	github.com/go-openapi/swag v0.22.4 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/go.mod

    	github.com/emicklei/go-restful/v3 v3.11.0 // indirect
    	github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
    	github.com/go-errors/errors v1.4.2 // indirect
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/go-openapi/jsonpointer v0.19.6 // indirect
    	github.com/go-openapi/jsonreference v0.20.2 // indirect
    	github.com/go-openapi/swag v0.22.4 // indirect
    	github.com/gogo/protobuf v1.3.2 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/go.mod

    	github.com/felixge/httpsnoop v1.0.3 // indirect
    	github.com/fsnotify/fsnotify v1.7.0 // indirect
    	github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/go-logr/stdr v1.2.2 // indirect
    	github.com/go-openapi/jsonpointer v0.19.6 // indirect
    	github.com/go-openapi/jsonreference v0.20.2 // indirect
    	github.com/go-openapi/swag v0.22.4 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/go.mod

    	github.com/dustin/go-humanize v1.0.1 // indirect
    	github.com/felixge/httpsnoop v1.0.3 // indirect
    	github.com/fxamacker/cbor/v2 v2.7.0-beta // indirect
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/go-logr/stdr v1.2.2 // indirect
    	github.com/go-openapi/jsonpointer v0.19.6 // indirect
    	github.com/go-openapi/jsonreference v0.20.2 // indirect
    	github.com/go-openapi/swag v0.22.4 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/go.sum

    github.com/fxamacker/cbor/v2 v2.7.0-beta h1:m5bO941uTVpSms26QjzEJxUZaC3S/h1pSJexBCu4wAA=
    github.com/fxamacker/cbor/v2 v2.7.0-beta/go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ=
    github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ=
    github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=
    github.com/go-openapi/jsonpointer v0.19.6/go.mod h1:osyAmYz/mB/C3I+WsTTSgw1ONzaLJoLCyoi6/zppojs=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top