The internals tag denotes questions about how things work, as opposed to how to accomplish something specific. Of course, how something works underneath will have practical implications, but internals questions aren't about how to do something; rather, how to understand something.

learn more… | top users | synonyms

0
votes
1answer
38 views

Will V8 Generate Hidden Classes for an Object Used as an Associative Array? (Large number of properties)

I am trying to implement a straightforward associative array (no duplicates) with string keys and instances of my own "classes" as values in JavaScript. I am happy with expected O(1) behaviour of a ...
28
votes
3answers
720 views

If Int32 is just an alias for int, how can the Int32 class use an int?

Been browsing through .NET source code of .NET Framework Reference Source, just for fun of it. And found something I don't understand. There is a Int32.cs file with C# code for Int32 type. And ...
0
votes
1answer
51 views

InternalsVisibleTo , different member variables to different assemblies

I have a class A_class in Project A. In class A_class, there is a constructor internal A_class() { //constructor logic } , and a member variable internal int A_member; Now there are two ...
1
vote
0answers
77 views

Windows 8 incompaitbility with sysinternals Desktops utility

After Googling for about the past hour and a half, I have been unable to find out any definitive information on how the start menu and how windows 8 style applications work behind the scenes. I was ...
0
votes
1answer
60 views

Mockito Internals

I'm trying to understand how Mockito's internals function. So far the code has been difficult for me to understand, and I'm looking for a high-level survey of the fundamental workings of Mockito. ...
9
votes
1answer
120 views

Python string interning

While this question doesn't have any real use in practise, I am curious as to how python does string interning. I have noticed the following. >> "string" is "string" >> True This is as ...
4
votes
1answer
162 views

Why was the object_id for true and nil changed in ruby2.0?

I came across this ruby object_id allocation question sometime back and then read this awesome article which talks about VALUE and explains why object_id of true, nil and false the way they are. I ...
0
votes
1answer
60 views

What DLLMain lpReserved parameter really mean?

One of well-known DLLMain function parameters is LPVOID lpvReserved. From MSDN documentation: If fdwReason is DLL_PROCESS_ATTACH, lpvReserved is NULL for dynamic loads and non-NULL for static ...
0
votes
1answer
39 views

How does postgresql internally pass row type variables to procedures?

I have table "Table1" and SQL procedure "testProc" which accepts argument of type "Table1". When this procedure gets invoked like this: select testProc(t.*) from Table1 t; is PostgreSQL internally ...
26
votes
1answer
362 views

What happens internally when a file path exceeds approx. 32767 characters in Windows?

In Windows (assume 2000 onwards), a file path can be at most approximately 32767 characters in length. This limitation exists due to the internal handling with UNICODE_STRING in the native API (also ...
0
votes
1answer
55 views

Why can I not set innerHtml of an iframe body in firefox?

Say you have an iframe and you are modifying its contentDocument with javascript. Theoretically you can do this by either setting the contentDocument.body.innerHTML directly or using ...
0
votes
1answer
100 views

.NET Framework Method Not Found 'Void System.GC.Collect'

I'm trying to run some service and I'm getting this message Method not found: 'Void System.GC.Collect(Int32, System.GCCollectionMode)' I suspect the server because this service runs on other ...
1
vote
1answer
83 views

How come I can't see Memory/CPU usage for services on windows?

On windows you can see pull up the task manager or Get-Process in powershell to get a list of running processes along with their memory and cpu usage. You can also (on windows 8 or Get-Service in ...
0
votes
0answers
107 views

Windows 7 freezing up for seconds at a time probably because of disk actiity [closed]

For the past 2 weeks or so, my Windows 7 PC goes into bouts of freezing with windows turning grey or getting the "(Not Responding)" in their titlebar and having the cursor showing a spinning wheel. ...
2
votes
1answer
72 views

SQLServer object_id for indices?

Each object in database has its own object_id. We can find the listing of objects and their object_ids either in sys.objects, or in view for specific types (sys.tables, sys.key_contraints, ... ). ...
1
vote
3answers
197 views

Why doesn't PHP's Autoload feature work in CLI mode?

This is more for my own personal edification than anything else but, this is something that has always bothered me: Why specifically can't PHP perform "autoloading" while in CLI mode? I've been ...
0
votes
2answers
54 views

Attach to running windows process

please adisve on below: 1) What is the lightest way to attach to running native windows application process, get list of threads and see what DDLs are used? 2) What is the lightest way to attach to ...
2
votes
2answers
100 views

In PHP, why does “or die()” work, but “or return” doesn't?

In PHP, you can handle errors by calling or die to exit when you encounter certain errors, like this: $handle = fopen($location, "r") or die("Couldn't get handle"); Using die() isn't a great way to ...
3
votes
1answer
50 views

GDB Internals : Getting variable contents

I want to add a new command to gdb source code, and I can do that using add_cmd. In the command backend, I want to read contents of a few variable and print data in a more relevant format to me. I ...
2
votes
1answer
131 views

How SqlDataAdapter works internally?

I wonder how SqlDataAdapter works internally, especially when using UpdateCommand for updating a huge DataTable (since it's usually a lot faster that just sending sql statements from a loop). Here is ...
-1
votes
2answers
57 views

How to get actual list of names of object if custom __dir__ implemented?

Official docs says: If the object has a method named __dir__(), this method will be called and must return the list of attributes. This allows objects that implement a custom __getattr__() or ...
1
vote
1answer
41 views

Why does the MySQL file that contains my table's data not change size when I add data to the table?

The files in which MySQL stores the table data don't seem to grow when I add data to the tables. They seem to start at 9k and stay there. The context of this question is that I wanted to create a ...
1
vote
1answer
126 views

Win32 Stack section base address

I know that to find a text (code) section's base address one should look for the .text section virtual address (except if ASLR is enabled), but what about stack? Is stack memory stored in the .data ...
7
votes
1answer
173 views

How do string literals in ruby bypass new/initialize, and is there a way to instrument this?

I was playing with an idea this afternoon, and stumbled into something I don't quite understand. Basically what I'm trying to achieve in this experiment is to somehow know every time a string is ...
0
votes
0answers
56 views

windows function table

Given any function address 0x12345678, how are strings related to the address stored ? Strings related to address are: 1) return type 2) calling convention 3) function name 4) parameter list All ...
1
vote
0answers
28 views

