Home
last modified time | relevance | path

Searched refs:client_root (Results 1 – 10 of 10) sorted by relevance

/dports/devel/distcc/distcc-3.3.5/include_server/
H A Dcompiler_defaults.py52 def _RealPrefixWithinClientRoot(client_root, path): argument
73 if os.path.islink(client_root + prefix):
75 if not os.path.isdir(client_root + prefix):
80 def _MakeLinkFromMirrorToRealLocation(system_dir, client_root, system_links): argument
112 real_prefix, is_link = _RealPrefixWithinClientRoot(client_root, system_dir)
114 rooted_system_dir = client_root + system_dir
115 rooted_parent = client_root + parent
144 assert _RealPrefixWithinClientRoot(client_root, parent) == (parent, False), (client_root, parent)
320 def __init__(self, canonical_lookup, client_root): argument
336 self.client_root = client_root
[all …]
H A Dbasics_test.py71 self.assertEqual(os.path.dirname(client_root_keeper.client_root),
77 os.path.dirname(client_root_keeper.client_root)), "/to")
78 self.assertEqual(os.path.basename(client_root_keeper.client_root),
81 [ None for ch in client_root_keeper.client_root if ch == '/' ]), 3)
95 self.assertTrue(os.path.isdir(client_root_keeper.client_root))
96 self.assertTrue(client_root_keeper.client_root.endswith('/padding'))
110 self.assertTrue(os.path.isdir(client_root_keeper.client_root))
H A Dbasics.py80 self.client_root = None
103 self.client_root = (self._client_root_before_padding
105 if not os.path.isdir(self.client_root):
106 os.makedirs(self.client_root)
109 (self.client_root, why))
118 for client_root in self.Glob(str(pid)):
119 shutil.rmtree(client_root, ignore_errors=True)
H A Dcompress_files.py70 new_filepath = "%s%s.lzo.abs" % (client_root_keeper.client_root,
73 new_filepath = "%s%s.lzo" % (client_root_keeper.client_root,
81 my_root = client_root_keeper.client_root
H A Dinclude_analyzer.py54 cache_basics.SetUpCaches(self.client_root_keeper.client_root))
141 self.client_root_keeper.client_root)
H A Dcache_basics.py820 def __init__(self, client_root): argument
849 self.canonical_path.Canonicalize, client_root)
H A Dinclude_analyzer_memoizing_node.py451 self.client_root_keeper.client_root)
/dports/www/py-bokeh/bokeh-2.3.3/tests/unit/bokeh/
H A Dtest_client_server.py396 doc.add_root(client_root)
402 assert client_root.foo == 42
413 client_root.foo = 57
887 doc.add_root(client_root)
898 assert client_root.foo == 42
909 client_root.foo = 57
933 doc.add_root(client_root)
944 assert client_root.foo == 42
965 assert client_root.foo == 57
982 client_root = UnitsSpecModel()
[all …]
/dports/devel/rbtools/RBTools-2.0/rbtools/clients/
H A Dperforce.py457 client_root = p4_info.get('Client root')
459 if client_root is None:
464 if client_root.lower() != 'null' or not sys.platform.startswith('win'):
467 local_path = os.path.normcase(os.path.realpath(client_root) +
1920 client_root = p4_info.get('Client root')
1921 added_files = ['%s/%s' % (client_root, f) for f in added_files]
1922 deleted_files = ['%s/%s' % (client_root, f) for f in deleted_files]
/dports/devel/distcc/distcc-3.3.5/
H A DChangeLog728 The code was calling _RealPrefix(client_root + system_dir)
730 start with client_root. That is, it was implicitly assuming
731 that client_root did not contain any symlinks.
734 _RealPrefixWithinClientRoot(client_root, system_dir)
736 rather than looking at the prefixes of client_root.