Skip to content

Instantly share code, notes, and snippets.

8u60
Benchmark (arrays) Mode Cnt Score Error Units
BenchmarkInvoke.boundInvokeExact 10000 avgt 10 0.733 ± 0.028 ns/op
BenchmarkInvoke.boundInvokeExact 100000 avgt 10 1.143 ± 0.037 ns/op
BenchmarkInvoke.fast 10000 avgt 10 0.721 ± 0.028 ns/op
BenchmarkInvoke.fast 100000 avgt 10 1.113 ± 0.032 ns/op
BenchmarkInvoke.forceLambdaFormInvokeExact 10000 avgt 10 4.643 ± 0.164 ns/op
BenchmarkInvoke.forceLambdaFormInvokeExact 100000 avgt 10 5.221 ± 0.152 ns/op
BenchmarkInvoke.invokeExact 10000 avgt 10 4.752 ± 0.142 ns/op
BenchmarkInvoke.invokeExact 100000 avgt 10 5.575 ± 0.211 ns/op
8u40
Benchmark (arrays) Mode Cnt Score Error Units
BenchmarkInvoke.boundInvokeExact 10000 avgt 10 8.558 ± 0.357 ns/op
BenchmarkInvoke.boundInvokeExact 100000 avgt 10 9.832 ± 0.258 ns/op
BenchmarkInvoke.fast 10000 avgt 10 0.740 ± 0.016 ns/op
BenchmarkInvoke.fast 100000 avgt 10 1.117 ± 0.024 ns/op
BenchmarkInvoke.forceLambdaFormInvokeExact 10000 avgt 10 8.403 ± 0.134 ns/op
BenchmarkInvoke.forceLambdaFormInvokeExact 100000 avgt 10 9.267 ± 0.227 ns/op
BenchmarkInvoke.invokeExact 10000 avgt 10 8.525 ± 0.198 ns/op
BenchmarkInvoke.invokeExact 100000 avgt 10 9.102 ± 0.136 ns/op
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# nouveau config
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection
@cberner
cberner / gitversion.py
Created December 3, 2011 19:09 — forked from dcreager/version.py
Extract a setuptools version from the git repository
# -*- coding: utf-8 -*-
# Author: Douglas Creager <dcreager@dcreager.net>, Christopher Berner <christopherberner@gmail.com>
# This file is placed into the public domain.
# Calculates the current version number. This is the
# output of “git describe”.
#
# To use this script, simply import it your setup.py file, and use the
# results of get_git_version() as your package version:
#