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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
Test.javapp | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/Test.javapp | package com.test;
enable statements.exit;
from lombok import RequiredArgsConstructor, ToString, EqualsAndHashCode;
from java.util import List, ArrayList,
Set, HashSet,
Map, HashMap,
Collection, Collections,
Objects,
Date,
stream.Collectors;
public class Test {
public static:
... | 2,258 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
Main.java | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/src/jpp/Main.java | package jpp;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
import java.util.Collection;
import java.util.EnumSet;
import java.util.List;
import java.util.Map;
import java.util.NoSuchElementException;
import java.util.Scanner;
import java.util.funct... | 9,912 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
Names.java | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/src/jpp/parser/Names.java | package jpp.parser;
import java.util.HashMap;
import jtree.nodes.Name;
import lombok.experimental.UtilityClass;
@UtilityClass
public class Names {
private static final HashMap<String,Name> normalNameMap = new HashMap<>();
public static final Name // @formatter:off
of = Name("of"),
... | 1,605 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
JavaPlusPlusParser.java | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/src/jpp/parser/JavaPlusPlusParser.java | package jpp.parser;
import static jpp.parser.JavaPlusPlusParser.Feature.*;
import static jpp.parser.Names.Name;
import static jpp.parser.QualNames.*;
import static jtree.parser.JavaTokenType.*;
import static jtree.util.Utils.emptyList;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collecti... | 163,401 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
JavaPlusPlusTokenizer.java | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/src/jpp/parser/JavaPlusPlusTokenizer.java | package jpp.parser;
import static java.lang.Character.*;
import static jpp.parser.JavaPlusPlusParser.Feature.*;
import static jtree.parser.JavaTokenType.*;
import java.util.ArrayList;
import java.util.EnumSet;
import java.util.NoSuchElementException;
import java.util.Stack;
import java.util.function.Consumer;
import ... | 58,378 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
QualNames.java | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/src/jpp/parser/QualNames.java | package jpp.parser;
import java.util.HashMap;
import jtree.nodes.QualifiedName;
import lombok.experimental.UtilityClass;
@UtilityClass
public class QualNames {
private static final HashMap<String,QualifiedName> qualNameMap = new HashMap<>();
public static final QualifiedName // @formatter:off
java_util_O... | 1,340 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
JPPModifier.java | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/src/jpp/nodes/JPPModifier.java | package jpp.nodes;
import java.util.Arrays;
import java.util.Map;
import java.util.stream.Collectors;
import jtree.nodes.Modifier;
import lombok.Getter;
import lombok.experimental.Accessors;
public class JPPModifier extends Modifier {
public static enum Modifiers implements CharSequence {
PUBLIC,
PRIVATE,
PRO... | 1,422 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
EnableDisableStmt.java | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/src/jpp/nodes/EnableDisableStmt.java | package jpp.nodes;
import static jtree.util.Utils.*;
import java.util.List;
import java.util.function.Consumer;
import jtree.nodes.INode;
import jtree.nodes.Node;
import jtree.nodes.QualifiedName;
import jtree.nodes.REPLEntry;
import jtree.nodes.TreeVisitor;
import lombok.EqualsAndHashCode;
import lombok.Getter;
imp... | 2,187 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
DefaultFormalParameter.java | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/src/jpp/nodes/DefaultFormalParameter.java | package jpp.nodes;
import java.util.List;
import java.util.function.Consumer;
import jtree.nodes.*;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NonNull;
import lombok.Setter;
@EqualsAndHashCode(callSuper = true)
@Getter @Setter
public class DefaultFormalParameter extends FormalParameter {
p... | 2,844 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
NonVanillaModifierRemover.java | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/src/jpp/util/NonVanillaModifierRemover.java | package jpp.util;
import java.util.function.Consumer;
import jtree.nodes.AbstractTreeVisitor;
import jtree.nodes.Modifier;
import jtree.nodes.Node;
public class NonVanillaModifierRemover extends AbstractTreeVisitor {
@Override
public boolean visitNode(Node node, Node parent, Consumer<Node> replacer) {
return tr... | 562 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
Tester.java | /FileExtraction/Java_unseen/raptor494_JavaPlusPlus/Java++Parser/src/jpp/util/Tester.java | package jpp.util;
import java.util.Arrays;
import java.util.Collection;
import java.util.EnumSet;
import java.util.List;
import java.util.stream.Collectors;
import jpp.nodes.EnableDisableStmt;
import jpp.nodes.EnableDisableStmt.FeatureId;
import jpp.parser.JavaPlusPlusParser;
import jpp.parser.JavaPlusPlusParser.Feat... | 5,169 | Java | .java | raptor494/JavaPlusPlus | 10 | 0 | 0 | 2019-07-12T21:47:58Z | 2019-08-13T18:38:44Z |
IUserDao.java | /FileExtraction/Java_unseen/anselleeyy_SSM-Login/src/main/java/com/ansel/dao/IUserDao.java | package com.ansel.dao;
import com.ansel.bean.User;
public interface IUserDao {
int insert(User record);
User selectByPrimaryKey(Integer id);
User checkByUserName(String username);
} | 193 | Java | .java | anselleeyy/SSM-Login | 16 | 3 | 0 | 2017-10-16T10:44:10Z | 2018-02-06T08:05:20Z |
User.java | /FileExtraction/Java_unseen/anselleeyy_SSM-Login/src/main/java/com/ansel/bean/User.java | package com.ansel.bean;
import java.io.Serializable;
import javax.validation.constraints.Email;
import javax.validation.constraints.Pattern;
import javax.validation.constraints.Size;
public class User implements Serializable {
/**
*
*/
private static final long serialVersionUID = 6551106323558516531L;
@Si... | 1,279 | Java | .java | anselleeyy/SSM-Login | 16 | 3 | 0 | 2017-10-16T10:44:10Z | 2018-02-06T08:05:20Z |
Login.java | /FileExtraction/Java_unseen/anselleeyy_SSM-Login/src/main/java/com/ansel/controller/Login.java | package com.ansel.controller;
import java.io.IOException;
import java.io.PrintWriter;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.spring... | 1,757 | Java | .java | anselleeyy/SSM-Login | 16 | 3 | 0 | 2017-10-16T10:44:10Z | 2018-02-06T08:05:20Z |
Register.java | /FileExtraction/Java_unseen/anselleeyy_SSM-Login/src/main/java/com/ansel/controller/Register.java | package com.ansel.controller;
import java.io.IOException;
import java.io.PrintWriter;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.validation.Valid;
import org.springframework.stereotype.Controller;
import org.springframew... | 1,893 | Java | .java | anselleeyy/SSM-Login | 16 | 3 | 0 | 2017-10-16T10:44:10Z | 2018-02-06T08:05:20Z |
IUserService.java | /FileExtraction/Java_unseen/anselleeyy_SSM-Login/src/main/java/com/ansel/service/IUserService.java | package com.ansel.service;
import com.ansel.bean.User;
public interface IUserService {
public User checkUser(String username);
public int insertNewUser(User user);
}
| 177 | Java | .java | anselleeyy/SSM-Login | 16 | 3 | 0 | 2017-10-16T10:44:10Z | 2018-02-06T08:05:20Z |
UserServiceImpl.java | /FileExtraction/Java_unseen/anselleeyy_SSM-Login/src/main/java/com/ansel/service/impl/UserServiceImpl.java | package com.ansel.service.impl;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import com.ansel.bean.User;
import com.ansel.dao.IUserDao;
import com.ansel.service.IUserService;
@Service("userService")
public class UserServiceImpl implements IUserService {
@Resource
private IUserD... | 606 | Java | .java | anselleeyy/SSM-Login | 16 | 3 | 0 | 2017-10-16T10:44:10Z | 2018-02-06T08:05:20Z |
CsvDictionaryTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/utils/CsvDictionaryTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,261 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
NumberInRangeMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/NumberInRangeMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,389 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
LevenshteinMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/LevenshteinMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,197 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
NumberMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/NumberMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,405 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
AuthorCommonTokensMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/AuthorCommonTokensMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,559 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CapitalLettersMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/CapitalLettersMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,338 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
ExactMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/ExactMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,288 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
IntegerMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/IntegerMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,168 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
AlwaysMatchingMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/AlwaysMatchingMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,488 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CommonTokensMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/CommonTokensMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 5,690 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
InitialSubstringMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/InitialSubstringMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,654 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
TokeniserMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/TokeniserMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 4,860 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
NeverMatchingMatcherTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/matchers/NeverMatchingMatcherTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,511 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
MatchReporterTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/reporters/MatchReporterTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2015 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 3,551 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DedupStepDefs.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/core/DedupStepDefs.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 5,908 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
MatchConfigurationTestingStepdefs.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/core/MatchConfigurationTestingStepdefs.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 5,193 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
HighLevelTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/core/HighLevelTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 905 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
JavaScriptEnvTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/core/script/JavaScriptEnvTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,743 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
LuceneUtilsTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/test/java/org/kew/rmf/core/lucene/LuceneUtilsTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 13,348 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Version.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/Version.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,724 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CsvOrderedDictionary.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/utils/CsvOrderedDictionary.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,017 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CsvDictionary.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/utils/CsvDictionary.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,495 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
IntegerMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/IntegerMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,495 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
EmptyStringMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/EmptyStringMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,296 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
MatchException.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/MatchException.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,074 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
NumberMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/NumberMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,093 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
OcrCanonicaliserMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/OcrCanonicaliserMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,825 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
ExactMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/ExactMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,550 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
NeverMatchingMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/NeverMatchingMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,201 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
NGramMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/NGramMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,476 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CompositeAnyMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/CompositeAnyMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,184 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CommonTokensMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/CommonTokensMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 4,991 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
LevenshteinMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/LevenshteinMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 3,742 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
AuthorAbbreviationsMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/AuthorAbbreviationsMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 13,663 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
InitialSubstringMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/InitialSubstringMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,921 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
TokensInSequenceMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/TokensInSequenceMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 3,640 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
AuthorCommonTokensMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/AuthorCommonTokensMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,126 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
AlwaysMatchingMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/AlwaysMatchingMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,197 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Matcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/Matcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,296 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CompositeAllMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/CompositeAllMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,176 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CapitalLettersMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/CapitalLettersMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,659 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
NumberInRangeMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/NumberInRangeMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,646 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
TokeniserMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/TokeniserMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,236 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CompositeMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/matchers/CompositeMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,029 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
LuceneReporter.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/reporters/LuceneReporter.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,556 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
MatchReporter.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/reporters/MatchReporter.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,262 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Reporter.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/reporters/Reporter.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 6,670 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DedupReporter.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/reporters/DedupReporter.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,035 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Piper.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/reporters/Piper.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,609 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DarwinCoreArchiveExtensionReporter.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/reporters/DarwinCoreArchiveExtensionReporter.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 3,023 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DedupReporterMultiline.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/reporters/DedupReporterMultiline.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,008 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DataHandler.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/DataHandler.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,217 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DatabaseRecordSource.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/DatabaseRecordSource.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,057 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CoreApp.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/CoreApp.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 3,188 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DataLoader.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/DataLoader.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,030 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
JavaScriptEnv.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/script/JavaScriptEnv.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,984 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
LuceneDataLoader.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/lucene/LuceneDataLoader.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 20,749 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
LuceneUtils.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/lucene/LuceneUtils.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 12,255 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
LuceneHandler.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/lucene/LuceneHandler.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 5,261 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
LuceneMatcher.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/lucene/LuceneMatcher.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 11,860 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DocList.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/lucene/DocList.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 3,782 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
LuceneDeduplicator.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/lucene/LuceneDeduplicator.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 7,567 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
MatchConfiguration.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/configuration/MatchConfiguration.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,657 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Configuration.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/configuration/Configuration.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 9,630 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DeduplicationConfiguration.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/configuration/DeduplicationConfiguration.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,538 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Property.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/configuration/Property.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 6,372 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
TooManyMatchesException.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/exception/TooManyMatchesException.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,116 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DataLoadException.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/exception/DataLoadException.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,092 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
MatchExecutionException.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/core/exception/MatchExecutionException.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,116 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
WeightedTransformer.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/transformers/WeightedTransformer.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 1,862 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
TokenExtractorTransformer.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/rmf-core/src/main/java/org/kew/rmf/transformers/TokenExtractorTransformer.java | /*
* Copyright © 2012, 2013, 2014 Royal Botanic Gardens, Kew.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modif... | 2,163 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
RunCukesTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/test/java/org/kew/rmf/matchconf/RunCukesTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 983 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
FileContentsChecker.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/test/java/org/kew/rmf/matchconf/FileContentsChecker.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,130 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CreateSimpleMatchConfig.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/test/java/org/kew/rmf/matchconf/CreateSimpleMatchConfig.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 8,730 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
CreateSimpleDedupConfig.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/test/java/org/kew/rmf/matchconf/CreateSimpleDedupConfig.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 7,584 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
RunSimpleDedupConfig.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/test/java/org/kew/rmf/matchconf/RunSimpleDedupConfig.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 5,125 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
DedupConfigTest.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/test/java/org/kew/rmf/matchconf/DedupConfigTest.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 9,338 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
WiredTransformer.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/main/java/org/kew/rmf/matchconf/WiredTransformer.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,577 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
ConfigurationEngine.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/main/java/org/kew/rmf/matchconf/ConfigurationEngine.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 14,142 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Dictionary.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/main/java/org/kew/rmf/matchconf/Dictionary.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 3,010 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Reporter.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/main/java/org/kew/rmf/matchconf/Reporter.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,474 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Bot.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/main/java/org/kew/rmf/matchconf/Bot.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 2,077 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Configuration.java | /FileExtraction/Java_unseen/RBGKew_Reconciliation-and-Matching-Framework/matchconf/src/main/java/org/kew/rmf/matchconf/Configuration.java | /*
* Reconciliation and Matching Framework
* Copyright © 2014 Royal Botanic Gardens, Kew
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your ... | 12,048 | Java | .java | RBGKew/Reconciliation-and-Matching-Framework | 28 | 3 | 9 | 2014-09-24T13:39:19Z | 2017-04-18T13:37:52Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.