Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am eljobe on github.
  • I am eljobe (https://keybase.io/eljobe) on keybase.
  • I have a public key ASDpanVpsuuTRS_YctBIjb6AYM9_oCvCApNK0wHRON5slwo

To claim this, I am signing this object:

Error:
Could not transfer artifact org.gradle.test:project2:jar:1.9 from/to remote (file:////home/tcagent2/agent/work/e94d7a966081366e/subprojects/maven/build/tmp/test files/AbstractIntegrationSpec/unknown-test/o361i/maven-repo): Repository path /home/tcagent2/agent/work/e94d7a966081366e/subprojects/maven/build/tmp/test files/AbstractIntegrationSpec/unknown-test/o361i/maven-repo does not exist, and cannot be created.
Could not find metadata org.gradle.test:project1/maven-metadata.xml in remote (file:////home/tcagent2/agent/work/e94d7a966081366e/subprojects/maven/build/tmp/test files/AbstractIntegrationSpec/unknown-test/o361i/maven-repo)
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':project2:uploadArchives'.
> Could not publish configuration 'archives'
> Failed to deploy artifacts: Could not transfer artifact org.gradle.test:project2:jar:1.9 from/to remote (file:////home/tcagent2/agent/work/e94d7a966081366e/subprojects/maven/build/tmp/test files/AbstractIntegratio
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>deployGroup</groupId>
<artifactId>mywar</artifactId>
<version>1.0MVN</version>
<packaging>war</packaging>
<dependencies>
<dependency>
2.8 ...
No Gradle daemons are running.
Warm-up #1
Run Gradle using JVM opts: [-Xms2g, -Xmx2g, -XX:MaxPermSize=256m, -verbosegc, -XX:+PrintGCDetails, -XX:+PrintGCDateStamps, -Xloggc:/Users/pepper/dev/gradle/subprojects/performance/build/multi/gc.txt, -XX:-PrintGCTimeStamps]
:project1:eclipseClasspath
:project1:eclipseJdt
:project1:eclipseProject
2.0 ...
No Gradle daemons are running.
Warm-up #1
Run Gradle using JVM opts: [-Xms2g, -Xmx2g, -XX:MaxPermSize=256m, -verbosegc, -XX:+PrintGCDetails, -XX:+PrintGCDateStamps, -Xloggc:/Users/pepper/dev/gradle/subprojects/performance/build/small/gc.txt, -XX:-PrintGCTimeStamps]
:eclipseClasspath
:eclipseJdt
:eclipseProject
@eljobe
eljobe / NoTempSwap.py
Created February 17, 2012 19:49
no_temp_swap
x = 50
y = 75
x = x ^ y
y = x ^ y
x = x ^ y
print x
print y