Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FileSystemException (0.27 sec)

  1. guava/src/com/google/common/io/InsecureRecursiveDeleteException.java

    package com.google.common.io;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import com.google.j2objc.annotations.J2ObjCIncompatible;
    import java.nio.file.FileSystemException;
    import java.nio.file.SecureDirectoryStream;
    import javax.annotation.CheckForNull;
    
    /**
     * Exception indicating that a recursive delete can't be performed because the file system does not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GFileUtilsTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import spock.lang.Specification
    import org.junit.Rule
    
    import java.nio.file.FileSystem
    import java.nio.file.FileSystemException
    import java.nio.file.attribute.BasicFileAttributeView
    import java.nio.file.spi.FileSystemProvider
    
    import static org.gradle.util.internal.GFileUtils.mkdirs
    import static org.gradle.util.internal.GFileUtils.parentMkdirs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.CheckReturnValue;
    import java.io.File;
    import java.io.IOException;
    import java.io.UncheckedIOException;
    import java.nio.file.FileSystemException;
    import java.nio.file.Files;
    import java.nio.file.StandardCopyOption;
    import java.time.Duration;
    import java.util.Map;
    import java.util.Optional;
    import java.util.function.Function;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/MoreFiles.java

        // Also, should we try to include the Path of each file we may have failed to delete rather
        // than just the exceptions that occurred?
        FileSystemException deleteFailed =
            new FileSystemException(
                path.toString(),
                null,
                "failed to delete one or more files; see suppressed exceptions for details");
        for (IOException e : exceptions) {
          deleteFailed.addSuppressed(e);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
Back to top