Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/cc/framework/cc_op_gen_util.h

        OpList& ops, bool include_internal,
        const std::vector<string>& api_def_dirs);
    
    // Converts:
    //   bazel-out/.../(bin|genfiles)/(external/YYY/)?XX
    // to: XX.
    string GetPath(StringPiece dot_h_fname);
    
    // Converts: some/path/to/file.xx
    // to: file
    // (note that suffix is removed)
    string GetFilename(StringPiece path);
    
    // Converts:
    //   cc/ops/gen_foo_ops.h
    // to:
    //   CC_OPS_GEN_FOO_OPS_H_
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/inception/BuildSrcApiChangePerformanceTest.groovy

        }
    
        private static void useG1GarbageCollectorOnJava8(CrossVersionPerformanceTestRunner runner) {
            if (!JavaVersion.current().isJava9Compatible()) {
                runner.gradleOpts.addAll(['-XX:+UnlockExperimentalVMOptions', '-XX:+UseG1GC'])
            }
        }
    
        private static class CreateChangingClassMutator implements BuildMutator {
    
            CreateChangingClassMutator(InvocationSettings settings, String filePath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. build-logic/gradle.properties

    org.gradle.jvmargs=-Xmx2500m -XX:MaxMetaspaceSize=768m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
    org.gradle.parallel=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 02:52:56 UTC 2024
    - 173 bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonJvmSettingsIntegrationTest.groovy

            file('build.gradle') << """
    assert java.lang.management.ManagementFactory.runtimeMXBean.inputArguments.contains('-Xmx512m')
    assert java.lang.management.ManagementFactory.runtimeMXBean.inputArguments.contains('-XX:+HeapDumpOnOutOfMemoryError')
    """
    
            given:
            executer.useOnlyRequestedJvmOpts()
    
            expect:
            succeeds()
        }
    
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/config-inject/build.gradle

            implementation "${it.shortNotation()}" <% } %>
        <% } %>
    }
    
    test {
        if (!JavaVersion.current().java8Compatible) {
            jvmArgs '-XX:MaxPermSize=512m'
        }
        jvmArgs '-XX:+HeapDumpOnOutOfMemoryError'
    }
    
    <% if (groovyProject) { %>
    apply plugin: 'groovy'
    dependencies {
        implementation 'org.codehaus:groovy:groovy-all:2.4.15'
    }
    <% } %>
    
    <% if (scalaProject) { %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top