Questions tagged [setting]
261 questions
1
vote
0 answers
App.config not refreshing programatically in windows service
I'm creating the enterprise logging setting dynamically.
I have added the ConfigurationManager.RefreshSection("loggingConfiguration") to refresh the app.config in my windows service after saving the config. But log is not creating first few seconds…

vinay
- 11
- 1
1
vote
1 answer
Where can we find Server.xml in Jboss EAP 6?
I am trying some performance tuning and following Jboss performance tuning guide. so i read chapter 3, and i want to turn of Cached Connection Manager. but there is mentioned its configuration is in server.xml. I can't find server.xml anywhere. I am…

newProgramer
- 79
- 2
- 5
- 16
1
vote
1 answer
Make uploaded tmp file persists for the next request
IS it possible to make a tmp file (uploaded) persists for the next request?
Afaik,normally, it persists for only the current request, is here any php setting, php.ini setting or php method to achieve this
without having to move or copy the tmp…

bombastic
- 2,961
- 8
- 20
- 18
1
vote
1 answer
Reason for not able to identify pointer in localhost
I am going to retrieve some data from database and display it in php file.
It seems like it can connect to my localhost's database,because code like:
haven't occur any errors.
but when it comes to the codes…

wonderland
- 11
- 3
1
vote
0 answers
how to set IOS deployment target version to a point IOS release
I want to set the IOS deployment target as 5.0.1 so that my app doesnt run on devices running 5.0 or lower. However in xcode I only see options to either chose 5.0 or 5.1. I dont see options to select 5.0.1 or does it allow me to manually enter the…

avi
- 57
- 1
- 7
1
vote
0 answers
Setting max map/reduce tasks on a per-job basis
I have two type of jobs that require the cluster to have different number of tasks per node. After doing the research, I end up with this page:
https://issues.apache.org/jira/browse/HADOOP-5170
I am wondering if anybody else knows ways to walk…

Frank
- 7,235
- 9
- 46
- 56
1
vote
2 answers
Getting error while setting bitrate in CAN interface for ICS
I am trying to set the bit-rate in i.Mx6 processor in android.
I am using iproute2 utility to set bitrate for CAN controller. The command used to set the bitrate is given below:
#ip link set can0 type can bitrate 125000
While I am trying to set the…

Salih
- 11
- 1
1
vote
1 answer
Jquery Time Ago only in days
I want jquery timeago only show me the timeago in days ! I meant when passed 30 days it will show me 31,32,32 days and not 1 month. Thanx for your pront answer.

morrisonrox
- 15
- 1
- 3
1
vote
0 answers
how would you change Android AVD setting to make the emulator smooth as on the real android devices?
Possible Duplicate:
Slow Android emulator
this is my setting:
Name = JellyBean_x86, Target = Android 4.1 - API Level 16, CPU/ABI = Intel Atom (x86),
SD Card = 2048 MB, Snapshot enabled, Skin = WVGA800, Abstracted LCD density = 240, Max VM…

Hendra Anggrian
- 5,780
- 13
- 57
- 97
1
vote
0 answers
Ivars type Nsstring in Obejctive c are nil after button event
I dont understand this yet. If I create an ivar of a class (no property). I set the ivar directly to for example @"patrik" in the - (void)viewDidLoad then the ivar value is still there when I click a button and checks for the Ivar value in the…

Patrik Persson
- 11
- 2
1
vote
0 answers
Setting a texture to a md2 model java/android
I need help with setting a texture to a .MD2 model in java/android
According to wikipedia, I came up with the following: ( MD2 (file_format) )
Loading texCoords:
int idx = 0;
for(int i = 0; i < this.pHeader.num_st; i++) //num_st = Number of texture…

user1579704
- 23
- 4
1
vote
1 answer
android: is there Intent.Action of font setting changed?
In android, when some of setting changed, the activity of app must reCreate, which may result in app crashed, like language or font setting; I know language setting's Intent.Action is ACTION_LOCALE_CHANGED, but can't find the font setting's…

Mejonzhan
- 2,374
- 1
- 20
- 30
1
vote
1 answer
Rows not being updated
I have written the following function meant to update a student in my database:
public bool UpdateStudent(Student stu)
{
Console.WriteLine("StudentManger.UpdateStudent): Called");
int rowsChanged = 0;
using (var cnn = new SqlConnection(
…

AYKHO
- 516
- 1
- 7
- 20
1
vote
2 answers
XSLT: Looping and setting a variable when condition met at least once
I am trying to loop through a node, which in itselt is not a problem. I want to check to see if the selectedLetter matches the first letter of the node, which is working as intended (see code below). The difficulties arise in that I would like to…

Taff
- 25
- 1
- 5
1
vote
2 answers
how to get access to network-setting page in iphone
I want to get access to the page of network-setting from my own app.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://"]] it works?
I tried but failed.
Thanks in advance.
I this document : "Apple URL Scheme Reference" I…

anna
- 662
- 5
- 28