package app.cash.paparazzi | |
import sun.misc.Unsafe | |
import java.lang.reflect.Field | |
import java.lang.reflect.Modifier | |
import java.security.AccessController | |
import java.security.PrivilegedAction | |
/** | |
* Inspired by and ported from: |
ghget () { | |
USER=$(echo $@ | tr "/" " " | awk '{print $1}') | |
REPO=$(echo $@ | tr "/" " " | awk '{print $2}') | |
mcd "$HOME/src/github.com/$USER" && hub clone $@ && cd $REPO | |
} | |
mcd () { | |
mkdir -p -p "$@" && cd "$@" | |
} |
import jenkins.model.* | |
import hudson.util.Secret | |
import org.jenkinsci.plugins.plaincredentials.impl.StringCredentialsImpl | |
import org.jenkinsci.plugins.plaincredentials.* | |
import com.cloudbees.plugins.credentials.* | |
import com.cloudbees.plugins.credentials.common.* | |
import com.cloudbees.plugins.credentials.domains.* | |
import com.cloudbees.plugins.credentials.impl.* | |
import com.cloudbees.jenkins.plugins.sshcredentials.impl.* | |
I hereby claim:
- I am indyaah on github.
- I am anujpatel (https://keybase.io/anujpatel) on keybase.
- I have a public key ASC3q7Lt_7Wdwn11sGGEC0-7uuAxrd9XESucRjUvjMPDGAo
To claim this, I am signing this object:
Changelog | Setup | Docs | Maven Repo
Version 1 is out with a complete rewrite of almost all functionalities and many new ones.
This is a set of Bloom filters we implemented as we found all existing open-source implementations to be lacking in various aspects. This library takes some inspiration from the simple Bloom filter implementation of Magnus Skjegstad and the Ruby Bloom filters by Ilya Grigorik.
The Bloom filter is a probabilistic set data structure which is very small. This is achieved by allowing false positives with some probability p. It has an add
and contains
operation which both are very fast (time complexity O(1)). The Counting Bloom filter is an extension of the Bloom filter with a remove
operation at the cost of incurring an addition