Questions tagged [multiple-instances]

Multiple-instances are two or more programs which share the same code and run at the same time

947 questions
75
votes
3 answers

How do I run two separate instances of Spyder

I want to be able to have two instances which are completely independent in the sense that I can be working on two separate unrelated projects in different folders without any interference.
Isopycnal Oscillation
  • 2,309
  • 5
  • 18
  • 32
51
votes
1 answer

COM+ object activation in a different partition

I had created a COM+ domain partition then mapped it to a Windows 2008 server machine and imported a COM+ application into it. I tried using the following C# code to activate an object from that specific partition on the server remotely: //partition…
Khaled Saleh
  • 513
  • 3
  • 7
40
votes
1 answer

multiple worker/web processes on a single heroku app

Is there some way to configure multiple worker and/or web processes to run in the single Heroku app container? Or does this have to be broken up into multiple Heroku apps? For example: worker: node capture.js worker: node process.js worker: node…
tobius
  • 709
  • 1
  • 7
  • 9
31
votes
4 answers

Android - start multiple activities

is it possible to start multiple activities at once? I mean, from main create 3 activities in some order and just the last will be visible? Up to now, I was able to create only one activity. Thanks
Waypoint
  • 15,705
  • 36
  • 110
  • 167
28
votes
5 answers

Tomcat multiple instances simultaneously

I am trying to run multiple instances of Tomcat, but even after configuring different ports for listening and shutting down the second instance, it keeps trying to listen on 8080 (configured for 8081). I read that I have to set a different value for…
Bruno Klein
  • 2,641
  • 5
  • 25
  • 38
24
votes
7 answers

Selenium multiple tabs at once

I'm working with Selenium, and am wondering if it's possible to use multiple TABS at once? I do not want to use multiple browser instances (i.e., 2 copies of IE pun). IF IT IS NOT possible, how would one go about switching between individual tabs,…
Trevor Tiernan
  • 322
  • 1
  • 2
  • 8
22
votes
3 answers

How do you join tables from two different SQL Server instances in one SQL query

Possible Duplicate: Selecting data from two different servers in SQL Server How can I join two tables, which are located two different SQL Server instances, in one query?
Tarik
  • 73,061
  • 78
  • 222
  • 327
19
votes
3 answers

TwistedWeb on multicore/multiprocessor

What techniques are people using to utilize multiple processors/cores when running a TwistedWeb server? Is there a recommended way of doing it? My twisted.web based web service is running on Amazon EC2 instances, which often have multiple CPU cores…
Orange Juce
  • 193
  • 1
  • 5
18
votes
2 answers

Filter multiple

I have multiple lists on one page (multiple categories of products) like this:

Category 1

  • item1
  • item2
  • item3

Category 2

  • item27
Dante
  • 525
  • 3
  • 8
  • 21
16
votes
3 answers

Logging multiple instance application best practice?

I finally tried log4net for my WPF desktop application. I'm struggling with the fact that RollingFileAppender has no built in support for multiple instance application. I don't like an idea of restricting the application to single instance just to…
Kugel
  • 17,248
  • 12
  • 64
  • 100
15
votes
5 answers

PHP Multiple Concurrent Sessions Per User

I'm working on a web app using PHP on Apache. $_SESSION variables are used quite a bit for the information that must persist across pages. We need each user to be able to open multiple concurrent sessions, either as new tabs or new windows,…
John Gardeniers
  • 370
  • 1
  • 2
  • 15
15
votes
4 answers

Max length of SQL Server instance name?

I need to know the maximum character length for the name of an instance of a SQL Server for the following versions (if there is a difference between them.) SQL Server 2000 SQL Server 2005 SQL Server 2008 SQL Server 2008 R2 (I am working on an…
Paul Sasik
  • 73,575
  • 18
  • 144
  • 180
15
votes
9 answers

Notepad++ always in multi instance

I need Notepad++ running in multiple instance mode without "-multiInst" parameter. I can't use .lnk shortcuts, I can't use cmd.exe /c notepad++.exe -multiInst, is there another way?
SchurigH
  • 369
  • 2
  • 3
  • 12
15
votes
6 answers

Wait for multiple applications run asynchronously from batch file to finish

There is a simple Windows batch file that runs multiple instances of application: start app.exe param1 start app.exe param2 Is there a way to run them asynchronously at the same time (which above does) and wait for them both to finish to perform…
Jaded
  • 1,660
  • 5
  • 23
  • 37
14
votes
9 answers

Python: get key with the least value from a dictionary BUT multiple minimum values

I'm trying to do the same as Get the key corresponding to the minimum value within a dictionary, where we want to get the key corresponding to the minimum value in a dictionary. The best way appears to be: min(d, key=d.get) BUT I want to apply…
gozzilli
  • 6,931
  • 6
  • 49
  • 80
1
2 3
63 64