Questions tagged [internals]

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.

If you understand how a database or parser or version control system actually works, you'll be better at using it. Internals questions seek this kind of inside knowledge.

660 questions
-1
votes
2 answers

how internally arraylist stored different data types using an array

how internally arraylist stores different data types using array. Since array is the internal implementation of an array list and in an array we can store only similar data type like string/int etc. want to understand internal implementation of…
anurag1007
  • 107
  • 1
  • 10
-1
votes
1 answer

Does any of C++ implementation make use of multiple inheritance internally?

Just a quick silly question: I was wondering if C++ makes use of the multiple inheritance feature provided by virtual inheritance internally. I know for sure that for the templated implementations such as the Data Structures provided by STL…
R34
  • 59
  • 6
-1
votes
1 answer

MySQL disk I/O when select execution works

I have question about low level principle about mysql. Let me suppose that I have A table with 4columns and no index. select * from A vs select first column from A. Then is there difference on read I/O as performance. not network I/O. I'm curious…
dongyoung heo
  • 73
  • 1
  • 4
-1
votes
1 answer

Why do the hooking libraries work only occasionally for API Calls in Windows 10?

I used multiple Hooking libraries e.g. Microsoft Detours Express, Mhook, etc. to hook NtWriteVirtualMemory API calls. I wrote following code to hook the API: #include #include #include #include…
m0jt4b4
  • 35
  • 6
-1
votes
2 answers

STATUS_INVALID_IMAGE_HASH (0xc0000428) on valid PE files

I tried loading the DLL file "bcryptprimitives.dll" (which in my case, originally sits under "C:\Windows\syswow64\bcryptprimitives.dll") from another location, with this snippet of code: LoadLibraryW(L"
Aviv
  • 516
  • 1
  • 3
  • 21
-1
votes
2 answers

Find if imaged OS had been installed from software copied with the os image

Can we find if our software has been copied in an OS image (windows) and then deployed in another machine. The hardware details do change but it may be due to hardware upgrade or change. Is there anything at software level which indicates that the…
-2
votes
1 answer

How to fix 500 (Internal) Server error in WordPress?

When I edit something on page using elementor & after I click on update button, I can see error message "server error 500" I can't update menu. I can't select existing upload image from media library, and I can preview Media library also. How solve…
-2
votes
1 answer

Where to find information of Django internals and design

where can I find information of Django internals? more updated then that https://www.youtube.com/watch?v=tkwZ1jG3XgA ? It is a very good tutorial, but it is almost 20 years old. In Django, I cannot find anything for learning about the internals…
Nisanio
  • 4,056
  • 5
  • 34
  • 46
-2
votes
1 answer

Java11, what shall MalformedByteSequenceException be replaced with?

I'm moving a project to Java11 I already changed sun.reflect.generics.reflectiveObjects.ParameterizedTypeImpl with java.lang.reflect.ParameterizedType (as specified here), now is the turn of MalformedByteSequenceException: warning:…
elect
  • 6,765
  • 10
  • 53
  • 119
-2
votes
2 answers

Why is an internal static string is not accessible from outside the class?

I have a class defined as follows: class Foo { internal string IString; internal static string IstaticString; public Foo() { IstaticString = "static"; IString = "non - static"; } …
sujith karivelil
  • 28,671
  • 6
  • 55
  • 88
-2
votes
1 answer

Why is the vptr discarded when I copy objects?

Example #include #include #include #include struct father { int variable; father(){variable=0xEEEEEEEE;}; virtual void sing(){printf("trollolo,%x\n",variable);} ~father(){}; }; struct…
Ohnemichel
  • 324
  • 2
  • 9
-3
votes
1 answer

Internal Server Error when visiting the WordPress admin page

I'm working on this site https://feinfilm.de/ and the front page works ok: but if I go to the admin panel https://feinfilm.de/wp-admin/, I see this: What might be causing this issue? Thanks
-3
votes
1 answer

Access a variable from different classes that are in different namespaces

I have a MVVM application, and I need to declare a variable somewhere and access it from everywhere in my assembly, that is, from different classes in different namespaces. I have tried to declare an internal variable in the main class but it does…
Willy
  • 9,848
  • 22
  • 141
  • 284
-4
votes
1 answer

'removeChild' is inaccessible due to 'internal' protection level

'removeChild' is inaccessible due to 'internal' protection level Extra argument 'in' in call removeChild(bottomSheet) addChild(bottomSheet, in: view)
hi1231bye
  • 1
  • 5
-13
votes
2 answers

Relation between "new" and "operator new"

string *ptr = new string("Hello"); What happens when we call the new operator? explain in simple points.
1 2 3
43
44