Andrei Pozolotin
Andrei Pozolotin
cool. thanks for looking.
Øystein: @oyse can you please agree with Andrey how to best handle this: https://bitbucket.org/asomov/snakeyaml/issues/346/
@oyse @asomov thank you guys. need to think again. @oyse : how about adding an eclipse plugin preference checkbox "enable auto format", and then keeping it disabled by default? basically,...
@davidB David: I asked @dragos Iulian for help: https://scala-ide-portfolio.assembla.com/spaces/scala-ide/support/tickets/1002372#/activity/ticket
1) copy/paste provisioner class in your project, see if you can reliably reproduce the error https://github.com/kamon-io/sigar-loader/blob/master/core/src/main/java/kamon/sigar/SigarProvisioner.java 2) if so, add `targetStream.flush();` at #L174, see if makes a difference https://github.com/kamon-io/sigar-loader/blob/master/core/src/main/java/kamon/sigar/SigarProvisioner.java#L174
1) if you extract 1.6.6 jar content http://search.maven.org/#artifactdetails%7Cio.kamon%7Csigar-loader%7C1.6.6-rev002%7Cjar you will find native/libsigar-universal64-macosx.dylib inside; not sure how it is missing 2) no groovy here, only scala - sorry. try to play...
minor java-vs-native mis-versioning, such as as using "sigar java" v 1.6.6 with "sigar native" v 1.6.5 does break some internal sigar java -> native calls so it seems we are...
sure. first some one needs to track and verify the location of binary sigar releases which contain these fixes. please check and verify: 1) redhat https://github.com/kamon-io/sigar-loader/blob/origin-redhat/project/Dependencies.scala#L20 http://repository.jboss.org/nexus/content/groups/public-jboss/org/hyperic/sigar/ 2) hyperic https://github.com/kamon-io/sigar-loader/blob/origin-hyperic/project/Dependencies.scala#L20...
please try to use glibc based alpine and jdk, i.e.: https://github.com/frol/docker-alpine-glibc https://github.com/frol/docker-alpine-oraclejdk8
the following works in `scala-native` 0.3.7 ``` # output from timeStamp(): 2018-03-30 08:02:29 ``` ``` import slogging._ import slogging.MessageFormatter._ import scala.scalanative.native._ import scala.scalanative.posix.time._ object Logging { class Formatter( printLevel :...