DO NOT USE! This tag is being burninated: https://meta.stackoverflow.com/q/418968/6296561
Questions tagged [connect]
800 questions
3
votes
3 answers
Slave cannot connect to Master
I'm trying to configure my laptop as a slave, my master would be a server where Jenkins is installed. I've followed these instructions.
However, when it comes to access http://master:8080/ from my slave's browser, internet cannot display the…

Denis
- 111
- 1
- 1
- 6
3
votes
1 answer
Bluetooth Server and Client in android
Im trying to create a bluetooth server and client in android. The bluetooth server in android can view all the connected devices and create a data of connected devices and saved it in the sqlite db in android. The server and client must also be…

Jah
- 223
- 2
- 3
- 13
3
votes
2 answers
Android Studio Failed to fetch - Connection refused: connect
Android Studio Setup Wizard (studio64.exe) is not able to fetch some XMLs.
I have set in studio64.exe.vmoptions
-Djava.net.preferIPv4Stack=true
-Dhttp.proxyHost=...
-Dhttp.proxyPort=...
Also tried
-Dhttp.proxyHost=www.google.com…

syr
- 836
- 1
- 12
- 28
3
votes
1 answer
Qt C++ connect signal with non-void signature to lambda
I want to connect a signal with non-void signature to a lambda function.
My code looks like the following
QTimeLine *a = new QTimeLine(DURATION, this);
connect(a, &QTimeLine::valueChanged, [a,this](qreal r) mutable { this->setMaximumHeight(r);});
in…

blackgreen
- 34,072
- 23
- 111
- 129
3
votes
1 answer
Android LocationClient onDisconnect doesn't get called
From the GooglePlayServicesClient.ConnectionCallbacks documentation onDisconnected should get called when the LocationClient is disconnected. From my testing I noticed it never gets called if I disconnect the LocationClient myself.
Here is the most…

Moemars
- 4,692
- 3
- 27
- 30
3
votes
1 answer
how to use Node.js connect-memcached middleware
There is a simple example about how to use connect-memcached.
var express = require('express')
, session = require('express-session')
, cookieParser = require('cookie-parser')
, http = require('http')
, app =…

Frankjs
- 565
- 1
- 4
- 14
3
votes
2 answers
Grunt Connect server ignoring port and not opening browser
Trying to get grunt-connect setup.
What I want is to start a server (either localhost or an IP), the browser to open at that url and ideally this to livereload when a CSS, HTML or JS file is changed. But we can come to that later.
This is what I…

Leads
- 839
- 2
- 10
- 27
3
votes
4 answers
Can't connect to local IP address on OSX
I'm trying to connect to a webserver that's running on my mac OSX 1.6. I'm able to connect to it locally using http://127.0.0.1:8888/myapp but when I attempt to connect to it using my machine's local IP address (http://192.168.1.15:8888/myapp IP…

Alex Worden
- 3,374
- 6
- 34
- 34
3
votes
1 answer