file_name stringlengths 6 86 | file_path stringlengths 45 249 | content stringlengths 47 6.26M | file_size int64 47 6.26M | language stringclasses 1
value | extension stringclasses 1
value | repo_name stringclasses 767
values | repo_stars int64 8 14.4k | repo_forks int64 0 1.17k | repo_open_issues int64 0 788 | repo_created_at stringclasses 767
values | repo_pushed_at stringclasses 767
values |
|---|---|---|---|---|---|---|---|---|---|---|---|
Line.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/map/Line.java | package mahomaps.map;
import javax.microedition.lcdui.Graphics;
import mahomaps.screens.MapCanvas;
public class Line {
public final Geopoint start;
private final Geopoint[] source;
private int forZoom = -1;
private int[] cache = null;
private int thickness = 2;
public int drawFrom = 0;
public Line(Geopoint ... | 2,612 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
TileId.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/map/TileId.java | package mahomaps.map;
public class TileId {
public final int x;
public final int y;
public final int zoom;
public final int map;
public TileId(int x, int y, int zoom, int map) {
this.x = x;
this.y = y;
this.zoom = zoom;
this.map = map;
}
}
| 257 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
MapState.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/map/MapState.java | package mahomaps.map;
import cc.nnproject.json.JSON;
import cc.nnproject.json.JSONObject;
import mahomaps.Settings;
public class MapState {
public int tileX, tileY;
public int xOffset, yOffset;
public int zoom;
public final void ClampOffset() {
while (xOffset > 0) {
tileX--;
xOffset -= 256;
}
while (... | 2,562 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
TilesProvider.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/map/TilesProvider.java | package mahomaps.map;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;
import java.util.Vector;
import javax.microedition.io.Connector;
import javax.microedition.io.HttpConnection;
import javax.microedition.io.file... | 22,879 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
UIElement.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/UIElement.java | package mahomaps.ui;
import java.util.Vector;
import javax.microedition.lcdui.Graphics;
public abstract class UIElement {
public abstract void Paint(Graphics g, int x, int y, int w, int h);
public int X, Y, W, H;
// INPUT
private static volatile Vector queue = new Vector();
private static volatile Vector qu... | 3,249 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
IButtonHandler.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/IButtonHandler.java | package mahomaps.ui;
public interface IButtonHandler {
public void OnButtonTap(UIElement sender, int uid);
}
| 111 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
UIComposite.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/UIComposite.java | package mahomaps.ui;
import java.util.Vector;
public abstract class UIComposite extends UIElement {
public final Vector children = new Vector();
public UIComposite() {
}
public UIComposite(UIElement[] elems) {
for (int i = 0; i < elems.length; i++) {
children.addElement(elems[i]);
}
}
}
| 307 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
ITouchAcceptor.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/ITouchAcceptor.java | package mahomaps.ui;
public interface ITouchAcceptor {
/**
* Событие зажатия. Вызывается при зажатии элемента. Должно использоваться
* только для переключения визуальных состояний.
*/
public void OnPress();
/**
* Событие отпускания. Вызывается, когда ввод больше не считается нажатием, либо
* ввод отпущен... | 898 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
Button.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/Button.java | package mahomaps.ui;
import javax.microedition.lcdui.Font;
import javax.microedition.lcdui.Graphics;
public class Button extends UIElement implements ITouchAcceptor {
public String text;
private int id;
private IButtonHandler handler;
public int margin = 3;
private boolean hold = false;
public Button(String t... | 1,565 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
SimpleText.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/SimpleText.java | package mahomaps.ui;
import javax.microedition.lcdui.Font;
import javax.microedition.lcdui.Graphics;
public class SimpleText extends UIElement {
private String text;
private Font font;
private int hAnchor;
private int vAnchor;
public SimpleText(String s, Font f, int hAnchor, int vAnchor) {
this.text = s;
i... | 1,495 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
ControlButton.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/ControlButton.java | package mahomaps.ui;
import java.io.IOException;
import javax.microedition.lcdui.Canvas;
import javax.microedition.lcdui.Graphics;
import javax.microedition.lcdui.Image;
import mahomaps.MahoMapsApp;
import mahomaps.Settings;
import tube42.lib.imagelib.ImageUtils;
public class ControlButton extends UIElement impleme... | 1,748 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
ControlButtonsContainer.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/ControlButtonsContainer.java | package mahomaps.ui;
import java.util.Vector;
import javax.microedition.lcdui.Font;
import javax.microedition.lcdui.Graphics;
import mahomaps.MahoMapsApp;
import mahomaps.screens.MapCanvas;
public class ControlButtonsContainer extends UIElement implements IButtonHandler {
private final MapCanvas map;
private fin... | 1,838 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
FillFlowContainer.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/FillFlowContainer.java | package mahomaps.ui;
import java.util.Enumeration;
import javax.microedition.lcdui.Graphics;
public class FillFlowContainer extends UIComposite {
public FillFlowContainer() {
super();
}
public FillFlowContainer(UIElement[] elems) {
super(elems);
}
public void Paint(Graphics g, int x, int y, int w, int h)... | 606 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
UITouchZone.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/UITouchZone.java | package mahomaps.ui;
import mahomaps.map.Rect;
public class UITouchZone extends Rect {
public UITouchZone(ITouchAcceptor elem, int x, int y, int w, int h) {
super(x, y, w, h);
element = elem;
}
public final ITouchAcceptor element;
}
| 245 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
GeolocationButton.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/GeolocationButton.java | package mahomaps.ui;
import javax.microedition.lcdui.Graphics;
import mahomaps.MahoMapsApp;
import mahomaps.map.GeoUpdateThread;
import mahomaps.screens.MapCanvas;
public class GeolocationButton extends ControlButton {
private final MapCanvas map;
private boolean hasGeo;
public GeolocationButton(MapCanvas map)... | 984 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
StaticContainer.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/StaticContainer.java | package mahomaps.ui;
import java.util.Enumeration;
import javax.microedition.lcdui.Graphics;
public class StaticContainer extends UIComposite {
public StaticContainer() {
super();
}
public StaticContainer(UIElement[] elems) {
super(elems);
}
public void Paint(Graphics g, int x, int y, int w, int h) {
E... | 505 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
ColumnsContainer.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/ColumnsContainer.java | package mahomaps.ui;
import javax.microedition.lcdui.Graphics;
public class ColumnsContainer extends UIComposite {
public int stretchableElement = -1;
public ColumnsContainer() {
}
public ColumnsContainer(UIElement[] elems) {
super(elems);
}
public void Paint(Graphics g, int x, int y, int w, int h) {
in... | 1,010 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
MenuButton.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/MenuButton.java | package mahomaps.ui;
import javax.microedition.lcdui.Graphics;
import mahomaps.MahoMapsApp;
public class MenuButton extends ControlButton {
public MenuButton(IButtonHandler handler) {
super(1, handler, 2);
}
public void Paint(Graphics g, int x, int y, int w, int h) {
if (MahoMapsApp.route == null)
super.... | 364 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
SearchButton.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/ui/SearchButton.java | package mahomaps.ui;
import javax.microedition.lcdui.Graphics;
import mahomaps.MahoMapsApp;
public class SearchButton extends ControlButton {
public SearchButton(IButtonHandler handler) {
super(0, handler, 1);
}
public void Paint(Graphics g, int x, int y, int w, int h) {
if (MahoMapsApp.lastSearch == null &... | 402 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
Http403Exception.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/api/Http403Exception.java | package mahomaps.api;
public class Http403Exception extends Exception {
public Http403Exception() {
}
}
| 107 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
YmapsApiBase.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/api/YmapsApiBase.java | package mahomaps.api;
import cc.nnproject.json.*;
import java.io.ByteArrayOutputStream;
import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Enumeration;
import java.util.Hashtable;
import javax.microedition.io.Connector;
import javax.m... | 6,177 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
YmapsApi.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/api/YmapsApi.java | package mahomaps.api;
import java.io.IOException;
import javax.microedition.io.ConnectionNotFoundException;
import javax.microedition.rms.RecordStore;
import cc.nnproject.json.*;
import mahomaps.Settings;
import mahomaps.map.Geopoint;
public final class YmapsApi extends YmapsApiBase {
private static final String... | 3,586 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
BookmarksScreen.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/BookmarksScreen.java | package mahomaps.screens;
import javax.microedition.lcdui.Choice;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.List;
import javax.microedition.lcdui.TextBox;
import javax.microedition.rms.RecordSto... | 4,399 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
AboutScreen.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/AboutScreen.java | package mahomaps.screens;
import java.io.IOException;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Image;
import javax.microedition.lcdui.ImageItem;
import ja... | 4,358 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
SearchLoader.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/SearchLoader.java | package mahomaps.screens;
import java.io.IOException;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Gauge;
import javax.microedition.lcdui.StringItem;
import ... | 1,804 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
APIReconnectForm.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/APIReconnectForm.java | package mahomaps.screens;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Gauge;
import javax.microedition.lcdui.Item;
import javax.microedition.lcdui.ItemCommand... | 2,441 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
MenuScreen.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/MenuScreen.java | package mahomaps.screens;
import javax.microedition.lcdui.Choice;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.List;
import mahomaps.MahoMapsApp;
import mahomaps.map.TilesProvider;
public class M... | 1,763 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
SearchResultScreen.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/SearchResultScreen.java | package mahomaps.screens;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Item;
import javax.microedition.lcdui.StringItem;
import cc.nnproject.json.*;
import m... | 2,753 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
CacheManager.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/CacheManager.java | package mahomaps.screens;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Gauge;
import javax.microedition.lcdui.Item;
import javax.microedition.lcdui.ItemCommand... | 2,158 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
MultitouchCanvas.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/MultitouchCanvas.java | package mahomaps.screens;
import javax.microedition.lcdui.game.GameCanvas;
import mahomaps.MahoMapsApp;
public abstract class MultitouchCanvas extends GameCanvas {
private final boolean isKemulator;
protected MultitouchCanvas() {
super(false);
isKemulator = MahoMapsApp.IsKemulator();
}
protected final voi... | 1,140 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
MapCanvas.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/MapCanvas.java | package mahomaps.screens;
import java.util.Vector;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Font;
import javax.microedition.lcdui.Graphics;
import javax.microedition.lcdui.TextBox;
import mah... | 16,508 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
MapLayerSelectionScreen.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/MapLayerSelectionScreen.java | package mahomaps.screens;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.List;
import mahomaps.MahoMapsApp;
import mahomaps.Settings;
import mahomaps.map.TilesProvider;
public class MapLayerSelecti... | 702 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
OtherAppsScreen.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/OtherAppsScreen.java | package mahomaps.screens;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Item;
import javax.microedition.lcdui.ItemCommandListener;
import javax.microedition.lcd... | 2,478 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
UpdateScreen.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/UpdateScreen.java | package mahomaps.screens;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Item;
import javax.microedition.lcdui.ItemCommandListener;
import javax.microedition.lcd... | 1,244 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
Splash.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/Splash.java | package mahomaps.screens;
import java.io.IOException;
import javax.microedition.lcdui.Canvas;
import javax.microedition.lcdui.Font;
import javax.microedition.lcdui.Graphics;
import javax.microedition.lcdui.Image;
import mahomaps.MahoMapsApp;
import tube42.lib.imagelib.ColorUtils;
public class Splash extends Canvas ... | 1,281 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
SettingsScreen.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/SettingsScreen.java | package mahomaps.screens;
import java.io.IOException;
import javax.microedition.lcdui.Choice;
import javax.microedition.lcdui.ChoiceGroup;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import... | 5,435 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
SearchScreen.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/SearchScreen.java | package mahomaps.screens;
import javax.microedition.lcdui.Choice;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.List;
import cc.nnproject.json.*;
import mahomaps.MahoMapsApp;
import mahomaps.map.G... | 1,884 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
KeyboardHelpScreen.java | /FileExtraction/Java_unseen/mahomaps_mm-v1/src/mahomaps/screens/KeyboardHelpScreen.java | package mahomaps.screens;
import javax.microedition.lcdui.Command;
import javax.microedition.lcdui.CommandListener;
import javax.microedition.lcdui.Displayable;
import javax.microedition.lcdui.Form;
import javax.microedition.lcdui.Item;
import javax.microedition.lcdui.StringItem;
import mahomaps.MahoMapsApp;
public ... | 1,262 | Java | .java | mahomaps/mm-v1 | 18 | 4 | 11 | 2023-05-01T09:07:22Z | 2024-05-05T22:00:52Z |
UtilsUnitTest.java | /FileExtraction/Java_unseen/community-code_amps/app/src/test/java/com/communitycode/amps/main/UtilsUnitTest.java | package com.communitycode.amps.main;
import org.junit.Test;
import static com.communitycode.amps.main.Utils.convertCelsiusToFahrenheit;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testi... | 586 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
CurrentTrackerUnitTest.java | /FileExtraction/Java_unseen/community-code_amps/app/src/test/java/com/communitycode/amps/main/CurrentTrackerUnitTest.java | package com.communitycode.amps.main;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
public class CurrentTrackerUnitTest {
@Test
public void addHistory_overflow() throws Exception {
BatteryInfoInterf... | 1,915 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
BatteryMethodPicklerTest.java | /FileExtraction/Java_unseen/community-code_amps/app/src/test/java/com/communitycode/amps/main/settings/BatteryMethodPicklerTest.java | package com.communitycode.amps.main.settings;
import com.communitycode.amps.main.BatteryInfoInterface;
import com.communitycode.amps.main.CurrentTracker;
import com.communitycode.amps.main.battery.BatteryMethodInterface;
import com.communitycode.amps.main.battery.OfficialBatteryMethod;
import com.communitycode.amps.ma... | 2,542 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
MainActivity.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/MainActivity.java | package com.communitycode.amps.main;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.PorterDuff;
import android.os.BatteryManager;
import android.os.Build;
import android.preference.PreferenceManager;
import android.support.v7.app.AppCompatActivity;
import android.os.B... | 10,291 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
CurrentTracker.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/CurrentTracker.java | package com.communitycode.amps.main;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.Handler;
import android.preference.PreferenceManager;
import com.communitycode.amps.main.battery.BatteryMethodInterface;
import com.communitycode.amps.main.battery.OfficialBatteryMethod;
i... | 3,697 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
BatteryPresenter.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/BatteryPresenter.java | package com.communitycode.amps.main;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.BatteryManager;
import android.os.Build;
import android.util.Log;
public class BatteryPresenter {
private final Batte... | 2,853 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
BatteryInfoAlertDialog.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/BatteryInfoAlertDialog.java | package com.communitycode.amps.main;
import android.app.Dialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v4.app.DialogFragment;
import android.support.v7.app.AlertDialog;
import com.communitycode.... | 1,274 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
Utils.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/Utils.java | package com.communitycode.amps.main;
import android.view.View;
import android.view.ViewGroup;
import java.util.ArrayList;
public class Utils {
public static ArrayList<View> flattenViewGroup(ViewGroup root) {
ArrayList<View> views = new ArrayList<>();
if (root == null) {
return views;
... | 742 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
BatteryInfoInterface.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/BatteryInfoInterface.java | package com.communitycode.amps.main;
public interface BatteryInfoInterface {
// value in milliamps
void setMaxAmps(Integer value);
// value in milliamps
void setMinAmps(Integer value);
// value in milliamps
void setCurrentAmps(Integer value);
// value in volts
void setVoltage(Double ... | 817 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
SettingsActivity.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/settings/SettingsActivity.java | package com.communitycode.amps.main.settings;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
public class SettingsActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Display the... | 505 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
SettingsFragment.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/settings/SettingsFragment.java | package com.communitycode.amps.main.settings;
import android.os.Bundle;
import android.preference.PreferenceFragment;
import com.communitycode.amps.main.R;
public class SettingsFragment extends PreferenceFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstan... | 443 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
BatteryMethodPickler.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/settings/BatteryMethodPickler.java | package com.communitycode.amps.main.settings;
import android.content.Context;
import android.util.Log;
import com.communitycode.amps.main.battery.BatteryMethodInterface;
import com.communitycode.amps.main.battery.OfficialBatteryMethod;
import com.communitycode.amps.main.battery.UnofficialBatteryMethod;
import com.goo... | 3,485 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
UnofficialBatteryMethodAdapter.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/settings/UnofficialBatteryMethodAdapter.java | package com.communitycode.amps.main.settings;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CheckBox;
import android.widget.TextView;
import com.communitycode.amps.main.R... | 3,966 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
UnofficialBatteryApiPreference.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/settings/UnofficialBatteryApiPreference.java | package com.communitycode.amps.main.settings;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.res.TypedArray;
import android.os.Parcel;
import android.os.Parcelable;
import android.preference.DialogPreference;
im... | 10,492 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
UnofficialBatteryApi.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/battery/UnofficialBatteryApi.java | package com.communitycode.amps.main.battery;
import android.os.Build;
import java.util.Locale;
public class UnofficialBatteryApi {
public static final String BUILD_MODEL = Build.MODEL.toLowerCase(Locale.ENGLISH);
public static Integer getCurrent() {
for (UnofficialBatteryMethod unofficialBatteryMe... | 7,661 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
OfficialBatteryMethod.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/battery/OfficialBatteryMethod.java | package com.communitycode.amps.main.battery;
import android.content.Context;
import android.os.BatteryManager;
import android.os.Build;
public class OfficialBatteryMethod implements BatteryMethodInterface {
private final transient Context mCtx;
public OfficialBatteryMethod(Context context) {
mCtx = c... | 839 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
UnofficialBatteryMethod.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/battery/UnofficialBatteryMethod.java | package com.communitycode.amps.main.battery;
import com.communitycode.amps.main.battery.reader.BatteryAttrTextReader;
import com.communitycode.amps.main.battery.reader.OneLineReader;
import com.communitycode.amps.main.battery.reader.SMemTextReader;
import java.io.File;
public class UnofficialBatteryMethod implement... | 2,287 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
BatteryAttrTextReader.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/battery/reader/BatteryAttrTextReader.java | /*
* Copyright (c) 2010-2013 Ran Manor
*
* This file is part of CurrentWidget.
*
* CurrentWidget 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 op... | 3,486 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
SMemTextReader.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/battery/reader/SMemTextReader.java | /*
* Copyright (c) 2010-2011 Ran Manor
*
* This file is part of CurrentWidget.
*
* CurrentWidget 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 op... | 3,096 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
OneLineReader.java | /FileExtraction/Java_unseen/community-code_amps/app/src/main/java/com/communitycode/amps/main/battery/reader/OneLineReader.java | /*
* Copyright (c) 2010-2011 Ran Manor
*
* This file is part of CurrentWidget.
*
* CurrentWidget 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 op... | 2,306 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
ActivityTest.java | /FileExtraction/Java_unseen/community-code_amps/app/src/androidTest/java/com/communitycode/amps/main/ActivityTest.java | package com.communitycode.amps.main;
// Disable test as intermediate progress bar prevents espresso's getActivity from working.
//
//import android.support.test.espresso.ViewInteraction;
//import android.support.test.rule.ActivityTestRule;
//import android.support.test.runner.AndroidJUnit4;
//import android.test.su... | 4,385 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
UtilsInstrumentedTest.java | /FileExtraction/Java_unseen/community-code_amps/app/src/androidTest/java/com/communitycode/amps/main/UtilsInstrumentedTest.java | package com.communitycode.amps.main;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import org.junit.Test;
import org.junit.runner.RunWit... | 2,309 | Java | .java | community-code/amps | 29 | 14 | 5 | 2018-02-15T00:21:59Z | 2019-06-30T16:25:55Z |
ParserTest.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/test/java/org/openjdk/backports/ParserTest.java | package org.openjdk.backports;
import org.junit.Assert;
import org.junit.Test;
import org.openjdk.backports.jira.Parsers;
public class ParserTest {
static final String SAMPLE_COMMENT_OLD = "URL: http://hg.openjdk.java.net/jdk/jdk/rev/66f5241da404\n" +
"User: shade\n" +
"Date: 2019-04-15 1... | 2,278 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
VersionsTest.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/test/java/org/openjdk/backports/VersionsTest.java | package org.openjdk.backports;
import org.junit.Assert;
import org.junit.Test;
import org.openjdk.backports.jira.Versions;
public class VersionsTest {
@Test
public void testParseVersion() {
Assert.assertEquals(8, Versions.parseMajorShenandoah("8-shenandoah"));
Assert.assertEquals(11, Version... | 9,681 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
StringUtilsTest.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/test/java/org/openjdk/backports/StringUtilsTest.java | package org.openjdk.backports;
import org.junit.Assert;
import org.junit.Test;
import java.util.List;
public class StringUtilsTest {
@Test
public void lines() {
String[] examples = {
"line1\rline2\rline3\r",
"line1\nline2\nline3\n",
"line1\r\nline2\r\n... | 674 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
Options.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/Options.java | /*
* Copyright (c) 2018, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 8,269 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
Auth.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/Auth.java | /*
* Copyright (c) 2023, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 1,694 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
Actionable.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/Actionable.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 1,454 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
Actions.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/Actions.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,005 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
Main.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/Main.java | /*
* Copyright (c) 2018, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 7,514 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
StringUtils.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/StringUtils.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 3,435 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
HgDB.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/hg/HgDB.java | /*
* Copyright (c) 2018, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 4,112 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
HgRecord.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/hg/HgRecord.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,295 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
BackportStatus.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/BackportStatus.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 1,414 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
Common.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/Common.java | /*
* Copyright (c) 2018, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 3,895 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
FilterCSVReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/csv/FilterCSVReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 1,831 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
AbstractCSVReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/csv/AbstractCSVReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 1,945 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
PendingPushCSVReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/csv/PendingPushCSVReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 1,857 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
IssueCSVReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/csv/IssueCSVReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,391 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
PushesCSVReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/csv/PushesCSVReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,346 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
ParityCSVReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/csv/ParityCSVReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,161 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
LabelCSVReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/csv/LabelCSVReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 1,829 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
AffiliationCSVReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/csv/AffiliationCSVReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,043 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
LabelHistoryCSVReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/csv/LabelHistoryCSVReport.java | /*
* Copyright (c) 2020, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 1,969 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
PendingPushHTMLReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/html/PendingPushHTMLReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,743 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
IssueHTMLReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/html/IssueHTMLReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 8,963 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
ReleaseNotesHTMLReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/html/ReleaseNotesHTMLReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 7,938 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
AffiliationHTMLReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/html/AffiliationHTMLReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,617 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
FilterHTMLReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/html/FilterHTMLReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,625 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
PushesHTMLReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/html/PushesHTMLReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 11,758 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
LabelHistoryHTMLReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/html/LabelHistoryHTMLReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,573 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
ParityHTMLReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/html/ParityHTMLReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 10,512 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
AbstractHTMLReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/html/AbstractHTMLReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,786 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
LabelHTMLReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/html/LabelHTMLReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 3,438 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
AbstractTextReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/text/AbstractTextReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,222 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
LabelHistoryTextReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/text/LabelHistoryTextReport.java | /*
* Copyright (c) 2020, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,321 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
IssueTextReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/text/IssueTextReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 5,793 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
PushesTextReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/text/PushesTextReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 7,064 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
ReleaseNotesTextReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/text/ReleaseNotesTextReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 5,866 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
AffiliationTextReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/text/AffiliationTextReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,619 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
PendingPushTextReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/text/PendingPushTextReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 2,393 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
ParityTextReport.java | /FileExtraction/Java_unseen/shipilev_jdk-backports-monitor/src/main/java/org/openjdk/backports/report/text/ParityTextReport.java | /*
* Copyright (c) 2019, Red Hat, Inc. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. ... | 8,348 | Java | .java | shipilev/jdk-backports-monitor | 14 | 6 | 1 | 2018-12-07T23:09:11Z | 2023-04-14T18:11:27Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.