514 questions
2
votes
0
answers
55
views
Seams/artifacts after simple texture is applied to the terrain in Godot
Godot 4.3, Forward+ renderer, Terrain 3D plugin
I have a simple setup with the terrain and a basic 1st person player controller. Terrain is provided via Terrain3D plugin, and is heightmap based.
...
0
votes
1
answer
41
views
Resolving ArtifactLinks for GitHub
I'm working with a Microsoft partner and we are using Azure DevOps for day to day work. I'm automating ADO work item GitHub PR & Commit using co-pilot.
Currently in the workitems api provided by ...
4
votes
0
answers
224
views
MLflow doesn’t log or show model artifacts after training run
I’m working on a machine learning project using MLflow for experiment tracking (on macOS, Python 3.12, scikit-learn, and DagsHub as the tracking server). The experiment runs successfully — I see the ...
4
votes
0
answers
191
views
How do I get rid of these artifacts on my JButton? And/or, what am I doing wrong here?
Here is a minimal, reproducible example. I am using Java 24 with the --enable-preview flag activated. I am on Windows 11.
import module java.desktop;
void main() {
SwingUtilities.invokeLater( () -&...
5
votes
1
answer
120
views
Fragmented Progressive Rendering Artifact
I'm developing a fractal explorer in C++ using SFML and std::thread to render the Mandelbrot set on the CPU with progressive display. The goal is to leverage multiple cores by dividing the image into ...
1
vote
1
answer
39
views
ADO Artifacts Scoped NPM Install 401 Error Using Mac
I have an artifact on ADO with published package @foo/bar
I followed the install instruction with
one user .npmrc containing links, usernames, base-64 encoded pat token generated by ADO "install ...
2
votes
0
answers
124
views
html canvas renders long streaks in image
The HTML <canvas> consistently adds streak artifacts when it tries to render images with a width considerably longer than its height.
In my case, I am using a JPEG image whose dimensions are 42,...
3
votes
0
answers
31
views
Google cloud build docker multistage build store test artfifacts
Give I have a cloudbuild.yaml file which builds a multistage Dockerfile, how do I store artifacts generated by Docker?
My Dockerfile contains this section:
FROM golang:1.23-alpine AS build
WORKDIR /...
0
votes
1
answer
48
views
Maven packaging lacks one homegrown artifact from the same pom-tree
I have build a Maven-project-tree consisting of a top pom-project (named MyElectricity) and two subsequent jar-projects.
The project is meant to grow, so I split it to one (named MyElectricity-Common) ...
0
votes
0
answers
56
views
Maven Project Ignoring Custom Repository in settings.xml After Artifact is Added
I have a Maven project configured to use a custom repository defined in settings.xml. The setup works as expected initially:
Maven first checks the custom repository configured in settings.xml.
If the ...
0
votes
2
answers
395
views
How to add a file I create in groovy in Jenkinsfile to the artifacts?
I have a groovy function that creates a json file and I'd like to include that file in the artifacts of the build.
String pipelineCustomWorkspace = "/jenkins/pipeline-${BRANCH_NAME}/${...
0
votes
1
answer
49
views
Managing artifacts locally
At work I was tasked with evaluating the implementation of a CI/CD workflow for our C# project.
I am using Bitbucket and Jenkins, and I have configured it so that pushing to the repository ...
0
votes
1
answer
197
views
MLflow Docker on Azure: Error Saving Artifacts to Blob Storage (MissingRequiredHeader)
I'm deploying an MLflow server on Azure using a Docker image. The MLflow server URL is accessible, but I'm encountering an issue when trying to save artifacts in Azure Blob Storage. I receive the ...
0
votes
0
answers
88
views
Couldn't Fetch Artifact id of an uploaded artifact
I have two private repository A and B and I Am trying to download artifact from repo A to B for which I am using REST API to fetch Artifact ID But some how I am not able to see the id
curl -L
-H &...
1
vote
0
answers
134
views
How to output files from Bazel tests to be used in Github Artifacts
I have tests made with Jest and Puppeteer under a Bazel configuration. I Have screenshots and html-pages and hopefully videos in the near future being saved to a file(s) during tests that have errors. ...