Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for rawlog (0.2 sec)

  1. src/cmd/go/internal/test/testflag.go

    			}
    
    			if nd.RawArg == "-args" || nd.RawArg == "--args" {
    				// -args or --args signals that everything that follows
    				// should be passed to the test.
    				explicitArgs = append(explicitArgs, remainingArgs...)
    				break
    			}
    
    			if firstUnknownFlag == "" {
    				firstUnknownFlag = nd.RawArg
    			}
    
    			explicitArgs = append(explicitArgs, nd.RawArg)
    			args = remainingArgs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. pkg/test/echo/server/forwarder/config.go

    			if err != nil {
    				fwLog.Errorf("Failed to parse client certificate: %v", err)
    			}
    			fwLog.Debugf("Using client certificate [%s] issued by %s", cert.SerialNumber, cert.Issuer)
    			for _, uri := range cert.URIs {
    				fwLog.Debugf("  URI SAN: %s", uri)
    			}
    		}
    		// nolint: unparam
    		return func(info *tls.CertificateRequestInfo) (*tls.Certificate, error) {
    			fwLog.Debugf("Peer asking for client certificate")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. operator/cmd/mesh/install.go

    	// Needed in case we are running a test through this path that doesn't start a new process.
    	cache.FlushObjectCaches()
    	opts := &helmreconciler.Options{
    		DryRun: dryRun, Log: l, WaitTimeout: waitTimeout, ProgressLog: progress.NewLog(),
    		Force: force,
    	}
    	reconciler, err := helmreconciler.NewHelmReconciler(client, kubeClient, iop, opts)
    	if err != nil {
    		return err
    	}
    	status, err := reconciler.Reconcile()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. pkg/util/iptables/iptables_test.go

    	}
    	if fcmd.RunCalls != 1 {
    		t.Errorf("%s: Expected 1 Run() call, got %d", protocol, fcmd.RunCalls)
    	}
    	if !sets.New(fcmd.RunLog[0]...).HasAll(iptablesSaveCmd, "-t", "nat") {
    		t.Errorf("%s: Expected cmd containing '%s -t nat', got '%s'", protocol, iptablesSaveCmd, fcmd.RunLog[0])
    	}
    
    	// Failure.
    	buffer.Reset()
    	err = runner.SaveInto(TableNAT, buffer)
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/push_transpose_through_ewise.cc

    // in the graph.
    
    // ewise(tpose(x), tpose(y)) -> tpose(ewise(x, y))
    //    iff tpose(x) or tpose(y) has one use and have same permutation.
    //
    // Proof:
    // WLOG, let tpose(x) have 1 use. Then ewise is the only user, and removing
    // its use of tpose(x) will render tpose(x) deadcode. So in this case
    // we both remove 1 and add 1 transpose to the graph thus the number remains
    // unchanged.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top