Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 283 for pdfork (0.3 sec)

  1. .github/workflows/maven.yml

                if [ $? -eq 0 ]; then
                  echo "Found a branch \"$branch\" in fork \"$user/$repo\", configuring this for the integration tests to be run against."
                  target_branch=$branch
                  target_user=$user
                else
                  echo "Could not find fork \"$user/$repo\" or a branch \"$branch\" in this fork. Falling back to \"$target_branch\" in \"$target_user/$repo\"."
                fi
              else
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/basic/kotlin/build.gradle.kts

            !skipTestsProvider.isPresent()
        }
    }
    // end::skip-tests-condition[]
    
    // tag::java-compiler-options[]
    tasks.compileJava {
        options.isIncremental = true
        options.isFork = true
        options.isFailOnError = false
    }
    // end::java-compiler-options[]
    
    // tag::java-release-flag[]
    tasks.compileJava {
        options.release = 7
    }
    // end::java-release-flag[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/SingleUseDaemonIntegrationTest.groovy

            then:
            assertDaemonUsedJvm(otherJdk)
            wasForked()
            daemons.daemon.stops()
        }
    
        @Requires(IntegTestPreconditions.JavaHomeWithDifferentVersionAvailable)
        def "does not fork build when java home from gradle properties matches current process"() {
            def javaHome = AvailableJavaHomes.differentJdk.javaHome
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/BuildInitTestFramework.java

        }
    
        private final String displayName;
    
        BuildInitTestFramework(String displayName) {
            this.displayName = displayName;
        }
    
        @Override
        public String getId() {
            return Names.idFor(this);
        }
    
        @Override
        public String toString() {
            return displayName;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 19:41:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/AbstractJavaModuleCompileIntegrationTest.groovy

                case JavaCompileMultiTestInterceptor.Compiler.WORKER_JDK_COMPILER:
                    buildFile << """
                        tasks.withType(JavaCompile) {
                            options.fork = true
                        }
                    """
                    break
                case JavaCompileMultiTestInterceptor.Compiler.WORKER_COMMAND_LINE_COMPILER:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. pilot/pkg/leaderelection/k8sleaderelection/README.md

    # k8sleaderelection
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 935 bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/environment/JreJavaHomeJavaIntegrationTest.groovy

            file('build.gradle') << """
            println "Used JRE: ${jreJavaHome.absolutePath.replace(File.separator, '/')}"
            apply plugin:'java'
            compileJava {
                options.fork = ${forkMode}
            }
            """
            when:
            executer.withJavaHome(jreJavaHome.absolutePath).withTasks("compileJava").run().output
            then:
            javaClassFile("org/test/JavaClazz.class").exists()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. src/syscall/const_plan9.go

    	MAFTER  = 0x0002 // mount goes after others in union directory
    	MCREATE = 0x0004 // permit creation in mounted directory
    	MCACHE  = 0x0010 // cache some data
    	MMASK   = 0x0017 // all bits on
    )
    
    // Rfork flags
    const (
    	RFNAMEG  = 1 << 0
    	RFENVG   = 1 << 1
    	RFFDG    = 1 << 2
    	RFNOTEG  = 1 << 3
    	RFPROC   = 1 << 4
    	RFMEM    = 1 << 5
    	RFNOWAIT = 1 << 6
    	RFCNAMEG = 1 << 10
    	RFCENVG  = 1 << 11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.compile.GroovyCompileOptions.xml

                </tr>
                <tr>
                    <td>encoding</td>
                    <td><literal>UTF-8</literal></td>
                </tr>
                <tr>
                    <td>fork</td>
                    <td><literal>true</literal></td>
                </tr>
                <tr>
                    <td>forkOptions</td>
                    <td></td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/syscall/exec_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    // Fork, exec, wait, etc.
    
    package syscall
    
    import (
    	errorspkg "errors"
    	"internal/bytealg"
    	"runtime"
    	"sync"
    	"unsafe"
    )
    
    // ForkLock is used to synchronize creation of new file descriptors
    // with fork.
    //
    // We want the child in a fork/exec sequence to inherit only the
    // file descriptors we intend. To do that, we mark all file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top