Searched refs:InWorkspace (Results 1 – 2 of 2) sorted by relevance
/build/bazel/scripts/incremental_build/ |
D | cuj.py | 37 class InWorkspace(enum.Enum): class 54 ws_path = InWorkspace.ws_counterpart(src_path) 55 actual: InWorkspace | None = None 57 actual = InWorkspace.SYMLINK 61 actual = InWorkspace.OMISSION 65 actual = InWorkspace.NOT_UNDER_SYMLINK 68 actual = InWorkspace.UNDER_SYMLINK 96 top_in_ws = InWorkspace.ws_counterpart(util.get_top_dir())
|
D | cuj_catalog.py | 31 from cuj import InWorkspace 112 def __init__(self, file: Path, ws: InWorkspace, text: Optional[str] = None): argument 143 CujStep("revert", delete, InWorkspace.OMISSION.verifier(self.file)), 156 InWorkspace.SYMLINK, 171 def __init__(self, original: Path, ws: InWorkspace): argument 194 InWorkspace.OMISSION.verifier(self.original), 235 CujStep(f"revert", revert, InWorkspace.SYMLINK.verifier(self.p)), 275 ws_build_file = InWorkspace.ws_counterpart(self.build_file).with_name( 298 self.ws = InWorkspace.NOT_UNDER_SYMLINK 300 self.ws = InWorkspace.SYMLINK [all …]
|