This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.nio.charset.Charset; | |
| import java.util.Arrays; | |
| /** | |
| * Trie container/wrapper, in this case implements Enum-value lookup. | |
| * Sample code to possibly use for streamlined-lookup by dictionary, using | |
| * UTF-8 bytes of {@link Enum#name()} as the key. | |
| */ | |
| public class EnumByBytesLookup<E extends Enum<E>> | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.ning.tr13.KeyValueSource; | |
| import com.ning.tr13.impl.bytes.BytesValueReader; | |
| import com.ning.tr13.impl.bytes.SimpleBytesTrieBuilder; | |
| import org.iq80.leveldb.CompressionType; | |
| import org.iq80.leveldb.DB; | |
| import org.iq80.leveldb.DBIterator; | |
| import org.iq80.leveldb.Options; | |
| import org.iq80.leveldb.impl.Iq80DBFactory; | |
| import java.io.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package serializers; | |
| import java.util.Arrays; | |
| import com.jenkov.iap.ion.read.IonObjectReader; | |
| import com.jenkov.iap.ion.write.IonObjectWriter; | |
| import data.media.MediaContent; | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Started by upstream project "pipeline/publish-the-world" build number 148 | |
| originally caused by: | |
| Started by user [ME] | |
| Obtained jenkinsfiles/FFF from git git@XXX | |
| Running in Durability level: PERFORMANCE_OPTIMIZED | |
| Loading library pipeline@release/2.x | |
| Attempting to resolve release/2.x from remote references... | |
| > git --version # timeout=10 | |
| using GIT_SSH to set credentials SSH key for Gitlab | |
| > git ls-remote -h git@XXX # timeout=10 |
OlderNewer