-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
60 changed files
with
247 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from dvc.dependency.base import BaseDependency | ||
from dvc.output.base import BaseOutput | ||
|
||
from ..tree.azure import AzureRemoteTree | ||
from ..tree.azure import AzureTree | ||
|
||
|
||
class AzureDependency(BaseDependency, BaseOutput): | ||
TREE_CLS = AzureRemoteTree | ||
TREE_CLS = AzureTree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from dvc.dependency.base import BaseDependency | ||
from dvc.output.base import BaseOutput | ||
|
||
from ..tree.http import HTTPRemoteTree | ||
from ..tree.http import HTTPTree | ||
|
||
|
||
class HTTPDependency(BaseDependency, BaseOutput): | ||
TREE_CLS = HTTPRemoteTree | ||
TREE_CLS = HTTPTree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from ..tree.https import HTTPSRemoteTree | ||
from ..tree.https import HTTPSTree | ||
from .http import HTTPDependency | ||
|
||
|
||
class HTTPSDependency(HTTPDependency): | ||
TREE_CLS = HTTPSRemoteTree | ||
TREE_CLS = HTTPSTree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from dvc.output.s3 import S3Output | ||
|
||
from ..tree.gs import GSRemoteTree | ||
from ..tree.gs import GSTree | ||
|
||
|
||
class GSOutput(S3Output): | ||
TREE_CLS = GSRemoteTree | ||
TREE_CLS = GSTree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from dvc.output.base import BaseOutput | ||
|
||
from ..tree.hdfs import HDFSRemoteTree | ||
from ..tree.hdfs import HDFSTree | ||
|
||
|
||
class HDFSOutput(BaseOutput): | ||
TREE_CLS = HDFSRemoteTree | ||
TREE_CLS = HDFSTree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from dvc.output.base import BaseOutput | ||
|
||
from ..tree.s3 import S3RemoteTree | ||
from ..tree.s3 import S3Tree | ||
|
||
|
||
class S3Output(BaseOutput): | ||
TREE_CLS = S3RemoteTree | ||
TREE_CLS = S3Tree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from dvc.output.base import BaseOutput | ||
|
||
from ..tree.ssh import SSHRemoteTree | ||
from ..tree.ssh import SSHTree | ||
|
||
|
||
class SSHOutput(BaseOutput): | ||
TREE_CLS = SSHRemoteTree | ||
TREE_CLS = SSHTree |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.