Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,075 for satconv (0.26 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/net/port_range.go

    		var port int
    		port, err = strconv.Atoi(value)
    		if err != nil {
    			return err
    		}
    		low = port
    		high = port
    	case HyphenNotation:
    		low, err = strconv.Atoi(value[:hyphenIndex])
    		if err != nil {
    			return err
    		}
    		high, err = strconv.Atoi(value[hyphenIndex+1:])
    		if err != nil {
    			return err
    		}
    	case PlusNotation:
    		var offset int
    		low, err = strconv.Atoi(value[:plusIndex])
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 10 01:27:56 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  2. test/fixedbugs/bug262.go

    	trace += "i"
    	var i int
    	return &i
    }
    
    func main() {
    	m := make(map[string]int)
    	m[f()], *g() = strconv.Atoi(h())
    	if m["abc"] != 123 || trace != "fgh" {
    		println("BUG", m["abc"], trace)
    		panic("fail")
    	}
    	mm := make(map[string]error)
    	trace = ""
    	mm["abc"] = errors.New("invalid")
    	*i(), mm[f()] = strconv.Atoi(h())
    	if mm["abc"] != nil || trace != "ifh" {
    		println("BUG1", mm["abc"], trace)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:59 UTC 2012
    - 823 bytes
    - Viewed (0)
  3. src/debug/macho/reloctype_string.go

    // Code generated by "stringer -type=RelocTypeGeneric,RelocTypeX86_64,RelocTypeARM,RelocTypeARM64 -output reloctype_string.go"; DO NOT EDIT.
    
    package macho
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[GENERIC_RELOC_VANILLA-0]
    	_ = x[GENERIC_RELOC_PAIR-1]
    	_ = x[GENERIC_RELOC_SECTDIFF-2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:24:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/expander.go

    	call.AppendSpec(spec, plugin.host, nil)
    
    	devicePath, err := plugin.getDeviceMountPath(spec)
    	if err != nil {
    		return newSize, err
    	}
    	call.Append(devicePath)
    	call.Append(strconv.FormatInt(newSize.Value(), 10))
    	call.Append(strconv.FormatInt(oldSize.Value(), 10))
    
    	_, err = call.Run()
    	if isCmdNotSupportedErr(err) {
    		return newExpanderDefaults(plugin).ExpandVolumeDevice(spec, newSize, oldSize)
    	}
    	return newSize, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 14:21:44 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue21887.go

    // license that can be found in the LICENSE file.
    
    // Issue 21887: println(^uint(0)) fails to compile
    
    package main
    
    import "strconv"
    
    func main() {
    	if strconv.IntSize == 32 {
    		println(^uint(0))
    	} else {
    		println(^uint32(0))
    	}
    
    	if strconv.IntSize == 64 {
    		println(^uint(0))
    	} else {
    		println(^uint64(0))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 435 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/teststdio/testdata/chain.go

    package main
    
    import (
    	"runtime"
    	"strconv"
    
    	"cgostdio/stdio"
    )
    
    const N = 10
    const R = 5
    
    func link(left chan<- int, right <-chan int) {
    	// Keep the links in dedicated operating system
    	// threads, so that this program tests coordination
    	// between pthreads and not just goroutines.
    	runtime.LockOSThread()
    	for {
    		v := <-right
    		stdio.Stdout.WriteString(strconv.Itoa(v) + "\n")
    		left <- 1 + v
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 914 bytes
    - Viewed (0)
  7. test/typeparam/map.go

    package main
    
    import (
    	"fmt"
    	"reflect"
    	"strconv"
    )
    
    // Map calls the function f on every element of the slice s,
    // returning a new slice of the results.
    func mapper[F, T any](s []F, f func(F) T) []T {
    	r := make([]T, len(s))
    	for i, v := range s {
    		r[i] = f(v)
    	}
    	return r
    }
    
    func main() {
    	got := mapper([]int{1, 2, 3}, strconv.Itoa)
    	want := []string{"1", "2", "3"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 885 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/testdata/hist.dlv-dbg.nexts

    74:		for scanner.Scan() { //gdb-opt=(scanner/A)
    75:			s := scanner.Text()
    76:			i, err := strconv.ParseInt(s, 10, 64)
    77:			if err != nil { //gdb-dbg=(i) //gdb-opt=(err,hist,i)
    81:			hist = ensure(int(i), hist)
    82:			hist[int(i)]++
    74:		for scanner.Scan() { //gdb-opt=(scanner/A)
    75:			s := scanner.Text()
    76:			i, err := strconv.ParseInt(s, 10, 64)
    77:			if err != nil { //gdb-dbg=(i) //gdb-opt=(err,hist,i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/testdata/hist.dlv-opt.nexts

    74:		for scanner.Scan() { //gdb-opt=(scanner/A)
    75:			s := scanner.Text()
    76:			i, err := strconv.ParseInt(s, 10, 64)
    77:			if err != nil { //gdb-dbg=(i) //gdb-opt=(err,hist,i)
    81:			hist = ensure(int(i), hist)
    82:			hist[int(i)]++
    74:		for scanner.Scan() { //gdb-opt=(scanner/A)
    75:			s := scanner.Text()
    76:			i, err := strconv.ParseInt(s, 10, 64)
    77:			if err != nil { //gdb-dbg=(i) //gdb-opt=(err,hist,i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 20:41:52 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  10. pkg/test/echo/server/endpoint/util.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package endpoint
    
    import (
    	"crypto/tls"
    	"net"
    	"os"
    	"strconv"
    	"time"
    
    	"istio.io/istio/pkg/log"
    )
    
    var epLog = log.RegisterScope("endpoint", "echo serverside")
    
    const (
    	requestTimeout = 15 * time.Second
    	idleTimeout    = 5 * time.Second
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top