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
446 questions
0
votes
3 answers

How to get CEdit to scroll properly?

I have a CEdit control that's used to display a diagnostics output. Sometimes the data overflows the screen size, so naturally I set the Vertical Scroll property to true (MFC dialog editor). But then, when I tried to scroll the text that was in…
CodeFusionMobile
  • 14,272
  • 24
  • 96
  • 138
0
votes
1 answer

IE10 rendering artifacts

I'm testing my website in IE10 on Windows 8 and I keep getting a bunch of rendering artifacts around or above certain elements. Here's a screenshot (note the black bar): The artifacts appear inconsistently – they'll flicker on and off as I interact…
daGUY
  • 22,638
  • 27
  • 70
  • 113
0
votes
2 answers

Hudson - save artifacts only when less than 90% passes

I am new at this and I was wondering how I can setup that I save the artifacts, only if less than 90% of the tests have passed. Any idea how I can do this? thanks
Davy
0
votes
1 answer

Moving common code into `subprojects {}` block breaks build

I have a multi-project (multiple java subprojects) in Grade and I plan to upload it to a maven repository (currently a local one) including the sources and javadoc artifacts. I simply add the following code to each subproject and then maven install…
Martin L.
  • 650
  • 7
  • 13
0
votes
1 answer

maven automatically includes gwt compiler output to war exploded artifact

I use JetBrains IDEA 12.0, maven 3.2. And seems that maven automatically add gwt compiler output to my default project artifact war exploded. How to turn off it?
Marat
  • 35
  • 4
0
votes
1 answer

How to avoid white artifacts when use translucence attribute?

I want to make a translucent window in Qt: setWindowFlags(Qt::Popup| Qt::FramelessWindowHint); setAttribute(Qt::WA_TranslucentBackground,true); But Once I set the Qt::WA_TranslucentBackground to true, there will be white things on the four corners…
miguel
  • 149
  • 1
  • 9
0
votes
1 answer

Maven Artifact download?

I'm new to maven world. My organization has maven release process all the artifacts are kept in our maven remote repo, so I want to deliver some specific artifact version to some of our customer. How can I download specific module version?
user1741249
  • 43
  • 1
  • 8
0
votes
1 answer

IntelliJ Tomcat Deployment Order of Artifacts

I'm trying to figure out how to modify the default startup/deployment ordering of artifacts in IntelliJ (I'm on IJ 11). It looks like it uses basic string ordering (ascending) to deploy the artifacts and it does so sequentially. I want to change…
vinnybad
  • 2,062
  • 2
  • 18
  • 28
0
votes
1 answer

how to clean Maven repository (at Amazon S3)?

We're using Amazon S3 as Maven repository. With time the size of the repo is getting too big, mostly because we deploy a few snapshots per day. Is there any way to "clean" the repo by removing too old variants of the same version (1.0-SNAPSHOT, for…
yegor256
  • 93,933
  • 106
  • 409
  • 558
0
votes
1 answer

maven build for WSo2 artifacts

I can export below carbon project from the developer studio , but not using maven on command prompt. There are two modules embedded inside the "carbon" project . One is Config project and another one is registry resource . maven build / mvn package…
pavan
  • 1
  • 2
0
votes
1 answer

Java: Repaint artifacts with alpha painting

I just had a problem with artifacts at a JPanel which contains transparent parts. My JPanel overrides the paintComponent() method: protected void paintComponent(Graphics g) { g2d = (Graphics2D) g; drawMyAplhaImage(g2d); } As you can see,…
nidomiro
  • 762
  • 1
  • 8
  • 24
0
votes
1 answer

Is it possible in maven to use other local repository for installing artifacts?

When I run mvn install, the compiled artifacts lands in my local repository, the same as this where remote artifacts are installed. Sometimes it is the problem, because you are mixing public jars, which have zero security value (they are already…
Danubian Sailor
  • 21,505
  • 37
  • 137
  • 211
0
votes
1 answer

Manually select artifacts and create a build using Jenkins?

Here is what i am trying to achieve: We have a SVN repository, but we dont want to promote all the changes we get via svn update! I want to manually select each artifact and then build it via Jenkins and deploy it. Any plugin which will allow me to…
0
votes
1 answer

Storing third-party applications in artifact repository

I'm learning about artifact repositories such as jFrog Artifactory and Sonatype Nexus. They seem to promote organizing artifacts the Maven way, something like: /$groupId/$artifactId/$version/$artifactId-$version.$extension I want to store…
M. Dudley
  • 26,519
  • 30
  • 137
  • 228
0
votes
1 answer

Bug in jquery toggle causes horrible artifacts

Check out the example to see what I mean: http://jsfiddle.net/3PVsy/ Any ways to fix this?
aeroshock
  • 57
  • 3
  • 10
1 2 3
29
30