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
package net.nabaal.majiir.realtimerender.palette; import java.awt.Color; import org.bukkit.block.Biome; public interface MaterialColor { public Color getColor(int data, int x, int z, double rainfall, double temperature, Biome biome); }
56
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.palette; import java.awt.Color; import java.awt.image.BufferedImage; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import javax.imageio.ImageIO; ...
3,685
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.palette; import java.awt.Color; import org.bukkit.block.Biome; public class TransparentMaterialColor implements MaterialColor { private final MaterialColor source; private final double multiplier; public TransparentMaterialColor(MaterialColor source, double m...
161
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.palette; import java.awt.Color; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import org.bukkit.block.Biome; public class BiomeMaterialColor implements MaterialColor { private final ConcurrentMap<...
236
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.palette; import java.awt.Color; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import org.bukkit.block.Biome; public class MetadataMaterialColor implements MaterialColor { private final ConcurrentM...
296
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.palette; import java.awt.Color; import org.bukkit.block.Biome; public class SimpleMaterialColor implements MaterialColor { private final Color color; public SimpleMaterialColor(Color color) { this.color = color; } public Color getColor() { return co...
104
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.palette; import org.bukkit.Material; public interface ColorPalette { public MaterialColor getMaterialColor(Material material); }
34
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.BlockingQueue; import java.util.concurrent.ExecutionException; import java.util.con...
762
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.io.Serializable; import net.nabaal.majiir.realtimerender.Coordinate; public final class HeightMapTile extends HeightMap implements Serializable { private static final long serialVersionUID = 3L; private final int[] heights; private fina...
610
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.io.File; import java.util.regex.Matcher; import java.util.regex.Pattern; import net.nabaal.majiir.realtimerender.Coordinate; import net.nabaal.majiir.realtimerender.image.FilePattern; public class SerializedHeightMapFilePattern extends FilePatt...
322
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.io.File; import java.util.regex.Matcher; import java.util.regex.Pattern; import net.nabaal.majiir.realtimerender.Coordinate; import net.nabaal.majiir.realtimerender.image.FilePattern; public class ChunkFilePattern extends FilePattern { priv...
280
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.Coordinate; import org.jscience.mathematics.vector.Float64Vector; public class FiniteDifferencesNormalMap implements NormalMap { private final HeightMap heightMap; public FiniteDifferencesNormalMap(HeightMap he...
449
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.Coordinate; public abstract class HeightMapProvider extends HeightMap { private final int size; public HeightMapProvider(int size) { this.size = size; } public int getSize() { return size; } pr...
201
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.Coordinate; import org.jscience.mathematics.vector.Float64Vector; public class CircleAverageNormalMap implements NormalMap { private final NormalMap normalMap; private final double radius; public CircleAverag...
308
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import org.jscience.mathematics.vector.Float64Vector; import net.nabaal.majiir.realtimerender.Coordinate; public final class NormalMapTile implements NormalMap { private final Float64Vector[][] normals; private final Coordinate location; public Nor...
292
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import org.jscience.mathematics.vector.Float64Vector; import net.nabaal.majiir.realtimerender.Coordinate; public abstract class NormalMapProvider implements NormalMap { public abstract NormalMapTile getNormalMapTile(Coordinate tile); @Override publ...
108
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.Coordinate; import org.jscience.mathematics.vector.Float64Vector; public interface NormalMap { /** * Computes the normal vector at the given point. * @param point Point to compute the normal at. * @return N...
105
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import net.nabaal.majiir.realtimerender.Coordinate; import net.nabaal.majiir.realtimerender.image.WriteCache; public class HeightMapWriteCache e...
473
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.io.File; import java.util.regex.Matcher; import java.util.regex.Pattern; import net.nabaal.majiir.realtimerender.Coordinate; import net.nabaal.majiir.realtimerender.image.FilePattern; //TODO: Rename public class TileFilePattern extends FilePat...
292
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.io.Serializable; import net.nabaal.majiir.realtimerender.Coordinate; public class ChunkSnapshotTile implements Serializable { private static final long serialVersionUID = 1L; private final Coordinate location; private final Serializable...
327
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.io.Serializable; import org.bukkit.ChunkSnapshot; public interface SerializableChunkSnapshot extends ChunkSnapshot, Serializable { }
39
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import org.bukkit.ChunkSnapshot; public class NoOpChunkPreprocessor implements ChunkPreprocessor { @Override public SerializableChunkSnapshot processChunk(ChunkSnapshot chunk) { return new ProcessedChunkSnapshot(chunk); } }
61
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.Coordinate; import net.nabaal.majiir.realtimerender.image.ChunkRenderer; import org.bukkit.ChunkSnapshot; public class StructureMapRenderer implements ChunkRenderer { private final HeightMap heightMap; public ...
214
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.InputStream; import java.io.ObjectInput; impo...
518
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.RealtimeRender; import org.bukkit.ChunkSnapshot; import org.bukkit.block.Biome; public class ProcessedChunkSnapshot implements SerializableChunkSnapshot { private static final long serialVersionUID = 2L; priva...
1,273
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.image.ChunkRenderer; import org.bukkit.ChunkSnapshot; public class HeightMapChunkPreprocessor implements ChunkPreprocessor { private final ChunkRenderer renderer; public HeightMapChunkPreprocessor(HeightMap hei...
116
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.Coordinate; import net.nabaal.majiir.realtimerender.image.ChunkRenderer; import org.bukkit.ChunkSnapshot; public class HeightMapRenderer implements ChunkRenderer { private final HeightMap heightMap; public Hei...
214
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.util.Arrays; import java.util.EnumSet; import java.util.Set; import org.bukkit.ChunkSnapshot; import org.bukkit.Material; public final class TerrainHelper { private TerrainHelper() throws InstantiationException { throw new InstantiationE...
552
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.Coordinate; import org.jscience.mathematics.vector.Float64Vector; public class SelectiveAverageNormalMap implements NormalMap { private final NormalMap normalMap; private final double radius; private final doubl...
430
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.Coordinate; public abstract class HeightMap { public static final int NO_HEIGHT_INFORMATION = -1; /** * Gets the height at a point. * @param point Point to get height at * @return Height of highest point...
228
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.InputStream; import java.io.ObjectInput; impo...
515
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.awt.Color; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import net.nabaal.majiir.realtimerender.Coordinate; import net.nabaal.majiir.realtimerender.image.ChunkRenderer; import net.nabaal.majiir.realtimerender.image.ImageProvid...
1,323
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import net.nabaal.majiir.realtimerender.Coordinate; import org.jscience.mathematics.vector.Float64Vector; public class AdaptiveNormalMap implements NormalMap { private final NormalMap approximate; private final NormalMap precise; public AdaptiveNor...
279
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import net.nabaal.majiir.realtimerender.Coordinate; import net.nabaal.majiir.realtimerender.image.ReadCache; public class NormalMapReadCache extends NormalMapProvider ...
236
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; import net.nabaal.majiir.realtimerender.Coordinate; import net.nabaal.majiir.realtimerender.image.ReadCache; public class HeightMapReadCache extends HeightMapProvider ...
483
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender.rendering; import org.bukkit.ChunkSnapshot; public interface ChunkPreprocessor { public SerializableChunkSnapshot processChunk(ChunkSnapshot chunk); }
42
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender; public class Marker { private final String label; private final Coordinate location; public Marker(String label, Coordinate location) { if (location.getLevel() != Coordinate.LEVEL_BLOCK) { throw new IllegalArgumentException(); } this.label = label; ...
101
github-java-corpus
2,012
package net.nabaal.majiir.realtimerender; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.net.JarURLConnect...
2,623
github-java-corpus
2,012
package com.infohubble.talent; /** * The Duplicate Finder is the interface that should be implemented by * algorithms used to locate the duplicate integer within an input array. */ public interface DuplicateFinder { /** * This method implements the duplicate finding algorithm. The input * array conta...
145
github-java-corpus
2,012
package com.infohubble.talent; /** * It is left up to the candidate to complete the implementation of this class * with there own implementation of the solution. */ public class CandidateDuplicateFinderImpl implements DuplicateFinder { public int findDuplicate(int[] source) { //TODO build a faster Dupl...
82
github-java-corpus
2,012
package com.infohubble.talent; import java.util.HashSet; import java.util.Set; /** * This is an example implementation of the {@link DuplicateFinder} interface * that uses a set to track the integers in the source array and locate the * duplicate. * * This is definitely not the faster implementation, the assign...
173
github-java-corpus
2,012
package com.infohubble.talent; import org.junit.Test; import static com.infohubble.talent.FindDuplicateHelper.averageExecutionTime; public class FindDuplicateTest { @Test public void testCandidateDuplicateFinder() { double candidateTime = averageExecutionTime(new CandidateDuplicateFinderImpl()); ...
132
github-java-corpus
2,012
package com.infohubble.talent; import static java.text.MessageFormat.format; public class FindDuplicateHelper { private static final int AVERAGE_COUNT = 1000; /** * Calculate the average execution time of the duplicate finder * in milliseconds. * * @param finder The finder implementation...
257
github-java-corpus
2,012
package com.infohubble.talent; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Random; /** * This class is responsible for creating the array of Integer containing a duplicate. */ public class IntegerArrayGenerator { private static final int SIZE = 10000; ...
317
github-java-corpus
2,012
package com.infohubble.talent; import java.util.ArrayList; import java.util.List; public class TalentDAOImpl extends AbstractTalentDAOImpl { private List results = null; public List listRequiredSkills() { return load(); } private List load() { List l = new ArrayList(); for (int i = 1; i < super.skills....
100
github-java-corpus
2,012
package com.infohubble.talent; import java.util.ArrayList; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; public class TalentService { @Autowired @Qualifier("talentDao") private TalentDAO dao; public ArrayList...
135
github-java-corpus
2,012
package com.infohubble.talent; import java.util.List; public class AbstractTalentDAOImpl implements TalentDAO { protected static final String[] skills = { "Spring", "Maven", "Eclipse", "Mercurial" }; private final List results = null; public List listRequiredSkills() { return this.results; } public...
93
github-java-corpus
2,012
package com.infohubble.talent; import java.util.ArrayList; import java.util.List; public interface TalentDAO { public List listRequiredSkills(); public List listRequiredSkillsOrdered(); }
41
github-java-corpus
2,012
package com.infohubble.talent.test; import java.util.List; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.test.context.ContextConfi...
210
github-java-corpus
2,012
package com.infohubble.talent; /** * Implement this class to load and identify the unique business names * from the list of input files (see resources folder). */ public class MergeBusinessNames { //Implement your code here. //TODO 1. Load the files (sourceA.csv, sourceB.csv, sourceC.csv) //TODO 2. Per...
96
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; import java.util.Map; import java.io.File; import java.io.FileOutputStream; import java.io.OutputStreamWriter; import java.io.BufferedWriter; import java.io.IOException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.gson.Gson; public class JsonExporter...
278
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; import java.util.Properties; import java.util.Map; import java.util.HashMap; import java.io.File; import java.io.FilenameFilter; import org.apache.velocity.Template; import org.apache.velocity.app.Velocity; import org.apache.velocity.exception.MethodInvocationException; import org.ap...
429
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; public interface Exporter { public void export(DataRow row) throws ExportException; }
30
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; import java.util.HashMap; import java.util.Map; public class DataRow { private String sourceName = null; private String tableName = null; private Map<String, String> row = new HashMap<String, String>(); public DataRow() { } public DataRow(String sourceName, ...
219
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; import com.google.gson.Gson; import java.io.IOException; import java.io.OutputStreamWriter; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class UrlExporter implements Exporter ...
253
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.List; import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.CommandLineParser; import org.apache.commons.cli.HelpFormatter; import...
668
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; import java.io.File; import java.io.IOException; import java.io.FileInputStream; import java.io.InputStreamReader; import java.io.FileNotFoundException; import com.google.gson.Gson; import com.google.gson.JsonIOException; import com.google.gson.JsonSyntaxException; import org.slf4j.L...
475
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; import java.util.Map; import java.util.List; import java.util.ArrayList; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class CompositeExporter implements Exporter { private static final Logger logger = LoggerFactory.getLogger(CompositeExporter.class); private Li...
170
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; public class InvalidConfigException extends Exception { public InvalidConfigException(String message) { super(message); } }
34
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; import java.util.Map; import org.apache.velocity.Template; import org.apache.velocity.VelocityContext; import java.io.StringWriter; import java.io.FileOutputStream; import java.io.OutputStreamWriter; import java.io.BufferedWriter; import java.io.IOException; import org.slf4j.Logger;...
300
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; import java.util.List; public class Table { private String tableName = null; private List<String> columns = null; public Table() { } public String getTableName() { return tableName; } public void setTableName(String tableName) { this.tableName = tableName; } public Li...
164
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; import com.google.gson.Gson; import com.google.gson.JsonIOException; import com.google.gson.JsonSyntaxException; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.InputStreamReader; import java.sql.Connection; import java.sql.DriverManager; import jav...
1,048
github-java-corpus
2,012
package org.kimrgrey.syvexp.app; public class ExportException extends Exception { public ExportException(String message) { super(message); } }
32
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
487
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
417
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
372
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
379
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
439
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
474
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list ...
423
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
462
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
463
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
457
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list ...
366
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
434
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
414
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
450
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list ...
349
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
1,232
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
376
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
384
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list ...
1,264
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list ...
632
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
374
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
403
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
407
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
494
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
448
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
725
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
850
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
393
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
802
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list ...
819
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
1,029
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
568
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
697
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list ...
384
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
431
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list of con...
437
github-java-corpus
2,012
/* * Copyright (c) 2012, dooApp <contact@dooapp.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this list ...
424