Questions tagged [disconnected]

93 questions
1
vote
1 answer

How do I update a SQL row given an ID with LINQ to SQL?

Given this schema: Fruits - FruitID INT PK - FruitName NVARCHAR(30) - FruitStatusID INT NULL FK: Statuses Statuses - StatusID INT PK - StatusName NVARCHAR(30) If I have a FruitID in hand (just an int, not a Fruit object),…
Michael Haren
  • 105,752
  • 40
  • 168
  • 205
1
vote
0 answers

Mounting with gcsfuse and get "Transport endpoint is not connected" after a while

I had mounted my gcs bucket to my virtual machine with the following command. mount -t gcsfuse -o rw,key_file=gcskey.json,_netdev,allow_other,uid=65534,gid=65534 mybucket /mypath It seemed to be working at first but after I copied files with an…
1
vote
1 answer

VBA ADO Disconnected Recordset Updatebatch Deleted Records

open a recordset from Access DB Table disconnect it add, edit, delete some records connect back to Access DB Updatebatch The update adds new records, edits edited but does NOT delete deleted records. Official statement is that deleted records are…
1
vote
1 answer

ASP.NET MVC3 Development Practices for Disconnected Active Directory

I'm starting a new MVC 3 application at the same time I'm transitioning to a more disconnected development environment where I will only occasionally be connected to the corporate network to do deployments. I have normally used the [Authorize(Roles…
1
vote
1 answer

Mailkit under .net 5 framework : the SMTP server has unexpectedly disconnected

I'm on this bug since fews days and maybe someone can give some some clues about this issue : MailKit.Net.Smtp.SmtpStream.ReadAheadAsync(Boolean doAsync, CancellationToken cancellationToken) at MailKit.Net.Smtp.SmtpStream.ReadResponseAsync(Boolean…
Serge
  • 51
  • 4
1
vote
0 answers

How to detect server-side disconnection of TCPClient?

The System.Net.TcpClient object can only connect to an endpoint once. If the client forces the disconnect, then it is clear that the client needs to be replaced. If the server cancels the connection, then it is possible to test the connection and…
J Collins
  • 2,106
  • 1
  • 23
  • 30
1
vote
1 answer

Graph disconnected: cannot obtain value for tensor Tensor() at layer "input_1"

The code for this problem is quite complex because I'm trying to implement fractalNet but changing the convolution base block to just a dense layer. I'm trying to separately build two fractalNets (one after the other so I don't think they should be…
1
vote
0 answers

MYSQLDUMP - disconnecting from localhost

I have to export an entire table from a database. It's a bit heavy (more than 10Gb). Here's the command I use : mysqldump -u root --password=PASSWORD DATABASE TABLENAME | gzip > FILENAME.sql.gz Mysql version is 5.1.53. The export stops at around…
lkg
  • 11
  • 1
1
vote
0 answers

How do I detect in Watchkit when iPhone disconnects

I have a simple app that mirrors some information on a watch that also plays audio based on the information, I know how to detect when the watch disconnects from the phone using: if (WCSession.default.isReachable) { do something } but I cannot find…
Andy
  • 107
  • 1
  • 8
1
vote
0 answers

RShiny: Disconnected from server

Logs The above code is shown in the logs section in the setting of the shiny application that I have deployed. If I did not include setwd in my code it will not read the file that is needed and will not run. Anyone can assist me in this?
1
vote
1 answer

Keras Erro: Graph disconnected

The following code snippet is giving error (Graph disconnected: cannot obtain value for tensor): x = Concatenate (axis = 1) (submodel_outputs) parallel_layers = Model (inputs = embedding_layers [0] .input, outputs = x) The value of embedding_layers…
Martatcfa
  • 41
  • 2
1
vote
1 answer

android emulator disconnecting from DDMS view when accessing file explorer

when i go to the DDMS view to access data folder of my app on an emulator, every thing works fine but after a few seconds the list of devices becomes empty which means that the DDMS lost connection with the emulator and even if i restart the adb…
nostra
  • 11
  • 1
1
vote
0 answers

Can an Android tablet connected to my computer via USB hit a REST endpoint that is running on my computer?

here's my scenario. I have some REST endpoints that I'm running locally on my machine (http://myip:port/getdata). Given NO internet connectivity (no wifi, hot spot, or tethering options), is it possible for an Android tablet that is connected to my…
cartmania
  • 23
  • 3
1
vote
1 answer

Why does Android Bluetooth stop receiving bytes after a few minutes?

I'm having trouble maintaining a Bluetooth connection (from Android to a device I'm developing) for longer than a few minutes. The scenario is: Device is paired successfully. Device transmits to Android for somewhere between 1-7 minutes (varies…
afarley
  • 781
  • 6
  • 26
1
vote
0 answers

Closing a deleted file

I open() a USB serial port in my C application, but in the meantime the device is disconnected. I close() the device, however, I get this when I do lsof sdmd 2987 root 5u CHR 188,1 0t0 27482 /dev/ttyUSB1 (deleted) The…
Lev
  • 111
  • 1
  • 1
  • 10