HomeSort by relevance Sort by last modified time
    Searched full:subdomain (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/chromium-trace/catapult/third_party/webapp2/tests/
extras_routes_test.py 172 DomainRoute('<subdomain>.<:.*>', [
173 webapp2.Route('/foo', 'FooHandler', 'subdomain-thingie'),
179 match = router.match(webapp2.Request.blank('http://my-subdomain.app-id.appspot.com/foo'))
180 self.assertEqual(match[1:], ((), {'subdomain': 'my-subdomain'}))
182 match = router.match(webapp2.Request.blank('http://another-subdomain.app-id.appspot.com/foo'))
183 self.assertEqual(match[1:], ((), {'subdomain': 'another-subdomain'}))
185 url = router.build(webapp2.Request.blank('/'), 'subdomain-thingie', (), {'_netloc': 'another-subdomain.app-id.appspot.com'}
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/docs/api/webapp2_extras/
routes.rst 8 domain and subdomain routing, prefixed routes or routes for automatic
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 26 // zone "my-dynamic-subdomain.company.com."
35 // zone "my-dynamic-subdomain.company.com." in
38 // file "db.my-dynamic-subdomain.company.com";
39 // update-policy { grant * wildcard *.my-dynamic-subdomain.company.com.; };
58 zone "my-dynamic-subdomain.company.com." {
  /external/chromium-trace/catapult/third_party/webapp2/docs/guide/
routing.rst 63 keyword arguments, URI building, domain and subdomain matching, automatic
213 .. _guide.routing.domain-and-subdomain-routing:
215 Domain and subdomain routing
217 The routing system can also handle domain and subdomain matching. This is done
222 subdomain matches.
224 For example, to restrict routes to a subdomain of the appspot domain::
230 routes.DomainRoute('<subdomain>.app-id.appspot.com', [
231 webapp2.Route('/', handler=SubdomainHomeHandler, name='subdomain-home'),
236 In the example above, we define a template ``'<subdomain>.app-id.appspot.com'``
240 with path ``/`` will only match when a subdomain of the ``app-id.appspot.com`
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/
routes.py 66 """A route used to restrict route matches to a given domain or subdomain.
68 For example, to restrict routes to a subdomain of the appspot domain::
71 DomainRoute('<subdomain>.app-id.appspot.com', [
72 Route('/foo', 'FooHandler', 'subdomain-thing'),
79 In the example above, an extra `subdomain` keyword is passed to the
  /external/chromium-trace/catapult/third_party/webapp2/
PKG-INFO 20 utilities: sessions, localization, internationalization, domain and subdomain
setup.py 13 utilities: sessions, localization, internationalization, domain and subdomain
CHANGES 363 This gives control of what is passed to the handler if a domain/subdomain
541 subdomain.
576 subdomain.
578 For example, to restrict routes to a subdomain of the appspot domain::
584 Route('/foo', 'FooHandler', 'subdomain-thing'),
  /external/chromium-trace/catapult/third_party/webapp2/webapp2.egg-info/
PKG-INFO 20 utilities: sessions, localization, internationalization, domain and subdomain
  /frameworks/support/compat/tests/java/android/support/v4/text/util/
LinkifyCompatTest.java 740 String subdomain = ""; local
742 subdomain += "a";
744 String email = "email@" + subdomain + ".com";
746 assertAddLinksWithEmailSucceeds("Should match email subdomain of length: " +
747 subdomain.length(), email);
749 subdomain += "a";
750 email = "email@" + subdomain + ".com";
752 assertAddLinksWithEmailFails("Should not match email subdomain of length:" +
753 subdomain.length(), email);
    [all...]
  /bionic/libc/dns/nameser/
ns_samedomain.c 113 * a subdomain of 'b' (because of the need for the '.' label
149 * is "a" a subdomain of "b"?
  /frameworks/base/core/tests/coretests/src/android/util/
PatternsTest.java 728 String subdomain = ""; local
730 subdomain += "a";
732 String email = "email@" + subdomain + ".com";
734 assertTrue("Should match subdomain of length: " + subdomain.length(),
737 subdomain += "a";
738 email = "email@" + subdomain + ".com";
739 assertFalse("Should not match local part of length: " + subdomain.length(),
    [all...]
  /libcore/ojluni/src/main/java/sun/security/x509/
IPAddressName.java 259 //IPv4 address or subdomain
270 //IPv6 address or subdomain
275 // IPv6 subdomain: display prefix length
277 // copy subdomain into new array and convert to BitArray
292 throw new IOException("Invalid IPv6 subdomain - set " +
  /cts/tests/tests/text/src/android/text/util/cts/
LinkifyTest.java 840 String subdomain = ""; local
    [all...]
  /external/pcre/dist/testdata/
testinput14 134 ) # initial subdomain
185 ) # initial subdomain
213 ) # initial subdomain
267 ) # initial subdomain
testinput17 52 ) # initial subdomain
103 ) # initial subdomain
131 ) # initial subdomain
185 ) # initial subdomain
    [all...]
testoutput14 201 ) # initial subdomain
252 ) # initial subdomain
280 ) # initial subdomain
334 ) # initial subdomain
testoutput17 68 ) # initial subdomain
119 ) # initial subdomain
147 ) # initial subdomain
201 ) # initial subdomain
    [all...]
  /frameworks/support/compat/tests/java/android/support/v4/util/
PatternsCompatTest.java 852 String subdomain = ""; local
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/docs/
features.rst 197 Domain and subdomain routing
199 webapp2 supports :ref:`domain and subdomain routing <guide.routing.domain-and-subdomain-routing>`
index.rst 19 domain and subdomain routing, secure cookies and others.
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
naming.py 143 represent any subdomain under the verified domain. Furthermore, Google Cloud
150 bucket names that represent any subdomain under the example.com domain, such
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
name.py 238 """Is self a subdomain of other?
240 The notion of subdomain includes equality.
252 The notion of subdomain includes equality.
483 """If self is a subdomain of origin, return a new name which is self
  /frameworks/base/docs/html-intl/intl/in/training/articles/
security-config.jd 337 Misalnya pertimbangkan, bila semua koneksi ke subdomain {@code
533 subdomain, termasuk subdomain dari subdomain, jika tidak peraturan hanya
  /frameworks/base/docs/html/training/app-links/
index.jd 220 <h3 id="multi-subdomain">Supporting app linking for multiple subdomains</h3>
225 hosts, you must host a separate {@code assetlink.json} file on each subdomain. For example, an
415 and subdomain.

Completed in 873 milliseconds

1 2 3