Questions tagged [batching]
193 questions
0
votes
1 answer
MSBuild Copy batching issue
Say I have a project structure with 3 applications:
├───app1
├───app2
├───app3
I want to have an msbuild task to copy the relevant output of each application to a separate deployment…

jason.galea
- 43
- 5
0
votes
2 answers
MSbuild batch copy
Last time, i misinterpreted my situation, but you folks got me really quick and great solutions. hence coming back. I have a new situation. I have provide a snippet of my code. Not sure what is wrong.
I am trying to copy to multipleservers with…

AnsibleUser
- 65
- 1
- 8
0
votes
3 answers
MSbuild batching -- recursive folder copy to multiple destination folders
I am running into a situation. I am trying to use MSBuild batching to copy a folder (subdirectories as well as files) to mutilple dest folders.
but when i run the below script, it dumps every content from the src (contents from sub directories too)…

AnsibleUser
- 65
- 1
- 8
0
votes
1 answer
Trouble batching cubes in libgdx
I am trying to develop a game where I am rendering up to 300 cubes on screen. The performance of modelBatch when creating new modelInstance for each cube is terrible. There is no 3d batch that batches all the cubes to one draw call as far as I know.…

Justas Sakalauskas
- 634
- 5
- 12
0
votes
0 answers
Is batching useful when select qualifies on multiple single parameters?
My Oracle 11g SQL query looks something like this:
select distinct(p.person_id)
from person p, activity a
where p.name like '?'
and p.active=1
and p.create_date<=systimestamp
and p.end_date>=systimestamp
and p.person_id =…

kollegekid
- 21
- 1
- 5
0
votes
1 answer
hibernate batching, uploading a script and batching content
I'm still fairly new to hibernate. I am uploading an sql script and auditing each statement in to a db. So, every statement will be saved as a string in to the database. however this file could contain up to 50,000+ statements. I've been reading up…

cianBuckley
- 1,264
- 2
- 18
- 25
0
votes
0 answers
java.sql.SQLException: operation cannot be mixed with Oracle-style batching
I'm not really sure about the mixing JDBC and Oracle batching... I read that I can't mix it on one instance of preparedStatment ... because of: Oracle Update Batching Models - Using both batching models in same application
But I also find something…

Dusan Plavak
- 4,457
- 4
- 24
- 35
0
votes
3 answers
Group Similar records Sql Server 2008
I will be writing a query to achieve something like below:
TableName: Application
AppId (PK,int) AppType (bit)
1 0
2 0
3 0
4 0
5 1
6 0
7 0
8 …

user187020
- 21
- 2
0
votes
2 answers
How to create Callback Event on ICollection in C# - for batching
Is there a way to create a callback function that fires when a list object (any Class implementing the ICollection interface of C#.NET) reaches a certain capacity (number of items in the list)?
I would like an event to fire when my list object has 5…

Saher Ahwal
- 9,015
- 32
- 84
- 152
-1
votes
1 answer
Apollo - Server(GraphQL): Using Batching together with Caching in REST-APIs not recommended, why?
the documentation of Apollo-Server states, that Batching + Caching should not be used together with REST-API Datasources:
Most REST APIs don't support batching. When they do, using a batched
endpoint can jeopardize caching. When you fetch data in a…

Sebi2020
- 1,966
- 1
- 23
- 40
-1
votes
1 answer
input batching for linear regression classifier in python
I want to batch inputs from 2000-2020 using 3 year windows while creating a linear regression algorithm in python to see what those three years meant for the fourth years data.
input data example: [2000, 2001, 2002], [2001, 2002, 2003], [2002, 2003,…

cv223
- 33
- 3
-1
votes
2 answers
How can be the variables change in other file? batch file
So here is what I need , I have two files , the first one is this:
1)
set idVendor=3edd
In the second file is this:
2)
write /sys/class/android_usb/android0/enable 0
write /sys/class/android_usb/android0/idVendor %idVendor%
write…

Mohammed Darwish
- 13
- 1