Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 158 for xx$ (0.3 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/fixedbugs/issue48033.go

    	"strings"
    )
    
    type app struct {
    	Name string
    }
    
    func bug() func() {
    	return func() {
    
    		// the issue is this if true block
    		if true {
    			return
    		}
    
    		var xx = []app{}
    		var gapp app
    		for _, app := range xx {
    			if strings.ToUpper("") == app.Name {
    				fmt.Printf("%v\n", app)
    				gapp = app
    			}
    		}
    		fmt.Println(gapp)
    	}
    }
    
    func main() {
    	bug()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 02 12:49:05 UTC 2021
    - 554 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top