Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,586 for vfprintf (0.15 sec)

  1. src/text/template/parse/parse_test.go

    	text := `
    {{(printf .Field1.Field2.Field3).Value}}
    {{$x := (printf .Field1.Field2.Field3).Value}}
    {{$y := (printf $x.Field1.Field2.Field3).Value}}
    {{$z := $y.Field1.Field2.Field3}}
    {{if contains $y $z}}
    	{{printf "%q" $y}}
    {{else}}
    	{{printf "%q" $x}}
    {{end}}
    {{with $z.Field1 | contains "boring"}}
    	{{printf "%q" . | printf "%s"}}
    {{else}}
    	{{printf "%d %d %d" 11 11 11}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/internal/buildcfg/cfg.go

    		return "GO386", GO386
    	case "amd64":
    		return "GOAMD64", fmt.Sprintf("v%d", GOAMD64)
    	case "arm":
    		return "GOARM", GOARM.String()
    	case "arm64":
    		return "GOARM64", GOARM64.String()
    	case "mips", "mipsle":
    		return "GOMIPS", GOMIPS
    	case "mips64", "mips64le":
    		return "GOMIPS64", GOMIPS64
    	case "ppc64", "ppc64le":
    		return "GOPPC64", fmt.Sprintf("power%d", GOPPC64)
    	case "wasm":
    		return "GOWASM", GOWASM.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/envoy/configdump/endpoint.go

    	for _, eds := range dump {
    		for _, llb := range eds.Endpoints {
    			for _, ep := range llb.LbEndpoints {
    				addr := retrieveEndpointAddress(ep)
    				if includeConfigType {
    					addr = fmt.Sprintf("endpoint/%s", addr)
    				}
    				fmt.Fprintf(w, "%v\t%v\t%v\t%v\n",
    					addr,
    					ep.GetHealthStatus().String(),
    					util.LocalityToString(llb.Locality),
    					eds.ClusterName,
    				)
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/certs.go

    	for _, handler := range rm.Certificates() {
    		// get the cobra.Command skeleton for this command
    		cmd := &cobra.Command{
    			Use:   handler.Name,
    			Short: fmt.Sprintf("Renew the %s", handler.LongName),
    			Long:  fmt.Sprintf(genericCertRenewLongDesc, handler.LongName),
    		}
    		addRenewFlags(cmd, flags)
    		// get the implementation of renewing this certificate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/internal/fuzz/fuzz.go

    		if coverageEnabled {
    			fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, gathering baseline coverage: %d/%d completed\n", c.elapsed(), runSoFar, c.warmupInputCount)
    		} else {
    			fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, testing seed corpus: %d/%d completed\n", c.elapsed(), runSoFar, c.warmupInputCount)
    		}
    	} else if c.crashMinimizing != nil {
    		fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, minimizing\n", c.elapsed())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. src/flag/flag.go

    		} else if !isZero {
    			if _, ok := flag.Value.(*stringValue); ok {
    				// put quotes on the value
    				fmt.Fprintf(&b, " (default %q)", flag.DefValue)
    			} else {
    				fmt.Fprintf(&b, " (default %v)", flag.DefValue)
    			}
    		}
    		fmt.Fprint(f.Output(), b.String(), "\n")
    	})
    	// If calling String on any zero flag.Values triggered a panic, print
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/help.go

    The commands are:
    {{range .Commands}}{{if or (.Runnable) .Commands}}
    	{{.Name | printf "%-11s"}} {{.Short}}{{end}}{{end}}
    
    Use "go help{{with .LongName}} {{.}}{{end}} <command>" for more information about a command.
    {{if eq (.UsageLine) "go"}}
    Additional help topics:
    {{range .Commands}}{{if and (not .Runnable) (not .Commands)}}
    	{{.Name | printf "%-15s"}} {{.Short}}{{end}}{{end}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/doc/main.go

    func usage() {
    	fmt.Fprintf(os.Stderr, "Usage of [go] doc:\n")
    	fmt.Fprintf(os.Stderr, "\tgo doc\n")
    	fmt.Fprintf(os.Stderr, "\tgo doc <pkg>\n")
    	fmt.Fprintf(os.Stderr, "\tgo doc <sym>[.<methodOrField>]\n")
    	fmt.Fprintf(os.Stderr, "\tgo doc [<pkg>.]<sym>[.<methodOrField>]\n")
    	fmt.Fprintf(os.Stderr, "\tgo doc [<pkg>.][<sym>.]<methodOrField>\n")
    	fmt.Fprintf(os.Stderr, "\tgo doc <pkg> <sym>[.<methodOrField>]\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/profile-diff.go

    	if err != nil {
    		return false, fmt.Errorf("could not read %q: %v", profileB, err)
    	}
    
    	diff := util.YAMLDiff(a, b)
    	if diff == "" {
    		fmt.Fprintln(writer, "Profiles are identical")
    	} else {
    		fmt.Fprintf(writer, "The difference between profiles:\n%s", diff)
    		return true, nil
    	}
    
    	return false, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. istioctl/pkg/multixds/gather.go

    	}
    
    	return &retval, nil
    }
    
    func makeSan(istioNamespace, revision string) string {
    	if revision == "" {
    		return fmt.Sprintf("istiod.%s.svc", istioNamespace)
    	}
    	return fmt.Sprintf("istiod-%s.%s.svc", revision, istioNamespace)
    }
    
    // AllRequestAndProcessXds returns all XDS responses from 1 central or 1..N K8s cluster-based XDS servers
    // nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top