Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for xx$ (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/crypto/internal/edwards25519/edwards25519.go

    	// x = +√(u/v)
    	xx, wasSquare := new(field.Element).SqrtRatio(u, vv)
    	if wasSquare == 0 {
    		return nil, errors.New("edwards25519: invalid point encoding")
    	}
    
    	// Select the negative square root if the sign bit is set.
    	xxNeg := new(field.Element).Negate(xx)
    	xx = xx.Select(xxNeg, xx, int(x[31]>>7))
    
    	v.x.Set(xx)
    	v.y.Set(y)
    	v.z.One()
    	v.t.Multiply(xx, y) // xy = T / Z
    
    	return v, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/stmt0.go

    		var ii int
    		ii = i
    		_ = ii
    		var xx float64
    		xx = x /* ERRORx `cannot use .* in assignment` */
    		_ = xx
    	}
    	var ii int
    	var xx float32
    	for ii, xx = range a {}
    	_, _ = ii, xx
    
    	for range b {}
    	for i := range b {
    		var ii int
    		ii = i
    		_ = ii
    	}
    	for i, x := range b {
    		var ii int
    		ii = i
    		_ = ii
    		var xx string
    		xx = x
    		_ = xx
    	}
    
    	for range s {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. test/escape2n.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)
  8. src/net/net_windows_test.go

    	//Network Adapter:  Intel Gigabit Network Connection
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   \Device\Tcpip_{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}
    	//
    	//Connection Name:  Wireless Network Connection
    	//Network Adapter:  Wireles WLAN Card
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   Media disconnected
    	//
    	//Connection Name:  Bluetooth Network Connection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    -server\n\
    -Xms128m\n\
    -Xmx512m\n\
    -XX:MaxMetaspaceSize=128m\n\
    -XX:CompressedClassSpaceSize=32m\n\
    -XX:-UseGCOverheadLimit\n\
    -XX:+UseTLAB\n\
    -XX:+DisableExplicitGC\n\
    -XX:-HeapDumpOnOutOfMemoryError\n\
    -XX:-OmitStackTraceInFastThrow\n\
    -XX:+UnlockExperimentalVMOptions\n\
    -XX:+UseG1GC\n\
    -XX:InitiatingHeapOccupancyPercent=45\n\
    -XX:G1HeapRegionSize=1m\n\
    -XX:MaxGCPauseMillis=60000\n\
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. src/regexp/example_test.go

    	fmt.Printf("%q\n", re.FindAllStringSubmatch("-ab-axb-", -1))
    	fmt.Printf("%q\n", re.FindAllStringSubmatch("-axxb-ab-", -1))
    	// Output:
    	// [["ab" ""]]
    	// [["axxb" "xx"]]
    	// [["ab" ""] ["axb" "x"]]
    	// [["axxb" "xx"] ["ab" ""]]
    }
    
    func ExampleRegexp_FindAllStringSubmatchIndex() {
    	re := regexp.MustCompile(`a(x*)b`)
    	// Indices:
    	//    01234567   012345678
    	//    -ab-axb-   -axxb-ab-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top