I hereby claim:
- I am sorokod on github.
- I am sorokod (https://keybase.io/sorokod) on keybase.
- I have a public key ASDV2ZrLKohCLFWiAqG_mACguTv0XuNvX3v87mftoQos6Ao
To claim this, I am signing this object:
/** | |
* List literals and List.get extensions | |
*/ | |
object L { | |
// L[1,2,3,4] | |
inline operator fun <T> get(vararg a:T): List<T> = listOf(*a) | |
} | |
// aList[0..3] |
data class Person(val name: String) { | |
val preferences = mutableListOf<Person>() | |
var matchedTo: Person? = null | |
fun trySwap(p: Person) { | |
if (prefers(p)) { | |
matchedTo?.matchedTo = null | |
matchedTo = p | |
p.matchedTo = this |
package result | |
import result.Result.Err | |
import result.Result.Ok | |
sealed class Result<out T> { | |
data class Ok<out T>(val value: T) : Result<T>() | |
data class Err(val exception: Exception = RuntimeException(), val msg: String = "") : Result<Nothing>() | |
} |
import java.io.IOException; | |
import java.util.List; | |
import java.util.function.Function; | |
import java.util.stream.Stream; | |
import static java.nio.file.Files.lines; | |
import static java.nio.file.Paths.get; | |
import static java.util.stream.Collectors.toList; | |
public class FileLineByLine { |
I hereby claim:
To claim this, I am signing this object:
DELETE /test | |
GET /test/_analyze | |
{ "field": "categories", "text": "123=Foxes"} | |
PUT /test | |
{ | |
"settings": { | |
"analysis": { | |
"char_filter": { |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.Random; | |
import static java.util.Arrays.binarySearch; | |
/** | |
* Sample a population of T given distribution provided by consecutive calls to update(). | |
* <p> | |
* Example invocation: |
package concurrent; | |
/** | |
* java -jar target\benchmarks.jar concurrent -t N -wi 10 -i 20 -rf csv -tu ms -si true | |
*/ | |
import org.openjdk.jmh.annotations.Benchmark; | |
import org.openjdk.jmh.annotations.Param; | |
import org.openjdk.jmh.annotations.Scope; | |
import org.openjdk.jmh.annotations.State; |
import java.util.Arrays; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.stream.Stream; | |
import static java.util.Arrays.stream; | |
import static java.util.Map.Entry.comparingByValue; | |
import static java.util.function.Function.identity; | |
import static java.util.stream.Collectors.*; |
package benchmark; | |
import org.openjdk.jmh.annotations.*; | |
import org.openjdk.jmh.infra.Blackhole; | |
import java.util.*; | |
/** | |
* Run with: | |
* <code> |