Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FileSystemException (0.43 sec)

  1. 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)
  2. 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