Lines Matching full:dir
132 "RUNFILES_DIR": "runfiles/dir",
136 self.assertEqual(r.Rlocation("a/b"), "runfiles/dir/a/b")
137 self.assertEqual(r.Rlocation("foo"), "runfiles/dir/foo")
142 "RUNFILES_DIR": "runfiles/dir",
149 "RUNFILES_DIR": "runfiles/dir",
150 "JAVA_RUNFILES": "runfiles/dir",
184 "Foo/Bar/Dir E:\\Actual Path\\Directory",
194 r.Rlocation("Foo/Bar/Dir/runfile4"),
198 r.Rlocation("Foo/Bar/Dir/Deeply/Nested/runfile4"),
224 "protobuf~3.19.2/bar/dir E:\\Actual Path\\Directory",
242 r.Rlocation("my_protobuf/bar/dir", ""), "E:\\Actual Path\\Directory"
245 r.Rlocation("my_protobuf/bar/dir/file", ""),
249 r.Rlocation("my_protobuf/bar/dir/de eply/nes ted/fi~le", ""),
254 self.assertIsNone(r.Rlocation("protobuf/bar/dir"))
255 self.assertIsNone(r.Rlocation("protobuf/bar/dir/file"))
256 self.assertIsNone(r.Rlocation("protobuf/bar/dir/dir/de eply/nes ted/fi~le"))
267 r.Rlocation("protobuf~3.19.2/bar/dir", ""), "E:\\Actual Path\\Directory"
270 r.Rlocation("protobuf~3.19.2/bar/dir/file", ""),
274 r.Rlocation("protobuf~3.19.2/bar/dir/de eply/nes ted/fi~le", ""),
299 "protobuf~3.19.2/bar/dir E:\\Actual Path\\Directory",
309 r.Rlocation("protobuf/bar/dir", "protobuf~3.19.2"),
313 r.Rlocation("protobuf/bar/dir/file", "protobuf~3.19.2"),
318 "protobuf/bar/dir/de eply/nes ted/fi~le", "protobuf~3.19.2"
325 self.assertIsNone(r.Rlocation("my_protobuf/bar/dir", "protobuf~3.19.2"))
327 r.Rlocation("my_protobuf/bar/dir/file", "protobuf~3.19.2")
331 "my_protobuf/bar/dir/de eply/nes ted/fi~le", "protobuf~3.19.2"
344 r.Rlocation("protobuf~3.19.2/bar/dir", "protobuf~3.19.2"),
348 r.Rlocation("protobuf~3.19.2/bar/dir/file", "protobuf~3.19.2"),
353 "protobuf~3.19.2/bar/dir/de eply/nes ted/fi~le", "protobuf~3.19.2"
389 dir = os.path.dirname(rm.Path())
390 r = runfiles.CreateDirectoryBased(dir)
393 r.Rlocation("my_module/bar/runfile", ""), dir + "/_main/bar/runfile"
396 r.Rlocation("my_workspace/bar/runfile", ""), dir + "/_main/bar/runfile"
400 dir + "/protobuf~3.19.2/foo/runfile",
403 r.Rlocation("my_protobuf/bar/dir", ""), dir + "/protobuf~3.19.2/bar/dir"
406 r.Rlocation("my_protobuf/bar/dir/file", ""),
407 dir + "/protobuf~3.19.2/bar/dir/file",
410 r.Rlocation("my_protobuf/bar/dir/de eply/nes ted/fi~le", ""),
411 dir + "/protobuf~3.19.2/bar/dir/de eply/nes ted/fi~le",
415 r.Rlocation("protobuf/foo/runfile", ""), dir + "/protobuf/foo/runfile"
418 r.Rlocation("protobuf/bar/dir/dir/de eply/nes ted/fi~le", ""),
419 dir + "/protobuf/bar/dir/dir/de eply/nes ted/fi~le",
423 r.Rlocation("_main/bar/runfile", ""), dir + "/_main/bar/runfile"
427 dir + "/protobuf~3.19.2/foo/runfile",
430 r.Rlocation("protobuf~3.19.2/bar/dir", ""),
431 dir + "/protobuf~3.19.2/bar/dir",
434 r.Rlocation("protobuf~3.19.2/bar/dir/file", ""),
435 dir + "/protobuf~3.19.2/bar/dir/file",
438 r.Rlocation("protobuf~3.19.2/bar/dir/de eply/nes ted/fi~le", ""),
439 dir + "/protobuf~3.19.2/bar/dir/de eply/nes ted/fi~le",
442 self.assertEqual(r.Rlocation("config.json", ""), dir + "/config.json")
456 dir = os.path.dirname(rm.Path())
457 r = runfiles.CreateDirectoryBased(dir)
461 dir + "/protobuf~3.19.2/foo/runfile",
464 r.Rlocation("protobuf/bar/dir", "protobuf~3.19.2"),
465 dir + "/protobuf~3.19.2/bar/dir",
468 r.Rlocation("protobuf/bar/dir/file", "protobuf~3.19.2"),
469 dir + "/protobuf~3.19.2/bar/dir/file",
473 "protobuf/bar/dir/de eply/nes ted/fi~le", "protobuf~3.19.2"
475 dir + "/protobuf~3.19.2/bar/dir/de eply/nes ted/fi~le",
480 dir + "/my_module/bar/runfile",
484 "my_protobuf/bar/dir/de eply/nes ted/fi~le", "protobuf~3.19.2"
486 dir + "/my_protobuf/bar/dir/de eply/nes ted/fi~le",
491 dir + "/_main/bar/runfile",
495 dir + "/protobuf~3.19.2/foo/runfile",
498 r.Rlocation("protobuf~3.19.2/bar/dir", "protobuf~3.19.2"),
499 dir + "/protobuf~3.19.2/bar/dir",
502 r.Rlocation("protobuf~3.19.2/bar/dir/file", "protobuf~3.19.2"),
503 dir + "/protobuf~3.19.2/bar/dir/file",
507 "protobuf~3.19.2/bar/dir/de eply/nes ted/fi~le", "protobuf~3.19.2"
509 dir + "/protobuf~3.19.2/bar/dir/de eply/nes ted/fi~le",
513 r.Rlocation("config.json", "protobuf~3.19.2"), dir + "/config.json"
544 self._path = os.path.join(tempfile.mkdtemp(dir=tmpdir), self._name)