Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 125 for forkx (0.15 sec)

  1. .github/workflows/maven_build_itself.yml

    permissions: {}
    
    jobs:
      build:
    
        # execute on any push or pull request from forked repo
        if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
        strategy:
          matrix:
            os: [ubuntu-latest, windows-latest]
            java: [17, 21]
          fail-fast: false
    
        runs-on: ${{ matrix.os }}
    
        steps:
          - uses: actions/checkout@v4
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. android/pom.xml

                    <version>2.23.0</version>
                  </path>
                </annotationProcessorPaths>
                <!-- Fork:
    
                     - for JDK8 because we use a javac9 bootclasspath
    
                     - for JDK9+ because we need args like add-exports
                     -->
                <fork>true</fork>
              </configuration>
            </plugin>
            <plugin>
              <artifactId>maven-jar-plugin</artifactId>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. pom.xml

                    <version>2.23.0</version>
                  </path>
                </annotationProcessorPaths>
                <!-- Fork:
    
                     - for JDK8 because we use a javac9 bootclasspath
    
                     - for JDK9+ because we need args like add-exports
                     -->
                <fork>true</fork>
              </configuration>
            </plugin>
            <plugin>
              <artifactId>maven-jar-plugin</artifactId>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaConcurrencyIntegrationTest.groovy

            settingsFile << """
                include 'a', 'b', 'c', 'd'
            """
            buildFile << """
                allprojects {
                    tasks.withType(AbstractScalaCompile) {
                        options.fork = true
                    }
                    ${mavenCentralRepository()}
                    plugins.withId("scala") {
                        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 16:10:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

                forkedProjects = new ArrayList<>(forkedExecutions.size());
    
                try {
                    for (Map.Entry<String, List<MojoExecution>> fork : forkedExecutions.entrySet()) {
                        String projectId = fork.getKey();
    
                        ProjectIndex projectIndex = session.getSession()
                                .getData()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    [source.multi-language-sample,groovy]
    ----
    <task>.options.fork = true
    ----
    ====
    
    To apply the configuration to _all_ Java compilation tasks, you can `configureEach` java compilation task:
    
    ====
    include::sample[dir="snippets/performance/parallelTestExecution/kotlin",files="build.gradle.kts[tags=fork-java]"]
    include::sample[dir="snippets/performance/parallelTestExecution/groovy",files="build.gradle[tags=fork-java]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. testing/architecture-test/build.gradle.kts

            ruleFile = ruleStoreDir.file("stored.rules").asFile
        }
    
        test {
            // Looks like loading all the classes requires more than the default 512M
            maxHeapSize = "1g"
    
            // Only use one fork, so freezing doesn't have concurrency issues
            maxParallelForks = 1
    
            inputs.dir(ruleStoreDir)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. src/runtime/debug/example_monitor_test.go

    			log.Fatal(err)
    		}
    		if err := f.Close(); err != nil {
    			log.Fatal(err)
    		}
    		log.Fatalf("saved crash report at %s", f.Name())
    	}
    
    	// This is the application process.
    	// Fork+exec the same executable in monitor mode.
    	exe, err := os.Executable()
    	if err != nil {
    		log.Fatal(err)
    	}
    	cmd := exec.Command(exe, "-test.run=ExampleSetCrashOutput_monitor")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/os/exec_plan9.go

    	for _, f := range attr.Files {
    		sysattr.Files = append(sysattr.Files, f.Fd())
    	}
    
    	pid, _, e := syscall.StartProcess(name, argv, sysattr)
    	if e != nil {
    		return nil, &PathError{Op: "fork/exec", Path: name, Err: e}
    	}
    
    	return newPIDProcess(pid), nil
    }
    
    func (p *Process) writeProcFile(file string, data string) error {
    	f, e := OpenFile("/proc/"+itoa.Itoa(p.Pid)+"/"+file, O_WRONLY, 0)
    	if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. cmd/service.go

    // cancelGlobalContext can be used to indicate server shutdown.
    var GlobalContext, cancelGlobalContext = context.WithCancel(context.Background())
    
    // restartProcess starts a new process passing it the active fd's. It
    // doesn't fork, but starts a new process using the same environment and
    // arguments as when it was originally started. This allows for a newly
    // deployed binary to be started. It returns the pid of the newly started
    // process when successful.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top