Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for rawlog (0.15 sec)

  1. cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml

          hostNetwork: true
          containers:
          - name: fluentd-gcp
            image: gcr.io/stackdriver-agents/stackdriver-logging-agent:{{ fluentd_gcp_version }}
            volumeMounts:
            - name: varlog
              mountPath: /var/log
            - name: varlibdockercontainers
              mountPath: /var/lib/docker/containers
              readOnly: true
            - name: config-volume
              mountPath: /etc/google-fluentd/config.d
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 27 17:54:10 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. pkg/test/echo/server/forwarder/udp.go

    		message = cfg.Request.Message
    	}
    
    	if _, err := conn.Write([]byte(message + "\n")); err != nil {
    		fwLog.Warnf("UDP write failed: %v", err)
    		return msgBuilder.String(), err
    	}
    	var resBuffer bytes.Buffer
    	buf := make([]byte, 1024+len(message))
    	n, err := conn.Read(buf)
    	if err != nil && err != io.EOF {
    		fwLog.Warnf("UDP read failed (already read %d bytes): %v", len(resBuffer.String()), err)
    		return msgBuilder.String(), err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. operator/pkg/util/progress/progress_test.go

    		newExpected := expected + "\n" + e
    		if newExpected != buf.String() {
    			t.Fatalf("expected '%v', \ngot '%v'", newExpected, buf.String())
    		}
    		expected = newExpected
    	}
    
    	p := NewLog()
    	cnp := name.PilotComponentName
    	cnpo := name.UserFacingComponentName(cnp)
    	cnb := name.IstioBaseComponentName
    	cnbo := name.UserFacingComponentName(cnb)
    	foo := p.NewComponent(string(cnp))
    	foo.ReportProgress()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

            done.releaseAll()
            waiting.releaseAll()
            result = build.waitForFailure()
    
            then:
            result.groupedOutput.task(':a:log').output == 'Before\nAfter'
            result.groupedOutput.task(':a:log').outcome == 'FAILED'
            result.groupedOutput.task(':b:log').output == 'Interrupting output'
            result.groupedOutput.task(':b:log').outcome == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. pkg/test/echo/server/forwarder/tls.go

    	message := "HelloWorld"
    	if cfg.Request.Message != "" {
    		message = cfg.Request.Message
    	}
    
    	start := time.Now()
    	if _, err := conn.Write([]byte(message + "\n")); err != nil {
    		fwLog.Warnf("TCP write failed: %v", err)
    		return msgBuilder.String(), err
    	}
    
    	cs := conn.ConnectionState()
    	echo.LatencyField.WriteForRequest(&msgBuilder, requestID, fmt.Sprintf("%v", time.Since(start)))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. operator/pkg/util/progress/progress.go

    type Log struct {
    	components map[string]*ManifestLog
    	bar        *pb.ProgressBar
    	template   string
    	mu         sync.Mutex
    	state      InstallState
    }
    
    func NewLog() *Log {
    	return &Log{
    		components: map[string]*ManifestLog{},
    		bar:        createBar(),
    	}
    }
    
    const inProgress = `{{ yellow (cycle . "-" "-" "-" " ") }} `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    	ProgressLog: progress.NewLog(),
    }
    
    // NewHelmReconciler creates a HelmReconciler and returns a ptr to it
    func NewHelmReconciler(client client.Client, kubeClient kube.Client, iop *istioV1Alpha1.IstioOperator, opts *Options) (*HelmReconciler, error) {
    	if opts == nil {
    		opts = defaultOptions
    	}
    	if opts.ProgressLog == nil {
    		opts.ProgressLog = progress.NewLog()
    	}
    	if int64(opts.WaitTimeout) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. operator/cmd/mesh/uninstall.go

    			return errors.New("could not find target revision")
    		}
    	}
    
    	cache.FlushObjectCaches()
    	opts := &helmreconciler.Options{DryRun: rootArgs.DryRun, Log: l, ProgressLog: progress.NewLog()}
    	var h *helmreconciler.HelmReconciler
    
    	// If the user is performing a purge install but also specified a revision or filename, we should warn
    	// that the purge will still remove all resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pkg/kubelet/logs/container_log_manager.go

    			// This shouldn't happen.
    			// Report an error if this happens, because we will lose original
    			// log.
    			klog.ErrorS(renameErr, "Failed to rename rotated log", "rotatedLog", rotated, "newLog", log, "containerID", id)
    		}
    		return fmt.Errorf("failed to reopen container log %q: %v", id, err)
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		}
    
    		loc := fmt.Sprintf("%s%s.rules:%d", arch.name, suff, ruleLineno)
    		for _, rule2 := range expandOr(rule) {
    			r := Rule{Rule: rule2, Loc: loc}
    			if rawop := strings.Split(rule2, " ")[0][1:]; isBlock(rawop, arch) {
    				blockrules[rawop] = append(blockrules[rawop], r)
    				continue
    			}
    			// Do fancier value op matching.
    			match, _, _ := r.parse()
    			op, oparch, _, _, _, _ := parseValue(match, arch, loc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
Back to top