You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-12-01 22:29:52 +02:00
Main build (Jenkins)
This commit is contained in:
2
docs/en/examples/TCP/ReadBinaryData.txt
vendored
2
docs/en/examples/TCP/ReadBinaryData.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Address = "45.79.112.203:4242";
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
Message = "Hello server!" + Chars.LF;
|
||||
Data = ПолучитьДвоичныеДанныеИзСтроки(Message);
|
||||
Data = GetBinaryDataFromString(Message);
|
||||
|
||||
OPI_TCP.SendBinaryData(Connection, Data);
|
||||
|
||||
|
||||
2
docs/en/examples/TCP/SendBinaryData.txt
vendored
2
docs/en/examples/TCP/SendBinaryData.txt
vendored
@@ -1,7 +1,7 @@
|
||||
Address = "45.79.112.203:4242";
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
Message = "Hello server!" + Chars.LF;
|
||||
Data = ПолучитьДвоичныеДанныеИзСтроки(Message);
|
||||
Data = GetBinaryDataFromString(Message);
|
||||
|
||||
Result = OPI_TCP.SendBinaryData(Connection, Data);
|
||||
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
@@ -26,7 +26,7 @@ import TabItem from '@theme/TabItem';
|
||||
<br/>
|
||||
|
||||
:::tip
|
||||
Method at API documentation: [Check if a Blob Exist](https://github.com/ollama/ollama/blob/main/docs/api.md#check-if-a-blob-exists)
|
||||
Method at API documentation: [Check if a Blob Exists](https://github.com/ollama/ollama/blob/main/docs/api.md#check-if-a-blob-exists)
|
||||
:::
|
||||
<br/>
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ Parameters with Binary data type can also accept file paths on disk and URLs
|
||||
Address = "45.79.112.203:4242";
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
Message = "Hello server!" + Chars.LF;
|
||||
Data = ПолучитьДвоичныеДанныеИзСтроки(Message);
|
||||
Data = GetBinaryDataFromString(Message);
|
||||
|
||||
OPI_TCP.SendBinaryData(Connection, Data);
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ Parameters with Binary data type can also accept file paths on disk and URLs
|
||||
Address = "45.79.112.203:4242";
|
||||
Connection = OPI_TCP.CreateConnection(Address);
|
||||
Message = "Hello server!" + Chars.LF;
|
||||
Data = ПолучитьДвоичныеДанныеИзСтроки(Message);
|
||||
Data = GetBinaryDataFromString(Message);
|
||||
|
||||
Result = OPI_TCP.SendBinaryData(Connection, Data);
|
||||
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
Reference in New Issue
Block a user