Questions tagged [scaling]

Scaling refers to the image manipulation function of re-sizing an image. For issues to do with handling increasing workload gracefully in software or network components, see "scalabilty".

Scaling refers to the image manipulation function of re-sizing an image.

2497 questions
0
votes
0 answers

Apply SpringAnimation in WinUI 3 starting from center point of polygon

In a WinUI 3 project I've applied a SpringVector3NaturalMotionAnimation to a Polygon shape object. The effect I'd like to obtain is a scaling up/down animation whenever the pointer enter/exit the polygon (it's a triangle) surface. XAML
Cheshire Cat
  • 1,941
  • 6
  • 36
  • 69
0
votes
1 answer

can the number of null properties in elasticsearch document have some considerable impact when scaled?

We have a cluster with an index of doc type that can have up-to a maximum of 120 properties, but most of the time most properties will have value as null. Will it make a difference in elasticsearch if we choose to drop the properties having null,…
0
votes
1 answer

Elasticsearch mirroring primary shards and allocating replicas only

I'm trying to set up ElasticSearch (woth the ECK operator) so that it has nodes running on cheap machines (for "normal" flow), and nodes running on "expensive" machines (for burst moments). It is important to note that the data I use is completely…
fzd
  • 765
  • 1
  • 6
  • 19
0
votes
1 answer

How to center a scaled page in PDFBox

I am trying to center the content of my page after scaling it by a factor X. I have tried using the Matrix.translate function but I always end up getting the wrong position, except when scaling with a factor of 0.5 (which makes totally sense to…
SemmelJochen
  • 87
  • 1
  • 8
0
votes
1 answer

Quick Question Re Drawables Folders MDPI, HDPI and LDPI

Just a quick question. If I am happy with the way in which Android scales my app on the most common screen sizes (tested on real devices) can I just put my images in the MDPI folder ? Or will this cause problems ? Thanks !
GuybrushThreepwood
  • 5,598
  • 9
  • 55
  • 113
0
votes
0 answers

how to connect a table from another server, mysql

my db is growing everyday by several tens of GB. because of this, it was decided to move several tables to another server. the speed of work is extremely critical. 1 - how to make it so that one of the databases can connect to a table from another…
0
votes
2 answers

Touch Event Problem of Image View

My Problem is I am Moving the Image onTouchEvent of ImageView, I Have Two Images on one Screen but the problem is if i am touch image2 & move it that is perfectly working but if i touch on image1 that time the image2 is move to its original…
Dipak Keshariya
  • 22,193
  • 18
  • 76
  • 128
0
votes
2 answers

Making images dynamically change size based on screen size

I am trying to make a gallery-type page with 4 images side by side that scales in size depending on the screen size. I am using this guide: https://www.w3schools.com/howto/howto_css_image_responsive.asp Currently I can make it work with just 1 image…
0
votes
1 answer

Acheiving horizontal scaling through federation?

Does federation lead to horizontal scaling? We know that relational databases usually are scaled vertically as horizontal scaling is not feasible and can disrupt the entire databases. One of the main reasons why it is not possible as we tend to have…
Rosy Roy
  • 3
  • 2
0
votes
1 answer

Azure Analysis Services Programatically Vertical Scale up or down - change service tier

We process and refresh our AAS models in ADFv2 using API calls. We want to be able vertically scale up (change the tier) just before we refresh the model and then scale back down once it's done. I can't find an API call to do this or any kind of…
Geezer
  • 513
  • 5
  • 17
0
votes
1 answer

Stop api abuse before user is authenticated

We have an Android app. Users need to login using sms based OTP before app can be used. Our request for OTP is public API. Attackers have started to abuse this API. 10x more API calls as compared to actual users. What are the different ways this can…
0
votes
1 answer

Spring batch remote partitioning to multiple application instances

I am working on remote partitioning using spring batch.. I have multiple instances of spring batch application running. As part of use case I need to process all records present in database. So I am assigning instances to every records.. So each…
user4674954
0
votes
0 answers

scaling and encoding with same technique at prediction

i used robustscaling and labelencoding for numerical and categorical column respectively at the time of training. num_features = x_df[numeric_type] scaler = RobustScaler() x_df[numeric_type] = scaler.fit_transform(num_features.values) label_encoder…
0
votes
1 answer

Delphi: Automatic scaling of GridPanel in frame

I've got a single row GridPanel full of buttons in a frame which I wan't to scale proportionally when either the height or width gets changed. Before posting I set the alignment to alClient to use the parent's full size, but I don't know what to do…
0
votes
1 answer

How to sync data for a particular user, when reading from kafka?

I have a streaming serving using kafka, where I receive data from multiple users and I want to process the data where each users data must be processed in sync manner where as different User's data data can be processed on async manner? Is there any…
1 2 3
99
100