HomeSort by relevance Sort by last modified time
    Searched defs:master (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/compiler-rt/test/msan/Linux/
forkpty.cc 10 int master, slave; local
11 openpty(&master, &slave, NULL, NULL, NULL);
12 assert(__msan_test_shadow(&master, sizeof(master)) == -1);
  /external/tensorflow/tensorflow/python/distribute/cluster_resolver/
kubernetes_cluster_resolver.py 52 will attempt to talk to the Kubernetes master to retrieve all the instances
96 def master(self, task_type=None, task_id=None, rpc_layer=None): member in class:KubernetesClusterResolver
97 """Returns the master address to use when creating a session.
105 task_type: (Optional) The type of the TensorFlow task of the master.
106 task_id: (Optional) The index of the TensorFlow task of the master.
110 The name or URL of the session master.
125 We retrieve the information from the Kubernetes master every time this
132 RuntimeError: If any of the pods returned by the master is not in the
slurm_cluster_resolver.py 198 def master(self, task_type=None, task_id=None, rpc_layer=None): member in class:SlurmClusterResolver
199 """Returns the master string for connecting to a TensorFlow master.
208 A connection string for connecting to a TensorFlow master.
gce_cluster_resolver.py 151 def master(self, task_type=None, task_id=None, rpc_layer=None): member in class:GCEClusterResolver
156 master = self.cluster_spec().task_address(task_type, task_id)
158 return '%s://%s' % (rpc_layer or self._rpc_layer, master)
160 return master
cluster_resolver.py 37 def format_master_url(master, rpc_layer=None):
39 return '%s://%s' % (rpc_layer, master)
41 return master
44 def get_accelerator_devices(master, config_proto):
45 """Returns accelerator devices given a master and a configuration."""
60 with session.Session(master, config=config_proto) as s:
108 def master(self, task_type=None, task_id=None, rpc_layer=None): member in class:ClusterResolver
109 """Retrieves the name or URL of the session master.
112 task_type: (Optional) The type of the TensorFlow task of the master.
113 task_id: (Optional) The index of the TensorFlow task of the master
210 def master(self, task_type=None, task_id=None, rpc_layer=None): member in class:SimpleClusterResolver
403 def master(self, task_type=None, task_id=None, rpc_layer=None): member in class:UnionClusterResolver
    [all...]
tfconfig_cluster_resolver.py 35 def format_master_url(master, rpc_layer=None):
37 return '%s://%s' % (rpc_layer, master)
39 return master
135 def master(self, task_type=None, task_id=None, rpc_layer=None): member in class:TFConfigClusterResolver
136 """Returns the master address to use when creating a TensorFlow session.
140 master.
142 master.
147 The address of the master.
  /external/compiler-rt/test/sanitizer_common/TestCases/Posix/
getpass.cc 16 int master; local
17 int pid = forkpty(&master, NULL, NULL, NULL);
24 int res = read(master, buf, sizeof(buf));
26 write(master, "password\n", 9);
27 while ((res = read(master, buf, sizeof(buf))) > 0) write(1, buf, res);
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsMaster.java 29 @Parameter(names = "-master")
30 public String master; field in class:ArgsMaster
ArgsSlaveBogus.java 29 @Parameter(names = "-master")
30 public String master; field in class:ArgsSlaveBogus
  /external/libnetfilter_conntrack/utils/
expect_create.c 19 struct nf_conntrack *master, *expected, *mask; local
23 * Step 1: Setup master conntrack
26 master = nfct_new();
27 if (!master) {
32 nfct_set_attr_u8(master, ATTR_L3PROTO, AF_INET);
33 nfct_set_attr_u32(master, ATTR_IPV4_SRC, inet_addr("1.1.1.1"));
34 nfct_set_attr_u32(master, ATTR_IPV4_DST, inet_addr("2.2.2.2"));
36 nfct_set_attr_u8(master, ATTR_L4PROTO, IPPROTO_TCP);
37 nfct_set_attr_u16(master, ATTR_PORT_SRC, htons(1025));
38 nfct_set_attr_u16(master, ATTR_PORT_DST, htons(21))
    [all...]
expect_create_userspace.c 19 struct nf_conntrack *master, *expected, *mask; local
23 * Step 1: Setup master conntrack
26 master = nfct_new();
27 if (!master) {
32 nfct_set_attr_u8(master, ATTR_L3PROTO, AF_INET);
33 nfct_set_attr_u32(master, ATTR_IPV4_SRC, inet_addr("1.1.1.1"));
34 nfct_set_attr_u32(master, ATTR_IPV4_DST, inet_addr("2.2.2.2"));
36 nfct_set_attr_u8(master, ATTR_L4PROTO, IPPROTO_TCP);
37 nfct_set_attr_u16(master, ATTR_PORT_SRC, htons(1025));
38 nfct_set_attr_u16(master, ATTR_PORT_DST, htons(21))
    [all...]
expect_get.c 25 struct nf_conntrack *master; local
28 master = nfct_new();
29 if (!master) {
34 nfct_set_attr_u8(master, ATTR_L3PROTO, AF_INET);
35 nfct_set_attr_u32(master, ATTR_IPV4_SRC, inet_addr("1.1.1.1"));
36 nfct_set_attr_u32(master, ATTR_IPV4_DST, inet_addr("2.2.2.2"));
38 nfct_set_attr_u8(master, ATTR_L4PROTO, IPPROTO_TCP);
39 nfct_set_attr_u16(master, ATTR_PORT_SRC, htons(10240));
40 nfct_set_attr_u16(master, ATTR_PORT_DST, htons(10241));
45 nfct_destroy(master);
    [all...]
expect_create_nat.c 19 struct nf_conntrack *master, *expected, *mask, *nat; local
23 * Step 1: Setup master conntrack
26 master = nfct_new();
27 if (!master) {
32 nfct_set_attr_u8(master, ATTR_L3PROTO, AF_INET);
33 nfct_set_attr_u32(master, ATTR_IPV4_SRC, inet_addr("1.1.1.1"));
34 nfct_set_attr_u32(master, ATTR_IPV4_DST, inet_addr("2.2.2.2"));
36 nfct_set_attr_u8(master, ATTR_L4PROTO, IPPROTO_TCP);
37 nfct_set_attr_u16(master, ATTR_PORT_SRC, htons(1025));
38 nfct_set_attr_u16(master, ATTR_PORT_DST, htons(21))
    [all...]
  /external/libnl/src/
nl-link-enslave.c 20 struct rtnl_link *master, *slave; local
24 fprintf(stderr, "Usage: nl-link-enslave master slave\n");
32 if (!(master = rtnl_link_get_by_name(link_cache, argv[1]))) {
42 if ((err = rtnl_link_bond_enslave(sock, master, slave)) < 0) {
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_limit.h 30 struct xt_limit_priv * master; member in struct:xt_rateinfo
xt_quota.h 31 struct xt_quota_priv * master; member in struct:xt_quota_info
xt_statistic.h 46 struct xt_statistic_priv * master __attribute__((aligned(8))); member in struct:xt_statistic_info
  /external/iptables/include/linux/netfilter/
xt_limit.h 22 struct xt_limit_priv *master; member in struct:xt_rateinfo
xt_quota.h 19 struct xt_quota_priv *master; member in struct:xt_quota_info
xt_quota2.h 22 struct xt_quota_counter *master __attribute__((aligned(8))); member in struct:xt_quota_mtinfo2
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_limit.h 23 struct xt_limit_priv *master; member in struct:xt_rateinfo
xt_quota.h 20 struct xt_quota_priv *master; member in struct:xt_quota_info
  /bionic/libc/kernel/uapi/linux/
stm.h 26 __u16 master; member in struct:stp_policy_id
  /external/kernel-headers/original/uapi/linux/
stm.h 15 /* Maximum allowed master and channel values */
22 * @master: assigned master
29 * fills out @master, @channel and @width.
33 __u16 master; member in struct:stp_policy_id
  /bionic/libc/bionic/
pty.cpp 115 int openpty(int* master, int* slave, char* name, const termios* t, const winsize* ws) {
116 *master = getpt();
117 if (*master == -1) {
121 if (grantpt(*master) == -1 || unlockpt(*master) == -1) {
122 close(*master);
130 if (ptsname_r(*master, name, sizeof(buf)) != 0) {
131 close(*master);
137 close(*master);
152 int master; local
    [all...]

Completed in 401 milliseconds

1 2 3 4