Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
99 views

I have a VBA Project in a Word document with all of the code required to read the following properties from an image file: Title, Comments, TagsKeyWords, Subject, GPS Latitude and GPS Longitude ... ...
Greg Maxey's user avatar
0 votes
1 answer
119 views

I have Spring Boot 3.5 application: @SpringBootApplication( scanBasePackages = [ ... ] ) @EnableConfigurationProperties( value = [ .... MyProps::class, ] ) ...
gstackoverflow's user avatar
-1 votes
2 answers
73 views

I'm using javaScript setProperty(propertyName, value) a lot and it works perfectly until I want to set properties like justifyContent when using flexboxes. It does work with the propertyName '...
Sammie's user avatar
  • 9
0 votes
0 answers
59 views

I'm working on a Spring Framework project and recently upgraded the Java SDK from 11 to 17. After upgrading to Java 17, everything worked fine — the project built successfully, deployed without issues,...
hs.k's user avatar
  • 1
2 votes
1 answer
76 views

Let's say I have a pom file, which includes a <properties> section, and a dependency -- let's say SLF4J for example. Is there any possible property name that I could provide that would set the ...
davidalayachew's user avatar
1 vote
1 answer
32 views

FastifyAdapter bypasses global ValidationPipe for tz, resulting in 400 whitelistValidation error in production builds Description I’m experiencing an issue where my global ValidationPipe is correctly ...
user30901179's user avatar
4 votes
1 answer
94 views

