Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 380 for Runner (0.11 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/AbstractCrossBuildPerformanceTest.groovy

        @Rule
        PerformanceTestIdProvider performanceTestIdProvider = new PerformanceTestIdProvider()
    
        CrossBuildPerformanceTestRunner runner
    
        def setup() {
            Assume.assumeFalse(Boolean.getBoolean(CROSS_VERSION_ONLY_PROPERTY_NAME))
            runner = new CrossBuildPerformanceTestRunner(
                    new GradleBuildExperimentRunner(gradleProfilerReporter, outputDirSelector),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinAndroidDeprecations.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    class KotlinAndroidDeprecations extends BaseDeprecations implements WithKotlinDeprecations, WithAndroidDeprecations {
        KotlinAndroidDeprecations(SmokeTestGradleRunner runner) {
            super(runner)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 858 bytes
    - Viewed (0)
  3. .github/workflows/test.yml

          - run: mkdir coverage
          - name: Test
            run: bash scripts/test.sh
            env:
              COVERAGE_FILE: coverage/.coverage.${{ runner.os }}-py${{ matrix.python-version }}
              CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}
          - name: Store coverage files
            uses: actions/upload-artifact@v4
            with:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/IncrementalTestProject.java

     * limitations under the License.
     */
    
    package org.gradle.performance.fixture;
    
    public interface IncrementalTestProject extends TestProject {
        void configureForAbiChange(CrossVersionPerformanceTestRunner runner);
        void configureForAbiChange(GradleBuildExperimentSpec.GradleBuilder builder);
        void configureForNonAbiChange(CrossVersionPerformanceTestRunner runner);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/AbstractTaskOutputCachingPerformanceTest.groovy

        def setup() {
            runner.cleanTasks = ["clean"]
            runner.args = ["-D${StartParameterBuildOptions.BuildCacheOption.GRADLE_PROPERTY}=true"]
            buildCacheServer.logRequests = false
            cacheDir = temporaryFolder.file("local-cache")
            runner.addBuildMutator { invocationSettings ->
                new BuildMutator() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidDeprecations.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    class AndroidDeprecations extends BaseDeprecations implements WithAndroidDeprecations {
        AndroidDeprecations(SmokeTestGradleRunner runner) {
            super(runner)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 822 bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidPerformanceTestFixture.groovy

            // We assume here already, since the test may try to cast the returned test project to `IncrementalAndroidTestProject`,
            // which fails when the test project is non-incremental.
            runner.assumeShouldRun()
            AndroidTestProject.projectFor(runner.testProject)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPrecompiledScriptPluginsSmokeTest.groovy

    /*
     * Copyright 2020 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. pkg/proxy/util/nfacct/nfacct_linux.go

    const (
    	// NFACCT_NAME
    	attrName = 1
    	// NFACCT_PKTS
    	attrPackets = 2
    	// NFACCT_BYTES
    	attrBytes = 3
    )
    
    // runner implements the Interface and depends on the handler for execution.
    type runner struct {
    	handler handler
    }
    
    // New returns a new Interface.
    func New() (Interface, error) {
    	hndlr, err := newNetlinkHandler()
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/runlit.cfg.py

    # See the License for the specific language governing permissions and
    # limitations under the License.
    """Lit runner configuration."""
    
    import os
    import platform
    import sys
    import lit.formats
    from lit.llvm import llvm_config
    from lit.llvm.subst import ToolSubst
    
    # Lint for undefined variables is disabled as config is not defined inside this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top