file_name stringlengths 6 86 | file_path stringlengths 45 249 | content stringlengths 47 6.26M | file_size int64 47 6.26M | language stringclasses 1
value | extension stringclasses 1
value | repo_name stringclasses 767
values | repo_stars int64 8 14.4k | repo_forks int64 0 1.17k | repo_open_issues int64 0 788 | repo_created_at stringclasses 767
values | repo_pushed_at stringclasses 767
values |
|---|---|---|---|---|---|---|---|---|---|---|---|
Achievements.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/core/constants/Achievements.java | package net.cosmosmc.mcze.core.constants;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
public enum Achievements {
UNDEAD_SLAYER("Undead Slayer", "Kill a Zombie"),
BRAIN_EATER("Brain Eater", "Kill a Human"),
INFECTION("Infection", "Get Infected by a Zombie"),
FIR... | 485 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
KitAction.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/core/constants/KitAction.java | package net.cosmosmc.mcze.core.constants;
import org.bukkit.entity.Player;
import org.bukkit.event.player.PlayerInteractEvent;
import org.bukkit.inventory.ItemStack;
public interface KitAction {
void giveKit(Player player);
void interact(PlayerInteractEvent event, Player player, ItemStack itemStack);
} | 316 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
GameState.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/core/constants/GameState.java | package net.cosmosmc.mcze.core.constants;
public enum GameState {
WAITING, STARTING, RUNNING, NUKEROOM, RESETTING
} | 120 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
InfectReason.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/core/constants/InfectReason.java | package net.cosmosmc.mcze.core.constants;
public enum InfectReason {
ZOMBIE_BITE, JOINING_LATE, DEATH
} | 108 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
KitType.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/core/constants/KitType.java | package net.cosmosmc.mcze.core.constants;
import lombok.AllArgsConstructor;
import lombok.Getter;
import net.cosmosmc.mcze.core.kits.*;
@Getter
@AllArgsConstructor
public enum KitType {
MILKMAN("MilkMan", new MilkMan()),
LEAPER("Leaper", new Leaper()),
DECOY("Decoy", new Decoy()),
FORTIFY("Fortify",... | 479 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
Ztele.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/commands/Ztele.java | package net.cosmosmc.mcze.commands;
import lombok.AllArgsConstructor;
import net.cosmosmc.mcze.ZombieEscape;
import net.cosmosmc.mcze.core.GameArena;
import net.cosmosmc.mcze.core.constants.Messages;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
... | 1,107 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
Game.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/commands/Game.java | package net.cosmosmc.mcze.commands;
import net.cosmosmc.mcze.core.constants.Messages;
import net.cosmosmc.mcze.utils.GameFile;
import net.cosmosmc.mcze.utils.Levenshtein;
import net.cosmosmc.mcze.utils.Utils;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.block.Block;
import org.bukkit.comma... | 9,029 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
SetLobbySpawn.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/commands/SetLobbySpawn.java | package net.cosmosmc.mcze.commands;
import lombok.AllArgsConstructor;
import net.cosmosmc.mcze.ZombieEscape;
import net.cosmosmc.mcze.core.constants.Messages;
import net.cosmosmc.mcze.utils.Configuration;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSen... | 890 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
ProfileLoader.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/profiles/ProfileLoader.java | package net.cosmosmc.mcze.profiles;
import lombok.AllArgsConstructor;
import net.cosmosmc.mcze.ZombieEscape;
import net.cosmosmc.mcze.core.constants.Achievements;
import net.cosmosmc.mcze.core.constants.KitType;
import net.cosmosmc.mcze.api.events.ProfileLoadedEvent;
import org.apache.commons.lang.StringUtils;
import ... | 3,734 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
Profile.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/profiles/Profile.java | package net.cosmosmc.mcze.profiles;
import lombok.Getter;
import lombok.Setter;
import net.cosmosmc.mcze.core.constants.Achievements;
import net.cosmosmc.mcze.core.constants.KitType;
import org.bukkit.entity.Player;
import java.util.UUID;
@Getter
@Setter
public class Profile {
private UUID uuid;
private St... | 833 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
ProfileSaver.java | /FileExtraction/Java_unseen/sgtcaze_ZombieEscape/src/main/java/net/cosmosmc/mcze/profiles/ProfileSaver.java | package net.cosmosmc.mcze.profiles;
import lombok.AllArgsConstructor;
import net.cosmosmc.mcze.ZombieEscape;
import org.bukkit.scheduler.BukkitRunnable;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
@AllArgsConstructor
public class ProfileSaver extends BukkitRunnable {
... | 1,754 | Java | .java | sgtcaze/ZombieEscape | 28 | 29 | 0 | 2015-08-07T00:09:19Z | 2015-12-16T01:18:54Z |
Organization_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Organization_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.jcas.tcas.Annotation_Type;
/**
* Updated by JCasGen Thu Apr... | 1,028 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Location_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Location_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.jcas.tcas.Annotation_Type;
/**
* Updated by JCasGen Thu Apr... | 1,012 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Parse_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Parse_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.uima.cas.Feature;
impo... | 5,333 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Sentence_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Sentence_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.jcas.tcas.Annotation_Type;
/**
* Updated by JCasGen Thu Apr... | 1,012 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Time.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Time.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML sour... | 1,955 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Person.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Person.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML sour... | 1,967 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Location.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Location.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML sour... | 1,979 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Token_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Token_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.uima.cas.Feature;
impo... | 3,024 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Person_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Person_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.jcas.tcas.Annotation_Type;
/**
* Updated by JCasGen Thu Apr... | 1,004 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Money_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Money_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.jcas.tcas.Annotation_Type;
/**
* Updated by JCasGen Thu Apr... | 1,000 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Date.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Date.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML sour... | 1,955 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Time_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Time_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.jcas.tcas.Annotation_Type;
/**
* Updated by JCasGen Thu Apr... | 996 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Token.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Token.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML sour... | 3,561 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Money.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Money.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML sour... | 1,961 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Date_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Date_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.jcas.tcas.Annotation_Type;
/**
* Updated by JCasGen Thu Apr... | 996 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Percentage_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Percentage_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.jcas.tcas.Annotation_Type;
/**
* Updated by JCasGen Thu Apr... | 1,020 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Chunk.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Chunk.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML sour... | 2,797 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Chunk_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Chunk_Type.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.uima.cas.Feature;
impo... | 2,118 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Parse.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Parse.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.cas.FSArray;
import org.apache.uima.jcas.cas.TOP;
import org.apache.uima.jcas.tcas.Anno... | 5,955 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Organization.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Organization.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML sour... | 2,003 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Percentage.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Percentage.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML sour... | 1,991 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Sentence.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/opennlp/uima/Sentence.java |
/* First created by JCasGen Thu Nov 23 14:25:03 CET 2017 */
package opennlp.uima;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML sour... | 1,979 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Event.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Event.java |
/* First created by JCasGen Thu Jan 04 14:37:05 CET 2018 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29... | 10,622 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Dct_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Dct_Type.java |
/* First created by JCasGen Thu Nov 23 16:42:40 CET 2017 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.... | 4,243 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
IntervalCandidateSentence.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/IntervalCandidateSentence.java |
/* First created by JCasGen Thu Jan 04 14:37:05 CET 2018 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML source: /Users/gwiedemann/P... | 2,056 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Sentence_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Sentence_Type.java |
/* First created by JCasGen Thu Nov 23 16:42:40 CET 2017 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.... | 3,300 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Event_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Event_Type.java |
/* First created by JCasGen Thu Jan 04 14:37:05 CET 2018 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.... | 11,660 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
SourceDocInfo.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/SourceDocInfo.java |
/* First created by JCasGen Thu Nov 23 16:42:40 CET 2017 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29... | 3,896 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Token_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Token_Type.java |
/* First created by JCasGen Thu Nov 23 16:42:40 CET 2017 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.... | 5,247 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Timex3Interval.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Timex3Interval.java |
/* First created by JCasGen Thu Jan 04 14:37:05 CET 2018 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML source: /Users/gwiedemann/P... | 8,795 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
IntervalCandidateSentence_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/IntervalCandidateSentence_Type.java |
/* First created by JCasGen Thu Jan 04 14:37:05 CET 2018 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* @g... | 1,072 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
SourceDocInfo_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/SourceDocInfo_Type.java |
/* First created by JCasGen Thu Nov 23 16:42:40 CET 2017 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.... | 3,325 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
GoldEvent.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/GoldEvent.java |
/* First created by JCasGen Thu Jan 04 14:37:05 CET 2018 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* XML source: /Users/gwiedemann/P... | 1,957 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Token.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Token.java |
/* First created by JCasGen Thu Nov 23 16:42:40 CET 2017 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29... | 5,347 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Timex3.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Timex3.java |
/* First created by JCasGen Thu Nov 23 16:42:40 CET 2017 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29... | 13,628 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
GoldEvent_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/GoldEvent_Type.java |
/* First created by JCasGen Thu Jan 04 14:37:05 CET 2018 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
* @g... | 1,005 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Dct.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Dct.java |
/* First created by JCasGen Thu Nov 23 16:42:40 CET 2017 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29... | 4,486 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Timex3_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Timex3_Type.java |
/* First created by JCasGen Thu Nov 23 16:42:40 CET 2017 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.... | 15,220 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Sentence.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Sentence.java |
/* First created by JCasGen Thu Nov 23 16:42:40 CET 2017 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29... | 3,797 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Timex3Interval_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/de/unihd/dbs/uima/types/heideltime/Timex3Interval_Type.java |
/* First created by JCasGen Thu Jan 04 14:37:05 CET 2018 */
package de.unihd.dbs.uima.types.heideltime;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.... | 8,995 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
NewsleakElasticsearchReader.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/reader/NewsleakElasticsearchReader.java | package uhh_lt.newsleak.reader;
import java.io.IOException;
import java.util.ArrayList;
import org.apache.uima.UimaContext;
import org.apache.uima.cas.CAS;
import org.apache.uima.cas.CASException;
import org.apache.uima.collection.CollectionException;
import org.apache.uima.fit.component.CasCollectionReader_ImplBase;
... | 5,676 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
NewsleakCsvStreamReader.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/reader/NewsleakCsvStreamReader.java | package uhh_lt.newsleak.reader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.Reader;
import java.util.Iterator;
import org.apache.commons.csv.CSVFormat;
import org.apache.commons.csv.CSVRecord;
import org.apache.uima.UimaContext;
import org.apache.uima.cas.CAS;
import org... | 5,423 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
HooverElasticsearchReader.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/reader/HooverElasticsearchReader.java | package uhh_lt.newsleak.reader;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.uima.UimaContext;
import org.apach... | 13,433 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
NewsleakReader.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/reader/NewsleakReader.java | package uhh_lt.newsleak.reader;
import java.util.Scanner;
import org.apache.uima.fit.component.CasCollectionReader_ImplBase;
import org.apache.uima.fit.descriptor.ConfigurationParameter;
import org.apache.uima.util.Level;
import org.apache.uima.util.Logger;
/**
* This abstract reader provides basic functionality fo... | 2,720 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
NewsleakPreprocessor.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/preprocessing/NewsleakPreprocessor.java | package uhh_lt.newsleak.preprocessing;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
import org.apache.commons... | 9,138 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
CreateCollection.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/preprocessing/CreateCollection.java | package uhh_lt.newsleak.preprocessing;
/**
* Main class to create a new newsleak collection. It runs the information
* extraction pipeline which writes to a relational database. The second step
* then indexes retrieved entities and metadata from the database for fast
* restrieval and aggregation to the system's fu... | 1,204 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
NewsleakStatusCallbackListener.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/preprocessing/NewsleakStatusCallbackListener.java | package uhh_lt.newsleak.preprocessing;
import org.apache.uima.cas.CAS;
import org.apache.uima.collection.EntityProcessStatus;
import org.apache.uima.collection.StatusCallbackListener;
import org.apache.uima.util.Level;
import org.apache.uima.util.Logger;
/**
* The listener interface for receiving newsleakStatusCallb... | 3,100 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Postgres2ElasticsearchIndexer.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/preprocessing/Postgres2ElasticsearchIndexer.java | package uhh_lt.newsleak.preprocessing;
import java.io.IOException;
import java.net.InetAddress;
import java.sql.Date;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import... | 22,176 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
InformationExtraction2Postgres.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/preprocessing/InformationExtraction2Postgres.java | package uhh_lt.newsleak.preprocessing;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.util.Arra... | 17,639 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
PostgresDbWriter.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/writer/PostgresDbWriter.java | package uhh_lt.newsleak.writer;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import org.apache.uima.UimaContext;
import org.apache.uima.analysis_engine.AnalysisEngineProcessException;
import org.apache.uima.fit.component.JCa... | 7,448 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
TextLineWriter.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/writer/TextLineWriter.java | package uhh_lt.newsleak.writer;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import org.apache.uima.UimaContext;
import org.apache.uima.analysis_engine.AnalysisEngineProcessException;
import org.apache.uima.fit.component.JCasAnnotator_ImplBase;
import org.ap... | 3,773 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
NewsleakTimeFormatter.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/writer/NewsleakTimeFormatter.java | package uhh_lt.newsleak.writer;
import de.unihd.dbs.uima.types.heideltime.Timex3;
import de.unihd.dbs.uima.types.heideltime.Timex3Interval;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
imp... | 7,183 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
ElasticsearchDocumentWriter.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/writer/ElasticsearchDocumentWriter.java | package uhh_lt.newsleak.writer;
import java.io.IOException;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.uima.UimaContext;
import org... | 11,151 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
DictTerm.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/types/DictTerm.java |
/* First created by JCasGen Thu Mar 22 16:30:30 CET 2018 */
package uhh_lt.newsleak.types;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.cas.StringList;
import org.apache.uima.jcas.tcas.Annotation;
/** Dictionary ... | 4,049 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Metadata_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/types/Metadata_Type.java | package uhh_lt.newsleak.types;
/* First created by JCasGen Wed Nov 22 15:48:08 CET 2017 */
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.uima.cas.Feat... | 11,960 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
DictTerm_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/types/DictTerm_Type.java |
/* First created by JCasGen Thu Mar 22 16:30:30 CET 2018 */
package uhh_lt.newsleak.types;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.uima.cas.Feat... | 3,204 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Metadata.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/types/Metadata.java | package uhh_lt.newsleak.types;
/* First created by JCasGen Wed Nov 22 15:48:08 CET 2017 */
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.cas.StringArray;
import org.apache.uima.jcas.tcas.DocumentAnnotation;
/**
*... | 12,028 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Paragraph.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/types/Paragraph.java |
/* First created by JCasGen Wed Apr 04 11:24:03 CEST 2018 */
package uhh_lt.newsleak.types;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.jcas.cas.TOP_Type;
import org.apache.uima.jcas.tcas.Annotation;
/**
* Updated by JCasGen Thu Apr 04 18:38:29 CEST 2019
... | 4,038 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
TimeX.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/types/TimeX.java | package uhh_lt.newsleak.types;
public class TimeX {
int beginOffset;
int endOffset;
String timeX;
String timeXType;
String timexValue;
public TimeX(int aBeginOffset, int aEndOffset, String aTimeX, String aTimexType, String aTimexValue) {
this.beginOffset = aBeginOffset;
this.endOffset = aEndOffset;
this.t... | 404 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
Paragraph_Type.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/types/Paragraph_Type.java |
/* First created by JCasGen Wed Apr 04 11:24:03 CEST 2018 */
package uhh_lt.newsleak.types;
import org.apache.uima.jcas.JCas;
import org.apache.uima.jcas.JCasRegistry;
import org.apache.uima.cas.impl.TypeImpl;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.impl.FeatureImpl;
import org.apache.uima.cas.Fea... | 3,292 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
NerMicroservice.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/annotator/NerMicroservice.java | package uhh_lt.newsleak.annotator;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Locale;
import java.util.Map;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache... | 8,843 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
SegmenterICU.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/annotator/SegmenterICU.java | package uhh_lt.newsleak.annotator;
import java.text.BreakIterator;
import java.util.Collection;
import java.util.HashSet;
import java.util.Locale;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.commons.lang3.StringUtils;
import org.apache.uima.UimaContext;
impo... | 7,896 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
LanguageDetector.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/annotator/LanguageDetector.java | package uhh_lt.newsleak.annotator;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.stream.Stream;
import org.apache... | 5,579 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
DictionaryExtractor.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/annotator/DictionaryExtractor.java | package uhh_lt.newsleak.annotator;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.uima.UimaContext;
import org.apache.uima.analysis_engine.AnalysisEngineProcessException;
import org.apache.uima.fit.co... | 9,150 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
SentenceCleaner.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/annotator/SentenceCleaner.java | package uhh_lt.newsleak.annotator;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Locale;
import org.apache.uima.UimaContext;
import org.apache.uima.analysis_engine.AnalysisEngineProcessException;
import org.apache.ui... | 6,244 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
HeidelTimeOpenNLP.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/annotator/HeidelTimeOpenNLP.java | package uhh_lt.newsleak.annotator;
/* Based on: https://github.com/HeidelTime/heideltime/blob/master/src/de/unihd/dbs/uima/annotator/heideltime/HeidelTime.java
*
* HeidelTime.java
*
* Copyright (c) 2011, Database Research Group, Institute of Computer Science, Heidelberg University.
* All rights reserved. This ... | 109,969 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
KeytermExtractor.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/annotator/KeytermExtractor.java | package uhh_lt.newsleak.annotator;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.apache.uima.UimaContext;
import org.apache.uima.analysis_engine.AnalysisEngineProcessException;
import org.apache.ui... | 4,951 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
DictionaryResource.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/resources/DictionaryResource.java | package uhh_lt.newsleak.resources;
import java.io.File;
import java.io.IOException;
import java.text.BreakIterator;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.regex.Pattern;
import org.apache.commons.io.FileUtils;
import... | 9,025 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
PostgresResource.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/resources/PostgresResource.java | package uhh_lt.newsleak.resources;
import java.io.File;
import java.io.IOException;
import java.sql.Connection;
import java.sql.Date;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Map;
import org.a... | 13,258 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
HooverResource.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/resources/HooverResource.java | package uhh_lt.newsleak.resources;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Map;
import org.apache.uima.fit.component.Resource_ImplBase;
import org.apache.uima.fit.descriptor.ConfigurationParameter;
import org.apache.uima.resource.ResourceInitializationException;
import org.apache.uima... | 4,226 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
ElasticsearchResource.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/resources/ElasticsearchResource.java | package uhh_lt.newsleak.resources;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.net.InetAddress;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
impor... | 8,723 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
MetadataResource.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/resources/MetadataResource.java | package uhh_lt.newsleak.resources;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.commons.csv.CSVFormat;
import org.apache.commons.csv... | 3,123 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
TextLineWriterResource.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/resources/TextLineWriterResource.java | package uhh_lt.newsleak.resources;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import org.apache.uima.fit.component.Resource_ImplBase;
import org.apache.uima.fit.descriptor.ConfigurationParameter;
/**
* Provides shared functionality and data for the @see
* uhh_lt.newsleak.writer.Text... | 1,141 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
LanguageDetectorResource.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/resources/LanguageDetectorResource.java | package uhh_lt.newsleak.resources;
import java.io.File;
import java.util.HashMap;
import java.util.Map;
import org.apache.uima.fit.component.Resource_ImplBase;
import org.apache.uima.fit.descriptor.ConfigurationParameter;
import org.apache.uima.resource.ResourceInitializationException;
import org.apache.uima.resource... | 2,771 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
AtomicCounter.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/util/AtomicCounter.java | package uhh_lt.newsleak.util;
import java.util.concurrent.atomic.AtomicInteger;
/**
* AtomicCounter to concurrently count up indexes.
*/
public class AtomicCounter {
/** A concurrent integer. */
private AtomicInteger c = new AtomicInteger(0);
/**
* Increment.
*/
public void increment() {
c.incrementAndG... | 517 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
MapUtil.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/util/MapUtil.java | package uhh_lt.newsleak.util;
import java.util.Collections;
import java.util.Comparator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
/**
* Allows for sorting of maps by its contained values in increasing and
* decreasing order.
*/
public class MapUtil {... | 1,767 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
ResultSetIterable.java | /FileExtraction/Java_unseen/uhh-lt_newsleak/preprocessing/src/main/java/uhh_lt/newsleak/util/ResultSetIterable.java | package uhh_lt.newsleak.util;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Iterator;
import java.util.function.Function;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;
/**
* The Class ResultSetIterable provides stream processing of result sets.
*
* @param <T> th... | 1,701 | Java | .java | uhh-lt/newsleak | 52 | 15 | 16 | 2016-06-24T11:44:24Z | 2022-12-03T06:22:01Z |
MPDExceptionTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/MPDExceptionTest.java | package org.bff.javampd;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import org.junit.jupiter.api.Test;
class MPDExceptionTest {
@Test
void testDefaultConstructorCommand() {
MPDException exception = new MPDException();
assertNull... | 1,767 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
MPDSystemClockTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/MPDSystemClockTest.java | package org.bff.javampd;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.time.LocalDateTime;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class MPDSystemClockTest {
private Clock clock;
@BeforeEach... | 753 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
MPDSongConverterTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/song/MPDSongConverterTest.java | package org.bff.javampd.song;
import static org.junit.jupiter.api.Assertions.*;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
class MPDSongConverterTest {
private Son... | 10,711 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
MPDSongDatabaseTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/song/MPDSongDatabaseTest.java | package org.bff.javampd.song;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.Mockito.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.bff.javampd.album.MPDAlbum;
import org.b... | 3,221 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
MPDSongTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/song/MPDSongTest.java | package org.bff.javampd.song;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.is;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import nl.jqno.equalsverifier.... | 2,249 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
MPDSongSearcherTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/song/MPDSongSearcherTest.java | package org.bff.javampd.song;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo;
import static org.hamcrest.Matchers.is;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.mockito.Mockit... | 7,699 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
SearchCriteriaTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/song/SearchCriteriaTest.java | package org.bff.javampd.song;
import nl.jqno.equalsverifier.EqualsVerifier;
import org.junit.jupiter.api.Test;
class SearchCriteriaTest {
@Test
void testEqualsAndHash() {
EqualsVerifier.simple().forClass(SearchCriteria.class).verify();
}
}
| 252 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
SongProcessorTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/song/SongProcessorTest.java | package org.bff.javampd.song;
import static org.bff.javampd.song.SongProcessor.ALBUM_ARTIST;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
class SongProcessorTest {
... | 682 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
MonitorPropertiesTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/monitor/MonitorPropertiesTest.java | package org.bff.javampd.monitor;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class MonitorPropertiesTest {
private MonitorProperties monitorProperties;
@BeforeEach
void setUp() {
monitorProperties = new MonitorPro... | 1,154 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
MPDVolumeMonitorTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/monitor/MPDVolumeMonitorTest.java | package org.bff.javampd.monitor;
import static org.junit.jupiter.api.Assertions.*;
import org.bff.javampd.player.VolumeChangeListener;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class MPDVolumeMonitorTest {
private VolumeMonitor volumeMonitor;
@BeforeEach
void setUp() {
v... | 2,366 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
MPDPlayerMonitorTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/monitor/MPDPlayerMonitorTest.java | package org.bff.javampd.monitor;
import static org.junit.jupiter.api.Assertions.*;
import org.bff.javampd.player.PlayerBasicChangeEvent;
import org.bff.javampd.player.PlayerBasicChangeListener;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class MPDPlayerMonitorTest {
private PlayerM... | 5,344 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
StandAloneMonitorThreadTest.java | /FileExtraction/Java_unseen/finnyb_javampd/src/test/java/org/bff/javampd/monitor/StandAloneMonitorThreadTest.java | package org.bff.javampd.monitor;
import static org.awaitility.Awaitility.await;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.mockito.Mockito.when;
import java.util.ArrayList;
import java.util.List;
import org.bff.javampd.MPD... | 4,622 | Java | .java | finnyb/javampd | 35 | 21 | 13 | 2013-11-21T15:24:25Z | 2024-04-27T11:03:48Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.