Using Windows PowerShell terminal for running a PS script. I need to do (among the rest) some json file parsing. I ended up in a strange situation, here below posting a minimal example: Json file: { ...
Giacomo Pirinoli's user avatar
2 votes
3 answers
186 views

Let's say I have this: class AA(string a, string b, string? c) { ... } record BB { public string A { get; init; }; public string B { get; init; }; public string? C { get; init; }; ...
John's user avatar
  • 855
0 votes
1 answer
74 views

The Model Derivative API endpoint https://developer.api.autodesk.com/modelderivative/v2/designdata/<"model urn">/metadata/<"model guid">/properties?forceget=true ...
eap23's user avatar
  • 15
2 votes
0 answers
37 views

I am using the useForm package in my react application and facing this issue. However, the code is running without any errors. The error message is displayed as expected. export const error = (errors: ...
Mr.Singh's user avatar
  • 2,045
0 votes
1 answer
46 views

I've implemented my own Spring Boot 3 Starter app and few other Spring Boot 3 apps which are using that starter. Those "apps" are REST APIs and "starter" holds common ...
vasiv's user avatar
  • 11
2 votes
1 answer
44 views

I want to access (get or set) the property of an object from the string name of the property. I've found one way to do it: PropertyValue property = obj.metaPropertyValues.find { it.name == '...
Choosechee's user avatar
0 votes
2 answers
94 views

Just getting in to interfaces and I can't seem to find how to implement calculated fields... I know I can do this in the deriving class, but is there a way to do this in the interface itself? A very ...
Richard Harrison's user avatar
0 votes
1 answer
186 views

I several types of Widgets in my App. All share an interface I_Widget, including a read-only property "public_property". I want some of them to use a member instead of the property. from abc ...
Adam Ryczkowski's user avatar
1 vote
1 answer
106 views

as far as my understanding go, in v8 if property access occurs on object with persistent shape jit optimize it to prety much struct acces that is just offsetting a pointer but is the same rules ...
vanilla's user avatar
  • 145
1 vote
0 answers
57 views

Was working on configuration classes and spotted strange behavior. Prepared small test to reproduce it: @Slf4j @Configuration @ExtendWith(SpringExtension.class) @ContextConfiguration(classes = ...
0xff's user avatar
  • 11
1 vote
1 answer
85 views

I want to refactor a big part of my code into a generic descriptor for read only attribute access. The following is an example of property based implementation class A: def __init__(self, n): ...
Yehui He's user avatar
-2 votes
1 answer
55 views

I have a class in C# defined as public class Square{ public int Count{ get; set; } } I want to set in Count properties the amount of calls it has. I set in the constructor public Square() { ...
Diego Salvatore's user avatar
0 votes
0 answers
53 views

Can not figure out why I am not able to init bean properties by the Camel @PropertyInject during spring boot start. Seems like camel.component.properties.location mentioned in the documentation ...
disable1992's user avatar
  • 4,963
0 votes
1 answer
129 views

I have a problem with making Spring Value annotation work in Java. I have property defined like this: @Value("#{${report.type.urls}}") private Map<String, String> ...
luka_kalandadze's user avatar
0 votes
0 answers
61 views

I'm trying to prevent the console from closing on debug completion. I've already checked the debugging options to make sure this feature is not enabled. It isn't, but the console still closes. I've ...
Pleasant Nightmares's user avatar
0 votes
0 answers
32 views

I have a weird Tortoise SVN issue after setting up a new Windows 10 workstation. I've got my project working copy (repo is on a local server, connecting using svn+ssh) checked-out fine, and normal ...
C Foster's user avatar
2 votes
1 answer
103 views

From "outside", how can I access attributes in a property's getter function whether by unwrapping it or some other way? In a python property, its __get__ function seems to be a wrapper of a ...
dakra137's user avatar
  • 170
0 votes
1 answer
147 views

OK I'm playing around with a Blazor tutorial and I'm experimenting with lookup tables - a Movie table and a MovieStarRatingTable. This is my Index Page: @page "/movies" @rendermode ...
Rusty0918-B's user avatar
1 vote
1 answer
109 views

I want to do a selection on an item based on a (yaml) property in Dataweave. I have this code: %dw 2.0 var testWithProperty = p('incoming.var') // incoming.var refers to the value "resultSet&...
Ben's user avatar
  • 762
4 votes
0 answers
130 views

Traditionally, using the volatile keyword on properties in C# was not possible. In other words, this was not possible: // CS0106: The modifier 'volatile' is not valid for this item public volatile int ...
user3163495's user avatar
  • 3,968
-3 votes
1 answer
68 views

My code dynamically generates properties and the classes to contain them. The code creates immutably-typed properties such that assignments to them are automatically converted to the correct type, ...
dakra137's user avatar
  • 170
0 votes
1 answer
67 views

In Apache Netbeans, is it possible to set an ant property in the Project Configuration? I've got this line in my projects build.xml: <property name="Create Installer" value="y" /...
mstoreysmith's user avatar
0 votes
1 answer
46 views

I have 2 classes with websockets. They should be used to send information from one to the other with the program as the intermediary. The WSS listens and can only have a single connection. I have a ...
servvs's user avatar
  • 74
0 votes
1 answer
151 views

I'm trying to add this env variable to a quarkus project in the corresponding application.properties: quarkus.kubernetes.remote-debug.enabled=true quarkus.kubernetes.env.vars.JAVA_TOOL_OPTIONS=-...
thmasker's user avatar
  • 660
0 votes
1 answer
64 views

I have a custom dependency property that I would like to bind to and pass into a value converter within a style. Here is the code: <Window.Resources> <local:Conv x:Key="MyConv&...
Seated's user avatar
  • 33
1 vote
1 answer
29 views

I've made a map of a number of survey sites using GeoJSON data, it all looks fine. I have also set a mouseover command that highlights the site when the mouse is over it. However, I'm trying to create ...
thepeatles's user avatar
0 votes
1 answer
73 views

I have a Prop file like this abc.name = John abc.id = 1234 abc.dep = sales bac.name = Jen bac.id = 3422 bac.dep = marketing Now I need to convert it to a map where keys will be abc, bac and the ...
Rajib Sharma's user avatar
0 votes
1 answer
41 views

I have a nn.Module subclass with a property which is also a module, but setting a new value does not work. I realize nn.Module overrides __setattr__ and therefore a lot of usual Python attribute ...
user118967's user avatar
  • 5,882
0 votes
1 answer
50 views

CMake documentation states the following: Usage requirements are propagated by reading the INTERFACE_ variants of target properties from dependencies and appending the values to the non-INTERFACE_ ...
tntnkn's user avatar
  • 143
0 votes
1 answer
134 views

I want to test Properties class without @SpringBootTest Annotation. But it doesn't work. How can I fix it? I'm using Kotlin, Spring Boot 2.7.18 @ActiveProfiles("test") @ExtendWith(...
Crispy's user avatar
  • 3
0 votes
1 answer
202 views

A.S.: Object property order in JS is a very complicated topic. For my intents and purposes, only insertion order matters. TL;DR: Is there a way to declare an object property in JavaScript without ...
Parzh's user avatar
  • 10.2k
0 votes
1 answer
270 views

the value of Run64BitRuntime is disabled, can anyone help me make this value editable propertiesDeguggingScreenshotRun64BitRuntime I tried adding "<Run64BitRuntime>False</Run64BitRuntime&...
Riadh CHIBANI's user avatar
-3 votes
2 answers
136 views

I have two instances of a class where I want to replace all values in one instance with those of another instance to implement save or undo functionality. In the following example selectedMessage ...
Robin Wilson's user avatar
3 votes
1 answer
38 views

I have defined a Class and assigned it a value, but when I try to access the value I get an @ followed by a string of hex digits. I can find out nothing in the official Kotlin documentation or online. ...
Charles Perry's user avatar
0 votes
0 answers
53 views

How do i add properties to a message sent through "Manual" trigger? just like when a message is sent through servicebus trigger. I can add Body and Property parameter but the content of the ...
Mustin's user avatar
  • 11
2 votes
2 answers
126 views

I created a generic interface that has a static property, and yet the classes that implement that interface do not seem to have access to the property or expose it to other code. For example, the code ...
Manus Hand's user avatar
0 votes
2 answers
80 views

I have a base class and another that extends it, how can I access fields in the constructor? class BaseModel { constructor() { console.log('no fields :(') console.log(this.fields) ...
blented's user avatar
  • 2,856
0 votes
0 answers
91 views

I've to send property to idealista. According to idealista documentation https://feeds.idealista.com/v6/specs/properties.html I only found node (object key) to add description. "descriptionText&...
Mehad Mushtaq's user avatar
1 vote
0 answers
88 views

I want to have following configuration in my application.yaml file: root: config: role1: filter: type: or: - type1 - type2 role2: ...
gstackoverflow's user avatar
0 votes
0 answers
69 views

My apologies if this has been asked elsewhere. I cannot find any answer and am beginning to suspect I am looking at this incorrectly. I have been using PowerShell for some years, but have not really ...
Stephen ePrivate's user avatar
0 votes
1 answer
164 views

I have a Pojo with various properties, such as class Book { public String title; } (Getters and setters left out for brevity.) Now I want to have properties for such properties, e.g. "this ...
toolforger's user avatar
1 vote
1 answer
38 views

I'm trying to fetch data like boolean isCompany and Strings companyName and nip from users table from backend and set it as default in fields in the form. All other data are patched correctly. There ...
lordlaurent's user avatar
0 votes
0 answers
77 views

I work with a SpringBoot application which has a lot of .properties files in several different directories. The directories are listed using: -Dspring.config.additional-location= and then within those,...
Scala Enthusiast's user avatar
0 votes
2 answers
80 views

I have two methods, where one of the parameters is referenced from the first to the second. public double myFirstDouble = 1; public double mySecondDouble = 2; public double Calculate() { // do ...
desiredness's user avatar

1
2 3 4 5
365