Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 172 for forkx (0.17 sec)

  1. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/InProcessGroovyCompilerIntegrationTest.groovy

                testDirectoryProvider.suppressCleanupErrors()
            }
        }
    
        String compilerConfiguration() {
    '''
        tasks.withType(GroovyCompile) {
            groovyOptions.fork = false
        }
    '''
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/conversion/deep_equal.go

    limitations under the License.
    */
    
    package conversion
    
    import (
    	"k8s.io/apimachinery/third_party/forked/golang/reflect"
    )
    
    // The code for this type must be located in third_party, since it forks from
    // go std lib. But for convenience, we expose the type here, too.
    type Equalities struct {
    	reflect.Equalities
    }
    
    // For convenience, panics on errors
    func EqualitiesOrDie(funcs ...interface{}) Equalities {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 18:55:26 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/config_gradle.adoc

    Otherwise, the client VM will fork a new VM to run the actual build in order to honor the different settings.
    ====
    
    Certain tasks, like the `test` task, also fork additional JVM processes.
    You can configure these through the tasks themselves.
    They use `-Xmx512m` by default.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/jmh/java/org/gradle/internal/reflect/HashingAlgorithmsBenchmark.java

    import org.bouncycastle.jcajce.provider.digest.MD5;
    import org.bouncycastle.jcajce.provider.digest.SHA1;
    import org.openjdk.jmh.annotations.Benchmark;
    import org.openjdk.jmh.annotations.Fork;
    import org.openjdk.jmh.annotations.Level;
    import org.openjdk.jmh.annotations.Measurement;
    import org.openjdk.jmh.annotations.Param;
    import org.openjdk.jmh.annotations.Scope;
    import org.openjdk.jmh.annotations.Setup;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. .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)
  6. 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)
  7. README.md

    If you're seeing this message then switch the development to 'main':
    git checkout main
    
    Development for branch 8x remains in the shared repository:
    
    - https://gitbox.apache.org/repos/asf/lucene-solr.git
    
    ## GitHub forks?
    
    If you are using GitHub, make a clone of the corresponding repository
    mirror and create your pull requests against the main branch:
    
    - Lucene: <https://github.com/apache/lucene>
    Registered: Wed Jun 12 09:22:58 UTC 2024
    - Last Modified: Wed Mar 10 10:02:23 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/language/groovy/GroovyCompilerContinuousIntegrationTest.groovy

                apply plugin: "groovy"
    
                dependencies {
                    implementation localGroovy()
                }
    
                tasks.withType(${compileTaskType}) {
                    groovyOptions.fork = true
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. 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)
Back to top