Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 169 for var2 (0.05 sec)

  1. src/encoding/json/decode_test.go

    	"PInterface": null
    }`
    
    var allValueCompact = stripWhitespace(allValueIndent)
    
    var pallValueIndent = `{
    	"Bool": false,
    	"Int": 0,
    	"Int8": 0,
    	"Int16": 0,
    	"Int32": 0,
    	"Int64": 0,
    	"Uint": 0,
    	"Uint8": 0,
    	"Uint16": 0,
    	"Uint32": 0,
    	"Uint64": 0,
    	"Uintptr": 0,
    	"Float32": 0,
    	"Float64": 0,
    	"bar": "",
    	"bar2": "",
            "IntStr": "0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_arm.s

    	ADC	$0, R1	// Add carry bit to upper half.
    
    	MOVW	R0, ret_lo+0(FP)
    	MOVW	R1, ret_hi+4(FP)
    
    	RET
    
    // int32 futex(int32 *uaddr, int32 op, int32 val,
    //	struct timespec *timeout, int32 *uaddr2, int32 val2);
    TEXT runtime·futex(SB),NOSPLIT,$0
    	MOVW    addr+0(FP), R0
    	MOVW    op+4(FP), R1
    	MOVW    val+8(FP), R2
    	MOVW    ts+12(FP), R3
    	MOVW    addr2+16(FP), R4
    	MOVW    val3+20(FP), R5
    	MOVW	$SYS_futex, R7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/test.go

    func test22906(t *testing.T) {
    	var x1 C.jobject = 0 // Note: 0, not nil. That makes sure we use uintptr for these types.
    	_ = x1
    	var x2 C.jclass = 0
    	_ = x2
    	var x3 C.jthrowable = 0
    	_ = x3
    	var x4 C.jstring = 0
    	_ = x4
    	var x5 C.jarray = 0
    	_ = x5
    	var x6 C.jbooleanArray = 0
    	_ = x6
    	var x7 C.jbyteArray = 0
    	_ = x7
    	var x8 C.jcharArray = 0
    	_ = x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    	if e, g := `Get "/?n=10": stopped after 10 redirects`, fmt.Sprintf("%v", err); e != g {
    		t.Errorf("with default client Do and empty Method, expected error %q, got %q", e, g)
    	}
    
    	var checkErr error
    	var lastVia []*Request
    	var lastReq *Request
    	c.CheckRedirect = func(req *Request, via []*Request) error {
    		lastReq = req
    		lastVia = via
    		return checkErr
    	}
    	res, err := c.Get(ts.URL)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_amd64.s

    	MOVQ	n+8(FP), SI
    	MOVL	flags+16(FP), DX
    	MOVQ	$SYS_madvise, AX
    	SYSCALL
    	MOVL	AX, ret+24(FP)
    	RET
    
    // int64 futex(int32 *uaddr, int32 op, int32 val,
    //	struct timespec *timeout, int32 *uaddr2, int32 val2);
    TEXT runtime·futex(SB),NOSPLIT,$0
    	MOVQ	addr+0(FP), DI
    	MOVL	op+8(FP), SI
    	MOVL	val+12(FP), DX
    	MOVQ	ts+16(FP), R10
    	MOVQ	addr2+24(FP), R8
    	MOVL	val3+32(FP), R9
    	MOVL	$SYS_futex, AX
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. src/archive/tar/reader_test.go

    			}
    			defer f.Close()
    
    			var fr io.Reader = f
    			if strings.HasSuffix(v.file, ".bz2") {
    				fr = bzip2.NewReader(fr)
    			}
    
    			// Capture all headers and checksums.
    			var (
    				tr      = NewReader(fr)
    				hdrs    []*Header
    				chksums []string
    				rdbuf   = make([]byte, 8)
    			)
    			for {
    				var hdr *Header
    				hdr, err = tr.Next()
    				if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_ppc64x.s

    	MOVD	n+8(FP), R4
    	MOVW	flags+16(FP), R5
    	SYSCALL	$SYS_madvise
    	MOVW	R3, ret+24(FP)
    	RET
    
    // int64 futex(int32 *uaddr, int32 op, int32 val,
    //	struct timespec *timeout, int32 *uaddr2, int32 val2);
    TEXT runtime·futex(SB),NOSPLIT|NOFRAME,$0
    	MOVD	addr+0(FP), R3
    	MOVW	op+8(FP), R4
    	MOVW	val+12(FP), R5
    	MOVD	ts+16(FP), R6
    	MOVD	addr2+24(FP), R7
    	MOVW	val3+32(FP), R8
    	SYSCALL	$SYS_futex
    	BVC	2(PC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    // An Imm_fp is a signed floating-point constant.
    type Imm_fp struct {
    	s   uint8
    	exp int8
    	pre uint8
    }
    
    func (Imm_fp) isArg() {}
    
    func (i Imm_fp) String() string {
    	var s, pre, numerator, denominator int16
    	var result float64
    	if i.s == 0 {
    		s = 1
    	} else {
    		s = -1
    	}
    	pre = s * int16(16+i.pre)
    	if i.exp > 0 {
    		numerator = (pre << uint8(i.exp))
    		denominator = 16
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_386.s

    	MOVL	addr+0(FP), BX
    	MOVL	n+4(FP), CX
    	MOVL	flags+8(FP), DX
    	INVOKE_SYSCALL
    	MOVL	AX, ret+12(FP)
    	RET
    
    // int32 futex(int32 *uaddr, int32 op, int32 val,
    //	struct timespec *timeout, int32 *uaddr2, int32 val2);
    TEXT runtime·futex(SB),NOSPLIT,$0
    	MOVL	$SYS_futex, AX
    	MOVL	addr+0(FP), BX
    	MOVL	op+4(FP), CX
    	MOVL	val+8(FP), DX
    	MOVL	ts+12(FP), SI
    	MOVL	addr2+16(FP), DI
    	MOVL	val3+20(FP), BP
    	INVOKE_SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	)
    	medPriorityPodInfo = mustNewPodInfo(
    		st.MakePod().Name("mpp").Namespace("ns2").UID("mppns2").Annotation("annot2", "val2").Priority(mediumPriority).NominatedNodeName("node1").Obj(),
    	)
    	unschedulablePodInfo = mustNewPodInfo(
    		st.MakePod().Name("up").Namespace("ns1").UID("upns1").Annotation("annot2", "val2").Priority(lowPriority).NominatedNodeName("node1").Condition(v1.PodScheduled, v1.ConditionFalse, v1.PodReasonUnschedulable).Obj(),
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top