Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 187 for outputDir (0.29 sec)

  1. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

        def validationWarningReporter = Mock(ValidateStep.ValidationWarningRecorder)
    
        final outputFile = temporaryFolder.file("output-file")
        final outputDir = temporaryFolder.file("output-dir")
        final outputDirFile = outputDir.file("some-file")
        final outputDirFile2 = outputDir.file("some-file-2")
        final emptyOutputDir = temporaryFolder.file("empty-output-dir")
        final missingOutputFile = temporaryFolder.file("missing-output-file")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                    input = "someString"
                    bean = new NestedProperty(
                        inputDir: file('input'),
                        input: 'someString',
                        outputDir: file("\$buildDir/output"),
                        nestedBean: new AnotherNestedProperty(inputFile: file('inputFile'))
                    )
                }
                task printMetadata(type: PrintInputsAndOutputs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

        }
    
        def "provides basic module information"() {
    
            file('build.gradle').text = """
    apply plugin: 'java'
    apply plugin: 'idea'
    
    idea.module.inheritOutputDirs = false
    idea.module.outputDir = file('someDir')
    idea.module.testOutputDir = file('someTestDir')
    """
    
            when:
            IdeaProject project = loadToolingModel(IdeaProject)
            def module = project.children[0]
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

    
    /**
     * Compiles the given [residual program][ResidualProgram] to an [ExecutableProgram] subclass named `Program`
     * stored in the given [outputDir].
     */
    internal
    class ResidualProgramCompiler(
        private val outputDir: File,
        private val compilerOptions: KotlinCompilerOptions,
        private val classPath: ClassPath = ClassPath.EMPTY,
        private val originalSourceHash: HashCode,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/Transform.java

        /**
         * Whether the transformer is cacheable.
         */
        boolean isCacheable();
    
        TransformExecutionResult transform(Provider<FileSystemLocation> inputArtifactProvider, File outputDir, TransformDependencies dependencies, @Nullable InputChanges inputChanges);
    
        /**
         * The hash of the secondary inputs of the transformer.
         *
         * This includes the parameters and the implementation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

            def outputJar = testDir.file("transformed.jar")
            return new JarTestFixture(transform(factory, originalJar, outputJar), 'UTF-8', null, /* checkManifest */ false)
        }
    
        private TestFile transformDirectory(TransformFactoryType factory, File originalDir) {
            def outputDir = testDir.file("transformed")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/java/org/gradle/api/tasks/application/CreateStartScripts.java

    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Creates start scripts for launching JVM applications.
     * <p>
     * Example:
     * <pre class='autoTested'>
     * task createStartScripts(type: CreateStartScripts) {
     *   outputDir = file('build/sample')
     *   mainClass = 'org.gradle.test.Main'
     *   applicationName = 'myApp'
     *   classpath = files('path/to/some.jar')
     * }
     * </pre>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

                    PartialEvaluator(programKind, programTarget)::reduce
                )
    
                scriptSource.withLocationAwareExceptionHandling {
                    ResidualProgramCompiler(
                        outputDir = cachedDir,
                        compilerOptions = host.compilerOptions,
                        classPath = compilationClassPath,
                        originalSourceHash = programId.sourceHash,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/testFixtures/groovy/org/gradle/workers/fixtures/WorkerExecutorFixture.groovy

            testParameterType.imports += ["java.io.File", "java.util.List", "org.gradle.other.Foo"]
            testParameterType.fields += [
                "files": "List<String>",
                "outputDir": "File",
                "bar": "Foo"
            ]
    
            workActionThatCreatesFiles = getWorkActionThatCreatesFiles("TestWorkAction")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 12:36:12 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/bugreport/flags.go

    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/pkg/kube/inject"
    	"istio.io/istio/pkg/slices"
    	config2 "istio.io/istio/tools/bug-report/pkg/config"
    )
    
    var (
    	startTime, endTime, configFile, tempDir, outputDir string
    	included, excluded                                 []string
    	commandTimeout, since                              time.Duration
    	gConfig                                            = &config2.BugReportConfig{}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top