Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 130 for deleteMin (0.15 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

                    def ivyRepo = layout.buildDirectory.dir("ivyRepo").get().asFile
                    doLast {
                        m2Repo.deleteDir()
                        ivyRepo.deleteDir()
                    }
                }
                def sign = project.getProperty("sign")
                if (sign == 'skip') {
                    tasks.withType(Sign)*.onlyIf { false }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. cmd/ftp-server-driver.go

    		Creds:     credentials.NewStaticV4(ui.Credentials.AccessKey, ui.Credentials.SecretKey, ""),
    		Secure:    globalIsTLS,
    		Transport: globalRemoteFTPClientTransport,
    	})
    }
    
    // DeleteDir implements ftpDriver
    func (driver *ftpDriver) DeleteDir(ctx *ftp.Context, objPath string) (err error) {
    	stopFn := globalFtpMetrics.log(ctx, objPath)
    	defer stopFn(0, err)
    
    	bucket, prefix := path2BucketObject(objPath)
    	if bucket == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

                file("${outputDir}/data/input.txt")
            }
    
            String getTaskPath() {
                ":${taskName}"
            }
    
            void removeInputs() {
                inputFile.parentFile.deleteDir()
            }
    
            void createInputs() {
                inputFile.text = "input"
            }
    
            void outputsHaveBeenRemoved() {
                assert !outputFile.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            when:
            run "sync"
    
            then:
            result.assertTaskSkipped(':sync')
    
            when:
            file("files/dir2").deleteDir()
            file("files/dir3/file3.txt") << ""
            run "sync"
    
            then:
            result.assertTaskNotSkipped(":sync")
            file("output").assertHasDescendants("file1.txt", "file3.txt")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/InstallTest.groovy

            gradleLauncherJar.parentFile.createDir()
            gradleLauncherJar.write('something')
            explodedZipDir.zipTo(new TestFile(zipDestination))
            explodedZipDir.deleteDir();
        }
    
        def "installs distribution and reuses on subsequent access"() {
            given:
            _ * pathAssembler.getDistribution(configuration) >> localDistribution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top