Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for xx$ (0.19 sec)

  1. 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)
  2. 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)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    "C:\\Program Files\\Java\\jdk1.8\\jre\\bin\\java" -ea -Xmx512m -XX:+HeapDumpOnOutOfMemoryError -Xrs -Dlog4j.configuration=file:../conf/teamcity-agent-log4j.xml -Dteamcity_logs=../logs/...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/crypto/ed25519/ed25519.go

    // Equal reports whether pub and x have the same value.
    func (pub PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(PublicKey)
    	if !ok {
    		return false
    	}
    	return subtle.ConstantTimeCompare(pub, xx) == 1
    }
    
    // PrivateKey is the type of Ed25519 private keys. It implements [crypto.Signer].
    type PrivateKey []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/crypto/ecdsa/ecdsa.go

    // values, as the latter is a generic not constant time implementation.
    func (pub *PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(*PublicKey)
    	if !ok {
    		return false
    	}
    	return bigIntEqual(pub.X, xx.X) && bigIntEqual(pub.Y, xx.Y) &&
    		// Standard library Curve implementations are singletons, so this check
    		// will work for those. Other Curves might be equivalent even if not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/crypto/rsa/rsa.go

    func (priv *PrivateKey) Equal(x crypto.PrivateKey) bool {
    	xx, ok := x.(*PrivateKey)
    	if !ok {
    		return false
    	}
    	if !priv.PublicKey.Equal(&xx.PublicKey) || !bigIntEqual(priv.D, xx.D) {
    		return false
    	}
    	if len(priv.Primes) != len(xx.Primes) {
    		return false
    	}
    	for i := range priv.Primes {
    		if !bigIntEqual(priv.Primes[i], xx.Primes[i]) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-ECDSA

    00000190  c0 48 3a 69 e0 28 6d d3  37 00 ef 04 62 dd 0d a0  |.H:i.(m.7...b...|
    000001a0  9c 70 62 83 d8 81 d3 64  31 aa 9e 97 31 bd 96 b0  |.pb....d1...1...|
    000001b0  68 c0 9b 23 de 76 64 3f  1a 5c 7f e9 12 0e 58 58  |h..#.vd?.\....XX|
    000001c0  b6 5f 70 dd 9b d8 ea d5  d7 f5 d5 cc b9 b6 9f 30  |._p............0|
    000001d0  66 5b 66 9a 20 e2 27 e5  bf fe 3b 30 09 06 07 2a  |f[f. .'...;0...*|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

        public static final int DEFAULT_PERIODIC_CHECK_INTERVAL_MILLIS = 10 * 1000;
    
        public static final List<String> DEFAULT_JVM_ARGS = ImmutableList.of("-Xmx512m", "-Xms256m", "-XX:MaxMetaspaceSize=384m", "-XX:+HeapDumpOnOutOfMemoryError");
        public static final List<String> ALLOW_ENVIRONMENT_VARIABLE_OVERWRITE = ImmutableList.of("--add-opens=java.base/java.util=ALL-UNNAMED");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

                ) as DefaultGradleRunner
            gradleRunner.withJvmArguments(["-Xmx8g", "-XX:MaxMetaspaceSize=1024m", "-XX:+HeapDumpOnOutOfMemoryError"])
            return new SmokeTestGradleRunner(gradleRunner)
                .withBuildOperationTracing(file("operations").absolutePath)
        }
    
        private List<String> configurationCacheParameters() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    }
    
    fun configureCompileTask(options: CompileOptions) {
        options.release = 8
        options.encoding = "utf-8"
        options.isIncremental = true
        options.isFork = true
        options.forkOptions.jvmArgs?.add("-XX:+HeapDumpOnOutOfMemoryError")
        options.forkOptions.memoryMaximumSize = "1g"
        options.compilerArgs.addAll(mutableListOf("-Xlint:-options", "-Xlint:-path"))
    }
    
    fun addDependencies() {
        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top