text stringlengths 14 410k | label int32 0 9 |
|---|---|
public boolean didHouseWin() {
return !theHouse.hasBust() && theHouse.getScore() > player.getScore()
|| theHouse.getScore() <= 21 && player.hasBust();
} | 3 |
String longestPalindrome (String s){
String longest;
int l = s.length();
if (l==0) return "";
longest = s.substring(0,1); // a single char itself is a palindrome
for (int i = 0; i < l-1; i++) {
String s1 = expandCenter(s,i,i);
if (s1.length() > longest.length()) longest = s1;
String s2 = ex... | 5 |
@Override
public Object execute(HttpServletRequest request, HttpServletResponse response) throws Exception {
Contexto oContexto = (Contexto) request.getAttribute("contexto");
EntradaParam oEntradaParam = new EntradaParam(request);
EntradaBean oEntradaBean = new EntradaBean();
HiloDao... | 1 |
public void setFormat(String s) {
if ("xmi".equalsIgnoreCase(s)) {
option.setFileFormat(FileFormat.XMI_STANDARD);
}
if ("xmi:argo".equalsIgnoreCase(s)) {
option.setFileFormat(FileFormat.XMI_ARGO);
}
if ("xmi:start".equalsIgnoreCase(s)) {
option.setFileFormat(FileFormat.XMI_STAR);
}
if ("eps".equa... | 9 |
public synchronized void loadConfigData(String propFile, boolean overwriteProperty)
{
Configuration propData = getConfigFileData(propFile);
if (propData != null) {
Iterator<String> itr = propData.getKeys();
while (itr.hasNext()) {
String key = itr.next();
if (ove... | 4 |
private void readmagicItemsFromFileToList(String fileName, ListMan lm) {
File myFile = new File(fileName);
try {
Scanner input = new Scanner(myFile);
while (input.hasNext()) {
// Read a line from the file.
String itemName = input.nextLine();
// Construct a new list item and set its attributes.
... | 2 |
public static void addNew() {
for (Organism org: a) {
switch (org.species) {
case Organism.BLUE:
bOrgs.add(org);
break;
case Organism.RED:
rOrgs.add(org);
break;
case Organism.YELLOW:
yOrgs.add(org);
break;
... | 5 |
public static AbstractModel getRegularGrid(int min, int max, int distance,AbstractModel result) {
// AbstractModel result = new ModelParallel();
for (int i = min; i < max; i += distance) {
for (int j = min; j < max; j += distance) {
result.p.add(new Particle(0.5, 0, 0, i, j));
}
}
return result;
} | 2 |
GridData getData(Control[][] grid, int row, int column, int rowCount,
int columnCount, boolean first) {
Control control = grid[row][column];
if (control != null) {
GridData data = (GridData) control.getLayoutData();
int hSpan = Math.max(1, Math.min(data.horizontalSpan, columnCount));
int vSpan = Math.ma... | 8 |
public String escapeObfuscation() {
String escapeObfuscatedCode = null;
/*
* エスケープ処理は文字ごとに行う必要があるため、1文字ずつに分ける。
* 後に正規表現により比較作業を行うため、String型の配列に格納する。
*/
char ch[] = targetCode.toCharArray();
String[] choppedCode = new String[ch.length];
for (int i = 0; i < choppedCode.length; i++) {
choppedCode[... | 7 |
@Override
public V put(K key, V value) {
V candidateValue = straight.get(key);
K candidateKey = reverse.get(value);
if (candidateKey==null && candidateValue==null) {
straight.put(key, value);
reverse.put(value, key);
return null;
} else if (candidateKey==null && candidateValue!=null) {
V cur... | 8 |
private ChannelEventsListener getChannelEventsListener(String name) {
for (ChannelEventsListener listener : channelEventsListeners) {
if ( listener.getChannelName().equalsIgnoreCase(name) )
return listener;
}
return null;
} | 2 |
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
g.setColor(Color.MAGENTA);
g.fillRect(0, 0, tileSize * tileLineWidth, this.getHeight());
// System.out.println(imgs.size());
//
for(int i = 0; i < imgs.length; i++){
Ima... | 5 |
public TreeNode nodeAtPoint(Point2D point) {
return treeDrawer.nodeAtPoint(point, getSize());
} | 0 |
@Test
public void addParameterTest() {
TeleSignRequest tr;
if(!timeouts && !isHttpsProtocolSet)
tr = new TeleSignRequest("https://rest.telesign.com", "/v1/phoneid/standard/15551234567", "GET", "customer_id", "secret_key");
else if(timeouts && !isHttpsProtocolSet)
tr = new TeleSignRequest("https://rest.tele... | 6 |
public boolean isSCC() {
Set<V> visited = new HashSet<>();
//Step 1 : clone and obtain a reversed graph
MyGraph<V,E> reversed = cloneAndReverse();
//Step 2: Calculate finishing times.. pass the vertex one by one
Set<Vertex<V>> vertices = reversed.getAllVertex();
//stack... | 6 |
public ArrayList<Integer> decodage(ArrayList<Integer> codeADecoder)
{
ArrayList<Integer> codeSort = new ArrayList<Integer>();
ArrayList<Integer> chaineDecodee = new ArrayList<Integer>();
//Trie du code
codeSort = new ArrayList<>(codeADecoder);
Collections.sort(codeSor... | 2 |
@Override
public Customer findCustomerByEmail(String email) {
String sql = "SELECT * FROM customer WHERE email='" + email + "';";
Connection con = null;
Customer customer = null;
try {
con = getConnection();
PreparedStatement statement = con.prepareStatement(sql);
ResultSet resultSet = statement.ex... | 3 |
public waitGUI() throws ImageLoadFailException {
addKeyListener(new KeyAdapter() {
@Override
public void keyTyped(KeyEvent e) { //listens for Spacebar to skip to next GUI
if(' ' == e.getKeyChar())
waiter.startNext();
}
});
setResizable(false);
ImageIcon loadIcon = null;
JOptionPane
.show... | 7 |
private void run() {
Scanner scn = new Scanner(System.in);
String line = scn.nextLine();
while (!line.trim().equals("0 0 0")) {
String input[] = line.trim().split(" ");
stickers = 0;
lr = -1;
cr = -1;
lin = Integer.parseInt(input[0]);
... | 9 |
protected static int matchColour(Color colour, Color[] palette, int paletteStart, int paletteEnd, double chromaWeight)
{
if (chromaWeight < 0.0)
{
int bestI = paletteStart;
int bestD = 4 * 256 * 256;
for (int i = paletteStart; i < paletteEnd; i++)
{
int ðr = colour.getRed() - palette[i].ge... | 9 |
public static void setPixels(BufferedImage img,
int x, int y, int w, int h, int[] pixels) {
if (pixels == null || w == 0 || h == 0) {
return;
} else if (pixels.length < w * h) {
throw new IllegalArgumentException("pixels array must have a length" ... | 6 |
public void trackTarget(){
Target targetFromDashboard = null;
String visionData = SmartDashboard.getString("VisionData", null);
if (visionData == null) {
// Only report error once
if (!m_visionWidgetMissingReported) {
System.out.println("VisionDat... | 5 |
private String getscoreMineralDifference(HashMap<String, int[]> otherScoreMinerals){
String a = "";
int scoreDiff = 0;
int mineralDiff = 0;
if(!otherScoreMinerals.keySet().equals(playerScoreMinerals.keySet())){
for(String s: otherScoreMinerals.keySet()){System.out.println(s);}
System.out.println("differe... | 7 |
public void namiLogin() throws IOException, NamiLoginException {
// skip if already logged in
if (isAuthenticated) {
return;
}
HttpPost httpPost = new HttpPost(NamiURIBuilder.getLoginURIBuilder(
server).build());
List<NameValuePair> nvps = new ArrayLi... | 8 |
public void setId(Long id) {
this.id = id;
} | 0 |
public static void main(String args[]) {
for (;;) {
break;
}
System.out.println("Value:" + new TestFor().test);
} | 1 |
public long node() {
if (version() != 1) {
throw new UnsupportedOperationException("Not a time-based UUID");
}
if (node < 0) {
node = leastSigBits & 0x0000FFFFFFFFFFFFL;
}
return node;
} | 2 |
public void EliminaFinal ()
{
if ( VaciaLista())
System.out.println ("No hay elementos");
else
{
if (PrimerNodo == PrimerNodo.siguiente)
PrimerNodo = null;
else
{
NodosProcesos Actual =PrimerNodo;
while (Actual.siguiente.siguiente != PrimerNodo)
Actual = Actual.siguiente;
Actua... | 3 |
@SuppressWarnings("unchecked")
public <T> T[] getArray(Class<T> type, ReadCallback<T> callback)
{
if (getBoolean()) {
T[] array = (T[])Array.newInstance(type, getUshort());
if (!valid) {
return null;
}
for (int i = 0; i < array.length && valid; i++) {
if (getBoolean()) {
array[i] = callbac... | 6 |
public void makeExcitatoryVBHConnections3(CABot3Net linesNet, CABot3Net gratingsNet, String lineType, String grateType){
int netSize =linesNet.getInputSize();
int column;
int cols = linesNet.getCols();
double weight;
if (grateType.compareToIgnoreCase("vgrate3")==0){
weight = 1.5;
}
el... | 8 |
public static Map<String, Ban> load(String path) {
Map<String, Ban> result = Collections.emptyMap();
File f = new File(path);
if (f.exists() == false) {
touchBanList(path);
} else {
try {
FileInputStream fileStream = new FileInputStream(f);
... | 3 |
@Override
public boolean invoke(MOB mob, List<String> commands, Physical givenTarget, boolean auto, int asLevel)
{
if((commands.size()<1)&&(givenTarget==null))
{
mob.tell(L("What would you like to open?"));
return false;
}
final Environmental item=super.getAnyTarget(mob,commands,givenTarget,Wearable.FIL... | 9 |
@Override
protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws IOException {
DatabaseManager manager=DatabaseManager.getManager();
try {
Equipment equipment = manager.getEquipmentDao().queryForId(
Integer.parseInt(request.getParameter(ID)));
if(equipment=... | 9 |
@Override
public String toString() {
StringBuilder hex = new StringBuilder();
for(byte b : value) {
String hexDigits = Integer.toHexString(b).toUpperCase();
if(hexDigits.length() == 1) {
hex.append("0");
}
hex.append(hexDigits).append(" ");
}
String name = getName();
String append = "";
if(... | 4 |
public static void main(String args[]) {
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/loo... | 6 |
public void start(BundleContext context) throws Exception {
m_context = context;
synchronized (m_refList) {
// Listen for events pertaining to dictionary services.
m_context.addServiceListener(this, "(&(objectClass=" + DictionaryService.class.getName() + ")" + "(Language=*))");
// Query for all dictionar... | 5 |
public void moveDown(Tetromino piece, int x, int y, int orientation) {
boolean[][] tiles = piece.getTiles();
int count = 0;
// clear the current piece out
int width = piece.getTiles()[0].length == 9 ? 3 : 4; // get width (3 or 4) of piece
width = piece.getTiles()[0].length == 4 ? 2 : width;
for(int row = ... | 6 |
private void inorder(Node node, Queue<Key> q) {
if (node == null)
return;
inorder(node.left, q);
q.add(node.key);
inorder(node.right, q);
} | 1 |
public void draw(MinuetoWindow window, MinuetoImage[] imageMapImages, int x, int y) {
int sizeScreenX = window.getWidth();
int sizeScreenY = window.getHeight();
int tileIndexX = x / this.tileSize;
int tileRemainderX = x % this.tileSize;
int tileIndexY = y / this.tileSize;
int tileRemainderY = y % this.til... | 4 |
private boolean isOperator( String op ) {
return op.equals("+") || op.equals("-")
|| op.equals("/") || op.equals("*");
} | 3 |
public void playerTurn(int id) {
boolean myTurn = false;
if (id == myID) {
myTurn = true;
}
//Enable all the buttons if its your turn, otherwise disable them
for (int i=0;i<digitButton.length; i++) {
digitButton[i].setEnabled(myTurn);
}
} | 2 |
public static synchronized void writeLogFile(final String message) {
new Thread(new Runnable() {
@Override
public void run() {
try {
if (Logger.log == null) {
Logger.log = new Logger();
}
... | 2 |
public GetDataBySubjectResponse(Request request, String response) throws XPathExpressionException, IOException {
super(request, response, false);
this.subjects = new HashMap<SubjectID, Subject>();
try {
Document doc = this.getDocument();
if(response != null) {
NodeList nodes = Utilities.selectNod... | 6 |
public void checkdoors() {
System.out.println();
String convertstring;
// Check of er een deur is aan de oostzijde
if (getEast() == 0) {
} else {// als er een deur is doe dit:
System.out.println("There is a door on the east side of the room");
convertstring = "" + getEast();
// Als de string getvisit... | 8 |
public static void process_queue(Queue<FileMessage> q[]){
//to be completed........................ based on readwrite class..........
while(true ){
int exit_flag=1;
for(int i=0; i<q.length;i++){
if(!q[i].isEmpty()){
//System.out.println("Index--"+i+"::Queue size---"+q[i].size());
exit_flag=0... | 7 |
@Override
public void checkMail() {
super.checkMail();
List<Literal> percepts = convertMessageQueueToLiteralList(getTS().getC().getMailBox());
model.update(percepts);
Iterator<Message> im = getTS().getC().getMailBox().iterator();
while (im.hasNext()) {
Message message = im.next();
Literal percept... | 9 |
public static void crop(Rectangle rect) {
if (lastScreenshot == null)
return;
BufferedImage image = lastScreenshot.getImage();
int x = (int) rect.getX();
int y = (int) rect.getY();
int width = (int) rect.getWidth();
int height = (int) rect.getHeight()... | 1 |
MainFrame() {
final ClassLoader cLoader = getClass().getClassLoader();
ImageIcon collapseIcon = new ImageIcon(/*cLoader.getResource("images/Toggle_03_Hide.png"*/);
final JLabel collapseBtn = new JLabel(collapseIcon);
ImageIcon windowIcon = new ImageIcon(/*cLoader.getResource("images/Win... | 9 |
public int getPostIndex(byte[] bytes, Charset charset) {
String firstBytes = new String(bytes, charset);
String separator = CRLFx2;
int index = firstBytes.indexOf(CRLFx2);
int indexCR = firstBytes.indexOf(CRx2);
int indexLF = firstBytes.indexOf(LFx2);
if (indexCR != -1 &&... | 4 |
private void add(File source, JarOutputStream target) throws IOException
{
BufferedInputStream in = null;
try
{
// If the file provided is a directory
if (source.isDirectory())
{
// Replace \ with File.separator
String name = source.getPath().replace("\\"... | 7 |
public boolean isLive() {
return isLive;
} | 0 |
@Override
public boolean equals(Object object) {
if (object == null) {
return false;
}
if (getClass() != object.getClass()) {
return false;
}
Person person = (Person) object;
if (this.gender == null || !this.gender.equals(person.getGender())... | 9 |
private int addToShow(int rowIndex, int colIndex, Integer index, int[][] array){
field[rowIndex][colIndex].show();
for (int i = rowIndex - 1; i <= rowIndex + 1; i++) {
for (int j = colIndex - 1; j <= colIndex + 1; j++) {
if (checkIndex(i, j)) {
if (field[i... | 6 |
public static boolean getDontQuit() {
return dontQuit;
} | 0 |
@FXML
private void handleTxtBarCodeAction(ActionEvent event) {
clearIndicator();
if (txtBarCode.getText().isEmpty()) {
return;
}
txtItemName.setDisable(false);
txtItemName.requestFocus();
Item item = select(txtBarCode.getText());
if (item != nul... | 5 |
public LauncherView(Fighter[] m) {
p2ReadyBool = p1ReadyBool = false;
model = m;
selection = new int[model.length];
// general layout stuff
GridBagLayout generalLayout = new GridBagLayout();
GridBagConstraints constraints = new GridBagConstraints();
constraints.insets = new Insets(5, 5, 5, 5); // defau... | 2 |
@Override
public void hyperlinkUpdate(HyperlinkEvent e) {
if (HyperlinkEvent.EventType.ACTIVATED.equals(e.getEventType())) {
URL url = e.getURL();
try {
viewer.setPage(url);
addURL(url);
} catch (IOException ex) {
System.out.println("IOException: " + ex.getMessage());
}
}
} | 2 |
@Override
public void render(Document html, Element node) {
Element sectionNode = html.createElement("section");
sectionNode.setAttribute("data-section-name", name);
// set coded content in ID
if (getCodedContentCollection() != null) {
sectionNode.setAttribute("id", getCodedContentCollection().getId());
}... | 3 |
public static void highlight(String position, int r, int g, int b){
if(false){
GraphicsConnection.debugConnection.sendHighlight(position, r, g, b);
}
} | 1 |
@Override
public boolean invoke(MOB mob, List<String> commands, Physical givenTarget, boolean auto, int asLevel)
{
MOB target=mob;
if((auto)&&(givenTarget!=null)&&(givenTarget instanceof MOB))
target=(MOB)givenTarget;
if(target.fetchEffect(ID())!=null)
{
mob.tell(target,null,null,L("<S-NAME> already <S... | 9 |
public String extractSection (int start,int end) {
StringBuilder out=new StringBuilder();
int a;
int tc=counter+start;
if (tc>=totalLength) tc=tc-totalLength;
for (a=start;a<end;a++) {
if (this.get(tc)==true) out.append("1");
else out.append("0");
tc++;
if (tc==totalLength) tc=0;
}
return out.... | 4 |
private Batch <Actor> talksTo() {
final Batch <Actor> batch = new Batch <Actor> () ;
if (subject instanceof Actor) {
final Actor a = (Actor) subject ;
batch.add(a) ;
}
else if (subject instanceof Venue) {
final Venue v = (Venue) subject ;
for (Actor a : v.personnel.residents()) b... | 4 |
public boolean find(long searchKey) { // find specified value
int j;
for (j = 0; j < nElems; j++)
// for each element,
if (a[j] == searchKey) // found item?
break; // exit loop before end
if (j == nElems) // gone to end?
return false; // yes, can’t find it
else
return true; // no, found it
} //... | 3 |
public static void writeSearchResponse(SearchResponse response, BufferedWriter out, boolean writeQuery, boolean writeLink, boolean writeTitle, boolean writeSnippet) throws Exception {
List<SearchResponse.Result> results = response.getResults();
System.out.println(">>>> WRITE " + results.size() + " RESULTS FOR \"" +... | 5 |
public String getNextUntitledDockableName(String baseTitle, Dockable exclude) {
List<Dockable> dockables = getDockables();
int value = 0;
String title;
boolean again;
do {
again = false;
title = baseTitle;
if (++value > 1) {
title += " " + value; //$NON-NLS-1$
}
for (Dockable dockable : doc... | 5 |
public void set(int key, int value) {
int hk = hash(key);
boolean isSet = false;
int index = -1;
if (full==false) {
for (int i=0;i<cache.length;i++) {
if (cache[(hk+i)%cache.length]==null) {
index = i;
isSet = true;
... | 9 |
public byte[] toByteArray(){
byte [] out = null;
try {
ByteArrayOutputStream bo = new ByteArrayOutputStream();
OutputStream baos = bo;
if(this.type==Type.Dictionary){
baos.write('d');
for(Entry<String, Bencoding> s:dictionary.entrySet()){
byte [] bytes = s.getKey().getBytes("UTF-8");
Stri... | 6 |
public void actionPerformed(ActionEvent e) {
JButton sourceButton = (JButton)e.getSource();
String s = sourceButton.getName();
//Use the dummy game to make a guess
MasterMindGame m = gui.getGameP2();
if (s.contains("send")) {
//Assuming user sets enough colours sol will be the solution to send
... | 8 |
@Override
public JSite load() {
if (loaded) return this;
String body = null;
try {
body = JHttpClientUtil.postText(
context.getUrl() + JHttpClientUtil.Sites.URL,
JHttpClientUtil.Sites.GetSite.replace("{SiteUrl}", context.getUrl()),
... | 5 |
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException
{
String p;
if ((p = request.getParameter("delete_id")) != null)
{
// del
Advertisement advertToDelete = this.advertRepo.getById(Integer
.parseInt(p));
if (advertToDelete.getA... | 7 |
protected Query getWildcardQuery(String field, String termStr) throws ParseException
{
if ("*".equals(field)) {
if ("*".equals(termStr)) return newMatchAllDocsQuery();
}
if (!allowLeadingWildcard && (termStr.startsWith("*") || termStr.startsWith("?")))
throw new ParseException("'*' or '?' not ... | 6 |
public Player(Level level, int x, int y) {
super(level, x, y);
hWidth = 8;
hHeight = 15;
hXOffs = 4;
hYOffs = 7;
movementSpeed = 0.2;
maxMovementSpeed = 4.0;
maxFallingSpeed = 6;
stopMovementSpeed = 0.3;
jumpMomentum = -6;
gravity ... | 0 |
public static boolean manuallySetGuildLevel(String[] args, CommandSender s) {
//Various checks
if(Util.isBannedFromGuilds(s) == true){
//Checking if they are banned from the guilds system
s.sendMessage(ChatColor.RED + "You are currently banned from interacting with the Guilds system. Talk to your server ad... | 8 |
public static List readWatchableObjects(DataInputStream par0DataInputStream) throws IOException
{
ArrayList var1 = null;
for (byte var2 = par0DataInputStream.readByte(); var2 != 127; var2 = par0DataInputStream.readByte())
{
if (var1 == null)
{
var1 = ... | 9 |
@Override
public String execute(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
try {
List<BankDeposit> deposits = ReaderFactory.getInstance().getDOMReader()
.readXML(DataPath.XML_FILE);
request.setAttribute("deposi... | 1 |
public Configuration(String path, int splitSize) {
List<String> lines = new ArrayList<>();
try(BufferedReader br = new BufferedReader(new InputStreamReader(
new BufferedInputStream(new FileInputStream(new File(path)))))) {
while(true) {
String line = br.readLine();
if(line == null) {
... | 8 |
public static void otherMethod(int[] src,int k){
if( k > src.length){
return;
}
TreeSet<Integer> s = new TreeSet<Integer>();
for(int i=0;i<k;i++){
s.add(src[i]);
}
for(int i=k;i<src.length;i++){
int last = s.last();
if(last > src[i] ){
s.remove(last);
s.add(src[i]);
}
}
Iterator ... | 5 |
protected int checkForDraw() {
//db.a(includeImages,"Rules checkForDraw: with no images included");
//db.a(boardImagesStored > 0, "Rules checkForDraw: no board images stored");
// db.pr("Rules: stag count is "+stagnateCount);
// Check for stagnation.
if (stagnateCount == maxStagnationMoves * 2 - 1) ... | 9 |
protected String encodeTerm(List<Term> sentence, int idx, Response prediction, boolean isTrainingSet, String predictionType) {
Term term = sentence.get(idx);
String text = term.getText().trim();
StringBuilder builder = new StringBuilder();
builder.append("curToken=").append(text);
builder.append(" entityT... | 9 |
public static Vector<Assignment> assignNextChance() {
if(DEBUG) System.out.println("Making sure we have assigned all chance variables");
//get the next chance variable to assign
Variable nextChance = null;
for(int i = 1; i < variables.size(); i++) {
Variable v = variables.get(i);
if(v.isChance() && v.getA... | 9 |
private BinaryStdOut() { } | 0 |
public int getArrayIndex(int... ind) {
if(ind.length == indexDim) {
if(ind.length == 1) {
return ind[0];
}
if(ind.length == 2) {
if(this.checkIndex(0, ind[0]) == false ||
this.checkIndex(1, ind[1]) == false) {
... | 9 |
public boolean onCommand(CommandSender sender, Command cmd,
String commandLabel, String[] args) {
if (sender.hasPermission("peacekeeper.addbadword")) {
if (args[0] == "-d") {
for (String arg : args) {
config.FilterList.remove(arg);
}
} else {
for (String arg : args) {
config.FilterList.... | 4 |
private List<String> getPhoneNumbersDisplay() {
List<String> displayList = Lists.newArrayList();
for (PhoneNumber phoneNumber : phoneNumbers) {
displayList.add(phoneNumber.toDisplayString());
}
return displayList;
} | 1 |
public boolean startsWith(String word) {
if (word == null || word.length() == 0)
return false;
int len = 0;
TrieNode node = root;
while (len < word.length()) {
boolean found = false;
for (int i = 0; i < node.nodes.size(); i++) {
if (no... | 6 |
@Override
public byte[] getHTTPMessageBody() {
try {
writeToPatchContent();
} catch (Exception e) {
e.printStackTrace();
}
return "Request Invalid".getBytes();
} | 1 |
public void bytesWrite(int bytes, int clientId)
{
if (this.clientId == clientId)
{
for (Iterator i = observers.iterator(); i.hasNext();)
{
ObservableStreamListener listener = (ObservableStreamListener) i
.next();
listener.bytesWrite(bytes, clientId);
}
}
} | 2 |
@Override
public int[][] getCost() {
final int PAS_DE_TRONCON = this.getMaxArcCost() + 1;
int size = this.getNbVertices();
int[][] costs = new int[size][size];
for (int i = 0; i < size; ++i) {
for(int j=0; j<size; j++) {
costs[i][j] = PAS_DE_TRONCON;
... | 3 |
@Override
public Object execute(HttpServletRequest request, HttpServletResponse response) throws Exception {
Contexto oContexto = (Contexto) request.getAttribute("contexto");
oContexto.setVista("jsp/backlog/form.jsp");
BacklogBean oBacklogBean;
BacklogDao oBacklogDao;
oBacklo... | 1 |
@Override
public void keyPressed(KeyEvent e) {
int keycode = e.getKeyCode();
try {
good2.hero.getX();
good2.keyPressed(e);
} catch (Exception E) {
//pass
}
//Key commands
if (keycode == KeyEvent.VK_Q) {
WindowFrame.exit();
} if (keycode == KeyEvent.VK_R) {
WindowFrame.... | 8 |
@Override
public void handleDFSInit() {
// rst $28
dfs.addJumpTable(0x6e, 5);
dfs.addJumpTable(0x2fb, 55, "GameStateTable");
dfs.addJumpTable(0x6480, 8);
dfs.addJumpTable(0x6490, 8);
dfs.addJumpTable(0x64a0, 4);
dfs.addJumpTable(0x64a8, 4);
dfs.addFunction(0x0, "Unused_rst00");
dfs.addRawBytes(0x3,... | 7 |
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
if (qName.equals("voyageur")) {
if (currentVoyageur != null) {
throw new IllegalStateException("already processing a voyageur");
}
currentVoyageu... | 8 |
public int getNum() { return num; } | 0 |
public void run() {
synchronized (fQuitTimerObject) {
//
// Loop forever.
//
while (true) {
while (fQuitTimerStart == false) {
try {
fQuitTimerObject.wait();
}
... | 6 |
@Override
public void xterminated(Pipe pipe_) {
if (!anonymous_pipes.remove(pipe_)) {
Outpipe old = outpipes.remove(pipe_.get_identity());
assert(old != null);
fq.terminated (pipe_);
if (pipe_ == current_out)
current_out = null;
... | 2 |
public Vector<String> getBelegung(String sessionID){
Vector<String> resString = new Vector<String>();
CSVFileManager csvMgr = new CSVFileManager();
String stundenplan = "https://puls.uni-potsdam.de/qisserver/rds;jsessionid=" + sessionID + ".node11?state=wplan&week=-2&act=show&pool=&show=liste&... | 2 |
public void teleopInit() {
shooter.enable();
new SpinDown().start();
SmartDashboard.putBoolean("Enabled", true);
if (autonomouse != null) {
autonomouse.cancel();
}
if (teleop != null) {
teleop.start();
}
} | 2 |
private String addOptionalsToLaTex() {
String palautettava = "";
if (volume != 0) {
palautettava += "VOLUME = {" + volume + "},\n";
}
if (number != 0) {
palautettava += "NUMBER = {" + number + "},\n";
}
if (pages != null) {
palautettava... | 6 |
private int mapSingle(String s)
{
switch (s){
case "M": return 1000;
case "D": return 500;
case "C": return 100;
case "L": return 50;
case "X": return 10;
case "V": return 5;
case "I": return 1;
default: return 0;
}
} | 7 |
Subsets and Splits
SQL Console for giganticode/java-cmpx-v1
The query retrieves a limited number of text entries within a specific length range, providing basic filtering but minimal analytical insight.