Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
74 views

I have a SpinBox with a custom TextInput as contentItem. I want it to display a quantity, so it want to display something like "10 / 20 pc." for example. The minimum value is always 1, the ...
Me3nTaL's user avatar
  • 505
-1 votes
1 answer
126 views

I have created below masked image and I have masked image like this Here is my code // // Collage_Layout_1.swift // Snapcial // // Created by Jecky Modi on 15/02/25. // class Collage_Layout_1: ...
Jitendra Modi's user avatar
0 votes
1 answer
101 views

Given data and mask tensors are there a pytorch-way to obtain masked aggregations of data (mean, max, min, etc.)? x = torch.tensor([ [1, 2, -1, -1], [10, 20, 30, -1] ]) mask = torch.tensor([ ...
Sengiley's user avatar
  • 289
1 vote
1 answer
285 views

I'm trying to apply a mask to a VueDatePicker input. The mask works, but you need to double-click on the date in the calendar for it to apply. However, if you remove the mask, everything will be fine. ...
Zhn-nya's user avatar
  • 13
0 votes
0 answers
52 views

Я использую react-text-mask и Input antd. I have a problem. When I want to use a phone number mask, when I delete a character from the middle of the line, my cursor moves to the beginning of the line. ...
Lisan Li's user avatar
1 vote
0 answers
116 views

$txtValue = New-Object System.Windows.Forms.MaskedTextBox Using the mask $txtValue.Mask = "999,999,999.9999" doesn't allow me to enter, for example, 1.333 without typing 000,000,001.333 (or ...
LegsNotHand's user avatar
0 votes
1 answer
273 views

Is it possible to set the mask of a devextreme textbox field to a model's property? As in bind the mask property to a model's property value? For example: Model: public MyClass{ public string ...
SoftwareDveloper's user avatar
0 votes
0 answers
62 views

I am having requirement where customer can enter a number in any format and I need to convert it into valid number format using plsql code dynamically. could you please guide me. Test case1# (200....
Sne20's user avatar
  • 11
0 votes
1 answer
60 views

I need to create a phone number input with special input masking. The input will have a placeholder like this: (___) ___-____. As the user types, the "placeholder" text should slowly be ...
Michael Pugh's user avatar
0 votes
2 answers
140 views

This is my request : public class GenerateTokenRequest { [AliasAs("code")] public string Code { get; set; } = string.Empty; [AliasAs("secret")] public string ...
Hakuna's user avatar
  • 529
0 votes
0 answers
23 views

After replacing the mask with the entered characters, I want to delete the entered characters, but it does not allow me. I can only delete the last one. I would also like if you think this could be ...
Stefan Arsic's user avatar
0 votes
0 answers
455 views

So I have a table which have masking on its columns so I got my roles added to masking policy of that particular view. I created a view and a table from dbt including data from that particular masked ...
Abhishek Tiwari's user avatar
0 votes
0 answers
55 views

I would like to check with you regarding dynamic data encryption/masking when reading from a SQL Server database. To elaborate further, the data elements should be encrypted/masked when a set of users ...
Aravindhan Ravichandran's user avatar
0 votes
0 answers
27 views

I have a problem in a bigger python project. This ist the code I'm trying to implement. I'm trying to find out in which interval of a0 the points in a lie (there will be a lot more points in the ...
pangoline's user avatar
0 votes
0 answers
58 views

I currently have a curve defined by (x_orig, y_orig), and I want to plot the shaded region between two new curves defined by (x_orig - c, y_orig) and (x_orig + c, y_orig). When using matplotlib's ...
Isaiah Santistevan's user avatar
1 vote
1 answer
69 views

I want to redirect https://example.com/folder to https://example.com/otherfolder/anotherfolder but have the address bar still display https://example.com/folder. None of the .htaccess tutorials on ...
Eric Vinyard's user avatar
1 vote
4 answers
329 views

I am trying to add a column in a SQL query to use as an alternative ID. The data has this format: UserID | Value --------------- 1 | 23 2 | 10 1 | 45 I'd like to create another column ...
Rickerz's user avatar
  • 69
0 votes
1 answer
80 views

This was the problem statement. *Complement of Base 10 Integer The complement of an integer is the integer you get when you flip all the 0's to 1's and all the 1's to 0's in its binary representation. ...
hash's user avatar
  • 1
0 votes
1 answer
596 views

How can I use github secrets in Ansible play without them being visible in clear text? Currently, I invoke ansible play using the “oracle linux automation manager” API from github actions. While ...
Ashar's user avatar
  • 3,195
1 vote
1 answer
104 views

I want to create a Python equivalent of a Matlab code that creates a filtering mask. In the Matlab version, I have a variable position that maintains xy values for a polygon which I am creating the ...
Pooia's user avatar
  • 41
1 vote
0 answers
2k views

Below is the github actions workflow: name: CALLERDB - AD on: workflow_dispatch: inputs: DBLoginID: description: 'Enter the user id' required: true type: string ...
Ashar's user avatar
  • 3,195
2 votes
0 answers
108 views

I'm trying to make a 3D art piece that has some layers in front of the frame layer and some layers behind the frame layer. I want the frame to mask off the layers behind it, and still be able to see ...
Tom Columbus's user avatar
1 vote
1 answer
884 views

I am trying to log all of the requests hitting my endpoints using a delegating handler. As there are sensitive information in the request and response body, I would like to mask them in my logs. I ...
darrenleeyx's user avatar
1 vote
0 answers
1k views

I am working with logback with springboot project first time; and I have tried to look references online. I am dealing with masking sensitive data on different log files. In this project data is ...
user1986244's user avatar
0 votes
0 answers
2k views

I have a functionality where I defined custom pattern and it should allow user to enter any alphabets, numbers, spaces and special characters. In this example lets say $ At the same time I have '$' as ...
user2132124's user avatar

1
2 3 4 5
24