Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 388 for testPipe (0.15 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

        }
    
        void assertChecksumsPublishedFor(TestFile testFile) {
            def sha1File = sha1File(testFile)
            sha1File.assertIsFile()
            assert HashCode.fromString(sha1File.text) == Hashing.sha1().hashFile(testFile)
            if (extraChecksums && !(testFile.name in missingExtraChecksums)) {
                def sha256File = sha256File(testFile)
                sha256File.assertIsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedVersionCleanupIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    
    class ArtifactCacheUnusedVersionCleanupIntegrationTest extends AbstractIntegrationSpec implements FileAccessTimeJournalFixture, GradleUserHomeCleanupFixture {
    
        TestFile oldModulesDir
        TestFile oldMetadataDir
        TestFile currentModulesDir
        TestFile currentModulesMetadataDir
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

                : defaultSampleName;
        }
    
        public TestFile getDir() {
            if (sampleDir == null) {
                sampleDir = computeSampleDir();
            }
            return sampleDir;
        }
    
        @Nullable
        private TestFile computeSampleDir() {
            if (testSampleDirName != null) {
                return testFile(testSampleDirName);
            }
            if (sampleName != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestWorkspaceBuilder.groovy

     * limitations under the License.
     */
    package org.gradle.test.fixtures.file
    
    /**
     * Used in TestFile.create().
     *
     * Should be inner class of TestFile, but can't because Groovy has issues with inner classes as delegates.
     */
    class TestWorkspaceBuilder {
        def TestFile baseDir
    
        def TestWorkspaceBuilder(TestFile baseDir) {
            this.baseDir = baseDir
        }
    
        def apply(Closure cl) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. pkg/controller/deployment/progress_test.go

    		Reason:             util.NewRSAvailableReason,
    		LastUpdateTime:     testTime,
    		LastTransitionTime: testTime,
    	}
    	replicaSetUpdated := apps.DeploymentCondition{
    		Type:               apps.DeploymentProgressing,
    		Status:             v1.ConditionTrue,
    		Reason:             util.ReplicaSetUpdatedReason,
    		LastUpdateTime:     testTime,
    		LastTransitionTime: testTime,
    	}
    
    	tests := []struct {
    		name            string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CrossVersionIntegrationSpec.groovy

            return previous.version.baseVersion.version
        }
    
        protected TestFile getBuildFile() {
            testDirectory.file('build.gradle')
        }
    
        protected TestFile getSettingsFile() {
            testDirectory.file('settings.gradle')
        }
    
        TestFile getTestDirectory() {
            temporaryFolder.getTestDirectory()
        }
    
        protected TestFile file(Object... path) {
            testDirectory.file(path)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/plugin/PluginBuilder.groovy

        PluginBuilder(TestFile projectDir) {
            this.projectDir = projectDir
        }
    
        TestFile getBuildFile() {
            file("build.gradle")
        }
    
        TestFile file(String path) {
            projectDir.file(path)
        }
    
        TestFile groovy(String path) {
            file("src/main/groovy/${sourceFilePath(path)}")
        }
    
        TestFile java(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

    fun createQuickFeedbackTasks() {
        val testType = TestType.CROSSVERSION
        val defaultExecuter = "embedded"
        val prefix = testType.prefix
        testType.executers.forEach { executer ->
            val taskName = "$executer${prefix.capitalize()}Test"
            val testTask = createTestTask(taskName, executer, sourceSet, testType) {
                this.setSystemPropertiesOfTestJVM("latest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/CommitDistribution.groovy

         * @return
         */
        @Override
        TestFile getGradleHomeDir() {
            TestFile superGradleHome = super.getGradleHomeDir()
    
            if (!superGradleHome.isDirectory() || superGradleHome.listFiles({ it.isDirectory() } as FileFilter).size() == 0) {
                super.binDistribution.usingNativeTools().unzipTo(superGradleHome)
            }
            return new TestFile(superGradleHome.listFiles({ it.isDirectory() } as FileFilter).first())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

        }
    
        def "overlapping output with localStateFileTask, dirTask then localStateFileTask, dirTask"() {
            def (String localStateFileTask, TestFile localStateFileTaskOutput, TestFile localStateFileTaskState,
            String dirTask, TestFile dirTaskOutput) = useOverlappingLocalStateFileAndOutputDirectory()
    
            when:
            withBuildCache().run(localStateFileTask, dirTask)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top