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
0
votes
0 answers

Completion time of "_invalidate_internal" in Matplotlib increases linearly over extended periods. What is this function doing?

I am running a Python Tkinter GUI application for multiple days (ideally it will run continuously without needing to be restarted). After a few days, the program typically crashes with no explanation or error messages. I have used cProfile to…
b_cat64
  • 9
  • 2
0
votes
1 answer

How create the user-provided-service for the app running in the internal doman(apps.internal) on the cloud Foundry

I have a cloudfoundry webservice app, recently it was moved from the public domain to the internal domain(apps.internal), it looks the internal app should be on the port 8080. if I have another app running the public domain, however to set the…
0
votes
0 answers

What is the RPC Control Windows Object Manager namespace?

I am working on a presentation about symbolic link exploitation on Windows. Most attacks will make use of NTFS junctions with symbolic links created under the RPC Control object namespace. Could someone explain to me what this namespace is and what…
bananabr
  • 147
  • 11
0
votes
1 answer

How to ckeck Java Internal code which is written by Java Complire implicitly

People say that there are some codes in Java that are mandatory even if the programmer doesn't write them. Java compiler writes it by itself implicitly. Like my code is this class Test { public static void main(String args[]) { Test obj…
0
votes
1 answer

How to access AWS SNS from an application served by internal classic load balancer?

I have an application running in an AWS EKS cluster, the application is previously serving with a public-facing load balancer thus it can easily AWS SNS service, but due to some security reasons we are asked to move that to serve via the internal…
Bala krishna
  • 519
  • 1
  • 10
  • 24
0
votes
1 answer

GCC 9 ICE (internal compiler error) when using coverage

Using EDG frontend compiler to generate CPP code started to crash on GCC 9/10/11, used to work on GCC 6.3.0. during IPA pass: profile .m4: In function 'void (int)': .m4:4232:1: internal compiler error: in…
0
votes
1 answer

C#: Writing an explicit cast operator for an internal class in another .NET assembly

I am dealing with a 3rd-party-library sealed internal type. Let's call this type VendorInternalTypeA. It is used in the assembly VendorLibraryA. I want to substitute a different type, one of my own, for VendorInternalTypeA in the a couple of…
Ann L.
  • 13,760
  • 5
  • 35
  • 66
0
votes
1 answer

Write to file in use by another program

I'm creating a program (doesn't really matter the objective but it happens to be purely to mess around and learn more about windows) which reads and writes to a file which is in use by another program (for example notepad or word). Obviously I'm…
thegrinderguy
  • 29
  • 1
  • 3
0
votes
0 answers

How to register in Asp.net core 3.1 built in DI an internal interface that can be used from a public controller?

I have the following interfaces along with the implementations: public interface IRonaldoContainer{} public class RonaldoContainer : IRonaldoContainer { private IRonaldo _ronaldo; public RonaldoContainer(IRonaldo ronaldo) { …
0
votes
2 answers

ASP.NET Page Request Stage...

During the Page Request stage (prior to the Page life cycle), how does ASP.NET determine whether or not the Page needs to be 1) parsed and compiled for the first time or 2) re-parsed and re-compiled due to a markup change (assuming "Allow this…
gangelo
  • 3,034
  • 4
  • 29
  • 43
0
votes
1 answer

In JDK 11 ConcurrentHashMap putVal() methods hit count showing 131 for just 3 key-value pair put operation can anyone explain what's going internally?

I was trying to understand the underlying flow of the put(K key, V value) method of ConcurrentHashMap in OpenJDK 11, tried running it in debug mode with the below sample code how put(K key, V value) method flow works internally, instead of…
ravibeli
  • 484
  • 9
  • 30
0
votes
1 answer

IBM Watson "Internal Server Error - Write" Error - ibm_cloud_sdk_core.api_exception.ApiException: Error

I receive this error when trying to use IBM Watson. Maybe someone has the same problem - or even better - a solution? Traceback (most recent call last): File "MY FILE.py", line 27, in service.recognize( File…
0
votes
0 answers

What is JSString and JSInt classes in dart?

When i search through the classes like num, String, int. I have noticed that they are all abstract classes. What suprised me that the implementation classes for String is JSString and for int JSint. And this made me think that does the code behind…
Solen Dogan
  • 139
  • 8
0
votes
1 answer

Overriding an internal method (reflection, emitting)

I want to create the following class: public class MultiDataOrTrigger : DataTrigger { public MultiDataOrTrigger() { } // evaluate the current state of the trigger internal override bool…
EldHasp
  • 6,079
  • 2
  • 9
  • 24
0
votes
1 answer

Play mp3 files located in ApplicationSupportDirectory (NOT asset directory) linked from webview_flutter loaded html page

I have a large number of mp3 files (+3GB) that needs to be included with the app I am writing for Android and iOS to be used offline. Since the Google Play Bundle can not be larger than 2GB, naturally I will need to download these mp3 files at…