Questions tagged [artifacts]

mostly used in terms of computer graphics artifacts are unwanted bugs in rendered output

in terms of computer graphics artifacts are unwanted bugs in rendering output

  • usually caused by rounding errors of float values
  • or by overflows/underflows of integer values

Most usual are:

  • invalid pixel color for some pixels
  • choppyness (pixelation) of image (like very low quality JPG)
  • holes in geometry (related to Z-Buffer accuracy)

Artifacts are not bound to graphics only

  • for example high order polynomial computations can also have artifacts inside
  • causing invalid results while using them if precision is too low
506 questions
0
votes
1 answer

Use and copy artifacts within one job in multiple subjobs/nodes - Jenkins

Hello, We're using one job (B) which calls another job (C) 3-times with different parameters within one job (B). Every job-C run is used for different slaves/nodes, with different parameters. Job B is using some artifacts from job A and all the…
Steffen
  • 13
  • 5
0
votes
1 answer

OpenGL 4.4 texture atlas artifacts

I am writing a small OpenGL tile map renderer in C# with OpenTK. To render the tiles I first create a vertex array and then a vertex buffer. At next I iterate over all tiles and dependent from the tile type I add two triangles to the vertex buffer…
Michael
  • 595
  • 5
  • 19
0
votes
0 answers

Code executes twice with invokeLater. I experience painting artifacts without it

I'm programming a simple card game. When you click on the deck of cards, it draws a card, then it's supposed to pop up with a message dialog saying it's player 2's turn. However, the card that is removed and painted into to player 1's hand, gets…
mfgravesjr
  • 37
  • 5
0
votes
1 answer

dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6

I am getting below error when i am doing build project .. in jenkins i have given git url to fetch the code ..and its getting the code but after few steps execution in jenkins console its showing below error Parsing POMs …
Sajal Fouzdar
  • 11
  • 1
  • 5
0
votes
3 answers

How to delete old artifacts in maven local repository in jenkins

I have a .m2/repository directory which has a lot of old artifacts. Is there a way to clean up the .m2/repository folder with a script or any plugins. Also I would like to tell that the I want to delete the artifacts that are older than 14 days.…
cloudbud
  • 39
  • 3
  • 8
0
votes
0 answers

How to make sure Java can read dependent files relatively

My project is created by Intellij, and this is a gradle project, path is: c:\project\ This is the program Path path = Paths.get("input.txt"); List lines=java.nio.file.Files.readAllLines(path, Charset.forName("utf-16le")); I must use…
CL So
  • 3,647
  • 10
  • 51
  • 95
0
votes
1 answer

what is the difference maven generating artifacts from cache and updates

I would like to know the difference between generating artifacts from and cache and updates. Does generating artifacts get from remote repository if it is not available in local repository? I did not find any relevant posts regarding the same.
user1772643
  • 615
  • 3
  • 11
  • 23
0
votes
1 answer

Missing artifacts from maven .m2 repository

I'm trying to add dependencies to my project through pom file. But while building workspace it's showing error as missing more than 400 artifacts. Seems like maven is not downloading related jars to my .m2 folder. I tried cleaning and updating…
0
votes
0 answers

Drawing a rectangle on screen as an "area selection" tool (Java)

I want the user of my program to be able to highlight an area on a JFrame to select a group of items on screen. The code I posted below works, but it is very choppy, which becomes quite an eyesore every single time the JFrame repaints. Here's an…
user3376587
  • 134
  • 2
  • 12
0
votes
2 answers

Slick2d using anti-aliasing with Animations/Images

I'm using slick2d to render an Animation, but using anti-aliasing Without AA, the movement is choppy, as one would expect for something without AA. I turn on AA in my game's preRenderState with: g.setAntiAlias(true); This leads to: Note the…
Kaia
  • 862
  • 5
  • 21
0
votes
1 answer

Using Latest version of Jenkins, it's not updating Artifactory Pro libs-release-local directory

In Jenkins configuration we have our Artifactory URL entered. We have a Maven job defined using Artifactory Plugin. With settings as follows; Build Environment: Enable Artifactory release management is unchecked Resolve artifacts from…
LRP
  • 283
  • 1
  • 3
  • 5
0
votes
1 answer

How to access local repo from gradle

I am trying to build a Java project using Gradle. I have some dependencies (jars) that are in a location of the type: http://internal_domain.location.local:9000/artifacts/repo How do I specify this in the build.gradle file? Is it under repositories…
user2399453
  • 2,930
  • 5
  • 33
  • 60
0
votes
1 answer

Delete artifacts and their entire directory from maven local repository

I am trying to delete old artifacts and the directory they live in from my .m2/repository directory. For example I have several versions of projectA: 4.7.0.222, 4.7.0.223, 4.7.0.224 etc. I only need to keep 4.7.0.224 project since it is the latest…
cfarley4
  • 91
  • 2
  • 7
0
votes
1 answer

How to upload complex artefacts to nexus so I can manually download specific files later?

I am trying to transition from a model where artifacts are published to jenkins and they consist in 20-50 file and directories. But jenkins does allow to download them one by one or the entire of them as a zip file. I tried to upload a tar.gz to…
sorin
  • 161,544
  • 178
  • 535
  • 806
0
votes
0 answers

How to remove the arifacts

I am applying some operations on an image and the result image should resemble the image posted in the first figure below, but my resultant image as you see it in figure 2 contains unwanted structure or artifacts. how can I eliminate these…
Amrmsmb
  • 1
  • 27
  • 104
  • 226