Home
last modified time | relevance | path

Searched refs:quotient (Results 1 – 10 of 10) sorted by relevance

/thrift-3.4.0/tutorial/py/
DPythonClient.py65 quotient = client.calculate(1, work)
67 print('FYI the answer is %d' % quotient)
/thrift-3.4.0/tutorial/py.twisted/
DPythonClient.py53 quotient = yield client.calculate(1, work)
55 print('FYI the answer is %d' % quotient)
/thrift-3.4.0/tutorial/py.tornado/
DPythonClient.py80 quotient = yield client.calculate(1, work)
81 print("Whoa? You know how to divide by zero ? -> {0}".format(quotient))
/thrift-3.4.0/tutorial/go/src/
Dclient.go43 quotient, err := client.Calculate(defaultCtx, 1, work)
52 fmt.Println("Whoa we can divide by 0 with new value:", quotient)
/thrift-3.4.0/tutorial/delphi/DelphiClient/
DDelphiClient.dpr58 sum, quotient, diff : Integer;
80 quotient := client.calculate(1, work);
82 WriteLn( Format('1/0=%d',[quotient]));
/thrift-3.4.0/tutorial/d/
Dclient.d50 int quotient = client.calculate(1, work); in main() local
/thrift-3.4.0/tutorial/java/src/
DJavaClient.java87 int quotient = client.calculate(1, work); in perform() local
/thrift-3.4.0/tutorial/ocaml/
DCalcClient.ml57 let quotient = cli.calc#calculate (Int32.of_int 1) w in
/thrift-3.4.0/tutorial/haxe/src/
DMain.hx265 var quotient = client.calculate( 1, work); variable
266 trace('Whoa we can divide by 0! Result = $quotient');
/thrift-3.4.0/tutorial/netstd/
DREADME.md171 quotient = client.Calculate(1, work)
173 print('FYI the answer is %d' % quotient)