HomeSort by relevance Sort by last modified time
    Searched full:host (Results 226 - 250 of 10789) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/net/http/cookiejar/
jar.go 116 // request to host/path. It is the caller's responsibility to check if the
118 func (e *entry) shouldSend(https bool, host, path string) bool {
119 return e.domainMatch(host) && e.pathMatch(path) && (https || !e.Secure)
123 func (e *entry) domainMatch(host string) bool {
124 if e.Domain == host {
127 return !e.HostOnly && hasDotSuffix(host, e.Domain)
180 host, err := canonicalHost(u.Host)
184 key := jarKey(host, j.psList)
208 if !e.shouldSend(https, host, path)
    [all...]
  /prebuilts/go/linux-x86/src/net/http/cookiejar/
jar.go 116 // request to host/path. It is the caller's responsibility to check if the
118 func (e *entry) shouldSend(https bool, host, path string) bool {
119 return e.domainMatch(host) && e.pathMatch(path) && (https || !e.Secure)
123 func (e *entry) domainMatch(host string) bool {
124 if e.Domain == host {
127 return !e.HostOnly && hasDotSuffix(host, e.Domain)
180 host, err := canonicalHost(u.Host)
184 key := jarKey(host, j.psList)
208 if !e.shouldSend(https, host, path)
    [all...]
  /external/curl/docs/libcurl/opts/
CURLOPT_CONNECT_TO.3 25 CURLOPT_CONNECT_TO \- Connect to a specific host and port instead of the URL's host and port
41 HOST:PORT:CONNECT-TO-HOST:CONNECT-TO-PORT where HOST is the host of the
42 request, PORT is the port of the request, CONNECT-TO-HOST is the host name to
45 The first string that matches the request's host and port is used.
47 Dotted numerical IP addresses are supported for HOST and CONNECT-TO-HOST
    [all...]
  /external/dagger2/
Android.mk 17 # build dagger2 host jar
22 LOCAL_MODULE := dagger2-host
28 dagger2-inject-host \
34 # build dagger2 producers host jar
39 LOCAL_MODULE := dagger2-producers-host
45 dagger2-host \
46 dagger2-inject-host \
52 # build dagger2 compiler host jar
57 LOCAL_MODULE := dagger2-compiler-host
67 dagger2-host \
    [all...]
  /system/core/adb/
SERVICES.TXT 5 HOST SERVICES:
7 host:version
14 host:kill
19 host:devices
20 host:devices-l
27 host:track-devices
28 This is a variant of host:devices which doesn't close the
35 host:emulator:<port>
45 host:transport:<serial-number>
51 host:transport-us
    [all...]
  /build/core/
host_fuzz_test.mk 3 ## Common flags for host fuzz tests are added.
  /dalvik/dx/tests/116-leb128/
info.txt 4 test. You'll also need a device or host VM for vogar to attach to.
  /device/google/accessory/arduino/USB_Host_Shield/
README 1 This is a library for MAX3421E-based USB Host Shield for Arduino -> http://www.circuitsathome.com/arduino_usb_host_shield_projects
  /external/autotest/contrib/
haveservo 4 # DUT, if there's a corresponding servo host name, print the DUT's
17 for host in [l.strip() for l in sys.stdin.readlines()]:
18 servo_name = servo_host.make_servo_hostname(host.strip())
20 print host
  /external/autotest/server/
hypervisor.py 32 host = None variable in class:Hypervisor
35 def __init__(self, host):
37 self.host= host
site_host_attributes.py 5 """Host attributes define properties on individual hosts.
7 Host attributes are specified a strings with the format:
41 We also consult the AFE database for its labels which are all treated as host
73 """Host attribute class for site specific attributes."""
75 def __init__(self, host):
78 We look up the host in both the hardcoded configuration and the AFE
82 host: Host name to find attributes for.
85 if host in private_host_attributes:
86 logging.info('Including private_host_attributes file for %s', host)
    [all...]
  /external/autotest/server/site_tests/brillo_Minijail/
brillo_Minijail.py 16 def run_once(self, host=None):
19 @param host: A host object representing the DUT.
24 host.run(self.TEST_EXECUTABLE)
  /external/autotest/server/site_tests/desktopui_CrashyRebootServer/
desktopui_CrashyRebootServer.py 26 def run_once(self, host=None):
27 host.run('rm -f /var/lib/ui/reboot-timestamps')
28 boot_id = host.get_boot_id()
37 client_at = autotest.Autotest(host)
43 collector = autotest.log_collector(host, None, '.')
44 host.job.add_client_log(host.hostname,
47 job_record_context = host.job.get_record_context()
49 logging.info('Waiting for host to go down.')
50 if not host.wait_down(timeout=self.CRASHY_DEVICE_TIMEOUT_SECONDS
    [all...]
  /external/autotest/server/site_tests/firmware_ECKeyboard/
control 20 This test check if EC can correctly send keyboard event to host.
27 host = hosts.create_host(machine, servo_args=servo_args)
28 job.run_test("firmware_ECKeyboard", host=host, cmdline_args=args,
  /external/autotest/server/site_tests/platform_UReadAheadServer/
platform_UReadAheadServer.py 17 def run_once(self, host=None):
19 host.run('rm -rf /var/lib/ureadahead')
22 host.reboot()
26 host.run('ls /var/lib/ureadahead/*pack')
  /external/autotest/server/site_tests/platform_Vpd/
platform_Vpd.py 39 def get_stat(self, host, path):
40 """Return user, group and permissions of file on host.
42 @param host: the host machine to test
48 if not self.file_exists(host, path):
51 user = host.run('stat -c %U ' + path).stdout.strip()
52 group = host.run('stat -c %G ' + path).stdout.strip()
53 mode = host.run('stat -c %a ' + path).stdout.strip()
57 def file_exists(self, host, path):
60 @param host: the host machin
    [all...]
  /external/autotest/server/site_tests/telemetry_GpuTests/
telemetry_GpuTests.py 16 def run_once(self, host=None, test=None, args={}):
19 @param host: host we are running telemetry on.
23 telemetry = telemetry_runner.TelemetryRunner(host, local)
  /external/autotest/server/site_tests/telemetry_ScrollingActionTests/
telemetry_ScrollingActionTests.py 16 def run_once(self, host=None):
19 @param host: host we are running telemetry on.
21 telemetry = telemetry_runner.TelemetryRunner(host)
  /external/autotest/server/tests/sleeptest/
sleeptest.py 7 def run_once(self, host=None, seconds=1):
  /external/chromium-libpac/test/js-unittest/
binding_from_global.js 6 function FindProxyForURL(url, host) {
side_effects.js 7 function FindProxyForURL(url, host) {
  /external/curl/tests/data/
test299 35 -x http://%HOSTIP:%HTTPPORT -u michal:aybabtu ftp://host.com/we/want/299
45 GET ftp://michal:aybabtu@host.com/we/want/299 HTTP/1.1
46 Host: host.com:21
  /external/junit/
README.android 1 This is junit4.10 source, currently intended for host side use.
  /external/libnl/src/
nl-util-addr.c 17 char host[256]; local
26 err = nl_addr_resolve(a, host, sizeof(host));
31 printf("%s\n", host);
  /external/selinux/policycoreutils/.tx/
config 2 host = https://www.transifex.com

Completed in 529 milliseconds

1 2 3 4 5 6 7 8 91011>>