Home | History | Annotate | Download | only in model

Lines Matching refs:host

24 import com.google.caliper.model.Host.HostFunnel;
38 private Host host;
45 this.host = Host.DEFAULT;
51 this.host = builder.host;
56 public Host host() {
57 return host;
73 return this.host.equals(that.host)
85 .putObject(host, HostFunnel.INSTANCE)
99 .add("environment", host)
106 private Host host;
110 public Builder host(Host.Builder hostBuilder) {
111 return host(hostBuilder.build());
114 public Builder host(Host host) {
115 this.host = checkNotNull(host);
138 checkState(host != null);