Home
last modified time | relevance | path

Searched refs:site (Results 1 – 25 of 506) sorted by relevance

12345678910>>...21

/third_party/python/Lib/test/
Dtest_site.py36 import site
39 HAS_USER_SITE = (site.USER_SITE is not None)
47 if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
50 os.makedirs(site.USER_SITE)
52 site.addsitedir(site.USER_SITE)
55 % (site.USER_SITE, exc))
69 self.old_base = site.USER_BASE
70 self.old_site = site.USER_SITE
71 self.old_prefixes = site.PREFIXES
78 site.USER_BASE = self.old_base
[all …]
/third_party/node/test/message/
Dsource_map_enabled_by_api.out1 *enclosing-call-site.js:16
6 at functionD (*enclosing-call-site.js:16:17)
7 at functionC (*enclosing-call-site.js:10:3)
8 at functionB (*enclosing-call-site.js:6:3)
9 at functionA (*enclosing-call-site.js:2:3)
10 at Object.<anonymous> (*enclosing-call-site.js:24:3)
16 *enclosing-call-site-min.js:1
21 at functionD (*enclosing-call-site-min.js:1:156)
22 at functionC (*enclosing-call-site-min.js:1:97)
23 at functionB (*enclosing-call-site-min.js:1:60)
[all …]
Dsource_map_disabled_by_api.out2 at functionD (*enclosing-call-site-min.js:1:156)
3 at functionC (*enclosing-call-site-min.js:1:97)
4 at functionB (*enclosing-call-site-min.js:1:60)
5 at functionA (*enclosing-call-site-min.js:1:26)
6 at Object.<anonymous> (*enclosing-call-site-min.js:1:199)
12 *enclosing-call-site.js:16
17 at functionD (*enclosing-call-site.js:16:17)
18 at functionC (*enclosing-call-site.js:10:3)
19 at functionB (*enclosing-call-site.js:6:3)
20 at functionA (*enclosing-call-site.js:2:3)
[all …]
Dsource_map_enclosing_function.out1 *enclosing-call-site.js:16
6 at functionD (*enclosing-call-site.js:16:17)
7 at functionC (*enclosing-call-site.js:10:3)
8 at functionB (*enclosing-call-site.js:6:3)
9 at functionA (*enclosing-call-site.js:2:3)
10 at Object.<anonymous> (*enclosing-call-site.js:24:3)
/third_party/python/Doc/library/
Dsite.rst1 :mod:`site` --- Site-specific configuration hook
4 .. module:: site
5 :synopsis: Module responsible for site-specific configuration.
7 **Source code:** :source:`Lib/site.py`
18 Importing this module will append site-specific paths to the module search path
21 or additions to the builtins. To explicitly trigger the usual site-specific
22 additions, call the :func:`site.main` function.
29 pair: site-packages; directory
34 :file:`lib/site-packages` (on Windows) or
35 :file:`lib/python{X.Y}/site-packages` (on Unix and macOS). For each
[all …]
/third_party/libffi/testsuite/
DMakefile.in448 check-DEJAGNU: site.exp
459 site.exp: Makefile $(EXTRA_DEJAGNU_SITE_CONFIG)
461 @echo '## these variables are automatically generated by make ##' >site.tmp
462 @echo '# Do not edit here. If you wish to override these values' >>site.tmp
463 @echo '# edit the last section' >>site.tmp
464 @echo 'set srcdir "$(srcdir)"' >>site.tmp
465 @echo "set objdir `pwd`" >>site.tmp
466 @echo 'set build_alias "$(build_alias)"' >>site.tmp
467 @echo 'set build_triplet $(build_triplet)' >>site.tmp
468 @echo 'set host_alias "$(host_alias)"' >>site.tmp
[all …]
/third_party/node/deps/npm/docs/src/components/
Dseo.js14 const { site } = useStaticQuery(
28 const metaDescription = description || site.siteMetadata.description
36 titleTemplate={`%s | ${site.siteMetadata.title}`}
60 content: site.siteMetadata.author
/third_party/glslang/
Dupdate_glslang_sources.py84 self.site = json['site']
91 host = SITE_TO_HOST[self.site]
124 def GetGoodCommits(site): argument
126 known_good_file = SITE_TO_KNOWN_GOOD_FILE[site]
140 commits = GetGoodCommits(args.site)
/third_party/gstreamer/gstplugins_base/gst-libs/gst/video/
Dvideo-chroma.c69 GstVideoChromaSite site; member
119 return chromasite[i].site; in gst_video_chroma_site_from_string()
159 gst_video_chroma_to_string (GstVideoChromaSite site) in gst_video_chroma_to_string() argument
163 if (chromasite[i].site == site) in gst_video_chroma_to_string()
182 gst_video_chroma_site_to_string (GstVideoChromaSite site) in gst_video_chroma_site_to_string() argument
190 if (site == 0) in gst_video_chroma_site_to_string()
194 if (chromasite[i].site == site) in gst_video_chroma_site_to_string()
199 if ((site & GST_VIDEO_CHROMA_SITE_NONE) != 0 && in gst_video_chroma_site_to_string()
200 site != GST_VIDEO_CHROMA_SITE_NONE) in gst_video_chroma_site_to_string()
206 while (site != GST_VIDEO_CHROMA_SITE_UNKNOWN && in gst_video_chroma_site_to_string()
[all …]
Dvideo-chroma.h59 const gchar * gst_video_chroma_to_string (GstVideoChromaSite site);
65 gchar * gst_video_chroma_site_to_string (GstVideoChromaSite site);
100 GstVideoChromaSite site,
/third_party/python/Lib/distutils/tests/
Dtest_install.py6 import site
82 self.old_user_base = site.USER_BASE
83 self.old_user_site = site.USER_SITE
87 site.USER_BASE = self.user_base
88 site.USER_SITE = self.user_site
98 site.USER_BASE = self.old_user_base
99 site.USER_SITE = self.old_user_site
Dtest_build_ext.py33 import site
34 self.old_user_base = site.USER_BASE
35 site.USER_BASE = self.mkdtemp()
37 build_ext.USER_BASE = site.USER_BASE
48 import site
49 site.USER_BASE = self.old_user_base
140 import site
153 lib = os.path.join(site.USER_BASE, 'lib')
154 incl = os.path.join(site.USER_BASE, 'include')
/third_party/python/Tools/scripts/
Dwin_add2path.py11 import site
24 if hasattr(site, "USER_SITE"):
25 usersite = site.USER_SITE.replace(appdata, "%APPDATA%")
/third_party/libunwind/src/arm/
Dgetcontext.S49 @ reconstruct r13 at call site, then store
52 @ retrieve r14 from call site, then store
55 @ point lr to instruction after call site's stack adjustment
/third_party/skia/site/docs/dev/tools/
Dmarkdown.md6 This site is build with [Hugo](https://gohugo.io/) and
9 Any file you put under `/site/` that has the extension `.md` will be processed
14 When preparing for a code review of site docs you can get a preview of how the
15 page will render by visiting the skia.org site and add a query parameter `cl`
100 The Hugo configuration file is `config.toml` located in the site directory.
/third_party/libxml2/
Dlibxml.spec.in123 rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.a
124 rm -f $RPM_BUILD_ROOT%{_libdir}/python*/site-packages/*.la
183 %{_libdir}/python2*/site-packages/libxml2.py*
184 %{_libdir}/python2*/site-packages/drv_libxml2.py*
185 %{_libdir}/python2*/site-packages/libxml2mod*
196 %{_libdir}/python3*/site-packages/libxml2.py*
197 %{_libdir}/python3*/site-packages/drv_libxml2.py*
198 %{_libdir}/python3*/site-packages/__pycache__/*py*
199 %{_libdir}/python3*/site-packages/libxml2mod*
/third_party/node/tools/pip/
Dsitecustomize.py2 import site
3 site.addsitedir(os.path.dirname(os.path.realpath(__file__)) + '/site-packages')
/third_party/flutter/skia/third_party/externals/freetype/docs/reference/
D.gitignore1 # Static site folder
2 site/
/third_party/python/Doc/tutorial/
Dappendix.rst106 of your user site-packages directory. Start Python and run this code::
108 >>> import site
109 >>> site.getusersitepackages()
110 '/home/user/.local/lib/python3.5/site-packages'
117 administrator of the computer in the global site-packages directory, and is
118 imported before :mod:`usercustomize`. See the documentation of the :mod:`site`
/third_party/python/Doc/using/
Dvenv-create.inc13 ``lib/pythonX.Y/site-packages`` subdirectory (on Windows, this is
14 ``Lib\site-packages``). If an existing directory is specified, it will be
38 usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
49 --system-site-packages
51 site-packages dir.
98 ``include-system-site-packages`` key, set to ``true`` if ``venv`` is
99 run with the ``--system-site-packages`` option, ``false`` otherwise.
/third_party/skia/third_party/externals/freetype/builds/
Dfreetype.mk296 --site=reference \
301 @echo Building static site...
324 --site=reference \
329 @echo Building static site...
/third_party/freetype/builds/
Dfreetype.mk296 --site=reference \
301 @echo Building static site...
324 --site=reference \
329 @echo Building static site...
/third_party/ltp/tools/sparse/sparse-src/gvpr/
Dreturn-paths2 // Split call sites into call site and return site nodes and add
/third_party/node/test/fixtures/source-map/
Denclosing-call-site.js.map3 "file":"enclosing-call-site-min.js",
6 "sources":["enclosing-call-site.js"],
/third_party/skia/bin/
Dgerrit-number28 def gerrit_change_id_to_number(site, cid): argument
29 url = 'https://%s/changes/?q=change:%s' % (site, cid)

12345678910>>...21