Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,133 for sprint (0.2 sec)

  1. src/os/exec/read3.go

    		}
    
    		if !fdtest.Exists(fd) {
    			continue
    		}
    
    		fmt.Printf("leaked parent file. fdtest.Exists(%d) got true want false\n", fd)
    
    		fdfile := fmt.Sprintf("/proc/self/fd/%d", fd)
    		link, err := os.Readlink(fdfile)
    		fmt.Printf("readlink(%q) = %q, %v\n", fdfile, link, err)
    
    		var args []string
    		switch runtime.GOOS {
    		case "plan9":
    			args = []string{fmt.Sprintf("/proc/%d/fd", os.Getpid())}
    		case "aix", "solaris", "illumos":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 14:49:07 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. operator/cmd/mesh/install.go

    	b.WriteString("InFilenames:      " + fmt.Sprint(a.InFilenames) + "\n")
    	b.WriteString("ReadinessTimeout: " + fmt.Sprint(a.ReadinessTimeout) + "\n")
    	b.WriteString("SkipConfirmation: " + fmt.Sprint(a.SkipConfirmation) + "\n")
    	b.WriteString("Force:            " + fmt.Sprint(a.Force) + "\n")
    	b.WriteString("Verify:           " + fmt.Sprint(a.Verify) + "\n")
    	b.WriteString("Set:              " + fmt.Sprint(a.Set) + "\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/runtime/memmove_test.go

    			total += clrLen
    		}
    		buffer := make([]byte, maxLen)
    
    		text := ""
    		if minLen >= (1 << 20) {
    			text = fmt.Sprint(minLen>>20, "M ", (maxLen+(1<<20-1))>>20, "M")
    		} else if minLen >= (1 << 10) {
    			text = fmt.Sprint(minLen>>10, "K ", (maxLen+(1<<10-1))>>10, "K")
    		} else {
    			text = fmt.Sprint(minLen, " ", maxLen)
    		}
    		b.Run(text, func(b *testing.B) {
    			b.SetBytes(int64(total))
    			for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. pkg/kube/version_test.go

    			cl := NewFakeClientWithVersion(fmt.Sprint(tt.clusterVersion))
    			if got := IsLessThanVersion(cl, tt.minorVersion); got != tt.want {
    				t.Errorf("IsLessThanVersion() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func TestGetVersionAsInt(t *testing.T) {
    	tests := []struct {
    		name       string
    		major      string
    		minor      string
    		want       int
    		gitVersion string
    	}{
    		{
    			name:  "1.22",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. pkg/util/smallset/smallset_test.go

    	items1000 := []string{}
    	for i := 0; i < 1000; i++ {
    		items1000 = append(items1000, fmt.Sprint(i))
    	}
    	items100 := []string{}
    	for i := 0; i < 100; i++ {
    		items100 = append(items100, fmt.Sprint(i))
    	}
    	items2 := []string{}
    	for i := 0; i < 2; i++ {
    		items2 = append(items2, fmt.Sprint(i))
    	}
    	b.Run("Set", func(b *testing.B) {
    		set1000 := sets.New(items1000...)
    		set100 := sets.New(items100...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. internal/http/listener.go

    		l, e := listenCfg.Listen(ctx, "tcp", serverAddr)
    		if e != nil {
    			if opts.Trace != nil {
    				opts.Trace(fmt.Sprint("listenCfg.Listen: ", e))
    			}
    
    			listenErrs[i] = e
    			continue
    		}
    
    		if opts.Trace != nil {
    			opts.Trace(fmt.Sprint("adding listener to ", l.Addr()))
    		}
    
    		listeners = append(listeners, l)
    	}
    
    	if len(listeners) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/math/big/arith_test.go

    		z := make([]Word, n)
    		b.Run(fmt.Sprint(n), func(b *testing.B) {
    			b.SetBytes(int64(n * _W))
    			for i := 0; i < b.N; i++ {
    				addVV(z, x, y)
    			}
    		})
    	}
    }
    
    func BenchmarkSubVV(b *testing.B) {
    	for _, n := range benchSizes {
    		if isRaceBuilder && n > 1e3 {
    			continue
    		}
    		x := rndV(n)
    		y := rndV(n)
    		z := make([]Word, n)
    		b.Run(fmt.Sprint(n), func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  8. test/fixedbugs/bug259.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "fmt"
    
    var x = uint32(0x01020304)
    var y = [...]uint32{1,2,3,4,5}
    
    func main() {
    	fmt.Sprint(y[byte(x)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 295 bytes
    - Viewed (0)
  9. test/fixedbugs/bug237.go

    	const dots = ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . " +
    		". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
    	const n = uint(len(dots))
    	i := 2 * indent
    	var s string
    	for ; i > n; i -= n {
    		s += fmt.Sprint(dots)
    	}
    	s += dots[0:i]
    	if s != ". . . . . . . . . . " {
    		panic(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 557 bytes
    - Viewed (0)
  10. test/fixedbugs/bug506.dir/main.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    
    	"./a"
    )
    
    var v = a.S{}
    
    func main() {
    	want := "{{ 0}}"
    	if got := fmt.Sprint(v.F); got != want {
    		panic(got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 18 04:57:41 UTC 2018
    - 308 bytes
    - Viewed (0)
Back to top