Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for rawlog (0.33 sec)

  1. cluster/gce/manifests/kube-addon-manager.yaml

        resources:
          requests:
            cpu: 5m
            memory: 50Mi
        volumeMounts:
        - mountPath: /etc/kubernetes/
          name: addons
          readOnly: true
        - mountPath: /var/log
          name: varlog
          readOnly: false
        - mountPath: /etc/srv/kubernetes/addon-manager/
          name: srvkube
          readOnly: true
        env:
        - name: KUBECTL_PRUNE_WHITELIST_OVERRIDE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 03:09:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/swagger_doc_generator.go

    	return doc.New(apkg, "", 0)
    }
    
    func fmtRawDoc(rawDoc string) string {
    	var buffer bytes.Buffer
    	delPrevChar := func() {
    		if buffer.Len() > 0 {
    			buffer.Truncate(buffer.Len() - 1) // Delete the last " " or "\n"
    		}
    	}
    
    	// Ignore all lines after ---
    	rawDoc = strings.Split(rawDoc, "---")[0]
    
    	for _, line := range strings.Split(rawDoc, "\n") {
    		line = strings.TrimRight(line, " ")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 03 07:33:58 UTC 2017
    - 7K bytes
    - Viewed (0)
  3. test-site/activator-launch-1.3.2.jar

    String); } xsbt/boot/SbtIvyLogger.class package xsbt.boot; public final synchronized class SbtIvyLogger extends org.apache.ivy.util.DefaultMessageLogger { private final java.io.PrintWriter logWriter; public final void log(String, int); public final void rawlog(String, int); public final void error(String); public void SbtIvyLogger(java.io.PrintWriter); } xsbt/boot/Configuration$$anonfun$1.class package xsbt.boot; public final synchronized class Configuration$$anonfun$1 extends scala.runtime.AbstractFunction1...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  4. src/cmd/go/internal/script/engine.go

    			if !quoted {
    				// starting a quoted chunk
    				if start >= 0 {
    					rawArg = append(rawArg, argFragment{s: line[start:i], quoted: false})
    				}
    				start = i + 1
    				quoted = true
    				continue
    			}
    			// 'foo''bar' means foo'bar, like in rc shell and Pascal.
    			if i+1 < len(line) && line[i+1] == '\'' {
    				rawArg = append(rawArg, argFragment{s: line[start:i], quoted: true})
    				start = i + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  5. pkg/test/echo/server/forwarder/util.go

    		sleepTime := time.Second / time.Duration(qps)
    		fwLog.Debugf("Sleeping %v between requests", sleepTime)
    		throttle = time.NewTicker(sleepTime)
    		defer throttle.Stop()
    	}
    
    	g := e.NewGroup()
    	for index := 0; index < cfg.count; index++ {
    		index := index
    		workFn := func() error {
    			st := time.Now()
    			resp, err := doReq(ctx, cfg, index)
    			if err != nil {
    				fwLog.Debugf("request failed: %v", err)
    				return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. cluster/log-dump/logexporter-daemonset.yaml

            - --sleep-duration=24h
            volumeMounts:
            - mountPath: /etc/service-account
              name: service
              readOnly: true
            - mountPath: /var/log
              name: varlog
              readOnly: true
            - mountPath: /workspace/etc
              name: hostetc
              readOnly: true
            resources:
              requests:
                cpu: 10m
                memory: 10Mi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 25 13:45:49 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/prune_test.go

    			err := yaml.UnmarshalStrict(data, iop)
    			assert.NoError(t, err)
    			h := &HelmReconciler{
    				client:     cl,
    				kubeClient: kube.NewFakeClientWithVersion("24"),
    				opts: &Options{
    					ProgressLog: progress.NewLog(),
    					Log:         clog.NewDefaultLogger(),
    				},
    				iop:           iop,
    				countLock:     &sync.Mutex{},
    				prunedKindSet: map[schema.GroupKind]struct{}{},
    			}
    			if i == 0 {
    				h1 = h
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 12:13:37 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. pkg/test/echo/server/forwarder/tcp.go

    	if cfg.proxyProtocolVersion != 0 {
    		fwLog.Infof("TCP forwarder using PROXY protocol version %d", cfg.proxyProtocolVersion)
    		header := proxyproto.HeaderProxyFromAddrs(byte(cfg.proxyProtocolVersion), conn.LocalAddr(), conn.RemoteAddr())
    		// After the connection is created, write the proxy headers first
    		if _, err := header.WriteTo(conn); err != nil {
    			fwLog.Warnf("TCP Proxy protocol header write failed: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. src/runtime/race/testdata/regression_test.go

    package race_test
    
    import (
    	"testing"
    )
    
    type LogImpl struct {
    	x int
    }
    
    func NewLog() (l LogImpl) {
    	c := make(chan bool)
    	go func() {
    		_ = l
    		c <- true
    	}()
    	l = LogImpl{}
    	<-c
    	return
    }
    
    var _ LogImpl = NewLog()
    
    func MakeMap() map[int]int {
    	return make(map[int]int)
    }
    
    func InstrumentMapLen() {
    	_ = len(MakeMap())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 02:01:34 UTC 2015
    - 2.7K bytes
    - Viewed (0)
  10. pkg/security/retry.go

    	"time"
    
    	retry "github.com/grpc-ecosystem/go-grpc-middleware/retry"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/codes"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/security/pkg/monitoring"
    )
    
    var caLog = log.RegisterScope("ca", "ca client")
    
    // CARetryOptions returns the default retry options recommended for CA calls
    // This includes 5 retries, with backoff from 100ms -> 1.6s with jitter.
    var CARetryOptions = []retry.CallOption{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top