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 models;
import java.util.Date;
import javax.persistence.Entity;
import javax.persistence.Table;
import play.db.jpa.Model;
@Entity
@Table(name = "admin")
public class Admin extends Model {
public Boolean botOwner;
public String userName;
public String hostName;
public String ircName;
public String a... | 136 |
github-java-corpus | 2,012 | package models;
import java.util.Arrays;
import java.util.List;
import models.deadbolt.Role;
import models.deadbolt.RoleHolder;
public class JavabotRoleHolder implements RoleHolder {
public static final String BOT_ADMIN = "botAdmin";
public static final String BOT_OWNER = "botOwner";
public List<? exten... | 143 |
github-java-corpus | 2,012 | package models;
import java.util.Set;
import java.util.TreeSet;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Table;
import controllers.AdminController;
import org.hibernate.annotations.CollectionOfElements;
import play.db.jpa.Model;
@Entity
@Table(name = "configuratio... | 425 |
github-java-corpus | 2,012 | package models;
import java.util.Calendar;
import java.util.Collections;
import java.util.Date;
import java.util.EnumSet;
import java.util.List;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.Table;
import javax.persistence.Transient;
... | 437 |
github-java-corpus | 2,012 | package models;
import play.db.jpa.Model;
import javax.persistence.Entity;
import javax.persistence.Table;
import java.util.Date;
@Entity
@Table(name="karma")
public class Karma extends Model {
String name;
Integer value = 0;
String userName;
Date updated;
}
| 58 |
github-java-corpus | 2,012 | package models;
import play.db.jpa.Model;
import javax.persistence.DiscriminatorColumn;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.Table;
import java.u... | 174 |
github-java-corpus | 2,012 | package models;
import javax.persistence.Entity;
@Entity
public class OperationEvent extends AdminEvent {
public String operation;
public OperationEvent(EventType type, String operation, String requestedBy) {
super(type, requestedBy);
this.operation = operation;
}
}
| 55 |
github-java-corpus | 2,012 | package models;
import javax.persistence.Entity;
import javax.persistence.Table;
import play.db.jpa.Model;
@Entity
@Table(name = "registrations")
public class NickRegistration extends Model {
public String url;
public String nick;
public String host;
public String twitterName;
}
| 57 |
github-java-corpus | 2,012 | package models;
import java.util.Date;
import java.util.List;
import javax.persistence.Entity;
import javax.persistence.Table;
import controllers.AdminController;
import play.data.validation.Check;
import play.data.validation.CheckWith;
import play.data.validation.Required;
import play.db.jpa.Model;
@Entity
@Table(n... | 264 |
github-java-corpus | 2,012 | package models;
public enum EventType {
ADD,
DELETE,
UPDATE
}
| 17 |
github-java-corpus | 2,012 | package models;
import java.io.File;
import javax.persistence.Entity;
@Entity
public class ApiEvent extends AdminEvent {
public String name;
public String packages;
public String baseUrl;
public String file;
public ApiEvent(boolean newApi, String requestedBy, String name, String packages, String baseUrl, F... | 148 |
github-java-corpus | 2,012 | package models;
import java.util.Date;
import javax.persistence.Entity;
import javax.persistence.Table;
import play.db.jpa.Model;
@Entity
@Table(name = "factoids")
public class Factoid extends Model {
public String name;
public String value;
public String userName;
public Date updated;
public Dat... | 182 |
github-java-corpus | 2,012 | package models;
import play.db.jpa.Model;
import javax.persistence.Entity;
import javax.persistence.Table;
@Entity
@Table(name = "apis")
public class Api extends Model {
public String name;
public String baseUrl;
public String packages;
public String zipLocations;
}
| 55 |
github-java-corpus | 2,012 | package models;
import play.db.jpa.Model;
import javax.persistence.Entity;
import javax.persistence.Table;
import java.util.Date;
@Entity
@Table(name = "changes")
public class Change extends Model {
String message;
Date changeDate;
}
| 48 |
github-java-corpus | 2,012 | package models;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
@Entity
public class ChannelEvent extends AdminEvent {
public String channel;
public String key;
protected ChannelEvent() {
}
public ChannelEvent(String channel, String key, ... | 89 |
github-java-corpus | 2,012 | package controllers;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
import models.Admin;
import models.Change;
import models.Channel;
import models.Factoid;
import models.Karma;
import models.Log;
import play.data.binding.As;
import play.db.jpa.GenericModel;
impor... | 993 |
github-java-corpus | 2,012 | package controllers;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Date;
import java.util.List;
import controllers.deadbolt.Deadbolt;
import controllers.deadbolt.Restrict;
import models.Admin;
import models.Api;
import models.ApiEvent;
import models.Channel;
import mode... | 1,781 |
github-java-corpus | 2,012 | package controllers;
import controllers.deadbolt.AbstractDeadboltHandler;
import models.Admin;
import models.JavabotRoleHolder;
import models.deadbolt.RoleHolder;
public class JavabotDeadboltHandler extends AbstractDeadboltHandler {
public void beforeRoleCheck() {
}
@Override
public RoleHolder getRol... | 131 |
github-java-corpus | 2,012 | package controllers;
import java.io.Serializable;
import twitter4j.Twitter;
import twitter4j.TwitterException;
import twitter4j.TwitterFactory;
import twitter4j.auth.AccessToken;
import twitter4j.auth.RequestToken;
public class TwitterContext implements Serializable {
public String screenName;
final Twitter twit... | 145 |
github-java-corpus | 2,012 | package com.antwerkz.maven;
import java.util.Set;
import javax.annotation.processing.AbstractProcessor;
import javax.annotation.processing.ProcessingEnvironment;
import javax.annotation.processing.RoundEnvironment;
import javax.lang.model.element.AnnotationMirror;
import javax.lang.model.element.Element;
import javax.... | 365 |
github-java-corpus | 2,012 | package com.antwerkz.maven;
import javax.annotation.processing.Filer;
import javax.annotation.processing.RoundEnvironment;
import javax.annotation.processing.SupportedAnnotationTypes;
import javax.annotation.processing.SupportedSourceVersion;
import javax.lang.model.SourceVersion;
import javax.lang.model.element.Annot... | 781 |
github-java-corpus | 2,012 | package com.antwerkz.maven;
public @interface SPI {
Class[] value() default {};
} | 20 |
github-java-corpus | 2,012 | package org.scoutant.blokish;
import android.app.Dialog;
import android.content.Context;
import android.view.View;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
import android.widget.TextView;
public class EndGameDialog extends Dialog {
public EndGameDialog(final Context context, boolean ... | 216 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 2,289 |
github-java-corpus | 2,012 | package org.scoutant.blokish;
import android.app.Dialog;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.view.View;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
public class RateDialog extends ... | 397 |
github-java-corpus | 2,012 | package org.scoutant.blokish;
import android.content.Context;
import android.content.SharedPreferences;
public class AppRater {
private final static int DAYS_UNTIL_PROMPT = 3;
private final static int LAUNCHES_UNTIL_PROMPT = 8;
public static void app_launched(Context context) {
SharedPr... | 283 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 329 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 1,886 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 2,371 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 1,338 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 2,591 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 385 |
github-java-corpus | 2,012 | package org.scoutant.blokish;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.Window;
public class SplashScr... | 266 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 955 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 2,955 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 231 |
github-java-corpus | 2,012 | /*
* Copyright (C) 2011- stephane coutant
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed ... | 2,791 |
github-java-corpus | 2,012 | package org.scoutant.blokish;
import org.scoutant.blokish.R;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.os.Handler;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.Interpolator;
import android.view.animation.Rota... | 443 |
github-java-corpus | 2,012 | package org.scoutant.blokish;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
public class Help extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.... | 158 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 486 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 511 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 532 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
// Copyright 2010 by Stefano Fornari
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, ... | 851 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 1,827 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 5,375 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 2,200 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 1,510 |
github-java-corpus | 2,012 | /*
* cameracontrol
* Copyright (C) 2010 Stefano Fornari
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by
* the Free Software Foundation with the addition of the following permission
* added to Section ... | 306 |
github-java-corpus | 2,012 | // Copyright 2010 by Stefano Fornari
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distri... | 231 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 882 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 2,336 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 3,822 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 4,010 |
github-java-corpus | 2,012 | /* Copyright 2010 by Stefano Fornari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distri... | 1,498 |
github-java-corpus | 2,012 | /* Copyright 2010 by Stefano Fornari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distri... | 5,021 |
github-java-corpus | 2,012 | /* Copyright 2010 by Stefano Fornari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distri... | 1,691 |
github-java-corpus | 2,012 | /* Copyright 2010 by Stefano Fornari
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distri... | 600 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 1,475 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 425 |
github-java-corpus | 2,012 | // Copyright 2001 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 820 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 1,470 |
github-java-corpus | 2,012 | /* Copyright 2010 by Stefano Fornari
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distri... | 378 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 986 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 1,526 |
github-java-corpus | 2,012 | // Copyright 2010 by Stefano Fornari
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distri... | 334 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 7,783 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 2,590 |
github-java-corpus | 2,012 | // Copyright 2000 by David Brownell <dbrownell@users.sourceforge.net>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later vers... | 8,245 |
github-java-corpus | 2,012 | /* Copyright 2010 by Stefano Fornari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distri... | 668 |
github-java-corpus | 2,012 | /* Copyright 2010 by Stefano Fornari
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distri... | 1,295 |
github-java-corpus | 2,012 | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ste.ptp.eos;
import java.io.ByteArrayInputStream;
import java.lang.reflect.Method;
import junit.framework.TestCase;
import ste.ptp.PTPUnsupportedException;
/**
*
* @author ste
*/
public class EosEventParser... | 4,585 |
github-java-corpus | 2,012 | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ste.ptp;
import junit.framework.TestCase;
/**
*
* @author ste
*/
public class PTPExceptionTest extends TestCase {
public PTPExceptionTest(String testName) {
super(testName);
}
@Ove... | 307 |
github-java-corpus | 2,012 | package com.xiaokan.algo;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Arrays;... | 6,200 |
github-java-corpus | 2,012 | package com.xiaokan.generator;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
public class EnsureIncreasingOrder {
/**
* @param args
*/
public static void main(String[] args) throws Exception {
FileInputStream fis = new FileInputStream("E:/inverted_index/INVERTED_INDEX_FILE.DAT");
Buffe... | 324 |
github-java-corpus | 2,012 | package com.xiaokan.generator;
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Random;
public class DataGenerator {
public static int numberOfLists = 3;
public static int maxNumberOfPostingsInList = 5;
public static int minDGap = 1, maxDGap = 10... | 810 |
github-java-corpus | 2,012 | package com.xiaokan.test;
import java.io.FileOutputStream;
import java.io.IOException;
public class TestCase {
public static void main(String args[]) throws IOException {
FileOutputStream fos = new FileOutputStream("d:/d.dat");
fos.write(0xABCDEF);
fos.close();
}
}
| 64 |
github-java-corpus | 2,012 | package com.xiaokan.test;
public class Solution {
/**
* @param args
*/
public static void main(String[] args) {
Solution s = new Solution();
int A[] = { 1, 0 };
System.out.println(s.arrayJmp(A));
}
public int arrayJmp(int[] A) {
// Check illegal A array
if (A == null) {
return 0;
} else if (A... | 249 |
github-java-corpus | 2,012 | import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Random;
public class DataGenerator {
public static int numberOfLists = 3;
public static int maxNumberOfPostingsInList = 5;
public static int minDGap = 1, maxDGap = 10;
public static String outputF... | 802 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 502 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 519 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 351 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 626 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 2,288 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 351 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 2,238 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 1,835 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 338 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 1,007 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 284 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 459 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 286 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 2,041 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 514 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 371 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 1,723 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 349 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 2,983 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 702 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 762 |
github-java-corpus | 2,012 | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | 1,229 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.