Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 198 for Hi (0.02 sec)

  1. test/complit.go

    	}
    	if t != nil {
    		panic("bad")
    	}
    }
    
    type P struct {
    	a, b int
    }
    
    func NewP(a, b int) *P {
    	return &P{a, b}
    }
    
    func main() {
    	var t T
    	t = T{0, 7.2, "hi", &t}
    
    	var tp *T
    	tp = &T{0, 7.2, "hi", &t}
    
    	tl := &T{i: 0, next: &T{i: 1, next: &T{i: 2, next: &T{i: 3, next: &T{i: 4}}}}}
    	teq(tl, 5)
    
    	a1 := []int{1, 2, 3}
    	if len(a1) != 3 {
    		panic("a1")
    	}
    	a2 := [10]int{1, 2, 3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 1.7K bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/field/_asm/fe_amd64_asm.go

    	}
    	MULQ(mustAddr(bX)) // RDX, RAX = RAX * bX
    	ADDQ(RAX, r.lo)
    	ADCQ(RDX, r.hi)
    }
    
    // shiftRightBy51 returns r >> 51 and r.lo.
    //
    // After this function is called, the uint128 may not be used anymore.
    func shiftRightBy51(r *uint128) (out, lo GPVirtual) {
    	out = r.hi
    	lo = r.lo
    	SHLQ(Imm(64-51), r.lo, r.hi)
    	r.lo, r.hi = nil, nil // make sure the uint128 is unusable
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. 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)
  4. test/fixedbugs/bug027.go

    	i3.val = 3333
    	i4 := new(I)
    	i4.val = 44444
    	v := New()
    	r := "hi\n"
    	v.Insert(i4)
    	v.Insert(i3)
    	v.Insert(i2)
    	v.Insert(i1)
    	v.Insert(i0)
    	for i := 0; i < v.nelem; i++ {
    		var x *I
    		x = v.At(i).(*I)
    		r += fmt.Sprintln(i, x.val) // prints correct list
    	}
    	for i := 0; i < v.nelem; i++ {
    		r += fmt.Sprintln(i, v.At(i).(*I).val)
    	}
    	expect := `hi
    0 44444
    1 3333
    2 222
    3 11
    4 0
    0 44444
    1 3333
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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/testing/quick/quick_test.go

    	}
    }
    
    func TestInt64(t *testing.T) {
    	var lo, hi int64
    	f := func(x int64) bool {
    		if x < lo {
    			lo = x
    		}
    		if x > hi {
    			hi = x
    		}
    		return true
    	}
    	cfg := &Config{MaxCount: 10000}
    	Check(f, cfg)
    	if uint64(lo)>>62 == 0 || uint64(hi)>>62 == 0 {
    		t.Errorf("int64 returned range %#016x,%#016x; does not look like full range", lo, hi)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 9K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/remoteparent/some-thing/src/main/java/Bar.java

    import org.apache.commons.lang.StringUtils;
    
    public class Bar {
        public String toString() {
            return StringUtils.normalizeSpace("hi  there!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 160 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/singleModule/some-thing/src/main/java/Foo.java

    import org.apache.commons.lang.StringUtils;
    
    public class Foo {
      public String toString() {
        return StringUtils.normalizeSpace("hi  there!");
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 152 bytes
    - Viewed (0)
Back to top