Examples of node()


Examples of com.ericsson.otp.erlang.OtpErlangPid.node()

        } else if (erlangObject instanceof OtpErlangPid) {
            // Pid
            final OtpErlangPid pid = (OtpErlangPid) erlangObject;
            pidNode = new TreeNode("pid: " + pid2Str(pid),
                    Activator.getImage(Images.INFO_NODE));
            processNodeNode = new TreeNode("node: " + pid.node(),
                    Activator.getImage(Images.INFO_NODE));
            builder.append(pid2Str(pid)).append(" (").append(pid.node()).append(")");
        } else {
            // Atom (registered name)
            nameNode = new TreeNode("name: " + erlangObject,
View Full Code Here

Examples of com.ericsson.otp.erlang.OtpNode.node()

      case status_handler_connAttempt:
    dbg("java running test case \"status_handler_connAttempt\"");

    OtpNode node3 = new OtpNode("javanode3","othercookie");
    node3.ping(node1.node(),2000);
    node1.ping(node3.node(),2000);
    break;

      }

      OtpErlangObject o = mbox.receive(recTime);
View Full Code Here

Examples of com.fasterxml.clustermate.client.NodesForKey.node()

         * of successes we expect.
         */
        final boolean noRetries = !allowRetries();
        List<NodeFailure> retries = null;
        for (int i = 0; i < nodeCount; ++i) {
            ClusterServerNode server = nodes.node(i);
            if (server.isDisabled() && !noRetries) { // can skip disabled, iff retries allowed
                break;
            }
            CallFailure fail = server.entryPutter().tryPut(config.getCallConfig(), endOfTime, key, content);
            if (fail != null) { // only add to retry-list if something retry may help with
View Full Code Here

Examples of com.gistlabs.mechanize.document.json.hypermedia.JsonLink.node()

    JsonNode one = json.find("one");
    List<JsonLink> links = finder.findOn(one);
    assertEquals(1, links.size());
   
    JsonLink hrefLink = links.get(0);
    assertEquals(hrefLink.node(), one);
  }
 
  @Test
  public void testFindingTwoLinks() {
    JsonNode two = json.find("two");
View Full Code Here

Examples of com.vividsolutions.jts.noding.snapround.GeometryNoder.node()

    List geomList = new ArrayList();
    geomList.add(roundedGeom);
   
    GeometryNoder noder = new GeometryNoder(pm);
    List lines = noder.node(geomList);
   
    return FunctionsUtil.getFactoryOrDefault(geom).buildGeometry(lines);
  }
 
  public static Geometry checkNoding(Geometry geom)
View Full Code Here

Examples of erjang.EHandle.node()

    if ((ref=name.testReference()) != null)
      return ref.node();
   
    EHandle handle;
    if ((handle=name.testHandle()) != null)
      return handle.node();
   
    throw ERT.badarg(name);
  }

  @BIF(type = Type.GUARD, name = "node")
View Full Code Here

Examples of erjang.EHandle.node()

      return ENode.am_nonode_at_nohost;
    }
   
    EHandle handle;
    if ((handle=name.testHandle()) != null) {
      return handle.node();
    }
   
    ERef ref;
    if ((ref=name.testReference()) != null) {
      return ref.node();
View Full Code Here

Examples of erjang.ERef.node()

      return ENode.am_nonode_at_nohost;
    }
   
    ERef ref;
    if ((ref=name.testReference()) != null)
      return ref.node();
   
    EHandle handle;
    if ((handle=name.testHandle()) != null)
      return handle.node();
   
View Full Code Here

Examples of erjang.ERef.node()

      return handle.node();
    }
   
    ERef ref;
    if ((ref=name.testReference()) != null) {
      return ref.node();
    }
   
    return null;
  }
View Full Code Here

Examples of erjang.driver.EDriverTask.node()

    EPeer n = EPeer.get_or_create(node, creation, port, flags.value, version.value);
   
    EDriverTask task = port.task();
    if (task != null) {
      task.node(n);

      /*TODO:
    send_nodes_mon_msgs(BIF_P,
                        am_nodeup,
                        BIF_ARG_1,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.