/external/caliper/caliper/src/main/java/com/google/caliper/model/ |
D | Host.java | 39 public final class Host { class 40 static final Host DEFAULT = new Host(); 41 private static final Logger logger = Logger.getLogger(Host.class.getName()); 47 private Host() { in Host() method in Host 51 private Host(Builder builder) { in Host() method in Host 64 } else if (obj instanceof Host) { in equals() 65 Host that = (Host) obj; in equals() 93 enum HostFunnel implements Funnel<Host> { 96 @Override public void funnel(Host from, PrimitiveSink into) { in funnel() 125 public Host build() { in build() [all …]
|
D | Scenario.java | 24 import com.google.caliper.model.Host.HostFunnel; 38 private Host host; 45 this.host = Host.DEFAULT; in Scenario() 56 public Host host() { in host() 106 private Host host; 110 public Builder host(Host.Builder hostBuilder) { in host() 114 public Builder host(Host host) { in host()
|
/external/autotest/frontend/client/src/autotest/afe/models/ |
D | Host.java | 7 public class Host extends JSONObject { class 8 public static Host fromJsonObject(JSONObject object) { in fromJsonObject() 10 Host host = new Host(); in fromJsonObject() 17 if (!(other instanceof Host)) { in equals() 21 Host otherHost = (Host) other; in equals()
|
/external/autotest/scheduler/ |
D | scheduler_models_unittest.py | 105 host = scheduler_models.Host(id=1) 128 host_a = scheduler_models.Host(id=2) 132 host_b = scheduler_models.Host(id=2, always_query=True) 140 host_c = scheduler_models.Host(id=2, always_query=False) 145 host = scheduler_models.Host(id=3) 147 host = self.assertRaises(scheduler_models.DBError, scheduler_models.Host, id=3, 149 host = self.assertRaises(scheduler_models.DBError, scheduler_models.Host, id=3, 187 hostname_idx = list(scheduler_models.Host._fields).index('hostname') 188 row = [None] * len(scheduler_models.Host._fields) 192 hosts.append(scheduler_models.Host(row=row, new_record=True)) [all …]
|
D | prejob_task.py | 122 self.host.set_status(models.Host.Status.REPAIR_FAILED) 132 host=models.Host.objects.get(id=self.host.id), 182 self.host.set_status(models.Host.Status.VERIFYING) 196 self.host.set_status(models.Host.Status.READY) 218 self.host.set_status(models.Host.Status.CLEANING) 234 host=models.Host.objects.get(id=self.host.id), 247 self.host.set_status(models.Host.Status.READY) 273 self.host.set_status(models.Host.Status.RESETTING) 299 self.host.set_status(models.Host.Status.READY) 409 self.host.set_status(models.Host.Status.PROVISIONING) [all …]
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITTestAPICommon.h | 57 Triple Host(HostTriple); in ArchSupportsMCJIT() 59 if (std::find(SupportedArchs.begin(), SupportedArchs.end(), Host.getArch()) in ArchSupportsMCJIT() 64 if (std::find(HasSubArchs.begin(), HasSubArchs.end(), Host.getArch()) in ArchSupportsMCJIT() 71 if (Host.getArchName().startswith(I->c_str())) in ArchSupportsMCJIT() 79 Triple Host(HostTriple); in OSSupportsMCJIT() 82 Host.getEnvironment()) != UnsupportedEnvironments.end()) in OSSupportsMCJIT() 85 if (std::find(UnsupportedOSs.begin(), UnsupportedOSs.end(), Host.getOS()) in OSSupportsMCJIT()
|
/external/autotest/server/hosts/ |
D | base_classes_unittest.py | 29 host = base_classes.Host.__new__(base_classes.Host) 38 host = base_classes.Host() 55 host = base_classes.Host() 64 host = base_classes.Host() 73 host = base_classes.Host() 84 host = base_classes.Host() 95 host = base_classes.Host()
|
D | base_classes.py | 24 class Host(hosts.Host): class 56 super(Host, self).__init__(*args, **dargs) 64 super(Host, self)._initialize(*args, **dargs) 71 super(Host, self).close()
|
/external/curl/tests/data/ |
D | test1121 | 27 HTTP multiple provided Host: headers 30 -H "Host: host1" -H "Host: host2" -H "Host: host3" http://%HOSTIP:%HTTPPORT/1121 42 Host: host1
|
D | test1510 | 66 Host: %HOSTIP:%HTTPPORT 70 Host: %HOSTIP:%HTTPPORT 74 Host: %HOSTIP:%HTTPPORT 78 Host: %HOSTIP:%HTTPPORT 83 ^Host:.*
|
D | test1506 | 66 Host: %HOSTIP:%HTTPPORT 70 Host: %HOSTIP:%HTTPPORT 74 Host: %HOSTIP:%HTTPPORT 78 Host: %HOSTIP:%HTTPPORT 83 ^Host:.*
|
D | test2049 | 46 Host: www1.example.com:8081 50 Host: www2.example.com:8082 54 Host: www3.example.com:8083 58 Host: www4.example.com:8084
|
D | test528 | 48 Host: %HOSTIP:%HTTPPORT 52 Host: %HOSTIP:%HTTPPORT 56 Host: %HOSTIP:%HTTPPORT 60 Host: %HOSTIP:%HTTPPORT
|
D | test25 | 82 Host: %HOSTIP:%HTTPPORT 87 Host: %HOSTIP:%HTTPPORT 92 Host: %HOSTIP:%HTTPPORT 97 Host: %HOSTIP:%HTTPPORT 102 Host: %HOSTIP:%HTTPPORT 107 Host: %HOSTIP:%HTTPPORT
|
D | test185 | 48 HTTP replace Host: when following Location: on the same host 51 http://deathstar.another.galaxy/185 -L -H "Host: another.visitor.stay.a.while.stay.foreeeeeever" --… 62 Host: another.visitor.stay.a.while.stay.foreeeeeever 67 Host: another.visitor.stay.a.while.stay.foreeeeeever
|
D | test184 | 48 HTTP replace Host: when following Location: to new host 51 http://deathstar.another.galaxy/184 -L -H "Host: another.visitor.stay.a.while.stay.foreeeeeever" --… 62 Host: another.visitor.stay.a.while.stay.foreeeeeever 67 Host: yet.another.host
|
D | test530 | 66 Host: %HOSTIP:%HTTPPORT 70 Host: %HOSTIP:%HTTPPORT 74 Host: %HOSTIP:%HTTPPORT 78 Host: %HOSTIP:%HTTPPORT
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
D | MessageProcessor.java | 28 import gov.nist.core.Host; 135 this.sentByHostPort.setHost(new Host(ipAddress.getHostAddress())); in initialize() 171 Host host = new Host(); in getViaHeader() 226 this.sentByHostPort.setHost( new Host(ipAddress.getHostAddress())); in setIpAddress() 241 this.sentByHostPort.setHost(new Host(sentBy)); in setSentBy() 244 this.sentByHostPort.setHost(new Host(sentBy.substring(0, ind))); in setSentBy()
|
/external/autotest/frontend/afe/ |
D | rpc_interface.py | 105 hosts.append(models.Host.smart_get(h.id)) 152 host_objs = models.Host.smart_get_bulk(hosts) 154 models.Host.check_no_platform(host_objs) 157 models.Host.check_board_labels_allowed(host_objs, [label.name]) 201 host_objs = models.Host.smart_get_bulk(hosts) 229 host_objs = models.Host.smart_get_bulk(hosts) 239 host_objs = models.Host.smart_get_bulk(hosts) 252 host_objs = models.Host.smart_get_bulk(hosts) 277 return models.Host.add_object(hostname=hostname, status=status, 297 host = models.Host.smart_get(id) [all …]
|
D | models_test.py | 57 host = models.Host.create_one_time_host('othost') 59 self.assertEquals(host.status, models.Host.Status.READY) 61 host.status = models.Host.Status.RUNNING 64 host2 = models.Host.add_object(hostname='othost') 66 self.assertEquals(host2.status, models.Host.Status.RUNNING) 70 host = models.Host.create_one_time_host('othost') 173 self.assertTrue(models.Host.objects.get(id=self.hosts[0].id)) 180 hosts = models.Host.objects.all() 197 hosts = models.Host.objects.all().filter(hostname__in=to_delete) 199 all_hosts = models.Host.objects.all() [all …]
|
/external/nist-sip/java/gov/nist/core/ |
D | Host.java | 55 public class Host extends GenericObject { class 85 public Host() { in Host() method in Host 94 public Host(String hostName) throws IllegalArgumentException { in Host() method in Host 108 public Host(String name, int addrType) { in Host() method in Host 144 Host otherHost = (Host) obj; in equals()
|
D | HostPort.java | 50 protected Host host; 98 public Host getHost() { in getHost() 127 public void setHost(Host h) { in setHost() 159 retval.host = (Host) this.host.clone(); in clone()
|
/external/llvm/cmake/modules/ |
D | CheckCompilerVersion.cmake | 12 message(FATAL_ERROR "Host GCC version must be at least 4.7!") 16 message(FATAL_ERROR "Host Clang version must be at least 3.1!") 21 message(FATAL_ERROR "Host Clang must have at least -fms-compatibility-version=18.0") 38 message(FATAL_ERROR "Host Clang must be able to find libstdc++4.7 or newer!") 45 message(FATAL_ERROR "Host Visual Studio must be at least 2013") 47 message(WARNING "Host Visual Studio should at least be 2013 Update 4 (MSVC 18.0.31101)"
|
/external/llvm/unittests/Support/ |
D | ThreadPool.cpp | 25 Triple Host; member in ThreadPoolTest 32 Triple Host(Triple::normalize(sys::getProcessTriple())); in isUnsupportedOSOrEnvironment() local 35 Host.getEnvironment()) != UnsupportedEnvironments.end()) in isUnsupportedOSOrEnvironment() 38 if (std::find(UnsupportedOSs.begin(), UnsupportedOSs.end(), Host.getOS()) in isUnsupportedOSOrEnvironment() 42 if (std::find(UnsupportedArchs.begin(), UnsupportedArchs.end(), Host.getArch()) in isUnsupportedOSOrEnvironment()
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | Via.java | 31 import gov.nist.core.Host; 220 public void setHost(Host host) { in setHost() 285 Host h = new Host(host); in setHost() 301 Host host = sentBy.getHost(); in getHost() 472 Host host = new Host(); in setMAddr()
|