Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for xx$ (0.02 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. 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/ClassLoaderLeakAvoidanceSoakTest.groovy

                }
            """
    
            expect:
            for(int i = 0; i < 35; i++) {
                myTask.text = myTask.text.replace("runAction$i", "runAction${i + 1}")
                executer.withBuildJvmOpts("-Xmx256m", "-XX:+HeapDumpOnOutOfMemoryError")
                assert succeeds("myTask")
            }
        }
    
        def "old build script classloaders are collected"() {
            given:
            buildFile << """
                class Foo0 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. 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)
Back to top