Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 72 for deleteMin (0.34 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

            executer.requireOwnGradleUserHomeDir("needs to test toolchain download functionality")
                    .withToolchainDownloadEnabled()
        }
    
        def cleanup() {
            executer.gradleUserHomeDir.file("jdks").deleteDir()
        }
    
        def "can download missing jdk automatically"() {
            when:
            result = executer
                    .withTasks("compileJava")
                    .run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadComplexProjectSoakTest.groovy

            jdkRepository.reset()
    
            executer.requireOwnGradleUserHomeDir()
                .withToolchainDownloadEnabled()
        }
    
        def cleanup() {
            executer.gradleUserHomeDir.file("jdks").deleteDir()
        }
    
        def "multiple subprojects with identical toolchain definitions"() {
            given:
            settingsFile << settingsForBuildWithSubprojects(singleUrlResolverCode(uri))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishIssuesIntegTest.groovy

            publishedModule.parsedModuleMetadata.variant("javadocElements") {
                assert files*.name == ['test-1.0-javadoc.jar']
            }
    
            when:
            file("build/repo").deleteDir()
            succeeds "publish", "-PjavadocEnabled=false"
            publishedModule = new IvyFileRepository(new TestFile(file("build/repo"))).module("org.gradle", "test")
    
            then:
            skipped(":javadocJar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesBetweenBuildsFileSystemWatchingIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/17865")
        def "#description directory moved is handled properly"() {
            def buildCache = new TestBuildCache(temporaryFolder.file("cache-dir").deleteDir().createDir())
            def buildFileContents = """
                apply plugin: "base"
    
                @CacheableTask
                abstract class CustomTask extends DefaultTask {
                    @InputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. tensorflow/c/env.cc

    }
    
    void TF_DeleteDir(const char* dirname, TF_Status* status) {
      TF_SetStatus(status, TF_OK, "");
      ::tensorflow::Set_TF_Status_from_Status(
          status, ::tensorflow::Env::Default()->DeleteDir(dirname));
    }
    
    void TF_DeleteRecursively(const char* dirname, int64_t* undeleted_file_count,
                              int64_t* undeleted_dir_count, TF_Status* status) {
      ::int64_t f, d;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 7K bytes
    - Viewed (0)
  6. Jenkinsfile

                                    }
                                }
                            } finally {
                                deleteDir() // clean up after ourselves to reduce disk space
                            }
                        }
                    }
                }
            }
        }
    }
    
    // run the parallel ITs
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. Jenkinsfile.s390x

                                                      'core-it-suite-reports':'core-it-suite/target/surefire-reports'])
                                deleteDir() // clean up after ourselves to reduce disk space
                            }
                        }
                    }
                }
            }
        }
    }
    
    // run the parallel ITs
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginUnixShellsIntegrationTest.groovy

        def setup() {
            createSampleProjectSetup()
        }
    
        def cleanup() {
            if (testDirectoryProvider.cleanup) {
                testDirectory.usingNativeTools().deleteDir() //remove symlinks
            }
        }
    
        @Requires([UnitTestPreconditions.UnixDerivative, PluginTestPreconditions.BashAvailable])
        def "can execute generated Unix start script in Bash"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CacheProjectIntegrationTest.groovy

                    }
                }
            """
    
            testBuild("hello1", "Hello 1")
            assertTrue(classPathClassesDir.isDirectory() && classPathClassesDir.list().length == 0)
            classPathClassesDir.deleteDir()
    
            testBuild("hello1", "Hello 1")
        }
    
        @Test
        void "caches incremental build state"() {
            createLargeBuildScript()
            testBuild("hello1", "Hello 1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateLoaded()
            outputContains(output2)
    
            when:
            dir.deleteDir() // directory does not exist
            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored() // TODO - it would be good to reuse a previous entry here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top