- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 169 for delete (0.04 sec)
-
android/guava/src/com/google/common/io/RecursiveDeleteOption.java
/** * Specifies that the recursive delete should not throw an exception when it can't be guaranteed * that it can be done securely, without vulnerability to race conditions (i.e. when the file * system does not support {@link SecureDirectoryStream}). * * <p><b>Warning:</b> On a file system that supports symbolic links, it is possible for an
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 16:07:00 UTC 2024 - 2K bytes - Viewed (0) -
deps.xml
<target name="install.jars"> <mkdir dir="${target.dir}" /> <delete dir="${webinf.dir}/lib" /> <mkdir dir="${webinf.dir}/lib" /> <delete dir="${crawler.dir}/lib" /> <mkdir dir="${crawler.dir}/lib" /> <delete dir="${suggest.dir}/lib" /> <mkdir dir="${suggest.dir}/lib" /> <delete dir="${thumbnail.dir}/lib" /> <mkdir dir="${thumbnail.dir}/lib" /> <!-- annotation-api -->
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 04:37:19 UTC 2024 - 2.5K bytes - Viewed (0) -
android/guava/src/com/google/common/io/MoreFiles.java
* after attempting to delete all files, an {@code IOException} is thrown containing those * exceptions as {@linkplain Throwable#getSuppressed() suppressed exceptions}. * * <h2>Warning: Security of recursive deletes</h2> * * <p>On a file system that supports symbolic links and does <i>not</i> support {@link * SecureDirectoryStream}, it is possible for a recursive delete to delete files and directories
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 16:07:00 UTC 2024 - 35K bytes - Viewed (0) -
guava/src/com/google/common/io/MoreFiles.java
* after attempting to delete all files, an {@code IOException} is thrown containing those * exceptions as {@linkplain Throwable#getSuppressed() suppressed exceptions}. * * <h2>Warning: Security of recursive deletes</h2> * * <p>On a file system that supports symbolic links and does <i>not</i> support {@link * SecureDirectoryStream}, it is possible for a recursive delete to delete files and directories
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 16:07:00 UTC 2024 - 34.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
dataService.iterate(sessionId2, accessResult -> assertTrue(accessResult.getUrl().startsWith(url2))); dataService.delete(sessionId1); dataService.delete(sessionId2); } finally { try { server1.stop(); } finally { server2.stop(); } } }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 7.7K bytes - Viewed (0) -
guava/src/com/google/common/io/RecursiveDeleteOption.java
/** * Specifies that the recursive delete should not throw an exception when it can't be guaranteed * that it can be done securely, without vulnerability to race conditions (i.e. when the file * system does not support {@link SecureDirectoryStream}). * * <p><b>Warning:</b> On a file system that supports symbolic links, it is possible for an
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 16:07:00 UTC 2024 - 2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/MoreFilesTest.java
Path dir = fs.getPath("dir"); assertEquals(6, MoreFiles.listFiles(dir).size()); method.delete(dir); method.assertDeleteSucceeded(dir); assertEquals( "contents of /dontdelete deleted by delete method " + method, 3, MoreFiles.listFiles(fs.getPath("/dontdelete")).size()); } } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 16:07:00 UTC 2024 - 26.5K bytes - Viewed (0) -
android/guava/src/com/google/common/io/InsecureRecursiveDeleteException.java
import javax.annotation.CheckForNull; /** * Exception indicating that a recursive delete can't be performed because the file system does not * have the support necessary to guarantee that it is not vulnerable to race conditions that would * allow it to delete files and directories outside of the directory being deleted (i.e., {@link * SecureDirectoryStream} is not supported). *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 16:07:00 UTC 2024 - 1.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManagerTest.java
Artifact a = createArtifact("a", "0.0.1-SNAPSHOT"); File file = new File(localRepository.getBasedir(), localRepository.pathOf(a)); file.delete(); a.setFile(file); File touchFile = updateCheckManager.getTouchfile(a); touchFile.delete(); assertTrue(updateCheckManager.isUpdateRequired(a, remoteRepository)); file.getParentFile().mkdirs(); file.createNewFile();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.7K bytes - Viewed (0) -
plugin.xml
<property name="maven.release.repo.url" value="https://oss.sonatype.org/content/repositories/releases" /> <target name="install.plugins"> <mkdir dir="${target.dir}" /> <delete dir="${plugins.dir}" /> <mkdir dir="${plugins.dir}" /> <!-- analysis-extension --> <antcall target="install.plugin"> <param name="repo.url" value="${maven.release.repo.url}" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 25 23:33:43 UTC 2024 - 3.5K bytes - Viewed (0)