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 plugin.arcwolf.blockdoor.Triggers; import org.bukkit.block.Block; import org.bukkit.entity.Player; import plugin.arcwolf.blockdoor.Utils.BlockDoorSettings; public class RedTrigHelper extends TriggerHelper{ public void createRedTrig(BlockDoorSettings settings, Player player, Block blockClicked) ...
257
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Triggers; import plugin.arcwolf.blockdoor.Link; public class MyTrigger extends Trigger { public MyTrigger(String in_name, String in_creator, String in_world) { super("MYTRIGGER", in_name, in_creator, in_world); } public MyTrigger(String in_string) { super...
257
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Triggers; import plugin.arcwolf.blockdoor.Link; public class RedTrig extends Trigger { public RedTrig(String in_name, String in_creator, String in_world) { super("REDTRIG", in_name, in_creator, in_world); } public RedTrig(String in_string) { super(in_stri...
260
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Triggers; import plugin.arcwolf.blockdoor.Link; public class BlockTrigger extends Trigger { public BlockTrigger(String in_name, String in_creator, String in_world) { super("TRIGGER", in_name, in_creator, in_world); } public BlockTrigger(String in_string) { ...
256
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Triggers; import java.util.ArrayList; import java.util.List; import org.bukkit.World; import plugin.arcwolf.blockdoor.Link; public abstract class Trigger { public String trigger_Type = ""; public String trigger_name = ""; public String creator = ""; pu...
495
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.listeners; import java.util.List; import org.bukkit.ChatColor; import org.bukkit.Material; import org.bukkit.block.Block; import org.bukkit.event.EventHandler; import org.bukkit.event.Listener; import org.bukkit.event.block.BlockBreakEvent; import org.bukkit.event.block.BlockBurnEvent...
3,843
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.listeners; import org.bukkit.ChatColor; import org.bukkit.block.Block; import org.bukkit.entity.Player; import org.bukkit.event.EventHandler; import org.bukkit.event.Listener; import org.bukkit.event.block.Action; import org.bukkit.event.player.PlayerInteractEvent; import org.bukkit.ev...
4,546
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.listeners; import org.bukkit.block.Block; import org.bukkit.craftbukkit.entity.CraftSheep; import org.bukkit.entity.Monster; import org.bukkit.event.EventHandler; import org.bukkit.event.Listener; import org.bukkit.event.entity.EntityChangeBlockEvent; import org.bukkit.event.entity.Ent...
1,345
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.listeners; // A kind of custom listener for LivingEntities teleporting, dying or walking in and out of zones. import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Map.Entry; import org.bukkit.Chunk; import org.bukkit.Loca...
3,303
github-java-corpus
2,012
package plugin.arcwolf.blockdoor; import org.bukkit.entity.Entity; import plugin.arcwolf.blockdoor.Zones.Zone; //This class keeps track of all the zones and their occupants public class AllZonesList { public Entity entity; public Zone zone; public AllZonesList(Zone in_Zone, Entity in_entity) { ...
87
github-java-corpus
2,012
package plugin.arcwolf.blockdoor; // Ported from Hey0 by ArcWolf to Bukkit with permission from Ho0ber import java.util.logging.Level; import java.util.logging.Logger; import org.bukkit.Server; import org.bukkit.World; import org.bukkit.command.Command; import org.bukkit.command.CommandSender; import org.bukkit.enti...
1,815
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Utils; //Used in conjunction with Twostate doors and HDoors to help prevent item popping public class CustomLocation { private int x; private int y; private int z; private String world_Name = ""; public CustomLocation(String world, int x, int y, int...
584
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Utils; // Defines what a users input from words to game readable block id codes would be public class ItemCodes { public String objectName; public String objectID; public ItemCodes(String item_name, String item_ID) { objectName = item_name; objectID = ite...
72
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Utils; import java.util.Hashtable; import org.bukkit.entity.Player; import plugin.arcwolf.blockdoor.Zones.Zone; public class BlockDoorSettings { @SuppressWarnings("rawtypes") static Hashtable playerSettings = new Hashtable(); //command used public String command = ""...
432
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Utils; import java.util.Comparator; import plugin.arcwolf.blockdoor.DLister; public class TypeNameComparator implements Comparator<Object> { @Override public int compare(Object o1, Object o2) { DLister TypeN1 = (DLister) o1; DLister TypeN2 = (DLister) o2; ...
100
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Utils; /* * Contains all the little special case checks for objects that like to POP into items if the server thinks they are * placed wrongly */ public class SpecialCaseCheck { public static boolean grassOrDirt(int blockID) { return blockID == 2 || blockID == 3; }...
1,206
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Utils; import java.util.Comparator; import plugin.arcwolf.blockdoor.DLister; public class PlayerNameComparator implements Comparator<Object> { @Override public int compare(Object o1, Object o2) { DLister N1 = (DLister) o1; DLister N2 = (DLister) o2; r...
97
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Utils; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; ...
10,016
github-java-corpus
2,012
package plugin.arcwolf.blockdoor.Utils; import plugin.arcwolf.blockdoor.BlockDoor; //Turns a users input from words to game readable block id codes and if necessary their offset codes public class ItemCodesHelper { private BlockDoor plugin; private DataWriter dataWriter; public ItemCodesHelp...
4,945
github-java-corpus
2,012
package plugin.arcwolf.blockdoor; import java.util.ArrayList; import java.util.Collections; import java.util.List; import org.bukkit.ChatColor; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; import plugin.arcwolf.blockdoor.Triggers.Trigger; import plugin.arcwolf.blockdoor.Utils....
3,270
github-java-corpus
2,012
package org.smartfrog.services.anubis.load; public class Gate { private boolean isOpen; private int generation; // BLOCKS-UNTIL: opened-since(generation on entry) public synchronized void await() throws InterruptedException { int arrivalGeneration = generation; while (!isOpen && ar...
112
github-java-corpus
2,012
package org.smartfrog.services.anubis.load; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.smartfrog.services.anubis.locator.AnubisStability; public class Stability extends AnubisStability { private final Gate gate; private final String instance; private final static L...
182
github-java-corpus
2,012
package org.smartfrog.services.anubis.load; import java.io.FileInputStream; import java.io.IOException; import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.NetworkInterface; import java.net.UnknownHostException; import java.util.ArrayList; import java.util.Collection; import java.util.Enume...
1,131
github-java-corpus
2,012
package org.smartfrog.services.anubis.load; import java.util.Random; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.smartfrog.services.anubis.locator.AnubisProvider; public class Sender implements Runnable { private final Gate gate; private final AnubisProvider provider; pr...
241
github-java-corpus
2,012
package org.smartfrog.services.anubis.load; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.smartfrog.services.anubis.locator.AnubisListener; import org.smartfrog.services.anubis.locator.AnubisValue; public class Receiver extends AnubisListener { private static final Logger log = LoggerFactory...
174
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
4,003
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
374
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
250
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
448
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
495
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
11,951
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
1,541
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
358
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
1,394
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
389
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
566
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
3,322
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
758
github-java-corpus
2,012
package com.hellblazer.slp.anubis; import java.util.Collection; import java.util.List; import java.util.concurrent.Callable; import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutorService; import java.util.concurrent.Future; import java.util.concurrent.TimeUnit; import java.util.concurrent...
412
github-java-corpus
2,012
package com.hellblazer.slp.anubis; import java.util.concurrent.atomic.AtomicInteger; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; import c...
323
github-java-corpus
2,012
package com.hellblazer.slp.anubis; import java.util.Random; import java.util.concurrent.Executors; import org.smartfrog.services.anubis.partition.Partition; import org.smartfrog.services.anubis.partition.util.Identity; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.a...
179
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
2,387
github-java-corpus
2,012
/** (C) Copyright 2010 Hal Hildebrand, All Rights Reserved * * This library 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 the License, or (at your option) any later versi...
3,964
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
2,902
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
3,037
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
3,051
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
2,646
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
1,060
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
841
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
1,364
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
696
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
2,686
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
463
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
732
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
383
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
248
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
331
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
515
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
236
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
319
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
672
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
264
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
2,788
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
546
github-java-corpus
2,012
package org.smartfrog.services.anubis.locator.subprocess; import java.rmi.Remote; public interface SPLocator extends Remote { }
26
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
246
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
464
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
309
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
248
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
2,024
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
274
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
876
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
448
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
679
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
710
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
394
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
1,602
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
995
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
405
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
1,369
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
331
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
288
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
1,406
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
1,332
github-java-corpus
2,012
package org.smartfrog.services.anubis.partition.wire.security; import java.io.IOException; import java.nio.ByteBuffer; import javax.crypto.ShortBufferException; import org.smartfrog.services.anubis.partition.wire.Wire; import org.smartfrog.services.anubis.partition.wire.WireFormException; import org.smartfr...
536
github-java-corpus
2,012
package org.smartfrog.services.anubis.partition.wire.security; public class WireSecurityException extends SecurityException { /** * */ private static final long serialVersionUID = 1L; public WireSecurityException(String msg) { super(msg); } public WireSecurityExce...
76
github-java-corpus
2,012
package org.smartfrog.services.anubis.partition.wire.security; import java.security.InvalidKeyException; import java.security.Key; import java.security.NoSuchAlgorithmException; import javax.crypto.Mac; import javax.crypto.SecretKey; import javax.crypto.ShortBufferException; import javax.crypto.spec.SecretKeySpec; /...
2,536
github-java-corpus
2,012
package org.smartfrog.services.anubis.partition.wire.security; import java.io.IOException; import java.nio.ByteBuffer; import org.smartfrog.services.anubis.partition.wire.Wire; import org.smartfrog.services.anubis.partition.wire.WireFormException; import org.smartfrog.services.anubis.partition.wire.WireMsg; ...
254
github-java-corpus
2,012
package org.smartfrog.services.anubis.partition.wire.security; import java.io.IOException; import java.nio.ByteBuffer; import org.smartfrog.services.anubis.partition.wire.WireFormException; import org.smartfrog.services.anubis.partition.wire.WireMsg; import com.hellblazer.jackal.util.ByteBufferPool; publi...
121
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
375
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
619
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
819
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
278
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
962
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
2,342
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
759
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
204
github-java-corpus
2,012
package org.smartfrog.services.anubis.partition.wire.msg; import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.UnknownHostException; import java.nio.ByteBuffer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.smartfrog.services.anubis.partition.wire.WireSizes; final pub...
456
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
425
github-java-corpus
2,012
/** (C) Copyright 1998-2005 Hewlett-Packard Development Company, LP This library 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 the License, or (at your option) any later version. T...
897