Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 185 for iota (0.14 sec)

  1. src/net/http/mapping_test.go

    	"strconv"
    	"testing"
    )
    
    func TestMapping(t *testing.T) {
    	var m mapping[int, string]
    	for i := 0; i < maxSlice; i++ {
    		m.add(i, strconv.Itoa(i))
    	}
    	if m.m != nil {
    		t.Fatal("m.m != nil")
    	}
    	for i := 0; i < maxSlice; i++ {
    		g, _ := m.find(i)
    		w := strconv.Itoa(i)
    		if g != w {
    			t.Fatalf("%d: got %s, want %s", i, g, w)
    		}
    	}
    	m.add(4, "4")
    	if m.s != nil {
    		t.Fatal("m.s != nil")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 17:47:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/time/zoneinfo_js.go

    	// Hence, we construct the name from the offset.
    	z.name = "UTC"
    	if offset < 0 {
    		z.name += "-"
    		offset *= -1
    	} else {
    		z.name += "+"
    	}
    	z.name += itoa.Itoa(offset / 60)
    	min := offset % 60
    	if min != 0 {
    		z.name += ":" + itoa.Itoa(min)
    	}
    	localLoc.zone = []zone{z}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 29 20:05:34 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. src/os/user/lookup_stubs.go

    }
    
    func currentUID() string {
    	if id := os.Getuid(); id >= 0 {
    		return strconv.Itoa(id)
    	}
    	// Note: Windows returns -1, but this file isn't used on
    	// Windows anyway, so this empty return path shouldn't be
    	// used.
    	return ""
    }
    
    func currentGID() string {
    	if id := os.Getgid(); id >= 0 {
    		return strconv.Itoa(id)
    	}
    	return ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 16:09:09 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. src/strconv/doc.go

    // of basic data types.
    //
    // # Numeric Conversions
    //
    // The most common numeric conversions are [Atoi] (string to int) and [Itoa] (int to string).
    //
    //	i, err := strconv.Atoi("-42")
    //	s := strconv.Itoa(-42)
    //
    // These assume decimal and the Go int type.
    //
    // [ParseBool], [ParseFloat], [ParseInt], and [ParseUint] convert strings to values:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/crypto/tls/alert.go

    	alertECHRequired:                  "encrypted client hello required",
    }
    
    func (e alert) String() string {
    	s, ok := alertText[e]
    	if ok {
    		return "tls: " + s
    	}
    	return "tls: alert(" + strconv.Itoa(int(e)) + ")"
    }
    
    func (e alert) Error() string {
    	return e.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/sync/atomic/value_test.go

    	{init: true, new: false, want: true, err: nil},
    }
    
    func TestValue_Swap(t *testing.T) {
    	for i, tt := range Value_SwapTests {
    		t.Run(strconv.Itoa(i), func(t *testing.T) {
    			var v Value
    			if tt.init != nil {
    				v.Store(tt.init)
    			}
    			defer func() {
    				err := recover()
    				switch {
    				case tt.err == nil && err != nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/_asm/nat_amd64_asm.go

    	for i := 0; i < bits/64; i++ {
    		hi, lo := GP64(), GP64()
    
    		Comment("Iteration " + strconv.Itoa(i))
    		MULXQ(x.Offset(i*8), lo, hi)
    		ADCXQ(carry, lo)
    		ADOXQ(z.Offset(i*8), lo)
    		MOVQ(lo, z.Offset(i*8))
    
    		i++
    
    		Comment("Iteration " + strconv.Itoa(i))
    		MULXQ(x.Offset(i*8), lo, carry)
    		ADCXQ(hi, lo)
    		ADOXQ(z.Offset(i*8), lo)
    		MOVQ(lo, z.Offset(i*8))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. src/math/big/intconv.go

    	if x == nil {
    		return "<nil>"
    	}
    	return string(x.abs.itoa(x.neg, base))
    }
    
    // Append appends the string representation of x, as generated by
    // x.Text(base), to buf and returns the extended buffer.
    func (x *Int) Append(buf []byte, base int) []byte {
    	if x == nil {
    		return append(buf, "<nil>"...)
    	}
    	return append(buf, x.abs.itoa(x.neg, base)...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. src/debug/dwarf/unit.go

    		if b.err != nil {
    			return nil, b.err
    		}
    		for n == 0 {
    			n, u.is64 = b.unitLength()
    		}
    		dataOff := b.off
    		vers := b.uint16()
    		if vers < 2 || vers > 5 {
    			b.error("unsupported DWARF version " + strconv.Itoa(int(vers)))
    			break
    		}
    		u.vers = int(vers)
    		if vers >= 5 {
    			u.utype = b.uint8()
    			u.asize = int(b.uint8())
    		}
    		var abbrevOff uint64
    		if u.is64 {
    			abbrevOff = b.uint64()
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/local.go

    	if TestVersion != "" {
    		toolVers = TestVersion
    	}
    	goVers = FromToolchain(toolVers)
    	if goVers == "" {
    		// Development branch. Use "Dev" version with just 1.N, no rc1 or .0 suffix.
    		goVers = "1." + strconv.Itoa(goversion.Version)
    		toolVers = "go" + goVers
    	}
    	return goVers, toolVers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top