Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for deleteMin (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/UpToDateIntegTest.groovy

            emptyDir.directory
    
            when:
            run emptyDirTask
            then:
            skipped emptyDirTask
            emptyDir.directory
    
            when:
            emptyDir.deleteDir()
            run emptyDirTask
            then:
            executedAndNotSkipped emptyDirTask
            emptyDir.directory
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-834")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 12:00:09 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/modular_filesystem.h

      Status DeleteRecursively(const std::string& dirname, TransactionToken* token,
                               int64_t* undeleted_files,
                               int64_t* undeleted_dirs) override;
      Status DeleteDir(const std::string& dirname,
                       TransactionToken* token) override;
      Status RecursivelyCreateDir(const std::string& dirname,
                                  TransactionToken* token) override;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top