Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,133 for sprint (0.16 sec)

  1. pkg/test/framework/components/gcemetadata/kube.go

    			return nil, err
    		}
    		c.address = net.JoinHostPort(lb, fmt.Sprint(svc.Spec.Ports[0].Port))
    		c.addressVM = net.JoinHostPort(lb, fmt.Sprint(svc.Spec.Ports[1].Port))
    	} else {
    		c.address = net.JoinHostPort(svc.Spec.ClusterIP, fmt.Sprint(svc.Spec.Ports[0].Port))
    		c.addressVM = net.JoinHostPort(svc.Spec.ClusterIP, fmt.Sprint(svc.Spec.Ports[1].Port))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. test/fixedbugs/bug207.go

    // license that can be found in the LICENSE file.
    
    // used to panic because 6g didn't generate
    // the code to fill in the ... argument to fmt.Sprint.
    
    package main
    
    import "fmt"
    
    type T struct {
    	a, b, c, d, e []int;
    }
    
    var t T
    
    func main() {
    	if fmt.Sprint("xxx", t) != "yyy" { 
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 402 bytes
    - Viewed (0)
  3. src/internal/itoa/itoa_test.go

    	for _, tt := range tests {
    		got := itoa.Itoa(tt)
    		want := fmt.Sprint(tt)
    		if want != got {
    			t.Fatalf("Itoa(%d) = %s, want %s", tt, got, want)
    		}
    	}
    }
    
    func TestUitoa(t *testing.T) {
    	tests := []uint{0, 1, 100, 999, math.MaxUint32, uint(maxUint64)}
    	for _, tt := range tests {
    		got := itoa.Uitoa(tt)
    		want := fmt.Sprint(tt)
    		if want != got {
    			t.Fatalf("Uitoa(%d) = %s, want %s", tt, got, want)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 02:53:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/debug/elf/elf_test.go

    	{ET_LOOS + 5, "ET_LOOS+5"},
    	{ProgFlag(0x50), "0x50"},
    	{COMPRESS_ZLIB + 2, "COMPRESS_ZSTD+1"},
    }
    
    func TestNames(t *testing.T) {
    	for i, tt := range nameTests {
    		s := fmt.Sprint(tt.val)
    		if s != tt.str {
    			t.Errorf("#%d: Sprint(%d) = %q, want %q", i, tt.val, s, tt.str)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pkg/log/scope.go

    func copyStringInterfaceMap(m map[string]any) map[string]any {
    	out := make(map[string]any, len(m))
    	for k, v := range m {
    		out[k] = v
    	}
    	return out
    }
    
    func maybeSprintf(format string, args []any) string {
    	msg := format
    	if len(args) > 0 {
    		msg = fmt.Sprintf(format, args...)
    	}
    	return msg
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. test/defer.go

    // Test defer.
    
    package main
    
    import "fmt"
    
    var result string
    
    func addInt(i int) { result += fmt.Sprint(i) }
    
    func test1helper() {
    	for i := 0; i < 10; i++ {
    		defer addInt(i)
    	}
    }
    
    func test1() {
    	result = ""
    	test1helper()
    	if result != "9876543210" {
    		fmt.Printf("test1: bad defer result (should be 9876543210): %q\n", result)
    		panic("defer")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 875 bytes
    - Viewed (0)
  7. tools/bug-report/pkg/config/config_test.go

    				Containers:  []string{"c4", "c5"},
    				Labels: map[string]string{
    					"l4": "lv4",
    					"l5": "lv5",
    				},
    				Annotations: map[string]string{
    					"a4": "av4",
    					"a5": "av5",
    				},
    			},
    		},
    		Exclude: []*SelectionSpec{
    			{
    				Namespaces:  []string{"ns7", "ns8"},
    				Deployments: []string{"d7", "d8"},
    				Pods:        []string{"p7", "p8"},
    				Containers:  []string{"c7", "c8"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 15 15:19:50 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  8. operator/pkg/util/clog/clog.go

    }
    
    func (l *ConsoleLogger) LogAndPrintf(format string, a ...any) {
    	s := fmt.Sprintf(format, a...)
    	l.Print(s + "\n")
    	l.scope.Infof(s)
    }
    
    func (l *ConsoleLogger) LogAndErrorf(format string, a ...any) {
    	s := fmt.Sprintf(format, a...)
    	l.PrintErr(s + "\n")
    	l.scope.Infof(s)
    }
    
    func (l *ConsoleLogger) LogAndFatalf(format string, a ...any) {
    	l.LogAndErrorf(format, a...)
    	os.Exit(-1)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/abt/avlint32_test.go

    		}
    		if d != kle {
    			te.Errorf("d(%v) != kle(%v)", d, kle)
    		}
    		// data
    		if s != fmt.Sprint(g) {
    			te.Errorf("s(%v) != g(%v)", s, g)
    		}
    		if s != fmt.Sprint(l) {
    			te.Errorf("s(%v) != l(%v)", s, l)
    		}
    		if s != fmt.Sprint(ge) {
    			te.Errorf("s(%v) != ge(%v)", s, ge)
    		}
    		if s != fmt.Sprint(le) {
    			te.Errorf("s(%v) != le(%v)", s, le)
    		}
    	}
    
    	for _, d := range x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers_test.go

    		}
    		// fmt.Sprint() over String() as nil.String() will panic
    		if fmt.Sprint(out) != fmt.Sprint(tc.out) {
    			t.Errorf("[%v]expected:\n\t%s\nbut got:\n\t%s", i, fmt.Sprint(tc.out), fmt.Sprint(out))
    		}
    	}
    }
    
    func BenchmarkLabelSelectorAsSelector(b *testing.B) {
    	selector := &LabelSelector{
    		MatchLabels: map[string]string{
    			"foo": "foo",
    			"bar": "bar",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top