Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for xx$ (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/sync/atomic/value_test.go

    	}
    	v.Store(42)
    	x := v.Load()
    	if xx, ok := x.(int); !ok || xx != 42 {
    		t.Fatalf("wrong value: got %+v, want 42", x)
    	}
    	v.Store(84)
    	x = v.Load()
    	if xx, ok := x.(int); !ok || xx != 84 {
    		t.Fatalf("wrong value: got %+v, want 84", x)
    	}
    }
    
    func TestValueLarge(t *testing.T) {
    	var v Value
    	v.Store("foo")
    	x := v.Load()
    	if xx, ok := x.(string); !ok || xx != "foo" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  6. 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)
  7. src/crypto/ecdh/ecdh.go

    //
    // This check is performed in constant time as long as the key types and their
    // curve match.
    func (k *PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(*PublicKey)
    	if !ok {
    		return false
    	}
    	return k.curve == xx.curve &&
    		subtle.ConstantTimeCompare(k.publicKey, xx.publicKey) == 1
    }
    
    func (k *PublicKey) Curve() Curve {
    	return k.curve
    }
    
    // PrivateKey is an ECDH private key, usually kept secret.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/main/assemblies/files/fess.in.bat

    REM set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:+HeapDumpOnOutOfMemoryError
    REM The path to the heap dump location, note directory must exists and have enough
    REM space for a full heap dump.
    REM FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:HeapDumpPath=%FESS_HOME%/logs/heapdump.hprof
    
    REM Disables explicit GC
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:+DisableExplicitGC
    
    REM Ensure UTF-8 encoding by default (e.g. filenames)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParserTest.groovy

                        "--add-opens=java.base/java.net=ALL-UNNAMED," +
                        "--add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED," +
                        "-XX:MaxMetaspaceSize=256m," +
                        "-XX:+HeapDumpOnOutOfMemoryError," +
                        "-Xms256m,-Xmx512m," +
                        "-Dfile.encoding=UTF-8," +
                        "-Duser.country=US," +
                        "-Duser.language=en," +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/decls1.go

    	v5 = r + 2147483648 /* ERROR "overflows" */
    	v6 = 42
    	v7 = v6 + 9223372036854775807
    	v8 = v6 + 9223372036854775808 /* ERROR "overflows" */
    	v9 = i + 1 << 10
    	v10 byte = 1024 /* ERROR "overflows" */
    	v11 = xx/yy*yy - xx
    	v12 = true && false
    	v13 = nil /* ERROR "use of untyped nil" */
    	v14 string = 257 // ERRORx `cannot use 257 .* as string value in variable declaration$`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top