Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for vfprintf (0.3 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	var params strings.Builder
    	if len(re.Params) == 0 {
    		fmt.Fprintf(&params, "%*sParams: nil", indent+2, "")
    	} else {
    		fmt.Fprintf(&params, "%*sParams:", indent+2, "")
    		for i, p := range re.Params {
    			params.WriteByte('\n')
    			params.WriteString(p.goString(indent+4, fmt.Sprintf("%d: ", i)))
    		}
    	}
    
    	var requirements strings.Builder
    	fmt.Fprintf(&requirements, "%*sRequirements:", indent+2, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    		// so the object file may refer to the absolute directory
    		// containing the package.
    		fmt.Fprintf(h, "dir %s\n", p.Dir)
    	}
    
    	if p.Module != nil {
    		fmt.Fprintf(h, "go %s\n", p.Module.GoVersion)
    	}
    	fmt.Fprintf(h, "goos %s goarch %s\n", cfg.Goos, cfg.Goarch)
    	fmt.Fprintf(h, "import %q\n", p.ImportPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    	writeBackQuery := func(w ResponseWriter, r *Request) {
    		fmt.Fprintf(w, "%s", r.URL.RawQuery)
    	}
    
    	mux := NewServeMux()
    	mux.HandleFunc("/testOne", writeBackQuery)
    	mux.HandleFunc("/testTwo/", writeBackQuery)
    	mux.HandleFunc("/testThree", writeBackQuery)
    	mux.HandleFunc("/testThree/", func(w ResponseWriter, r *Request) {
    		fmt.Fprintf(w, "%s:bar", r.URL.RawQuery)
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				loadRSAKey(t, "testdata/rsa_1.pem", jose.RS256),
    			},
    			claims: fmt.Sprintf(`{
    				"iss": "{{.URL}}",
    				"aud": "my-client",
    				"username": "jane",
    				"_claim_names": {
    						"groups": "src1"
    				},
    				"exp": %d
    			}`, valid.Unix()),
    			claimToResponseMap: map[string]string{
    				"groups": fmt.Sprintf(`{
    					"iss": "{{.URL}}",
    				    "aud": "my-client",
    					"groups": ["team1", "team2"],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    			buf.WriteByte(' ')
    		}
    	}
    	if t.env != "" {
    		fmt.Fprintf(&buf, "http_proxy=%q", t.env)
    	}
    	if t.httpsenv != "" {
    		space()
    		fmt.Fprintf(&buf, "https_proxy=%q", t.httpsenv)
    	}
    	if t.noenv != "" {
    		space()
    		fmt.Fprintf(&buf, "no_proxy=%q", t.noenv)
    	}
    	if t.reqmeth != "" {
    		space()
    		fmt.Fprintf(&buf, "request_method=%q", t.reqmeth)
    	}
    	req := "http://example.com"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    			fmt.Sprintf("some-instances.%s:%d", cfg.ClusterLocalFQDN(), port),
    			fmt.Sprintf("some-instances.%s:12345", cfg.ClusterLocalFQDN()),
    			fmt.Sprintf("some-instances.%s.%s.svc", cfg.Service, cfg.Namespace.Name()),
    			fmt.Sprintf("some-instances.%s.%s.svc:12345", cfg.Service, cfg.Namespace.Name()),
    			fmt.Sprintf("some-instances.%s", cfg.Service),
    			fmt.Sprintf("some-instances.%s:%d", cfg.Service, port),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	if obj.Spec.Completions != nil {
    		completions = fmt.Sprintf("%d/%d", obj.Status.Succeeded, *obj.Spec.Completions)
    	} else {
    		parallelism := int32(0)
    		if obj.Spec.Parallelism != nil {
    			parallelism = *obj.Spec.Parallelism
    		}
    		if parallelism > 1 {
    			completions = fmt.Sprintf("%d/1 of %d", obj.Status.Succeeded, parallelism)
    		} else {
    			completions = fmt.Sprintf("%d/1", obj.Status.Succeeded)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. src/net/http/server.go

    	log.Printf("%s.Read(%d) = ....", c.name, len(p))
    	n, err = c.Conn.Read(p)
    	log.Printf("%s.Read(%d) = %d, %v", c.name, len(p), n, err)
    	return
    }
    
    func (c *loggingConn) Close() (err error) {
    	log.Printf("%s.Close() = ...", c.name)
    	err = c.Conn.Close()
    	log.Printf("%s.Close() = %v", c.name, err)
    	return
    }
    
    // checkConnErrorWriter writes to c.rwc and records any write errors to c.werr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/generated.pb.go

    		`ObservedGeneration:` + fmt.Sprintf("%v", this.ObservedGeneration) + `,`,
    		`Replicas:` + fmt.Sprintf("%v", this.Replicas) + `,`,
    		`ReadyReplicas:` + fmt.Sprintf("%v", this.ReadyReplicas) + `,`,
    		`CurrentReplicas:` + fmt.Sprintf("%v", this.CurrentReplicas) + `,`,
    		`UpdatedReplicas:` + fmt.Sprintf("%v", this.UpdatedReplicas) + `,`,
    		`CurrentRevision:` + fmt.Sprintf("%v", this.CurrentRevision) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 217.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    		`ObservedGeneration:` + fmt.Sprintf("%v", this.ObservedGeneration) + `,`,
    		`Replicas:` + fmt.Sprintf("%v", this.Replicas) + `,`,
    		`ReadyReplicas:` + fmt.Sprintf("%v", this.ReadyReplicas) + `,`,
    		`CurrentReplicas:` + fmt.Sprintf("%v", this.CurrentReplicas) + `,`,
    		`UpdatedReplicas:` + fmt.Sprintf("%v", this.UpdatedReplicas) + `,`,
    		`CurrentRevision:` + fmt.Sprintf("%v", this.CurrentRevision) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top