slicing processes in windows [closed]

I wonder how Windows is doing process slicing. Lets say that "A" is quantum of time/slice for my application it last some time (few miliseconds) then it is switched to some system operations "S" and ...
4
votes
4answers
406 views

Python generator objects: __sizeof__()

This may be a stupid question but I will ask it anyway. I have a generator object: >>> def gen(): ... for i in range(10): ... yield i ... >>> obj=gen() I can ...
3
votes
2answers
78 views

which are Linux specific Hadoop internals?

I am trying to learn why hadoop requires cygwin in windows apart from running shell script. I know there are POSIX specific implementations in various hadoop parts, i just wanted to know exactly which ...
0
votes
2answers
100 views

If Statement Optimization - comparing character strings vs constant boolean flags

Consider the following Java code: public void DoStuff(String[] strings, boolean preEval) { final String compareTo = "A Somewhat Long String of Characters"; for ( int i = 0; i < ...
0
votes
1answer
216 views

System-wide themability of Windows 8 / Metro interface

Windows 8 (Metro) apps provide some limited themability via css. You can change fonts, background colors etc.. I'm wondering if there is also a system wide themeing capability, like there was in ...
4
votes
2answers
132 views

How can data remain persistent across multiple calls of decorated function?

The following function is meant to be used as a decorator that stores the results of already computed values. If the argument has already been calculated before, the function will return the value ...
6
votes
3answers
162 views

php processing of include files

This question has to do with the internal mechanics of the PHP engine. I'm asking it in an effort to understand the file include process. Say, you got a 20,000 lines include file ( something like ...
11
votes
3answers
173 views

Why might a proc run faster than a block?

This answer on another question says that array.map(&:to_s) is faster than array.map { |n| n.to_s } In the first example, & turns :to_s into a Proc. The second example uses a block. Why ...
0
votes
1answer
57 views

Reusing Groovy CompilerConfiguration objects

I have some code which creates a Groovy CompilerConfiguration with a bunch of implicit imports added using an ImportCustomizer. I was wondering if it would be safe to reuse the same ...
0
votes
1answer
145 views

Does the js event-loop mean you can use global variables for temp scratch-space?

* Disclaimer: I'm not saying this is a good idea - as a matter of fact I'll explicitly say it is not - so take this question by way of trying to understand what exactly the event-loop means for coding ...
0
votes
0answers
77 views

GNU GCC extensions for Linux module

I am writing Linux module, and found useful to use nested functions. But now module fails to link due undefined reference __clear_cache. I googled and found, that it is gcc internal function. Does it ...
3
votes
3answers
114 views

Why and how does jQuery's `$(this)` reference the right nodes?

I know how to use jQuery's $(this) selector and I also understand the principles of OOP in Javascript. I always accepted that it just works, because somebody else implemented it, but I would love to ...
0
votes
1answer
141 views

Triggering Lookaside lists

I am trying to make my application to use lookaside lists for memory management. I know the following details from various papers on this subject. Lookaside lists are located at offset +0x688 from ...
4
votes
1answer
477 views

TextBox.IsLoaded returns False after it is visible

In a DataGrid I use CellTemplate and CellEditingTemplate. In both DataTemplates FrameworkElement.IsLoaded Property returns False even if I can see the TextBlock, use the TextBox and Focus() call has ...
0
votes
1answer
169 views

How does PyQt do its magic? In particular, how it allows us to implement slots in Python?

When I learned about PyQt, there were three things to make me wonder. This is the question about the second one, but let me name all the three just in case if anyone else would be curious: first, we ...
1
vote
1answer
192 views

How do I add an internal command to bash?

I don't mean an alias or function. I actually want to add an entire new internal command to the bash source code. That way, when I compile it, it has my new command built in to the shell itself. ...
1
vote
1answer
438 views

How does the virtual inheritance table work in g++?

I'm trying to get a better understanding how virtual inheritance works in practice (that is, not according to the standard, but in an actual implementation like g++). The actual question is at the ...
2
votes
3answers
163 views

Why can't I add a tuple to a list with the '+' operator in Python?

Python not support adding a tuple to a list: >>> [1,2,3] + (4,5,6) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: can only concatenate list ...
2
votes
4answers
137 views

Why are references to instance methods stored in each instance object rather than in the class object?

From what I understand, each instance of a class stores references to the instance's methods. I thought, in concept, all instances of a class have the same instance methods. If so, both memory ...
4
votes
1answer
253 views

boost::bind internal copy/copies?

I was hoping to understand what kind of internal copies of a function object does boost::bind do. Since constructors of these objects do not seem to be invoked, I presumed this is a kind of "very ...
-1
votes
1answer
782 views

scalar variable and composite variable in PL/SQL oracle

I am new to Oracle and have just read that the scalar variable has no internal component whereas composite variable has an internal component. Could you please explain what is this internal ...
1
vote
1answer
496 views

What's happening in the bind call? (python + socket + strace)

For kicks I wrote the following echo server in python. http://ilab.cs.byu.edu/python/socket/echoserver.html (I think I copied the code from here.) #!/usr/bin/env python import socket host = '' ...
11
votes
2answers
475 views

Converting an extension method group to a delegate with a generic type

I have two extension methods on IDataReader with the following signatures: internal static List<T> GetList<T>(this IDataReader reader, Func<string, T> del) internal static double? ...
0
votes
1answer
386 views

Exact Layout of the method table in CLR (version 4.0)

A .NET/CLR-Question: Every object has as its second field a pointer to a method table. How is the exact (exact!) layout of this method table in Version 4.0 of the CLR (x86 Architecture)? It would be ...
2
votes
2answers
192 views

Git's technique and logic behind “git status”

What exactly happens when git status is looking if there are any changes in the local folder? As far as I understand this, every file is "registered" via hash code (to be exact: sha1) and git status ...

1 2 3 4 5