Questions tagged [parameterization]
157 questions
0
votes
0 answers
How to verify response of below type where the value has multiple dynamic value using karate framework
How to verify response of below type which has dynamic value and need to be validated against test data in Examples section of scenario outline
Original response:(This is one of the key and value of the response, actual response has multiple key…

advith
- 11
- 2
0
votes
1 answer
How to make a parameterized Azure Data Factory production ready
I have a parameterized ADF pipeline that is feeded data from a metadata table that is stored in SQL db.
One of the columns in the metadata table is 'IsActiveFlag.' Whilst developing the pipeline I used this parameter as condition to filter out…

rutgerv
- 43
- 10
0
votes
0 answers
Locust Parameterization
`
from locust import HttpUser,User,task,constant
class myfirsttest(HttpUser):
host = "https://assessments-api-qa.kh3ira.com/api/assessment-attempt"
weight = 2
wait_time = constant(1)
@task
def get_users(self):
…
0
votes
0 answers
Pytest parameterizing of a fixture by a test without using indirect
Why does this work? Is it future pytest functionality, as yet undocumented? Anyone using this as an alternative to indirect parameterization? Seems like a much nicer syntax. I think pytest spins up the missing fixture using factory…

ppoi
- 61
- 1
- 1
0
votes
0 answers
Generic Checked conversion to a Type Variable that is supertype of a given type in JLS
Consider the following clause of JLS8:§5.5.2
A cast from a type S to a type variable T is unchecked unless S <: T.
Here is how I tried to implement the understanding around the scenario that JLS tries to discuss:
class Scratch {
public static

theutonium.18
- 483
- 2
- 7
0
votes
0 answers
Is there a way to precisely parameterize a quadratic Bézier curve?
There is a closed form solution to the arc length of a quadratic Bézier curve, namely:
Assuming the Bézier is of the equation A + Bt + Ct^2 where A,B,C are vectors
a = (B dot B), b = 2*(B dot C), and c = 4*(C dot C)
(2 * c * t + b) * sqrt(a + b * t…

Luxistor
- 11
0
votes
1 answer
Conditionally parameterize SQLite query in AIR
How can I conditionally parametrize a SQLite database in AIR?
For example this query:
//selectedID is the ID I want to select
query.text = "select * from table where id=@ID";
query.parameters['@ID']=selectedID;
But I want the where statement to…

Francisc
- 77,430
- 63
- 180
- 276
0
votes
1 answer
Pytest override fixture with parameterization
The answer to how to override a fixture with parametrization is already given here:
pytest test parameterization override
My question is what is the correct way to run the same test, both with the original fixture and the overridden values.
I'm…

Kfir Cohen
- 43
- 6
0
votes
1 answer
How to parameterize ports for docker-compose?
I am trying to parameterize a docker-compose file using .env. Doc
docker-compose.yml
version: '2.3'
networks:
default: { external: true, name: $NETWORK_NAME }
services:
rabbitmq_local:
image: 'rabbitmq:3.6-management-alpine'
…

Gulzar
- 23,452
- 27
- 113
- 201
0
votes
1 answer
80 Postgres databases in Azure Data Factory to copy into
I'm using Azure Data factory,
I'm using SQLServer as source and Postgres as target. Goal is to copy 30 tables from SQLServer, with transformation, to 30 tables in Postgres. Hard part is I have 80 databases from and to, all with the exact same layout…

BobL
- 1
- 1
0
votes
1 answer
How to find the intersection time of a parameterized curve with a shape?
I have a curve parameterized by time that intersects a shape (in this case just a rectangle). Following this elegant suggestion, I used shapely to determine where the objects intersect, however from there on, I struggle to find a good solution for…

mapf
- 1,906
- 1
- 14
- 40
0
votes
1 answer
Parameterize Azure DataFactory
I am copying data from Azure SQLdb to Azure data lake, is there a way to fetch Blob information like blobname, blobkey, and container to parameterize Sink dataset properties.

Fraz
- 61
- 3
0
votes
1 answer
VBA/SQL Parameterized Query - Unknown Column in Field List
I am working within VBA in Excel using a MySQL ODBC 5.1 Driver, and am having trouble with a parameterized SQL query that I'm trying to use to insert rows into a table. Before parameterization the query worked fine, but I ran into an issue with SQL…
0
votes
2 answers
Use stored procedure with parameters in PowerBI
I use PowerBI (October 2020), and I have one dashboard with a drop down DATE slicer. I have two problems with it:
I need to pass the value of slicer to a stored procedure to use there as a where condition. I mean the query has used in stored…

SantaRoza
- 39
- 5
0
votes
1 answer
when I use CGAL LSCM,there are some overlaps
enter image description here
when I use CGAL LSCM,I find there are some overlaps.
there are some descriptions in CGAL doc.
But I still want to use CGAL LSCM to achieve Mesh Parameterization,so what can I do to solve the problem.
enter image…

yufeng
- 3
- 1