Skip to main content
1 vote
2 answers
94 views

Problem shown below: use 5.036; # signatures use strictures; package Foo { use Moose; sub quux($self) { ... } } package Big::Quux { use Moose::Role; sub quux($self, $another) { ... } ...
daxim's user avatar
  • 39.3k
0 votes
1 answer
46 views

The OpenCL API has one object which is sort of a "kitchen sink" for a lot of stuff: The program (with handle type cl_program). It can hold: A textual program source ( ...
einpoklum's user avatar
  • 137k
0 votes
0 answers
36 views

How can I expose a backend service's name and version via rest a in a standard way? Is there a rfc that defines a route like whoa I which provides a backend service name and version in a route like ...
spacether's user avatar
  • 2,851
2 votes
1 answer
89 views

For code that exists in a module named some.module and looks like this: class MyClass: @classmethod def method(cls): # do something pass I'd like to know in the block marked as "do ...
Ivan Voras's user avatar
  • 2,030
2 votes
0 answers
220 views

I'm trying to get introspection working with .net Aspire Integration tests, which use random ports for everything. In regular mode the port is consistent and thus setting the issuer using the ...
James Hancock's user avatar
0 votes
0 answers
289 views

I have a utility package for Python projects I maintain and use. It’s a bundle of lightweight, common, junk-drawer tools (e.g. command parsing, app lifecycle management, document generation, &c &...
fish2000's user avatar
  • 4,435
0 votes
0 answers
48 views

How can a function's body be inspected in Python? def main(): def example_function(): x = 4 y = 3 if x + y < 6: print("Test") print("...
ideasman42's user avatar
  • 49.3k
3 votes
1 answer
822 views

Introspection error while trying to import class from external lib. Steps to reproduce : Using a common DTO from a shared lib which has micronaut annotation processing enabled. @Data @Serdeable....
Nikhil N gowda's user avatar
0 votes
2 answers
117 views

Sometimes I saw stack traces that said which value of which variable caused an exception to occur. So I guess it's possible to determine the name somehow. I've already searched, but haven't found ...
Matthias Ronge's user avatar
0 votes
0 answers
529 views

I try to allow JWT introspection on my oidc provider, but it always results to an { "active": false }. I precise that i don't encounter problem for opaque introspection and I turned on the ...
Jas's user avatar
  • 1
2 votes
1 answer
76 views

Say you're decoding a huge JSON file: struct Examp: Codable { let Cats: [CatsItem] let Dogs: [DogsItem] let Horses: [HorsesItem] .. forty more } After you parse it, on the console you simply ...
Fattie's user avatar
  • 9,770
1 vote
0 answers
371 views

I am using Java 21 with Spring Boot 3.2 and using implementation "org.springframework.boot:spring-boot-starter-graphql:3.2.0" I can run my project in IntelliJ and it works just fine: 2024-...
Ebad's user avatar
  • 428
-1 votes
1 answer
388 views

I'm working on introspection technics and wanted to implement a trait to tell if a member-function is static or not. After a bit of reading (so and cppreference) I understand that the type of a ...
Oersted's user avatar
  • 3,832
0 votes
2 answers
109 views

I get an argument in Tcl. How can I tell if it's a lambda function, other than usingcatch {apply $arg}?Thanks
user1134991's user avatar
  • 3,129
0 votes
1 answer
1k views

First time asking here and going straight to the point: I'm working on an API with Spring that connects to a Keycloak instance and I need every endpoint to accept an Access Token for security reasons, ...
Alejandro Silva's user avatar

15 30 50 per page
1
2 3 4 5
69