Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for sfprintf (0.73 sec)

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

    	var args string
    	if len(t.Args) == 0 {
    		args = fmt.Sprintf("%*sArgs: nil", indent+2, "")
    	} else {
    		args = fmt.Sprintf("%*sArgs:", indent+2, "")
    		for i, a := range t.Args {
    			args += "\n"
    			args += a.goString(indent+4, fmt.Sprintf("%d: ", i))
    		}
    	}
    	return fmt.Sprintf("%*s%sTemplate (%p):\n%s\n%s", indent, "", field, t,
    		t.Name.goString(indent+2, "Name: "), args)
    }
    
    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. 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)
  6. pkg/controller/podautoscaler/horizontal_test.go

    		reportedCPURequests: []resource.Quantity{
    			resource.MustParse(fmt.Sprint(perPodRequested+100) + "m"),
    			resource.MustParse(fmt.Sprint(perPodRequested-100) + "m"),
    			resource.MustParse(fmt.Sprint(perPodRequested+10) + "m"),
    			resource.MustParse(fmt.Sprint(perPodRequested-10) + "m"),
    			resource.MustParse(fmt.Sprint(perPodRequested+2) + "m"),
    			resource.MustParse(fmt.Sprint(perPodRequested-2) + "m"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K 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/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)
  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. pkg/scheduler/schedule_one_test.go

    	)
    
    	for i := 0; i < initialNodeNumber; i++ {
    		nodeName := fmt.Sprintf("node%d", i)
    		initialNodes = append(initialNodes, st.MakeNode().Name(nodeName).UID(nodeName).Obj())
    	}
    	// Randomly scatter initial pods onto nodes.
    	for i := 0; i < initialPodNumber; i++ {
    		podName := fmt.Sprintf("scheduled-pod%d", i)
    		assignedNodeName := fmt.Sprintf("node%d", random.Intn(initialNodeNumber))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top