Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for xx$ (0.02 sec)

  1. 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)
  2. src/regexp/syntax/parse_test.go

    	strings.Repeat("(", 1000) + strings.Repeat(")", 1000),    // too deep
    	strings.Repeat("(?:", 1000) + strings.Repeat(")*", 1000), // too deep
    	"(" + strings.Repeat("(xx?)", 1000) + "){1000}",          // too long
    	strings.Repeat("(xx?){1000}", 1000),                      // too long
    	strings.Repeat(`\pL`, 27000),                             // too many runes
    }
    
    var onlyPerl = []string{
    	`[a-b-c]`,
    	`\Qabc\E`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. cmd/erasure-decode_test.go

    	b.Run(" X0|00 ", func(b *testing.B) { benchmarkErasureDecode(2, 2, 1, 0, size, b) })
    	b.Run(" X0|X0 ", func(b *testing.B) { benchmarkErasureDecode(2, 2, 1, 1, size, b) })
    	b.Run(" 00|XX ", func(b *testing.B) { benchmarkErasureDecode(2, 2, 0, 2, size, b) })
    	b.Run(" XX|00 ", func(b *testing.B) { benchmarkErasureDecode(2, 2, 2, 0, size, b) })
    }
    
    func BenchmarkErasureDecode_8_20MB(b *testing.B) {
    	const size = 20 * 1024 * 1024
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                    }
                }
            }
            return containingFailures
        }
    
        /**
         * After archiving the test files, do a cleanup to get rid of TeamCity "XX published a lot of small artifacts" warning.
         */
        private
        fun cleanUp(filesToCleanUp: Collection<File>) {
            try {
                fileSystemOperations.delete {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:19:47 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestFailureIntegrationTest.groovy

                ${mavenCentralRepository()}
                dependencies {
                    ${testFrameworkDependencies}
                }
    
                test {
                    ${configureTestFramework}
                    jvmArgs("-XX:+ShowCodeDetailsInExceptionMessages")
                }
            """.stripIndent()
    
            file('src/test/java/UsefulNPETest.java') << """
                ${testFrameworkImports}
    
                public class UsefulNPETest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/syntax/scanner_test.go

    		{`'\377' /*`, "comment not terminated", 0, 7}, // valid octal escape
    		{`'\378`, "invalid character '8' in octal escape", 0, 4},
    		{`'\400'`, "octal escape value 256 > 255", 0, 5},
    		{`'xx`, "rune literal not terminated", 0, 0},
    		{`'xx'`, "more than one character in rune literal", 0, 0},
    
    		{"\n   \"foo\n", "newline in string", 1, 7},
    		{`"`, "string not terminated", 0, 0},
    		{`"foo`, "string not terminated", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  8. 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)
  9. src/fmt/scan.go

    	switch {
    	case s.peek("bB"):
    		s.consume("bB", true)
    		return 0, binaryDigits + "_", true
    	case s.peek("oO"):
    		s.consume("oO", true)
    		return 0, octalDigits + "_", true
    	case s.peek("xX"):
    		s.consume("xX", true)
    		return 0, hexadecimalDigits + "_", true
    	default:
    		return 0, octalDigits + "_", true
    	}
    }
    
    // scanInt returns the value of the integer represented by the next
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  10. src/net/http/cookiejar/jar_test.go

    			{"https://www.host.test", "a=w b=x c=y d=z"},
    		},
    	},
    	{
    		"Clear Secure flag from an http.",
    		"http://www.host.test/",
    		[]string{
    			"b=xx",
    			"d=zz; httponly"},
    		"a=w b=xx c=y d=zz",
    		[]query{{"http://www.host.test", "a=w b=xx c=y d=zz"}},
    	},
    	{
    		"Delete all.",
    		"http://www.host.test/",
    		[]string{
    			"a=1; max-Age=-1",                    // delete via MaxAge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top