Questions tagged [multiple-instances]

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

1018 questions
6
votes
3 answers

Android: two instances of Text-to-Speech work very slowly

I need to implement feature in my Andorind app which allows to play two different synthesized languages in current Acitivity - for instance having two buttons Say English and Say French I've tried to do it in two following ways but both of them…
PawelP
  • 61
  • 1
  • 2
6
votes
5 answers

rbenv: multiple instances of SAME ruby

I have two scripts which require the same version of Ruby. However, each script also requires a DIFFERENT version of a gem (nokogiri). One of the scripts will run with both versions of nokogiri (1.6.2.1 and 1.6.1). However the other script will…
tSquirrel
  • 63
  • 3
6
votes
2 answers

How to use multiple target on body with Bootstrap ScrollSpy

I want to use Bootstrap ScrollSpy with multiple nav, my main nav and a vertical subnav. I tried multiple thing like :
Shad Gagnon
  • 475
  • 1
  • 7
  • 20
6
votes
4 answers

Azure platform: scaling instances up and down

Note: if you are familiar with the Azure pricing model, just jump to the "question" section. Microsoft will begin to charge for the use of the Azure platform starting February 1, 2010. The monthly bill will be a function of bandwidth, storage, and…
Pablo Marambio
  • 1,562
  • 1
  • 15
  • 29
6
votes
2 answers

Create or Update Multiple Records at a Single Time Using Strong Parameters in Rails 4

I have two questions: In Rails 3 you can update multiple records using Product.update(params[:products].keys, params[:products].values) How do you do the same thing in Rails 4 using Strong Parameters? How about creating multiple records at the…
user2725109
  • 2,286
  • 4
  • 27
  • 46
6
votes
1 answer

2+ (multiple) emails in jQuery Validated text input

I've been working on this for a few hours now and can't seem to make it work. I need more than one email in our clients section, in the same input field. Right now I have (which works great for one email):
Steve Ontologic
  • 199
  • 1
  • 11
6
votes
1 answer

PyScripter - Run Multiple instances of the same python 2.7 64 bit

PyScripter is easily the best IDE I have come across for interactive work - especially with its ability to connect to remote engines. It allows me to open multiple instances of pyscripter, each is tied to a different version (I have 3.3, 2.7 64 bit…
pythOnometrist
  • 6,531
  • 6
  • 30
  • 50
6
votes
1 answer

Identify the associated w3wp process for a web role instance

I am working on monitoring the performance of an Azure service. There are currently two web role instances (for the same website) running - each with its own W3WP.exe (w3wp and w3wp#1) How can i find out which w3wp process belongs to which role…
6
votes
2 answers

Multiple instances of d3 force layout on the same page

My goal is to use the d3 force layout to display two different networks that share the same nodes. For example, among four people, you could define a social network and a genealogy network; the nodes would be the same (people) but the links…
DBLarremore
  • 61
  • 1
  • 5
5
votes
4 answers

Running two tomcat on a single port

Any one have an idea to share running multiple tomcats on single machine with same port 8080
Alzzz
  • 53
  • 1
  • 6
5
votes
1 answer

Multiinstance Application architecture and deployment in GlassFish app server

I need to setup a hosting environment for around 100 customers per one GlassFish server (v 3.1). Each customer needs custom configured application that can be run independently from each other. (JDBC, JMS, possibility to restart single app) Running…
5
votes
1 answer

Extracting Text Box data from multiple Microsoft Word files

I have a folder with 40-50 Microsoft Word documents. Each Word document is structured as follows: - There are multiple tables with two columns - The second column contains the question, and at the end of each question there is a unique identifier…
5
votes
0 answers

How to use ListSerializer for create and update multiple records in django rest framework?

Here is the way to create and update multiple records at once in django rest framework using ListSerializer. This way is very sort and and give fast response. When you want to create a objects then pass id: null because id is required field and when…
5
votes
1 answer

Register multiple complex dependencies with Microsoft DI

My ASP.NET core application uses a software client consisting of a set of classes ("Helper", "Client", "UserSetting", "ServerSetting") retrieving their correct configurations/instances from dependency injection. A single class can be configured as a…
5
votes
4 answers

Multiple/repeating cases in a Java switch statement

I would like to know how Java handles multiple identical instances of the same case. I think the following makes sense, conceptually: switch (someIntegerValue) { case 1: case 2: DoSomethingForBothCases(); break; case 3: …
Code Jockey
  • 6,611
  • 6
  • 33
  • 45