917
questions
0
votes
0
answers
10
views
difference for large vector in R
I'm trying to figure out how to calculate the difference between any two numbers in an array containing more than 20000 numbers. I used dist() and got a matrix, but the matrix is too big and in too ...
-4
votes
0
answers
26
views
What is angular chunk-[hashId].js hashId pattern(regex) after build? [closed]
I want to know what exactly the pattern of hashId in name of chunk files after build.
In diffrect project I found combine capital letters and digits with length 8, but I'm not sure about this pattern ...
0
votes
1
answer
54
views
Lifetime error while trying to use chunks of a vector with the Tokio spawn function for multi-threading
So, I have this code which is running fine in a single thread
pub async fn insert_foos(
self,
foos: Vec<Foo>,
) -> Result<(), Box<dyn std::error::Error>> {
let chunks =...
1
vote
1
answer
125
views
Angular 17/18 multiple chunk files after build
For the past few months I've been working on my Angular 17 app (in one language only), and when I built it for production, I've noticed that a few "chunk" files were generated.
After some ...
0
votes
0
answers
194
views
What could be the cause of a Chunk Load Error in Next.js?
# Unhandled Runtime Error
ChunkLoadError: Loading chunk app/layout failed. (timeout: http://localhost:3000/_next/static/chunks/app/layout.js)
Uncaught ChunkLoadError: Loading chunk app/layout failed....
2
votes
1
answer
72
views
get size of PNG from bytes
I am trying to extract the size of an PNG image from a datastream
Consider the starting data of the stream
137 80 78 71 13 10 26 10 0 0 0 13 73 72 68 82 0 0 2 84 0 0 3 74 8 2 0 0 0 195 81 71 33 0 0 0 ....
1
vote
0
answers
28
views
JSON interpretation of chunked data
I need to locate the parameters for a specific object returned from a remote server in JSON format. But the number of objects on the server is always increasing so the JSON responses get larger and ...
0
votes
0
answers
48
views
Very slow chunk download randomly
I got a very weird problem with my app.
I'm using a Nuxt 3 app with SSR at my production app.
As you know, when you build up your app using nuxt, it will generate a build with a lot of css and ...
0
votes
0
answers
22
views
"run all chunks above" button does not work in R markdown
Since some weeks I have to manually run every chunk in my R script and the "run all chunks above" button does often not work or leaves specific chunks out. I have the newest version of R ...
0
votes
0
answers
146
views
Some chunks are larger than 500 kB after minification. For Vite Application
When building my Vite application I'm getting an error that some chunks are larger than 500 kB.
After analyzing the visualizer I believe the problem is coming from the Three.js package in the ...
1
vote
0
answers
166
views
HMR is not implemented for module chunk format yet
I've converted my webpack project to output ES6:
experiments: {
outputModule: true
},
output: {
library: {
type: 'module'
}
},
Now, when I run in dev mode (...
0
votes
1
answer
79
views
Webpack v5 - Can't disable chunks
I have multiple entry points in my webpack config and I want each entry point to bundle into its own folder with nothing
import path from 'path';
import webpack from 'webpack';
import TerserPlugin ...
0
votes
0
answers
27
views
Dealing with Chunk file upload using jQuery and ASP.NET MVC
I am trying to upload the documents in a bulk as a chunk but unfortunately the documents which are being uploaded is corrupted.
I am storing few metadata along with file, first I am storing the ...
0
votes
0
answers
19
views
Rendering chunks in parallel to the entry file
enter image description here
enter image description here
I want to solve the following problem in js:
When the page refreshes, I have 1 entry file pulled up in html and after it has loaded, its ...
0
votes
2
answers
102
views
How to read a file with json-like objects in C with multithreading
I am trying to read a file with for multithread reading a file in C, but as I divide in chunks based on file size some may start/end in the middle of lines. I was trying to adjust the chunk size in ...