Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,258 for fmtE (0.05 sec)

  1. src/internal/trace/batch.go

    	// for the batch.
    	gen, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch gen: %w", err)
    	}
    	m, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch M ID: %w", err)
    	}
    	ts, err := binary.ReadUvarint(r)
    	if err != nil {
    		return batch{}, gen, fmt.Errorf("error reading batch timestamp: %w", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. istioctl/pkg/admin/istiodconfig.go

    			},
    		)
    	}
    	switch ga.outputFormat {
    	case "short":
    		w := new(tabwriter.Writer).Init(out, 0, 8, 3, ' ', 0)
    		_, _ = fmt.Fprintln(w, "ACTIVE SCOPE\tDESCRIPTION\tLOG LEVEL")
    		for _, sll := range resultScopeLogLevel {
    			_, _ = fmt.Fprintf(w, "%s\t%s\t%s\n", sll.ScopeName, sll.Description, sll.LogLevel)
    		}
    		return w.Flush()
    	case "json", "yaml":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. tests/integration/pilot/istioctl_test.go

    				{
    					name: "ingressgateway",
    					pod:  fmt.Sprintf("%s.%s", gwPod, i.Settings().SystemNamespace),
    					wants: []*regexp.Regexp{
    						regexp.MustCompile(fmt.Sprintf(`DENY\s+deny-policy\.%s\s+2`, i.Settings().SystemNamespace)),
    						regexp.MustCompile(fmt.Sprintf(`ALLOW\s+allow-policy\.%s\s+1`, i.Settings().SystemNamespace)),
    					},
    				},
    				{
    					name: "workload",
    					pod:  fmt.Sprintf("%s.%s", appPod, apps.Namespace.Name()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/list.go

    		return "SP"
    	case REG_X0 <= r && r <= REG_X31:
    		return fmt.Sprintf("X%d", r-REG_X0)
    	case REG_F0 <= r && r <= REG_F31:
    		return fmt.Sprintf("F%d", r-REG_F0)
    	default:
    		return fmt.Sprintf("Rgok(%d)", r-obj.RBaseRISCV)
    	}
    }
    
    func opSuffixString(s uint8) string {
    	if s&rmSuffixBit == 0 {
    		return ""
    	}
    
    	ss, err := rmSuffixString(s)
    	if err != nil {
    		ss = fmt.Sprintf("<invalid 0x%x>", s)
    	}
    	if ss == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 959 bytes
    - Viewed (0)
  5. pkg/kubelet/logs/container_log_manager.go

    	if err != nil {
    		return fmt.Errorf("failed to get container status %q: %v", containerID, err)
    	}
    	if resp.GetStatus() == nil {
    		return fmt.Errorf("container status is nil for %q", containerID)
    	}
    	pattern := fmt.Sprintf("%s*", resp.GetStatus().GetLogPath())
    	logs, err := c.osInterface.Glob(pattern)
    	if err != nil {
    		return fmt.Errorf("failed to list all log files with pattern %q: %v", pattern, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/util/ipvs_linux.go

    	if err != nil {
    		return nil, fmt.Errorf("could not convert local virtual server to IPVS service: %w", err)
    	}
    	runner.mu.Lock()
    	ipvsSvc, err := runner.ipvsHandle.GetService(svc)
    	runner.mu.Unlock()
    
    	if err != nil {
    		return nil, fmt.Errorf("could not get IPVS service: %w", err)
    	}
    	vServ, err := toVirtualServer(ipvsSvc)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pkg/webhooks/validation/server/server.go

    	Mux *http.ServeMux
    }
    
    // String produces a stringified version of the arguments for debugging.
    func (o Options) String() string {
    	buf := &bytes.Buffer{}
    
    	_, _ = fmt.Fprintf(buf, "DomainSuffix: %s\n", o.DomainSuffix)
    	_, _ = fmt.Fprintf(buf, "Port: %d\n", o.Port)
    
    	return buf.String()
    }
    
    // DefaultArgs allocates an Options struct initialized with Webhook's default configuration.
    func DefaultArgs() Options {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. src/strconv/ctoa.go

    // formatted according to the format fmt and precision prec.
    //
    // The format fmt and precision prec have the same meaning as in [FormatFloat].
    // It rounds the result assuming that the original was obtained from a complex
    // value of bitSize bits, which must be 64 for complex64 and 128 for complex128.
    func FormatComplex(c complex128, fmt byte, prec, bitSize int) string {
    	if bitSize != 64 && bitSize != 128 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/internal/trace/testtrace/expectation.go

    	if !e.failure && err != nil {
    		return fmt.Errorf("unexpected error while reading the trace: %v", err)
    	}
    	if e.failure && err == nil {
    		return fmt.Errorf("expected error while reading the trace: want something matching %q, got none", e.errorMatcher)
    	}
    	if e.failure && err != nil && !e.errorMatcher.MatchString(err.Error()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/etcd/local_test.go

    				fmt.Sprintf("--listen-client-urls=https://127.0.0.1:%d,https://1.2.3.4:%d", kubeadmconstants.EtcdListenClientPort, kubeadmconstants.EtcdListenClientPort),
    				fmt.Sprintf("--listen-metrics-urls=http://127.0.0.1:%d", kubeadmconstants.EtcdMetricsPort),
    				fmt.Sprintf("--advertise-client-urls=https://1.2.3.4:%d", kubeadmconstants.EtcdListenClientPort),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top