Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 394 for HI (0.61 sec)

  1. src/path/filepath/match.go

    					chunk = chunk[1:]
    					break
    				}
    				var lo, hi rune
    				if lo, chunk, err = getEsc(chunk); err != nil {
    					return "", false, err
    				}
    				hi = lo
    				if chunk[0] == '-' {
    					if hi, chunk, err = getEsc(chunk[1:]); err != nil {
    						return "", false, err
    					}
    				}
    				if lo <= r && r <= hi {
    					match = true
    				}
    				nrange++
    			}
    			if match == negated {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/math/rand/gen_cooked.go

    	a      = 48271
    	m      = (1 << 31) - 1
    	q      = 44488
    	r      = 3399
    )
    
    var (
    	rngVec          [length]int64
    	rngTap, rngFeed int
    )
    
    func seedrand(x int32) int32 {
    	hi := x / q
    	lo := x % q
    	x = a*lo - r*hi
    	if x < 0 {
    		x += m
    	}
    	return x
    }
    
    func srand(seed int32) {
    	rngTap = 0
    	rngFeed = length - tap
    	seed %= m
    	if seed < 0 {
    		seed += m
    	} else if seed == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe_test.go

    	b := uint64(5)
    	r := mul64(a, b)
    	if r.lo != 0x19 || r.hi != 0 {
    		t.Errorf("lo-range wide mult failed, got %d + %d*(2**64)", r.lo, r.hi)
    	}
    
    	a = uint64(18014398509481983) // 2^54 - 1
    	b = uint64(18014398509481983) // 2^54 - 1
    	r = mul64(a, b)
    	if r.lo != 0xff80000000000001 || r.hi != 0xfffffffffff {
    		t.Errorf("hi-range wide mult failed, got %d + %d*(2**64)", r.lo, r.hi)
    	}
    
    	a = uint64(1125899906842661)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. internal/config/config_test.go

    		// No keys requested for tokenizing
    		{
    			input:          `comment="Hi this is my comment ="`,
    			keys:           []string{},
    			expectedFields: map[string]struct{}{},
    		},
    		// Single key requested and present
    		{
    			input:          `comment="Hi this is my comment ="`,
    			keys:           []string{"comment"},
    			expectedFields: map[string]struct{}{`comment="Hi this is my comment ="`: {}},
    		},
    		// Keys and input order of k=v is same.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 18 22:55:17 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. src/time/format_test.go

    }
    
    var parseTimeZoneTests = []ParseTimeZoneTest{
    	{"gmt hi there", 0, false},
    	{"GMT hi there", 3, true},
    	{"GMT+12 hi there", 6, true},
    	{"GMT+00 hi there", 6, true},
    	{"GMT+", 3, true},
    	{"GMT+3", 5, true},
    	{"GMT+a", 3, true},
    	{"GMT+3a", 5, true},
    	{"GMT-5 hi there", 5, true},
    	{"GMT-51 hi there", 3, true},
    	{"ChST hi there", 4, true},
    	{"MeST hi there", 4, true},
    	{"MSDx", 3, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. src/runtime/sys_linux_arm.s

    	CMP		R6, R0
    	MOVW	$0, R1
    	RSB.HI	$0, R0
    	MOVW.HI	R0, R1		// if error, put in R1
    	MOVW.HI	$0, R0
    	MOVW	R0, p+24(FP)
    	MOVW	R1, err+28(FP)
    	RET
    
    TEXT runtime·munmap(SB),NOSPLIT,$0
    	MOVW	addr+0(FP), R0
    	MOVW	n+4(FP), R1
    	MOVW	$SYS_munmap, R7
    	SWI	$0
    	MOVW	$0xfffff001, R6
    	CMP 	R6, R0
    	MOVW.HI	$0, R8  // crash on syscall failure
    	MOVW.HI	R8, (R8)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/mips.s

    	//inst:
    	//
    	// load ints and bytes
    	//
    	//	LMOVW rreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	R1, R2
    	MOVW	LO, R1
    	MOVW	HI, R1
    	MOVW	R1, LO
    	MOVW	R1, HI
    	MOVW	R1, R2
    	MOVW	LO, R1
    	MOVW	HI, R1
    	MOVW	R1, LO
    	MOVW	R1, HI
    
    	//	LMOVW addr ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	foo<>+3(SB), R2
    	MOVW	16(R1), R2
    	MOVW	(R1), R2
    	MOVW	foo<>+3(SB), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/sort/zsortinterface.go

    	}
    }
    
    func heapSort(data Interface, a, b int) {
    	first := a
    	lo := 0
    	hi := b - a
    
    	// Build heap with greatest element at top.
    	for i := (hi - 1) / 2; i >= 0; i-- {
    		siftDown(data, i, hi, first)
    	}
    
    	// Pop elements, largest first, into end of data.
    	for i := hi - 1; i >= 0; i-- {
    		data.Swap(first, first+i)
    		siftDown(data, lo, i, first)
    	}
    }
    
    // pdqsort sorts data[a:b].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/customPlugins/customPluginWithAdvancedConvention/tests/customPluginWithAdvancedConvention.out

    Hi from Gradle...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15 bytes
    - Viewed (0)
  10. src/fmt/doc.go

    		Printf("%d", "hi"):        %!d(string=hi)
    	Too many arguments: %!(EXTRA type=value)
    		Printf("hi", "guys"):      hi%!(EXTRA string=guys)
    	Too few arguments: %!verb(MISSING)
    		Printf("hi%d"):            hi%!d(MISSING)
    	Non-int for width or precision: %!(BADWIDTH) or %!(BADPREC)
    		Printf("%*s", 4.5, "hi"):  %!(BADWIDTH)hi
    		Printf("%.*s", 4.5, "hi"): %!(BADPREC)hi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top