Source
stringclasses
1 value
Date
int32
2.01k
2.01k
Text
stringlengths
3
15.9M
Token_count
int32
1
2.44M
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
197
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
293
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
287
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
212
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
307
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
209
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
278
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
210
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
313
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
196
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
253
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
212
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
209
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
485
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
1,003
github-java-corpus
2,012
package org.pegdown; import org.parboiled.common.StringUtils; import java.util.Random; /** * Static class holding simple HTML encoding logic. */ public class FastEncoder { private FastEncoder() {} public static String encode(String string) { if (StringUtils.isNotEmpty(string)) { for (...
546
github-java-corpus
2,012
package org.pegdown; import org.parboiled.common.StringUtils; import org.pegdown.ast.*; import static org.pegdown.FastEncoder.*; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.util.ArrayList; import java.util.List; /** * A LinkRenderer is responsible for turning an AST node re...
571
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
2,797
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
911
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
217
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
707
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
322
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
293
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
415
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
683
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
431
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
557
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
536
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
981
github-java-corpus
2,012
/* * Copyright (C) 2010-2011 Mathias Doenitz * * Based on peg-markdown (C) 2008-2010 John MacFarlane * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/license...
779
github-java-corpus
2,012
/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * th...
737
github-java-corpus
2,012
/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * th...
795
github-java-corpus
2,012
/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * th...
604
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.graph; import java.awt.BasicStroke; import java.awt.Color; import org.jfree.chart.ChartFactory; import org.jfree.chart.JFreeChart; import org.jfree.chart.axis.CategoryAxis; import org.jfree.chart.axis.CategoryLabelPositions; import org.jfree.chart.axis.NumberAxis; impo...
680
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.util; import org.jenkinsci.plugins.valgrind.ValgrindResult; public class ValgrindSummary { /** * Creates an HTML valgrind summary. * * @param result * the valgrind result object * @return the HTML fragment representing the valgrind report summar...
239
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.util; import hudson.FilePath; public abstract class ValgrindUtil { public static String trimToNull( String s ) { if ( s == null ) return null; s = s.trim(); if ( s.isEmpty() ) return null; return s; } public static String join( Fi...
157
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.util; import java.io.IOException; import hudson.model.AbstractBuild; import hudson.model.Action; import hudson.model.Actionable; import hudson.model.HealthReportingAction; import hudson.model.Result; import org.kohsuke.stapler.StaplerProxy; import org.kohsuke.stapler...
288
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.util; import hudson.model.AbstractBuild; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.StringWriter; import java.util.HashMap; import java.util.List; import java.util.ListIterator;...
1,021
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.util; import java.io.IOException; import org.jenkinsci.plugins.valgrind.ValgrindBuildAction; import org.kohsuke.stapler.StaplerRequest; import org.kohsuke.stapler.StaplerResponse; import hudson.model.AbstractBuild; import hudson.model.AbstractProject; import hudson....
388
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.util; import org.jenkinsci.plugins.valgrind.config.ValgrindPublisherConfig; import org.jenkinsci.plugins.valgrind.model.ValgrindReport; import hudson.model.BuildListener; import hudson.model.Result; import hudson.model.AbstractBuild; public class ValgrindEvaluator {...
424
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.util; import hudson.model.BuildListener; public abstract class ValgrindLogger { public static void log(BuildListener listener, final String message) { listener.getLogger().println("[Valgrind] " + message); } }
59
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind; import hudson.Extension; import hudson.FilePath; import hudson.Launcher; import hudson.model.BuildListener; import hudson.model.AbstractBuild; import hudson.model.AbstractProject; import hudson.tasks.BuildStepDescriptor; import hudson.tasks.Builder; import java.io.ByteArrayOutp...
1,204
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind; import org.jenkinsci.plugins.valgrind.util.AbstractValgrindProjectAction; import hudson.model.Result; import hudson.model.AbstractBuild; import hudson.model.AbstractProject; public class ValgrindProjectAction extends AbstractValgrindProjectAction { protected Valgr...
474
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.model; import java.io.Serializable; import org.jenkinsci.plugins.valgrind.util.ValgrindUtil; public class ValgrindStacktraceFrame implements Serializable { private static final long serialVersionUID = -2774574337822108808L; private String objectName; private S...
536
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.model; import java.io.File; import java.io.Serializable; import org.jenkinsci.plugins.valgrind.util.ValgrindUtil; public class ValgrindError implements Serializable { private static final long serialVersionUID = 6470943829358084900L; private String executable; ...
460
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.model; public enum ValgrindErrorKind { InvalidRead, InvalidWrite, Leak_DefinitelyLost, Leak_PossiblyLost, Leak_StillReachable, Leak_IndirectlyLost, UninitCondition, UninitValue, }
71
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.model; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import org.apache.commons.lang.StringUtils; public class ValgrindStacktrace implements Serializable { private static final long serialVersionUID = 3165729611300651095L; privat...
384
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.model; import java.io.Serializable; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; public class ValgrindReport implements Serializable { private static final long serialVersionUID = -9036045639715893780L; privat...
1,818
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.model; public class ValgrindExaminedExecutable { private String name; private ValgrindReport report; public ValgrindExaminedExecutable( String name, ValgrindReport report ) { this.name = name; this.report = report; } public String getName() { retu...
369
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind; import hudson.model.HealthReport; import hudson.model.AbstractBuild; import hudson.util.ChartUtil; import hudson.util.DataSetBuilder; import hudson.util.Graph; import java.io.IOException; import java.util.Calendar; import org.jenkinsci.plugins.valgrind.config.Valgri...
748
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind; import org.jenkinsci.plugins.valgrind.model.ValgrindError; import org.jenkinsci.plugins.valgrind.model.ValgrindStacktraceFrame; import org.jenkinsci.plugins.valgrind.util.ValgrindSourceFile; import hudson.model.AbstractBuild; public class ValgrindDetail { private ...
282
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind; import hudson.Extension; import hudson.FilePath; import hudson.Launcher; import hudson.matrix.MatrixProject; import hudson.model.Action; import hudson.model.BuildListener; import hudson.model.Result; import hudson.model.AbstractBuild; import hudson.model.AbstractProjec...
1,788
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind; import hudson.model.AbstractBuild; import java.io.IOException; import java.io.Serializable; import java.util.Map; import org.jenkinsci.plugins.valgrind.model.ValgrindError; import org.jenkinsci.plugins.valgrind.model.ValgrindReport; import org.jenkinsci.plugins.valgr...
595
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.parser; import java.io.File; import java.io.IOException; import java.io.Serializable; import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; import org.jenkinsci.plugins.valgrind.model.Valg...
1,609
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.parser; import hudson.FilePath; import hudson.Util; import hudson.model.BuildListener; import hudson.remoting.VirtualChannel; import java.io.File; import java.io.IOException; import org.apache.tools.ant.DirectoryScanner; import org.apache.tools.ant.types.FileSet; im...
426
github-java-corpus
2,012
package org.jenkinsci.plugins.valgrind.config; import java.io.Serializable; import org.kohsuke.stapler.DataBoundConstructor; public class ValgrindPublisherConfig implements Serializable { private static final long serialVersionUID = 1335068144678253494L; private String pattern; private String failThr...
391
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,468
github-java-corpus
2,012
package net.milkbowl.vault.permission.plugins; import net.krinsoft.privileges.Privileges; import net.krinsoft.privileges.groups.Group; import net.krinsoft.privileges.groups.GroupManager; import net.milkbowl.vault.permission.Permission; import org.bukkit.Bukkit; import org.bukkit.configuration.ConfigurationSec...
1,208
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,547
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,750
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
649
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,494
github-java-corpus
2,012
package net.milkbowl.vault.permission.plugins; import java.util.ArrayList; import net.milkbowl.vault.permission.Permission; import org.bukkit.Bukkit; import org.bukkit.entity.Player; import org.bukkit.event.EventHandler; import org.bukkit.event.EventPriority; import org.bukkit.event.Listener; import org.b...
932
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
2,059
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
2,747
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,412
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
2,004
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
1,968
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
5,179
github-java-corpus
2,012
package net.milkbowl.vault; /* * Copyright 2011 Tyler Blair. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are * permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright n...
3,977
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,955
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,847
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
2,185
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,831
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
2,780
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
2,065
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,818
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,851
github-java-corpus
2,012
package net.milkbowl.vault.chat.plugins; import java.util.logging.Logger; import net.milkbowl.vault.chat.Chat; import net.milkbowl.vault.permission.Permission; import org.bukkit.Bukkit; import org.bukkit.event.EventHandler; import org.bukkit.event.EventPriority; import org.bukkit.event.Listener; import or...
1,582
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
5,151
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
604
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
16,370
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
5,657
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
1,861
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,618
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,796
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
2,151
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
2,071
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
2,228
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the hope that it...
1,611
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
1,574
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,967
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,743
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
1,765
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
1,034
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
1,801
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
1,992
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
2,661
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed...
2,114
github-java-corpus
2,012
/* This file is part of Vault. Vault is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Vault is distributed in the...
2,361