Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 246 for WorkingDir (0.19 sec)

  1. analysis/analysis-api/build.gradle.kts

        "test" { projectDefault() }
    }
    
    tasks.withType<KotlinJvmCompile>().configureEach {
        compilerOptions.freeCompilerArgs.add("-Xcontext-receivers")
    }
    
    testsJar()
    
    projectTest {
        workingDir = rootDir
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

                throw new RuntimeException("Expected system property not specified");
            }
        }
    }
    '''
    
            when:
            run 'installDist'
    
            def builder = new ScriptExecuter()
            builder.workingDir file('build/install/application/bin')
            builder.executable "application"
            if (OperatingSystem.current().windows) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/ProviderCompatibleBaseExecSpec.java

            DelegatingBaseExecSpec.super.setWorkingDir(dir);
            workingDirectory = getWorkingDir();
        }
    
        @Override
        public ProcessForkOptions workingDir(Object dir) {
            DelegatingBaseExecSpec.super.workingDir(dir);
            workingDirectory = getWorkingDir();
            return this;
        }
    
        @Override
        public ProcessForkOptions copyTo(ProcessForkOptions options) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/build.gradle.kts

        "test" {
            projectDefault()
            generatedTestDir()
        }
    }
    
    optInToUnsafeDuringIrConstructionAPI()
    
    projectTest(jUnitMode = JUnitMode.JUnit5) {
        dependsOn(":dist")
        workingDir = rootDir
        useJUnitPlatform()
    }.also { confugureFirPluginAnnotationsDependency(it) }
    
    testsJar()
    
    allprojects {
        tasks.withType<KotlinJvmCompile>().configureEach {
            compilerOptions.optIn.addAll(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/DelegatingBaseExecSpec.java

        }
    
        @Override
        default void setWorkingDir(Object dir) {
            getDelegate().setWorkingDir(dir);
        }
    
        @Override
        default ProcessForkOptions workingDir(Object dir) {
            getDelegate().workingDir(dir);
            return this;
        }
    
        @Override
        default Map<String, Object> getEnvironment() {
            return getDelegate().getEnvironment();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractBuildExperimentRunner.java

        private static void copyTemplateTo(BuildExperimentSpec experiment, File workingDir) {
            try {
                File templateDir = TestProjectLocator.findProjectDir(experiment.getProjectName());
                FileUtils.cleanDirectory(workingDir);
                FileUtils.copyDirectory(templateDir, workingDir);
            } catch (IOException ex) {
                throw new UncheckedIOException(ex);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/container.go

    	return b
    }
    
    // WithWorkingDir sets the WorkingDir field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the WorkingDir field is set to the value of the last call.
    func (b *ContainerApplyConfiguration) WithWorkingDir(value string) *ContainerApplyConfiguration {
    	b.WorkingDir = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 21:39:35 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandleBuilder.java

            super.setIgnoreExitValue(ignoreExitValue);
            return this;
        }
    
        @Override
        public DefaultExecHandleBuilder workingDir(Object dir) {
            super.workingDir(dir);
            return this;
        }
    
        @Override
        public DefaultExecHandleBuilder setDisplayName(String displayName) {
            super.setDisplayName(displayName);
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 06 16:16:31 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/process/internal/PathLimitationIntegrationTest.groovy

        public void setup() {
            broadcast.add(listenerMock)
        }
    
        @Requires(UnitTestPreconditions.NotWindows)
        def "WorkerProcessBuilder handles workingDir with absolute path length #absolutePathLength"() {
            when:
            def testWorkingDir = generateTestWorkingDirectory(absolutePathLength)
            then:
            assert testWorkingDir.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-native/build.gradle.kts

    }
    
    sourceSets {
        "main" { none() }
        "test" {
            projectDefault()
        }
    }
    
    
    projectTest(jUnitMode = JUnitMode.JUnit5) {
        dependsOn(":dist")
        workingDir = rootDir
        useJUnitPlatform()
    }
    
    val test by nativeTest("test", null) {
        systemProperty("kotlin.native.home", kotlinNativeDist.absolutePath)
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Feb 08 20:43:11 UTC 2024
    - 969 bytes
    - Viewed (0)
Back to top