Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 181 for xx$ (0.1 sec)

  1. test/typeswitch1.go

    	xx := x
    	switch xx.(type) {
    	default:
    		return fmt.Sprint("default ", xx)
    	case int, int8, int16, int32:
    		return fmt.Sprint("signed ", xx)
    	case int64:
    		return fmt.Sprint("signed64 ", xx.(int64))
    	case uint, uint8, uint16, uint32:
    		return fmt.Sprint("unsigned ", xx)
    	case uint64:
    		return fmt.Sprint("unsigned64 ", xx.(uint64))
    	case nil:
    		return fmt.Sprint("nil ", xx)
    	}
    	panic("not reached")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.6K bytes
    - Viewed (0)
  2. src/unicode/utf8/utf8.go

    	//   1   2   3   4   5   6   7   8   9   A   B   C   D   E   F
    	xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, // 0x80-0x8F
    	xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, // 0x90-0x9F
    	xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, // 0xA0-0xAF
    	xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, xx, // 0xB0-0xBF
    	xx, xx, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, s1, // 0xC0-0xCF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. test/fixedbugs/issue15747.go

    var b bool
    
    func f1(q *Q, xx []byte) interface{} { // ERROR "live at call to newobject: xx$" "live at entry to f1: xx$"
    	// xx was copied from the stack to the heap on the previous line:
    	// xx was live for the first two prints but then it switched to &xx
    	// being live. We should not see plain xx again.
    	if b {
    		global = &xx
    	}
    	xx, _, err := f2(xx, 5) // ERROR "live at call to f2: &xx$"
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/crypto/elliptic/elliptic_test.go

    	p := curve.Params().P
    	_, x, y, _ := GenerateKey(curve, rand.Reader)
    	xx, yy := new(big.Int), new(big.Int)
    
    	// Check if the sign is getting dropped.
    	xx.Neg(x)
    	checkIsOnCurveFalse("-x, y", xx, y)
    	yy.Neg(y)
    	checkIsOnCurveFalse("x, -y", x, yy)
    
    	// Check if negative values are reduced modulo P.
    	xx.Sub(x, p)
    	checkIsOnCurveFalse("x-P, y", xx, y)
    	yy.Sub(y, p)
    	checkIsOnCurveFalse("x, y-P", x, yy)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 02:00:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/StringsTest.java

        assertSame("xx", Strings.padEnd("xx", 0, '-'));
        assertSame("xx", Strings.padEnd("xx", 2, '-'));
      }
    
      public void testPadEnd_somePadding() {
        assertEquals("-", Strings.padEnd("", 1, '-'));
        assertEquals("--", Strings.padEnd("", 2, '-'));
        assertEquals("x-", Strings.padEnd("x", 2, '-'));
        assertEquals("x--", Strings.padEnd("x", 3, '-'));
        assertEquals("xx-", Strings.padEnd("xx", 3, '-'));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/JavaGarbageCollector.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.daemon
    
    enum JavaGarbageCollector {
        ORACLE_PARALLEL_CMS("-XX:+UseConcMarkSweepGC"),
        ORACLE_SERIAL9("-XX:+UseSerialGC"),
        ORACLE_G1("-XX:+UnlockExperimentalVMOptions -XX:+UseG1GC"),
        IBM_ALL(""),
        UNKNOWN(null)
    
        private String jvmArgs
    
        JavaGarbageCollector(String jvmArgs) {
            this.jvmArgs = jvmArgs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. test/fixedbugs/bug196.go

    var i int
    
    func multi() (int, int) { return 1, 2 }
    
    func xxx() {
    	var c chan int
    	x, ok := <-c
    
    	var m map[int]int
    	x, ok = m[1]
    
    	var i interface{}
    	var xx int
    	xx, ok = i.(int)
    
    	a, b := multi()
    
    	_, _, _, _, _ = x, ok, xx, a, b
    }
    
    func f() map[int]int {
    	nf++
    	return m
    }
    
    func g() *int {
    	nf++
    	return &i
    }
    
    func main() {
    	f()[0]++
    	f()[1] += 2
    	*g() %= 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 654 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_regexps.txt

    ! stdout '^\s+BenchmarkX: x_test.go:13: LOG: X running N=\d\d+'
    ! stdout 'BenchmarkX\s+\d+'
    
    # Same for BenchmarkXX.
    stdout -count=1 '^    z_test.go:18: LOG: XX running N=1$'
    ! stdout  '^    z_test.go:18: LOG: XX running N=\d\d+'
    ! stdout 'BenchmarkXX\s+\d+'
    
    # BenchmarkX/Y is run in full twice due to -count=2.
    # "Run in full" means that it runs for approximately the default benchtime,
    # but may cap out at N=1e9.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. test/escape2.go

    func foo7(xx **int, yy *int) { // ERROR "xx does not escape$" "yy does not escape$"
    	**xx = *yy
    }
    
    func foo8(xx, yy *int) int { // ERROR "xx does not escape$" "yy does not escape$"
    	xx = yy
    	return *xx
    }
    
    func foo9(xx, yy *int) *int { // ERROR "leaking param: xx to result ~r0 level=0$" "leaking param: yy to result ~r0 level=0$"
    	xx = yy
    	return xx
    }
    
    func foo10(xx, yy *int) { // ERROR "xx does not escape$" "yy does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  10. api/README

    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    The same requirement applies to next/* (described below), which will
    become a go1.XX.txt for XX >= 19.
    
    The next/ directory contains the only files intended to be mutated.
    Each file in that directory contains a list of features that may be added
    to the next release of Go. The files in this directory only affect the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top