Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for gint (0.07 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// Move values between int and float registers, with no conversion.
    		// TODO: should we have generic versions of these?
    		{name: "MOVQi2f", argLength: 1, reg: gpfp, typ: "Float64"}, // move 64 bits from int to float reg
    		{name: "MOVQf2i", argLength: 1, reg: fpgp, typ: "UInt64"},  // move 64 bits from float to int reg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

            "description": "EndpointPort represents a Port used by an EndpointSlice",
            "properties": {
              "appProtocol": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		MaxPerPodContainer: int(maxPerPodContainerCount),
    		MaxContainers:      int(maxContainerCount),
    	}
    
    	daemonEndpoints := &v1.NodeDaemonEndpoints{
    		KubeletEndpoint: v1.DaemonEndpoint{Port: kubeCfg.Port},
    	}
    
    	imageGCPolicy := images.ImageGCPolicy{
    		MinAge:               kubeCfg.ImageMinimumGCAge.Duration,
    		HighThresholdPercent: int(kubeCfg.ImageGCHighThresholdPercent),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    may be invoked with zero or more arguments for that parameter.
    </p>
    
    <pre>
    func()
    func(x int) int
    func(a, _ int, z float32) bool
    func(a, b int, z float32) (bool)
    func(prefix string, values ...int)
    func(a, b int, z float64, opt ...interface{}) (success bool)
    func(int, int, float64) (float64, *[]int)
    func(n int) func(p *T)
    </pre>
    
    
    <h3 id="Interface_types">Interface types</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/asm6.go

    	}
    
    	if int(p.To.Index) == from {
    		p.To.Index = int16(to)
    		p.Tt = 0
    	}
    
    	if false { /* debug['Q'] */
    		fmt.Printf("%v\n", p)
    	}
    }
    
    func (ab *AsmBuf) mediaop(ctxt *obj.Link, o *Optab, op int, osize int, z int) int {
    	switch op {
    	case Pm, Pe, Pf2, Pf3:
    		if osize != 1 {
    			if op != Pm {
    				ab.Put1(byte(op))
    			}
    			ab.Put1(Pm)
    			z++
    			op = int(o.op[z])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	// rest of exp and mantissa (cd-efgh)
    	n |= int((h >> 16) & 0x3f)
    
    	//print("match %.8lux %.8lux %d\n", l, h, n);
    	return n
    }
    
    /* form offset parameter to SYS; special register number */
    func SYSARG5(op0 int, op1 int, Cn int, Cm int, op2 int) int {
    	return op0<<19 | op1<<16 | Cn<<12 | Cm<<8 | op2<<5
    }
    
    func SYSARG4(op1 int, Cn int, Cm int, op2 int) int {
    	return SYSARG5(0, op1, Cn, Cm, op2)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	gp := l.head.ptr()
    	if gp != nil {
    		l.head = gp.schedlink
    	}
    	return gp
    }
    
    //go:linkname setMaxThreads runtime/debug.setMaxThreads
    func setMaxThreads(in int) (out int) {
    	lock(&sched.lock)
    	out = int(sched.maxmcount)
    	if in > 0x7fffffff { // MaxInt32
    		sched.maxmcount = 0x7fffffff
    	} else {
    		sched.maxmcount = int32(in)
    	}
    	checkmcount()
    	unlock(&sched.lock)
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	// Nil vs empty: not the same.
    	{[]int{}, []int(nil), false},
    	{[]int{}, []int{}, true},
    	{[]int(nil), []int(nil), true},
    	{map[int]int{}, map[int]int(nil), false},
    	{map[int]int{}, map[int]int{}, true},
    	{map[int]int(nil), map[int]int(nil), true},
    
    	// Mismatched types
    	{1, 1.0, false},
    	{int32(1), int64(1), false},
    	{0.5, "hello", false},
    	{[]int{1, 2, 3}, [3]int{1, 2, 3}, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top