Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 125 for forkx (0.04 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

                compileJava {
                    options.fork = true
                    options.forkOptions.executable = "${TextUtil.normaliseFileSeparators(jdk.javacExecutable.absolutePath)}"
                }
            """
        }
    
        private TestFile configureForkOptionsJavaHome(Jvm jdk) {
            buildFile << """
                compileJava {
                    options.fork = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. .github/workflows/arm-ci-extended-cpp.yml

    on:
      push:
        tags:
          - v2.**
      schedule:
        - cron: '0 2 * * *'
    
    permissions:
      contents: read
    
    jobs:
      build:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          matrix:
            pyver: ['3.10']
        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/build.gradle.kts

        testImplementation(testFixtures(project(":logging")))
    
        jmhImplementation(project(":files"))
        jmhImplementation(project(":base-services"))
    }
    
    jmh {
        fork = 1
        threads = 2
        warmupIterations = 10
        synchronizeIterations = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/CommandLineJavaCompilerIntegrationTest.groovy

    class CommandLineJavaCompilerIntegrationTest extends AbstractJavaCompilerIntegrationSpec {
    
        @Override
        String compilerConfiguration() {
            """
                compileJava.options.with {
                    fork = true
                    forkOptions.javaHome = file("${TextUtil.normaliseFileSeparators(Jvm.current().javaHome.toString())}")
                }
            """
        }
    
        @Override
        String logStatement() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/CommandLineJavaCompilerForExecutableIntegrationTest.groovy

    class CommandLineJavaCompilerForExecutableIntegrationTest extends AbstractJavaCompilerIntegrationSpec {
    
        @Override
        String compilerConfiguration() {
            """
                compileJava.options.with {
                    fork = true
                    forkOptions.executable = "${TextUtil.normaliseFileSeparators(Jvm.current().getExecutable("javac").absolutePath)}"
                }
            """
        }
    
        @Override
        String logStatement() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. hack/pin-dependency.sh

      pushd "staging/src/k8s.io/${repo}" >/dev/null 2>&1
        go mod edit -require "${dep}@${rev}"
    
        # When replacing with a fork, always add a replace statement in all go.mod
        # files (not just the root of the staging repos!) because there might be
        # indirect dependencies on the fork.
        #
        # This is excessive, but the resulting commit should never be merged, so it
        # isn't that important to get this exactly right.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/runtime/asan.go

    	pc := getcallerpc()
    	doasanwrite(addr, uintptr(len), sp, pc)
    }
    
    // Private interface for the runtime.
    const asanenabled = true
    
    // asan{read,write} are nosplit because they may be called between
    // fork and exec, when the stack must not grow. See issue #50391.
    
    //go:linkname asanread
    //go:nosplit
    func asanread(addr unsafe.Pointer, sz uintptr) {
    	sp := getcallersp()
    	pc := getcallerpc()
    	doasanread(addr, sz, sp, pc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:39:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/config-inject/build.gradle

    <% if (scalaProject) { %>
    apply plugin: 'scala'
    dependencies {
        implementation 'org.scala-lang:scala-library:2.9.2'
    }
    tasks.withType(ScalaCompile) {
        scalaCompileOptions.with {
            useAnt = false
            fork = true
            if (!JavaVersion.current().java8Compatible) {
                forkOptions.jvmArgs = ["-XX:MaxPermSize=512m"]
            }
        }
    }
    <% } %>
    
    task dependencyReport(type: DependencyReportTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. .github/workflows/arm-ci.yml

    name: ARM CI
    
    on:
      push:
        branches:
          - master
          - r2.**
    permissions:
      contents: read
    
    jobs:
      build:
        # Don't do this in forks, and if labeled, only for 'kokoro:force-run'
        if: github.repository == 'tensorflow/tensorflow' && (github.event.action != 'labeled' || (github.event.action == 'labeled' && github.event.label.name == 'kokoro:force-run'))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 07 17:41:21 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. .github/workflows/arm-cd.yml

          - v2.**
        branches:
          - r2.**
      schedule:
        - cron: '0 8 * * *'
    
    permissions:
      contents: read
    
    jobs:
      build:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          fail-fast: false
          matrix:
            pyver: ['3.9', '3.10', '3.11', '3.12']
        steps:
          - name: Stop old running containers (if any)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top