May refer to Linux Init - the parent of all processes, which primary role is to create processes from a script stored in the file /etc/inittab. Or abbreviation of initizlization - giving variables a "starting" value.

learn more… | top users | synonyms

0
votes
0answers
18 views

How to create a child process with parent process as init process using Process Builder in Java

Is there any way to create a process through Process Builder in java with parent id as 1 and unix user is any other unix user except root user. I am developing a application in java (will run as root ...
0
votes
0answers
18 views

init in MySQL url for Hibernate datasource

I am trying to create the schema name with my mysql (local database) url but its not working. Its working with H2 (in memory database) URL tho. Please advice. H2 configuration - <bean ...
2
votes
2answers
43 views

Python user-defined exception string being split

New python user (2.7.5). Trying to implement a simple exception. Exception-derived classes are taking string input arguments and splitting them into individual characters. I've looked around for ...
0
votes
0answers
18 views

Use runit to only boot up the service and not supervise

I have a EC2 setup where I have a chef script that sets up a rails app with unicorn. Since I'm using application_ruby script, which uses runit to launch Unicorn at boot, I run into this problem where ...
1
vote
1answer
52 views

why __init__ is called before object created?

class Point(object): def __init__(self, x=0, y=0): self.__x = x self.__y = y print 'point ({x},{y}) created.'.format( x=self.__x, y=self.__y ) class Line(object): ...
-1
votes
0answers
16 views

Running a script during Android init [closed]

Is it possible to run a script by including it in init.rc? I have a script that I wish to run during device boot up. Basically it mounts certain folders in the sdcard.
1
vote
1answer
52 views

What does the __init__ method serve for? [duplicate]

I started learning python (with no prior knowledge of it, not programming) few weeks ago and am stuck at Classes. Currently the "init" class method confuses me. What does it do, in fact? Here is an ...
0
votes
0answers
15 views

Booting the Kernel Devkit8000

Hello everyone, I was wondering... What is the system / program booting the kernel when it conveys responsibility to user space on DevKit8000 system? 1. Systemd 2. upstart 3. sysinit
1
vote
2answers
58 views

objective c init in protocol

yesterday a colleague asked, why we should not declare an init method (initWith...:(...)) in a protocol to force implementing classes to supply such an initializer. I was quite suprised about that ...
-1
votes
2answers
39 views

What is the “init” call doing in this line of code? [duplicate]

NSDate* now = [[NSDate alloc] init]; Currently learning Objective C and my book doesnt seem to do a good job of explaining this line of code. So, i'm aware that we are declaring a pointer "now" that ...
0
votes
0answers
16 views

JSP displaying null init

So i'm learning about JSP and display a default username. Im trying to access an init parameter stored in web.xml. However I am retrieving a null value. I can't see where I am going wrong. If anyone ...
0
votes
0answers
94 views

Compile and run Linux kernel - kernel-panic: no init found

I did the following: Made a directory named 'iso' which contains these two files: iso/boot/bzImage: the bzImage that I got by compiling linux from source iso/sbin/bash: Copied ubuntu bash file ...
0
votes
1answer
43 views

UIActionSheet - “init” changes button style

Why does the button style on a UIActionSheet for the "cancel" button change when I add "Init" after allocating and initializing it once? If I use this code it shows up properly: UIActionSheet ...
0
votes
1answer
10 views

Get UIView size in init method

When I call self.frame.size.height in the init method of my UIView I get 0 as result. UIView: - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { ...
1
vote
2answers
51 views

Should init scripts daemonize a process & are pid's essential?

I'm working on getting an init script written for the web-server [1] shiny-server (shiny-server is a version of the R package shiny that allows you to run stand alone web-applications based on [2] R). ...
0
votes
1answer
42 views

How can i perform my exe file from boot.local

I've written a code for boosting priority of a process on my openSuSE 12.2 system. #include <stdio.h> #include <sched.h> #include <unistd.h> int printUsage(void) { ...
0
votes
1answer
69 views

Applet Not Initialized

I am trying to make a Java applet on Eclipse that will print an array of bars of random lengths, then sort them by length and print the new array. However, when I run my program, it says that my ...
0
votes
3answers
54 views

How can I check if init script called on startup?

I have a init script on FreeBSD. This script called on startup by rc.d. What I want to do that to check if this script called on start up or manually by user. How can I do this check in this script. ...
0
votes
2answers
40 views

Error in enum init

I have a question, what happens if an error happens during of creation of enum constant? I.e. i have an enum Enum statuses{ OPEN(1, init(1)), CLOSE(2, init(2)); private final int value; private ...
2
votes
3answers
83 views

How to throw exceptions for the init() method for servlets

well I'll first show my code: @Override public void init() throws ServletException { super.init(); try { securityController = SecurityControllerFactory.getInstance().create(); } ...
1
vote
0answers
41 views

Debug init on Qemu using gdb

i am trying to emulate cavium octeon's mips64 linux kernel on Qemu.I am currently having some issues with use mode init code and want to debug init.i am starting the Qemu using -s -S option in the ...
3
votes
2answers
174 views

Best way to write an init.d script for start_server and starman?

I'm trying to come up with a nice init.d script that starts a psgi app, using start_server and starman. It needs to have the following features: Run on RedHat (i.e. Debian's start-stop-daemon is not ...
0
votes
3answers
55 views

Python __init__(a,b,c,d) not recognizing “self” as argument

I'm making a silly little game to learn Python and I'm having an issue creating a goblin creature with init here's the generic creature class constructor class Creature(object): def ...
0
votes
3answers
47 views

Alloc and init in Cocoa

Maybe this is a dumb question, but I really want to figure this one out. For example I have the following setup: // .h @interface MyClass : NSObject { NSView *myView; } // .m @implementation ...
0
votes
0answers
44 views

StateBasedGame using Slick2D flickers 3-4 times during startup

I am having issues with my StateBasedGame using Slick2D. My GameContainer is an AppGameContainer. Whenever I begin the program the window flickers and moves 3-4 times before loading my first state. ...
-1
votes
2answers
97 views

Trying to make a text adventure with a game engine somewhat in Python. I keep getting this error. I am stuck :(

Trying to make a text adventure with a game engine somewhat in Python. Anyway I keep getting this error message. TypeError: module.__init__() takes at most 2 arguments (3 given) Here is my code: ...
1
vote
3answers
94 views

Objective-C Why use init?

I'm reading my first book on Objective-C [Programming in Objective-C 4th Edition], I'm midway through the book but one thing that bugs me, is that it didn't explain WHY we initialize objects. I tried ...
0
votes
0answers
48 views

How do I make an initComponent object require something to be passed in to it?

I have a view with a JList, and want to add things to it manually. I've created a DefaultListModel like suggested on other sites, but I can't pass it in to the JList because it's in initComponents ...
-1
votes
3answers
118 views

What is the purpose of calling __init__ directly?

I am having a hard time figuring out the purpose behind some code that I've come across. The code has a class 'Foo', which has an init method that takes multiple arguments. From what I've learned of ...
-3
votes
1answer
42 views

Difference between nil and return nothing in Init method

I'm new to objective c, recently I'm doing some exercises by myself: I create a class and implement the init method, I didn't return anything( I don't even write the return statement ). when I test ...
0
votes
1answer
55 views

Applet not carrying variables from init method to paint method

This is an applet for my class. Why is my final g.drawString printing 0's for all the variables i have in it? import javax.swing.*; import java.awt.*; public class Days extends JApplet { private int ...
-1
votes
1answer
78 views

fast way to reset 2d jagged array of fixed width

I want to create a 2D jagged array (as previous so answers claims is faster on dot net than multidimensional one). I want to do something like Int [][] myarr = new int [2][3]; But C# doesn't seem ...
4
votes
2answers
139 views

Python class __init__ layout?

In python, is it bad form to write an __init__ definition like: class someFileType(object): def __init__(self, path): self.path = path self.filename = self.getFilename() ...
0
votes
0answers
13 views

Wait until NSManageobjectContext is ready to use

I use NSPersistentDocument to read from a file (which is a SQLite document) and I think I'm not initiate my gui and controller at the right time. Currently I did it at init() function and use my ...
1
vote
1answer
187 views

echo in init.rc

hi I want to add these scripts to init.rc but I get the error that init.rc doesnt support echo. echo device > /sys/devices/platform/usbc.0/mode what is the right way to do such a thing in ...
0
votes
1answer
50 views

How to preserve variable in django model manager?

In django model manager if multiple methods have the same parameter, do I have to pass them every time I call the method? class MyManager(model.Manager): def show(self,request,A,B) pass ...
0
votes
2answers
256 views

radiobuttonlist selectedindexchanged event firing unexpected

I have a radiobuttonlist I change the selected item in codebehid private void DisplayPrivacyTerms(long ImageId) { if (ImageryDataAccess.GetImagePrivacyTerm(ImageId).ToLower() == "me only") { ...
1
vote
1answer
55 views

discriminating whether python object is subclass of current __init__ method

This is an odd one. I have run into a situation a few times where I would like to do some action at the end of __init__ of a python object. I would like to do the action as the last thing in the ...
0
votes
1answer
100 views

Android init shell and sub-processes

#!/system/bin/sh ( lCount=0 while :; do sleep 1 lCount=$(($lCount + 1)) log -p v -t test "Running test number $lCount" done ) & lPid=$! log -p v -t test ...
0
votes
1answer
66 views

Trouble initialising NSMutableArray with NSString

I'm having problem initialising an NSMutableArray called _entryArray with 2 NSString objects @"00:00:00". I'm getting the following error: Terminating app due to uncaught exception ...
0
votes
1answer
73 views

Create dynamics names for UIViews [duplicate]

All is in my title, i want to create some dynamics names, to allocate some differents UIViews but randomly. For example, i want to make : Level1 * level1view = [[Level1 alloc] init]; So i try to ...
1
vote
1answer
98 views

JavaScript init + html5 tag

I have menu code with JS slider: In HTML: window.onload = function() { menuSlider.init('nav', 'slide'); } <nav> <ul> <li value="1"><a ...
1
vote
4answers
126 views

asp.net Button needs to be fired twice

I am generating dynamic html controls. The controls are being generated on Init, after the user has caused a postback by pressing a button. However, he needs to press it twice so that the controls ...
0
votes
1answer
133 views

PhoneGap Facebook plugin Init() function

Do I have to call the FB.Init() function every time I load a page? I'm using PhoneGap, I call facebook init() to initialize the ID app in the index.html, but when I move to another html page, each ...
0
votes
1answer
110 views

Init failed: Galleria could not find the element “#runPics”

I have this error on my page using Galleria I created a test page before and it worked perfectly. but ow I need to use it on a content page from master so when I brought all data over, it gave this ...
0
votes
1answer
82 views

How to delay an action inside the INIT in XCODE?

BELOW INIT yellowbg = [CCSprite spriteWithFile:@"yellowxlixk.png"]; [yellowbg setPosition:ccp(509, 671.75)]; yellowbg.scale = .75; [self addChild:yellowbg z: 1]; How would I go about delaying ...
0
votes
1answer
76 views

Calling a method inside of init function python

I'm having an issue with this code: import math class Money(object): def __init__(self, salary): self.salary = salary sal(self.salary) def sal(self, x): y = ( x - ( ...
1
vote
2answers
40 views

javascript - refer method before init

Why does "write2" work and "write1" doesn't? function Stuff() { this.write1 = this.method; this.write2 = function() {this.method();} this.method = function() { ...
0
votes
1answer
149 views

fork() returns pid of existing process

I'm trying to patch Android's init to allow unloading Android and loading Ubuntu on already initialized hardware. here is the patch I'm trying. But after kill -USR1 1 kernel goes panic and after ...
0
votes
2answers
51 views

what does the numbers mean in /etc/rcX.d?

In order to run a program automatically on the boot of the Linux system, I have to modify the /etc/rcX.d, to add some link to the script in /etc/init.d, and I have 2 questions: what does the number ...

1 2 3 4 5 10