Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 763 for New (0.07 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

                    def overlappingDir = file("${getOverlappingOutputDir()}")
                    doLast {
                        overlappingDir.mkdirs()
                        new File(overlappingDir, "new-output.txt").text = "new output"
                    }
                }
    
            """.stripIndent()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

            wrapper.setWrapperVersionsResources(new DefaultWrapperVersionsResources(latest, releaseCandidate, nightly, releaseNightly))
            wrapper.setGradleVersion("1.0")
            expectedTargetWrapperJar = new TestFile(getProject().getProjectDir(),
                    TARGET_WRAPPER_FINAL + "/gradle-wrapper.jar")
            expectedTargetWrapperProperties = new File(getProject().getProjectDir(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

        @Rule
        public final TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        def fileHasher = new TestFileHasher()
        def statisticsCollector = Stub(DirectorySnapshotterStatistics.Collector)
        def directorySnapshotter = new DirectorySnapshotter(fileHasher, new StringInterner(), [], statisticsCollector)
        List<FileSystemLocationSnapshot> unfilteredSubsnapshots = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/MissingScriptFixture.groovy

                [
                    new MissingBuild(),
                    new MissingSettings(),
                    new MissingBuildInBuildSrc(),
                    new MissingSettingsInBuildSrc(),
                    new MissingBuildInIncluded(),
                    new MissingSettingsInIncluded()
                ]
            ].combinations().collect { ScriptLanguage scriptLanguage, Scenario scenario ->
                new Spec(scriptLanguage, scenario)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

            "HashMap<String, Integer>"           | "new HashMap([a: 1, b: 2])"               | "[a:1, b:2]"
            "LinkedHashMap<String, Integer>"     | "new LinkedHashMap([a: 1, b: 2])"         | "[a:1, b:2]"
            "TreeMap<String, Integer>"           | "new TreeMap([a: 1, b: 2])"               | "[a:1, b:2]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

            assertMetadataIsMissing()
            verificationFile.parentFile.mkdirs()
            def builder = new Builder()
            config.resolveStrategy = Closure.DELEGATE_FIRST
            config.delegate = builder
            config()
            DependencyVerificationsXmlWriter.serialize(builder.build(), new FileOutputStream(verificationFile))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

            def createFailureWithNCauses = { n ->
                def rootCause = new Exception("lastLine")
                n == 0
                    ? rootCause :
                    (1..n).inject(new Exception("lastLine")) { acc, it -> new Exception("line${n - it}", acc) }
            }
    
            def jdkPath = testLocation("path")
            defineJdks(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

        ConfigurationCacheFixture(AbstractIntegrationSpec spec) {
            this.spec = spec
            buildOperations = new BuildOperationsFixture(spec.executer, spec.temporaryFolder)
            configurationCacheBuildOperations = new ConfigurationCacheBuildOperationsFixture(buildOperations)
            problems = new ConfigurationCacheProblemsFixture(spec.testDirectory)
        }
    
        /**
         * Asserts that the configuration cache was not enabled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/ProtocolToModelAdapterTest.groovy

        }
    
        def serialize(Object model) {
            def serialized = new ByteArrayOutputStream()
            Message.send(model, serialized)
            return Message.receive(new ByteArrayInputStream(serialized.toByteArray()), getClass().classLoader)
        }
    
        def "unpacks source object from view"() {
            def source = new Object()
    
            given:
            def view = adapter.adapt(TestProject.class, source)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.GradleVersion
    
    class ConfigurationCacheBuildOperationsIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emits no load/store build operations when configuration cache is not used"() {
            given:
            withLibBuild()
            withAppBuild()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top