Skip to content

Commit

Permalink
[PES]Move multiple PES modules to the top directory
Browse files Browse the repository at this point in the history
[PES]Move multiple PES modules to the top directory
  • Loading branch information
peacewong authored Aug 20, 2024
2 parents da54921 + 4a15564 commit 074ae7e
Show file tree
Hide file tree
Showing 446 changed files with 32 additions and 81 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ public interface Fs extends Closeable {

boolean canRead(FsPath dest) throws IOException;

boolean canRead(FsPath dest, String user) throws IOException;

boolean canWrite(FsPath dest) throws IOException;

boolean exists(FsPath dest) throws IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,11 @@ public boolean canRead(FsPath dest) throws IOException {
return canAccess(dest, FsAction.READ);
}

@Override
public boolean canRead(FsPath fsPath, String s) throws IOException {
return false;
}

@Override
public boolean canWrite(FsPath dest) throws IOException {
return canAccess(dest, FsAction.WRITE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,11 @@ public boolean canRead(FsPath dest) throws IOException {
PosixFilePermission.OTHERS_READ);
}

@Override
public boolean canRead(FsPath fsPath, String s) throws IOException {
return false;
}

@Override
public boolean canWrite(FsPath dest) throws IOException {
return can(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,11 @@ public boolean canRead(FsPath dest) throws IOException {
return true;
}

@Override
public boolean canRead(FsPath fsPath, String s) throws IOException {
return false;
}

@Override
public boolean canWrite(FsPath dest) throws IOException {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,11 @@ public boolean canRead(FsPath dest) {
return true;
}

@Override
public boolean canRead(FsPath fsPath, String s) throws IOException {
return false;
}

@Override
public boolean canWrite(FsPath dest) {
return true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>org.apache.linkis</groupId>
<artifactId>linkis</artifactId>
<version>${revision}</version>
<relativePath>../../../pom.xml</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>linkis-bmlserver</artifactId>
Expand Down
34 changes: 0 additions & 34 deletions linkis-public-enhancements/linkis-bml/pom.xml

This file was deleted.

37 changes: 0 additions & 37 deletions linkis-public-enhancements/linkis-context-service/pom.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>org.apache.linkis</groupId>
<artifactId>linkis</artifactId>
<version>${revision}</version>
<relativePath>../../../pom.xml</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>linkis-cs-server</artifactId>
Expand Down
Loading

0 comments on commit 074ae7e

Please sign in to comment.