Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for LumberJack (0.78 sec)

  1. pkg/log/config.go

    package log
    
    import (
    	"os"
    	"strings"
    	"sync/atomic"
    	"time"
    
    	"go.uber.org/zap"
    	"go.uber.org/zap/zapcore"
    	"go.uber.org/zap/zapgrpc"
    	"google.golang.org/grpc/grpclog"
    	"gopkg.in/natefinch/lumberjack.v2"
    	"k8s.io/klog/v2"
    )
    
    const (
    	// none is used to disable logging output as well as to disable stack tracing.
    	none          zapcore.Level = 100
    	GrpcScopeName string        = "grpc"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    	"time"
    
    	"github.com/spf13/pflag"
    	"gopkg.in/natefinch/lumberjack.v2"
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/sets"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  3. go.mod

    	google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117
    	google.golang.org/grpc v1.64.0
    	google.golang.org/protobuf v1.34.1
    	gopkg.in/natefinch/lumberjack.v2 v2.2.1
    	gopkg.in/yaml.v2 v2.4.0
    	gopkg.in/yaml.v3 v3.0.1
    	helm.sh/helm/v3 v3.15.1
    	istio.io/api v1.22.0-alpha.1.0.20240612140428-341dd53c476f
    	istio.io/client-go v1.22.0-alpha.1.0.20240612141229-fd83cdce6c7d
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/coderepo_test.go

    		zipSum:      "h1:YJYZRsM9BHFTlVr8YADjT0cJH8uFIDtoc5NLiVqZEx8=",
    		zipFileHash: "c15e49d58b7a4c37966cbe5bc01a0330cd5f2927e990e1839bda1d407766d9c5",
    	},
    	{
    		vcs:  "git",
    		path: "gopkg.in/natefinch/lumberjack.v2",
    		// This repo has a v2.1 tag.
    		// We only allow semver references to tags that are fully qualified, as in v2.1.0.
    		// Because we can't record v2.1.0 (the actual tag is v2.1), we record a pseudo-version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-kubeapiserver.sh

          params+=" --audit-log-path=/var/log/kube-apiserver-audit.log"
          params+=" --audit-log-maxage=0"
          params+=" --audit-log-maxbackup=0"
          # Lumberjack doesn't offer any way to disable size-based rotation. It also
          # has an in-memory counter that doesn't notice if you truncate the file.
          # 2000000000 (in MiB) is a large number that fits in 31 bits. If the log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. go.mod

    	google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d // indirect
    	google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d // indirect
    	gopkg.in/inf.v0 v0.9.1 // indirect
    	gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
    	k8s.io/gengo/v2 v2.0.0-20240228010128-51d4e06bde70 // indirect
    	sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
    	sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top