Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 283 for pdfork (0.1 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts

    }
    
    tasks.withType<GroovyCompile>().configureEach {
        groovyOptions.apply {
            encoding = "utf-8"
            forkOptions.jvmArgs?.add("-XX:+HeapDumpOnOutOfMemoryError")
        }
        options.apply {
            isFork = true
            encoding = "utf-8"
            compilerArgs = mutableListOf("-Xlint:-options", "-Xlint:-path")
        }
    }
    
    tasks.withType<Test>().configureEach {
        if (JavaVersion.current().isJava9Compatible) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 15:32:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilerForkUtils.java

            outputs.doNotCacheIf(
                "Forking compiler via ForkOptions.executable",
                spec(element -> compileOptions.isFork() && compileOptions.getForkOptions().getExecutable() != null)
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. maven-compat/src/main/resources/META-INF/maven/plugin.xml

              <description>The current MavenSession instance, which will handle the fork context.</description>
            </parameter>
            <parameter>
              <name>forkId</name>
              <type>int</type>
              <required>true</required>
              <editable>true</editable>
              <description>The current fork identifier.</description>
            </parameter>
          </parameters>
          <configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/ForkOptions.java

    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.Optional;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * Fork options for Java compilation. Only take effect if {@code CompileOptions.fork} is {@code true}.
     */
    public abstract class ForkOptions extends ProviderAwareCompilerDaemonForkOptions {
        private static final long serialVersionUID = 0;
    
        private String executable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpecFactoryTest.groovy

        def "produces correct spec type" () {
            CompileOptions options = TestUtil.newInstance(CompileOptions.class, TestUtil.objectFactory())
            options.fork = fork
            options.forkOptions.executable = executable ? Jvm.current().javacExecutable.absolutePath : null
            DefaultGroovyJavaJointCompileSpecFactory factory = new DefaultGroovyJavaJointCompileSpecFactory(options, null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AnnotationProcessingSmokeTest.groovy

     */
    
    package org.gradle.smoketests
    
    import org.gradle.testkit.runner.GradleRunner
    
    class AnnotationProcessingSmokeTest extends AbstractSmokeTest {
    
        def 'project lombok works when options.fork=#fork'() {
            given:
            buildFile << """
                plugins {
                    id("java")
                }
                ${mavenCentralRepository()}
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompileExecutableUtils.java

    public class JavaCompileExecutableUtils {
    
        @Nullable
        public static JavaToolchainSpec getExecutableOverrideToolchainSpec(JavaCompile task, ObjectFactory objectFactory) {
            if (!task.getOptions().isFork()) {
                return null;
            }
    
            ForkOptions forkOptions = task.getOptions().getForkOptions();
            File customJavaHome = forkOptions.getJavaHome();
            if (customJavaHome != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

                spec.getCompileOptions().setHeaderOutputDirectory(null);
            }
            return spec;
        }
    
        private void validateForkOptionsMatchToolchain() {
            if (!getOptions().isFork()) {
                return;
            }
    
            JavaCompiler javaCompilerTool = getJavaCompiler().get();
            File toolchainJavaHome = javaCompilerTool.getMetadata().getInstallationPath().getAsFile();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/all.rc

    #!/bin/rc -e
    # Copyright 2012 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    rfork n
    
    if(! test -f make.rc){
    	echo 'all.rc must be run from $GOROOT/src' >[1=2]
    	exit wrongdir
    }
    
    . ./make.rc --no-banner $*
    bind -b $GOROOT/bin /bin
    ./run.rc --no-rebuild
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 20 04:53:46 UTC 2020
    - 388 bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

            Path identityPath = assignPath(owner, buildDefinition.getName(), buildDefinition.getBuildRootDir());
            BuildIdentifier buildIdentifier = idFor(identityPath);
            StandAloneNestedBuild build = buildStateFactory.createNestedBuild(buildIdentifier, identityPath, buildDefinition, owner);
            buildSrcBuildsByOwner.put(owner, build);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top