query
stringlengths
7
33.1k
document
stringlengths
7
335k
metadata
dict
negatives
listlengths
3
101
negative_scores
listlengths
3
101
document_score
stringlengths
3
10
document_rank
stringclasses
102 values
Methode de conversion d'une MAP en Liste
public static <K, T> List<T> convertMapToList(Map<K, T> map) { // Si la collection est nulle if(map == null) return null; // On retourne l'ensemble return new ArrayList<T>(map.values()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic void convertitMap(Map<String, Object> map) {\n\t\t\n\t}", "java.util.List<com.sanqing.sca.message.ProtocolDecode.SimpleMap> \n getSimpleMapList();", "public List<Map<String, Object>> funcionarioPorDepartamento(Integer cod_departamento);", "@Override\n\tpublic List selectList2(Objec...
[ "0.69954747", "0.6780131", "0.633641", "0.63327116", "0.624173", "0.6040918", "0.6029881", "0.6004457", "0.599218", "0.5990797", "0.59712476", "0.5945335", "0.59202117", "0.5875381", "0.583742", "0.5837332", "0.58362293", "0.58153814", "0.5808636", "0.5807298", "0.58036655", ...
0.66292125
2
Methode de conversion d'une MAP en Set
public static <K, T> Set<T> convertMapToSet(Map<K, T> map) { // Si la collection est nulle if(map == null) return null; // On retourne l'ensemble return new HashSet<T>(map.values()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Set <JAVATYPE> convertSet(Set<JAVATYPE> oldSet, final METATYPE meta);", "Set<X> toSet();", "static Set<String> readValueAsSet(Map m, String key) {\n Set<String> result = new HashSet<>();\n Object val = m.get(key);\n if (val == null) {\n if(\"collection\".equals(key)){\n //for collection co...
[ "0.69490665", "0.66747695", "0.6424471", "0.62798053", "0.622415", "0.61743134", "0.61623394", "0.61602795", "0.6059278", "0.6050282", "0.6003314", "0.5990735", "0.59891874", "0.5978995", "0.5938694", "0.5888891", "0.5861981", "0.5859225", "0.58339524", "0.5830954", "0.582281...
0.76687706
0
Interface of all the object that wants to be able to be converted into a stream of bytes.
public interface Serializable { /** * Method to convert the object into a stream * * @param out OutputSerializer to write the object to * @throws IOException in case of an IO-error */ void writeObject(OutputSerializer out) throws java.io.IOException; /** * Method to build the object from a stream of b...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public interface Serialization {\n\n byte[] objSerialize(Object obj);\n\n Object ObjDeserialize(byte[] bytes);\n}", "public InputStream asByteStream() {\n return new ByteArrayInputStream(rawBytes);\n }", "public interface Serializable {\n /** Convert object into byte sequence. */\n void s...
[ "0.6592663", "0.63991344", "0.63558567", "0.63255125", "0.63255095", "0.6265434", "0.6251866", "0.62289333", "0.615955", "0.6107967", "0.61039245", "0.60467535", "0.60282314", "0.6000371", "0.5998649", "0.5998036", "0.59777904", "0.59777904", "0.5960861", "0.596079", "0.59392...
0.66774917
0
Method to convert the object into a stream
void writeObject(OutputSerializer out) throws java.io.IOException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Stream getStream(Streamable type){\n return Stream.builder().add(type).build() ;\n }", "void serialize(Object obj, OutputStream stream) throws IOException;", "public abstract <T> SerializationStream writeObject(T t);", "void mo6321a(OutputStream outputStream, Object obj);", "public abstra...
[ "0.66927105", "0.6556561", "0.6460816", "0.6408465", "0.6351036", "0.634206", "0.63070345", "0.6152495", "0.60453117", "0.59709847", "0.5965581", "0.5962238", "0.59586024", "0.5951356", "0.5951007", "0.5927637", "0.591333", "0.5902245", "0.5889363", "0.58697456", "0.5795342",...
0.5119271
93
Method to build the object from a stream of bytes
void readObject(InputSerializer in) throws java.io.IOException;
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "T deserialize(InputStream stream) throws IOException;", "Object deserialize(Class objClass, InputStream stream) throws IOException;", "private synchronized DataSource fromBytes(byte[] bytes) {\n Kryo kryo = new Kryo();\n Input input = new Input(new ByteArrayInputStream(bytes));\n DataSourc...
[ "0.6631561", "0.6461124", "0.6406122", "0.63748336", "0.63418275", "0.6310371", "0.62629116", "0.6127332", "0.6124892", "0.61156213", "0.60942966", "0.60616326", "0.5997833", "0.599263", "0.5988344", "0.5916201", "0.5915049", "0.59095615", "0.59034693", "0.5902309", "0.586719...
0.0
-1
setea el precio de venta para la empresa baterias..
private void setPrecioVentaBaterias() throws Exception { RegisterDomain rr = RegisterDomain.getInstance(); long idListaPrecio = this.selectedDetalle.getListaPrecio().getId(); String codArticulo = this.selectedDetalle.getArticulo().getCodigoInterno(); ArticuloListaPrecioDetalle lista = rr.getListaPrecioDetalle...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setPrecio(float precio) {\r\n this.precio = precio;\r\n }", "public void setPrecio(int precio) {\r\n\t\tthis.precio = precio;\r\n\t}", "public void setPrecio(double precio) {\n\t\tthis.precio = precio;\n\t}", "@Override\n\tpublic void acelerar() {\n\t\t// TODO Auto-generated method stub...
[ "0.6957178", "0.6947758", "0.6832868", "0.67382324", "0.67061925", "0.66969985", "0.6691998", "0.66701394", "0.66105145", "0.65933037", "0.65889215", "0.65731764", "0.6516934", "0.6496232", "0.6465626", "0.64600945", "0.64424384", "0.63994956", "0.6394139", "0.6373109", "0.63...
0.6571882
12
TODO Autogenerated method stub
@Override public User addUser(User user) { return userDatabase.put(user.getEmail(), user); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public User getUser(String email) { return userDatabase.get(email); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public User getUserWithToken(String token) { String email = tokenRepository.getEmail(token); if (email != null){ return userDatabase.get(email); } return null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public Gift createGift(GiftCreator giftCreator, Long idChain,String token) { User user = getUserWithToken(token); if(user != null){ String photoUri = saveNewPhoto(giftCreator.getImageBytes(),""); String photoThumbUri = saveNewPhoto(giftCreator.getImageThumbBytes(), ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public Gift getGift(Long id) { return mGiftDatabase.get(id); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
Convert Map to List
private static Map<String, Integer> sortByComparator(Map<String, Integer> unsortMap) { List<Map.Entry<String, Integer>> list = new LinkedList<Map.Entry<String, Integer>>(unsortMap.entrySet()); // Sort list with comparator, to compare the Map values Comparator<Map.Entry<String, Integer>> comparator; compar...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static <K, T> List<T> convertMapToList(Map<K, T> map) {\r\n\t\t\r\n\t\t// Si la collection est nulle\r\n\t\tif(map == null) return null;\r\n\t\t\r\n\t\t// On retourne l'ensemble\r\n\t\treturn new ArrayList<T>(map.values());\r\n\t}", "public List<String> toList() {\n\t\treturn toList(dict.keySet());\n\t}",...
[ "0.8465804", "0.72332454", "0.6945983", "0.68987894", "0.6855255", "0.67934203", "0.6742536", "0.67074364", "0.6632813", "0.65751415", "0.6522322", "0.6458181", "0.64025855", "0.63701034", "0.6334896", "0.6308042", "0.6150596", "0.61350036", "0.6099598", "0.6054797", "0.60416...
0.0
-1
Convert Map to List
private static Map<Long, Long> sortByComparatorGift(Map<Long, Long> unsortMap) { List<Map.Entry<Long, Long>> list = new LinkedList<Map.Entry<Long, Long>>(unsortMap.entrySet()); // Sort list with comparator, to compare the Map values Comparator<Map.Entry<Long, Long>> comparator; comparator = Collections.re...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static <K, T> List<T> convertMapToList(Map<K, T> map) {\r\n\t\t\r\n\t\t// Si la collection est nulle\r\n\t\tif(map == null) return null;\r\n\t\t\r\n\t\t// On retourne l'ensemble\r\n\t\treturn new ArrayList<T>(map.values());\r\n\t}", "public List<String> toList() {\n\t\treturn toList(dict.keySet());\n\t}",...
[ "0.8465804", "0.72332454", "0.6945983", "0.68987894", "0.6855255", "0.67934203", "0.6742536", "0.67074364", "0.6632813", "0.65751415", "0.6522322", "0.6458181", "0.64025855", "0.63701034", "0.6334896", "0.6308042", "0.6150596", "0.61350036", "0.6099598", "0.6054797", "0.60416...
0.0
-1
The worst imp of the World ;p (No time)
private String saveNewPhoto(byte[] photo,String sufix){ String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date()); String imageFileName = "JPEG_" + timeStamp + "_" + sufix + ".jpg"; File potlachBase = new File("src/main/webapp/photos"); //Shit made ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int getBestGuy () {\r\n return poblac.getBestGuy();\r\n }", "public long getBestSolutionTime();", "double getMissChance();", "public double worstFitness()\r\n {\r\n\treturn worstFitness;\r\n }", "Object getWorst();", "public int getWorstScore()\n {\n return -1;\n }", ...
[ "0.61180055", "0.6098957", "0.6082796", "0.5977641", "0.58949584", "0.58873475", "0.57378674", "0.5715241", "0.5702853", "0.5700602", "0.5682665", "0.5672184", "0.5643335", "0.55861145", "0.55774814", "0.5574871", "0.5529801", "0.549548", "0.548966", "0.5484443", "0.5481051",...
0.0
-1
TODO Autogenerated method stub
@Override public void tableChanged(TableModelEvent e) { int row = e.getFirstRow(); int column = e.getColumn(); TableModel model = (TableModel)e.getSource(); String columnName = model.getColumnName(column); Object data = model.getValueAt(row, column); db.update(row, columnName, data); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public void stateChanged(ChangeEvent e) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
Creates new form FrmLogin
public FrmLogin() { initComponents(); this.setLocationRelativeTo(null); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public LOGINFORMF() {\n initComponents();\n }", "public loginForm() {\n initComponents();\n \n }", "public Form getLoginForm() {\n if (LoginForm == null) {//GEN-END:|14-getter|0|14-preInit\n // write pre-init user code here\n LoginForm = new Form(\"Welcom...
[ "0.6869843", "0.66716903", "0.6525043", "0.63996744", "0.63909745", "0.63805085", "0.6365953", "0.636326", "0.6346437", "0.62658364", "0.62650657", "0.62242305", "0.6216472", "0.6212176", "0.619958", "0.6197803", "0.6159741", "0.61493564", "0.6129443", "0.6129302", "0.612297"...
0.6234909
11
This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.
@SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { jPanel2 = new javax.swing.JPanel(); txtName = new javax.swing.JTextField(); jPanel5 = new javax.swing.JPanel(); txtName1 = new...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Form() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n }", "public MainForm() {\n initComponents();\n }", "public frmRectangulo() {\n initComponents();\n }", "public form() {\n ...
[ "0.73192346", "0.7290526", "0.7290526", "0.7290526", "0.7285891", "0.72480357", "0.7213616", "0.7207808", "0.71955067", "0.71891475", "0.71844363", "0.7159038", "0.71474695", "0.7092269", "0.7079923", "0.70560205", "0.69864315", "0.697697", "0.69552195", "0.6953691", "0.69458...
0.0
-1
Created by KV on 6/1/2016.
public interface Walk { public default void status() { System.out.println("Walking"); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "private stendhal() {\n\t}", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "public final void mo51373a() {\n }", "@Override\r\n\tpublic void tires() {\n\t\t\r\n\t}", "@Override\r\n\tpubl...
[ "0.60986197", "0.6052224", "0.59081715", "0.5830981", "0.5824812", "0.58091027", "0.58013874", "0.58013874", "0.5738498", "0.57379556", "0.5694108", "0.567579", "0.5675078", "0.5675078", "0.5675078", "0.5675078", "0.5675078", "0.5675078", "0.5671689", "0.56617737", "0.5642734...
0.0
-1
Processes requests for both HTTP GET and POST methods.
protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html;charset=UTF-8"); HttpSession session = request.getSession(); RequestDispatcher rd; String fieldsThatFail = ""; ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n protected void doPost(final HttpServletRequest req, final HttpServletResponse resp) throws ServletException, IOException {\n final String method = req.getParameter(METHOD);\n if (GET.equals(method)) {\n doGet(req, resp);\n } else {\n resp.setStatus(HttpServletResponse.SC_METHOD_NOT_...
[ "0.7004024", "0.66585696", "0.66031146", "0.6510023", "0.6447109", "0.64421695", "0.64405906", "0.64321136", "0.6428049", "0.6424289", "0.6424289", "0.6419742", "0.6419742", "0.6419742", "0.6418235", "0.64143145", "0.64143145", "0.6400266", "0.63939095", "0.63939095", "0.6392...
0.0
-1
Handles the HTTP GET method.
@Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { processRequest(request, response); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void doGet( )\n {\n \n }", "@Override\n\tprotected void executeGet(GetRequest request, OperationResponse response) {\n\t}", "@Override\n\tprotected Method getMethod() {\n\t\treturn Method.GET;\n\t}", "@Override\n\tprotected void doGet(HttpServletRequest req, HttpServletResponse resp) thro...
[ "0.7589609", "0.71665615", "0.71148175", "0.705623", "0.7030174", "0.70291144", "0.6995984", "0.697576", "0.68883485", "0.6873811", "0.6853569", "0.6843572", "0.6843572", "0.6835363", "0.6835363", "0.6835363", "0.68195957", "0.6817864", "0.6797789", "0.67810035", "0.6761234",...
0.0
-1
Handles the HTTP POST method.
@Override protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { processRequest(request, response); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic void doPost(Request request, Response response) {\n\n\t}", "@Override\n protected void doPost(HttpServletRequest req, HttpServletResponse resp) {\n }", "public void doPost( )\n {\n \n }", "@Override\n public String getMethod() {\n return \"POST\";\n ...
[ "0.73289514", "0.71383566", "0.7116213", "0.7105215", "0.7100045", "0.70236707", "0.7016248", "0.6964149", "0.6889435", "0.6784954", "0.67733276", "0.67482096", "0.66677034", "0.6558593", "0.65582114", "0.6525548", "0.652552", "0.652552", "0.652552", "0.65229493", "0.6520197"...
0.0
-1
Returns a short description of the servlet.
@Override public String getServletInfo() { return "Short description"; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getServletInfo()\n {\n return \"Short description\";\n }", "public String getServletInfo() {\n return \"Short description\";\n }", "public String getServletInfo() {\n return \"Short description\";\n }", "public String getServletInfo() {\n return \"Short d...
[ "0.87634975", "0.8732279", "0.8732279", "0.8732279", "0.8732279", "0.8732279", "0.8732279", "0.8732279", "0.8732279", "0.8732279", "0.8732279", "0.8699131", "0.8699131", "0.8699131", "0.8699131", "0.8699131", "0.8699131", "0.8531295", "0.8531295", "0.85282224", "0.85282224", ...
0.0
-1
Register Meshers for Branches
@SubscribeEvent public static void registerModels(ModelRegistryEvent event) { for (TreeFamily tree : ModTrees.tfcTrees) { ModelHelperTFC.regModel(tree.getDynamicBranch());//Register Branch itemBlock ModelHelperTFC.regModel(tree);//Register custom state mapper for branch ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void registerRenderer() {}", "public void registerRenderer() {}", "@Override\r\n\tpublic void registriereBeobachter(Beobachter b) {\n\t\tbeobachter.add(b);\r\n\t}", "public void buildBridges() {\n\t\tList<MagneticComponent> firstTier = getValidLinks(0);\r\n\t\t\r\n\t\tbuildNextBridge(firstTier, 0);\r\...
[ "0.54775417", "0.54775417", "0.5476143", "0.53623956", "0.5348336", "0.52942586", "0.527432", "0.52356434", "0.5202229", "0.5134902", "0.51299864", "0.51170367", "0.5111937", "0.50248504", "0.5006373", "0.49816257", "0.49624965", "0.49579057", "0.49278358", "0.4893184", "0.48...
0.4726367
33
/IndexWriter indexWriter = LuceneUtil.getIndexWriter(); indexWriter.close(); LuceneUtil.getIndexWriter();
@Test public void testLunce() throws IOException { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void close() {\n\t\t\n\t\ttry {\n\t\t\tindexWriter.optimize();\n\t\t\t\n\t\t\tindexWriter.close();\n\t\t\t\n\t\t\tIndexSearcher = new IndexSearcher(idx);\n\t\t\t\n\t\t} catch (CorruptIndexException e) {\n\t\t\t// TODO Auto-generated catch block\n\t\t\te.printStackTrace();\n\t\t} catch (IOException e) {\n\t\...
[ "0.8033835", "0.7582256", "0.74749476", "0.74017465", "0.73447096", "0.7304259", "0.71158415", "0.6958667", "0.6936934", "0.69055235", "0.6812953", "0.67820764", "0.6754799", "0.66876787", "0.6633596", "0.6471308", "0.64625376", "0.6401939", "0.6350599", "0.6265729", "0.62253...
0.0
-1
Connect the timer with a process finalization sequence that might produce events.
@Override public void onEmptyTarget() { endIt(eventTimeoutTimerNode.getNode().getId(), factory, defaultCondition.getEnd()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void processEnd();", "private void eventProcessingCompleted() {\n\t\tsynchronized(processingCounterMutex) {\n\t\t\tprocessingCounter--;\n\t\t\tif (processingCounter == 0)\n\t\t\t\tprocessingCounterMutex.notifyAll();\n\t\t}\n\t}", "private void setEndTimer() {\n vertx.setTimer(10, id -> testComplete()...
[ "0.55561864", "0.55256367", "0.5522486", "0.5323579", "0.52946967", "0.52946967", "0.5275586", "0.5275586", "0.5220732", "0.5198655", "0.5198655", "0.5198655", "0.5198655", "0.5198655", "0.5177784", "0.5119482", "0.51147074", "0.51053077", "0.50947464", "0.50742775", "0.50588...
0.0
-1
Connect the timer with a process finalization sequence that might produce events.
@Override public void onEmptyTarget() { endIt(outNode.getNode().getId(), factory, eventCondition.getEnd()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void processEnd();", "private void eventProcessingCompleted() {\n\t\tsynchronized(processingCounterMutex) {\n\t\t\tprocessingCounter--;\n\t\t\tif (processingCounter == 0)\n\t\t\t\tprocessingCounterMutex.notifyAll();\n\t\t}\n\t}", "private void setEndTimer() {\n vertx.setTimer(10, id -> testComplete()...
[ "0.5555031", "0.5526266", "0.5523844", "0.53237873", "0.52944213", "0.52944213", "0.5275372", "0.5275372", "0.5220888", "0.51984644", "0.51984644", "0.51984644", "0.51984644", "0.51984644", "0.5178875", "0.5118232", "0.51150775", "0.51062244", "0.5093233", "0.50738144", "0.50...
0.0
-1
Output a list of repository descriptors.
@Override public void print(PrintWriter printWriter, Format format, boolean isZip) { final String[] descriptorKeys = slingRepository.getDescriptorKeys(); for (final String key : descriptorKeys) { printWriter.printf("%s = %s%n", key, slingRepository.getDescriptor(key)); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void printServerRepositories() {\n for (ServerRepository serverRepository : serverRepositories.values()) {\n System.out.println(serverRepository);\n }\n }", "public List getDescriptors()\n {\n return Collections.unmodifiableList(this.m_descriptors);\n }", "@Overr...
[ "0.59242517", "0.57461375", "0.55417943", "0.54614985", "0.54490125", "0.52842146", "0.5172744", "0.5133542", "0.51051867", "0.50981534", "0.5081076", "0.5051666", "0.4995694", "0.49354196", "0.49166355", "0.4896742", "0.48906142", "0.48680425", "0.48642275", "0.4722597", "0....
0.5835532
1
Creating object of Scanner class
public static void main(String[] args) { Scanner sc = new Scanner(System.in); // Give all details of first employee System.out.println("Give the information about first employee"); System.out.println("Name of first employee"); // Take name of first employee from user String name1 = sc.next(); System.ou...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private ConsoleScanner() {}", "public Scanner(java.io.InputStream in) {\r\n this(new java.io.InputStreamReader(in));\r\n }", "public Scanner(java.io.InputStream in) {\n this(new java.io.InputStreamReader(in));\n }", "public Scanner(java.io.InputStream in) {\n this(new java.io.InputStreamReader(in)...
[ "0.74351823", "0.739228", "0.73168707", "0.73168707", "0.7137275", "0.7137275", "0.7137275", "0.7137275", "0.7137275", "0.7137275", "0.7137275", "0.7137275", "0.71200496", "0.71200496", "0.71200496", "0.71200496", "0.71200496", "0.71200496", "0.7088296", "0.7064696", "0.70646...
0.0
-1
This function compare the salary of both employee and display the result whose salary will maximum
static void compareEmployeeSalary(EmployeeQ7 e1, EmployeeQ7 e2) { if (e1.getSalary() > e2.getSalary()) { e1.display(); } else { e2.display(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public int compare(Employee a, Employee b)\n\t{\n\t\treturn a.Salary - b.Salary;\n\t}", "public static void main(String[] args) {\n long[] salaries= {120000, 85000, 95000, 145000};\n\n for(long eachSalary : salaries){\n System.out.println(eachSalary);\n }\n\n long max=salar...
[ "0.7008767", "0.6856712", "0.6342023", "0.62502223", "0.60943985", "0.5761868", "0.57229507", "0.564742", "0.56168896", "0.5594354", "0.5587567", "0.5535296", "0.55243945", "0.54867965", "0.548307", "0.5466307", "0.54531217", "0.54429907", "0.5436795", "0.54314077", "0.542665...
0.7647917
0
Handles the HTTP GET method.
@Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // Retrieve id GET parameter String confirmationID = request.getParameter("id"); if (confirmationID == null || confirmationID.isEmpty()) { ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void doGet( )\n {\n \n }", "@Override\n\tprotected void executeGet(GetRequest request, OperationResponse response) {\n\t}", "@Override\n\tprotected Method getMethod() {\n\t\treturn Method.GET;\n\t}", "@Override\n\tprotected void doGet(HttpServletRequest req, HttpServletResponse resp) thro...
[ "0.7589609", "0.71665615", "0.71148175", "0.705623", "0.7030174", "0.70291144", "0.6995984", "0.697576", "0.68883485", "0.6873811", "0.6853569", "0.6843572", "0.6843572", "0.6835363", "0.6835363", "0.6835363", "0.68195957", "0.6817864", "0.6797789", "0.67810035", "0.6761234",...
0.0
-1
for monitoring /NewRelic.withApplicationToken( "AAbb4540c5b5bec76b136de6a36d07db59b67c0a02" ).start(this.getApplication());
@SuppressLint("NewApi") @Override protected void onCreate(Bundle savedInstanceState) { Log.d(TAG,"OnCreate called"); super.onCreate(savedInstanceState); setContentView(R.layout.activity_contacts); userDetails = getSharedPreferences("userdetails", MODE_PRIVATE); // Get the logged in us...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "java.util.concurrent.Future<StartApplicationResult> startApplicationAsync(StartApplicationRequest startApplicationRequest);", "@Override\n protected void appStart() {\n }", "public void startApp()\r\n\t{\n\t}", "public static void StartRegisterToGCM(Context context) {\n Intent intent = new Int...
[ "0.60560584", "0.5917177", "0.5790319", "0.5726722", "0.5600154", "0.5546171", "0.5508609", "0.54847944", "0.54847944", "0.54847944", "0.5459944", "0.54391533", "0.53883827", "0.5367175", "0.5362372", "0.5349366", "0.5340956", "0.53149307", "0.53149307", "0.53099346", "0.5303...
0.0
-1
TODO Autogenerated method stub
@Override public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override @Deprecated public Object onRetainNonConfigurationInstance() { return super.onRetainNonConfigurationInstance(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
Inflate the menu; this adds items to the action bar if it is present.
@Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.activity_contacts, menu); return true; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n \tMenuInflater inflater = getMenuInflater();\n \tinflater.inflate(R.menu.main_activity_actions, menu);\n \treturn super.onCreateOptionsMenu(menu);\n }", "@Override\n public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {...
[ "0.7246102", "0.7201358", "0.7194834", "0.7176498", "0.71066517", "0.7039537", "0.7037961", "0.70112145", "0.70094734", "0.69807225", "0.6944953", "0.69389373", "0.6933199", "0.6916928", "0.6916928", "0.6891486", "0.68831646", "0.68754137", "0.68745375", "0.68621665", "0.6862...
0.0
-1
Check which request it is that we're responding to
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { Log.d(TAG, "Inside OnActivityResult"); if (requestCode == PICK_CONTACT_REQUEST) { // Make sure the request was successful if (resultCode == RESULT_OK) { // Get the URI that points to the ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public abstract boolean isAppropriateRequest(Request request);", "boolean hasRequest();", "boolean hasRequest();", "boolean hasRequest();", "boolean hasRequest();", "boolean hasRequest();", "boolean hasRequest();", "boolean hasRequest();", "boolean hasRequest();", "boolean hasRequest();", "bool...
[ "0.7016145", "0.6810174", "0.6810174", "0.6810174", "0.6810174", "0.6810174", "0.6810174", "0.6810174", "0.6810174", "0.6810174", "0.6810174", "0.65954894", "0.65954894", "0.65954894", "0.6557039", "0.6557039", "0.65525794", "0.65365165", "0.6385344", "0.6377572", "0.636833",...
0.0
-1
TODO Autogenerated method stub
@Override public Object getItem(int position) { return null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public long getItemId(int position) { return 0; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
here you can add functions
public void onClick(DialogInterface dialog, int which) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n protected void adicionar(Funcionario funcionario) {\n\n }", "private static void addFunciones() {\n funciones = new ArrayList<GlobalSimilarityNode>();\n funciones.add(new ParticularSimilGLNode());\n funciones.add(new TemporalSimilGLNode());\n\n }", "public void parseFu...
[ "0.70194083", "0.69169265", "0.68654996", "0.6850241", "0.67241734", "0.6656873", "0.656301", "0.656301", "0.65612465", "0.64952403", "0.64216846", "0.63547844", "0.63547844", "0.6318972", "0.6291798", "0.6255117", "0.6254997", "0.6241528", "0.62272817", "0.6179397", "0.61771...
0.0
-1
Parse ESM file and convert to string.
private String readESMFile(String esmFile) { int id = plugin.getResources().getIdentifier(esmFile, "raw", plugin.getPackageName()); InputStream inputStream = plugin.getResources().openRawResource(id); String esms = ""; BufferedReader reader = new BufferedReader(new InputStreamReader(inpu...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String parse(File file);", "public static void ConvertToString() {\n\t\t_asmFileStr = _asmFile.toString();\n\t\t_asmFileStr = _asmFileStr.substring(0, _asmFileStr.lastIndexOf('.'));\n\t}", "private String convertXMLFileToString(File file)\n {\n try{\n DocumentBuilderFactory document...
[ "0.61361563", "0.5778457", "0.5433804", "0.54210764", "0.52801776", "0.52776694", "0.5222788", "0.52139974", "0.5210448", "0.51425415", "0.51401806", "0.5088033", "0.5081463", "0.50654364", "0.50567615", "0.5056162", "0.50430125", "0.5031777", "0.502071", "0.50074005", "0.498...
0.6787289
0
Method computes the average value of a given array of doubles
static double average(double[] data){ // Initializing total placeholder double total = 0; // Traversing data array and adding to total sum for (double d : data) { total += d; } // Computing average double average = (double) total / data.length; ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static double avg(double[] array) {\r\n\t\tdouble ret = sum(array);\r\n\t\treturn ret / array.length;\r\n\t}", "static double averageDoubleArray(double[] inputArray) {\n\t\tdouble doubleSum = 00.00;\n\t\tfor (double element : inputArray) { \n\t\t\tdoubleSum += element;\n\t\t}\n\t\tdouble average = doubleS...
[ "0.8436159", "0.8369695", "0.8362738", "0.8312481", "0.82427204", "0.8232476", "0.80745447", "0.79428315", "0.78908134", "0.7753106", "0.7703699", "0.7695764", "0.7618501", "0.7616505", "0.7552708", "0.7527758", "0.7493522", "0.7426212", "0.74079746", "0.7353549", "0.73478293...
0.8063696
7
Method averages time span by using 5 data points
static double averageTime(WordCounter2 counter, ArrayList<String> words){ // Initialize array with 5 entries double[] times = new double[3]; for (int i = 0; i < times.length; i++){ // Clearing map counter.clearMap(); // Getting time span in ms ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\n\tpublic void averageWorksForModeSteps() {\n\t\tfinal FloatTimeSeries t0 = new FloatTreeTimeSeries();\n\t\tt0.addValues(TimeSeriesUtils.createStepFunction(10, 0, 10, 10, 0)); // constant function = 10\n\t\tfinal FloatTimeSeries t1 = new FloatTreeTimeSeries();\n\t\tt1.addValues(TimeSeriesUtils.createStepFunc...
[ "0.635535", "0.6087886", "0.60472894", "0.60391647", "0.6009825", "0.5995573", "0.5914823", "0.59083843", "0.58734524", "0.5857492", "0.583016", "0.58228445", "0.5812978", "0.57702065", "0.57459337", "0.5723889", "0.56288564", "0.5620734", "0.5535462", "0.5528045", "0.5500285...
0.57079595
16
Method writes csv containing time complexity data
static void writeTimeCSV(String data_structure){ try { // Getting current directory String path = System.getProperty("user.dir"); // Initializing data directory String dataPath = path + "/Data/"; // Initializing CSV directory String csvP...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void writeCSV(@NotNull String filename) throws Exception {\n\t\tlong start, stop, elapsed;\n\t\t\n\t\tstart = System.currentTimeMillis();\n\t\t\n\t\t/* OPEN FILES */\n\t\t\n\t\tString filename1 = filename + \"_ChromaticNumber.csv\";\n\t\tString filename2 = filename + \"_Time.csv\";\n\t\t\n\t\tFile f1 = new File(fi...
[ "0.6809286", "0.6794365", "0.67677176", "0.67528486", "0.6607441", "0.65778285", "0.6555295", "0.6552815", "0.6538965", "0.65318227", "0.6444999", "0.6312621", "0.6309698", "0.6281038", "0.62775224", "0.62561727", "0.6255108", "0.62345624", "0.6213444", "0.6207708", "0.618764...
0.71016455
0
onStartCommand is the sequence of actions followed when the service is started
@Override public int onStartCommand(Intent intent, int flags, int startId) { new CleanCacheTask().execute(); new UpdateDownloadsTask().execute(); return Service.START_NOT_STICKY; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void onStart(Intent intent, int startId) {\r\n\t\thandleCommand(intent);\r\n\t}", "@Override\r\n\tpublic void onStart(Intent intent, int startId) {\r\n\t handleCommand(intent, startId);\r\n\t}", "@Override\n\tpublic int onStartCommand(Intent intent, int flags, int startId) {\n\t\tLog.i...
[ "0.78594023", "0.7776745", "0.769972", "0.7637251", "0.75688237", "0.7532821", "0.7528067", "0.7520023", "0.75065434", "0.7490993", "0.7475313", "0.7450497", "0.74256164", "0.74003595", "0.73708147", "0.7357227", "0.73359364", "0.73329663", "0.73244226", "0.7308313", "0.73083...
0.0
-1
onBind is a required method that will bind the service if desired
@Override public IBinder onBind(Intent intent) { return null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected void onBind()\n\t{\n\t}", "void doBindService() {\n\n if (bindService(new Intent(MainActivity.this, PositionService.class),\n mConnection, Context.BIND_AUTO_CREATE)) {\n mBound = true;\n } else {\n Log.e(\"MY_APP_TAG\", \"Error: The requested service d...
[ "0.80115587", "0.75314736", "0.7479687", "0.74765575", "0.7464057", "0.7455312", "0.74064386", "0.73884994", "0.73368645", "0.72906697", "0.7274097", "0.7273892", "0.72732097", "0.7255364", "0.7255364", "0.72481215", "0.7229616", "0.7213866", "0.7208395", "0.7166753", "0.7158...
0.0
-1
function to initialize tables with the right columns
private void initializeGUITableHeaders(){ TableColumn<HeapData, Integer> addressColumn = new TableColumn<>("Address"); addressColumn.setCellValueFactory(new PropertyValueFactory<>("address")); TableColumn<HeapData, String> valueColumn = new TableColumn<>("Value"); valueColumn.setCellValu...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void initTable();", "public void initTable();", "protected abstract void initialiseTable();", "void prepareTables();", "public void initTable() {\n this.table.setSelectable(true);\n this.table.setImmediate(true);\n this.table.setWidth(\"100%\");\n this.table.addListener(this);\n this.table.s...
[ "0.7840493", "0.7792368", "0.7689491", "0.7635681", "0.7382981", "0.71653134", "0.7052657", "0.70503855", "0.6993709", "0.6918797", "0.6859407", "0.6858768", "0.68391645", "0.68355936", "0.68346953", "0.6806215", "0.68047327", "0.67913884", "0.6770565", "0.67562354", "0.67364...
0.6870245
10
/ Why this try catch stuff? Having cached the values() method (for optimization purposes because values() is an expensive call since arrays are mutable and compiler would generate it every time) client might pass in some devious value in which case an out of bounds exception might be triggered (essentially when value >...
public static final ERDConstants getConstant(int value) { try{ return values[value]; } catch (ArrayIndexOutOfBoundsException e) { return INVALID_ERD_CONSTANT; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ValueOutOfBoundsException(String message){\n super(message);\n //do nothing else\n }", "public String checkKeyAndData() {\n int keyLength = keys.length;\n Grid2DByte weatherGrid = getWeatherGrid();\n byte[] b = weatherGrid.getBuffer().array();\n for (int i = 0;...
[ "0.5555064", "0.5443903", "0.53955156", "0.534963", "0.5318206", "0.5276929", "0.52700275", "0.5224068", "0.521513", "0.5199365", "0.5192881", "0.5187984", "0.5179029", "0.5159365", "0.5140939", "0.514058", "0.511317", "0.5075708", "0.50728923", "0.5034597", "0.5033555", "0...
0.0
-1
Starts listening for displays to be connected on the specified interface.
public static ExtendedRemoteDisplay listen(String iface, RemoteDisplay.Listener listener, Handler handler, Context context) { if (iface == null) { throw new IllegalArgumentException("iface must not be null"); } if (listener == null) { ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void startListening(String iface) {\n mIface = iface;\n\n Message messageStart = mERDHandler.obtainMessage(ERDConstants.START_CMD.value());\n mERDHandler.sendMessage(messageStart);\n\n mGuard.open(\"dispose\");\n }", "public void startListening();", "public void startListe...
[ "0.62642074", "0.57833517", "0.57685465", "0.57441455", "0.5721723", "0.5710279", "0.5595702", "0.55903417", "0.55876577", "0.55510813", "0.55505383", "0.5546246", "0.5539153", "0.5509054", "0.5506653", "0.5498679", "0.5490863", "0.54883343", "0.5482439", "0.54645956", "0.544...
0.59018993
1
Starts WFDService and waits for incoming RTSP connections
public void startListening(String iface) { mIface = iface; Message messageStart = mERDHandler.obtainMessage(ERDConstants.START_CMD.value()); mERDHandler.sendMessage(messageStart); mGuard.open("dispose"); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void startService() {\n\t\tListenThread listenThread = new ListenThread();\r\n\t\tlistenThread.start();\r\n\t\tSelfVideoThread selfVideoThread = new SelfVideoThread();\r\n\t\tselfVideoThread.start();\r\n\t\tif(remote!=\"\"){\r\n\t\t\tString[] remotes = remote.split(\",\");\r\n\t\t\tString[] remotePorts = re...
[ "0.66856617", "0.651598", "0.62108845", "0.61807364", "0.61286384", "0.6108908", "0.60056907", "0.59476066", "0.5883063", "0.5852049", "0.5839279", "0.58256006", "0.5822456", "0.5801412", "0.5767203", "0.57613766", "0.57513005", "0.57063663", "0.5701455", "0.5688817", "0.5653...
0.0
-1
Disconnects the remote display and stops listening for new connections.
public void dispose() { processDispose(false); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void disconnect() {\r\n\t\trunning = false;\r\n\t}", "public void disconnect() {\n\t\tdisconnect(true);\n\t}", "private void disconnect() {\n activityRunning = false;\n MRTClient.getInstance().doHangup();\n MRTClient.getInstance().removeClientListener(this);\n\n finish();\n ...
[ "0.6832182", "0.6773194", "0.67224693", "0.6697789", "0.6672476", "0.6613239", "0.6607176", "0.66060024", "0.65402925", "0.6529964", "0.6515482", "0.6511541", "0.6508167", "0.6492095", "0.64661354", "0.6449203", "0.6426784", "0.6416456", "0.64125466", "0.63727224", "0.6371220...
0.0
-1
This method creates an anonymous thread to in order to unblock the caller. This anonymous thread synchronously attempts to bring down the entire ERD framework
private void processDispose(final boolean finalized) { new Thread(new Runnable() { @Override public void run() { Thread.currentThread().setName("Dispose_Thread"); Log.d(TAG, "Processing dispose with " + finalized + " from " + Thread...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void dofakework() {\n\t\ttry {\n\t\t\tThread.sleep(1000);\n\t\t} catch (InterruptedException e) {\n\t\t\te.printStackTrace();\n\t\t}\n\t}", "private static void createThreadUsingAnonymousInnerClass() {\n\t\tRunnable rn = new Runnable() {\n\t\t\t@Override\n\t\t\tpublic void run() {\n\t\t\t\tSystem.out.pri...
[ "0.6070663", "0.5993443", "0.5985513", "0.590752", "0.5846777", "0.58358085", "0.5766935", "0.5764767", "0.57009643", "0.5691579", "0.56785035", "0.5666588", "0.56527", "0.563823", "0.5626554", "0.5602293", "0.55967", "0.5585661", "0.5569473", "0.5561503", "0.55581874", "0....
0.0
-1
Helper method to create a WFDDevice from iface and device type
private WfdDevice createWFDDevice(String iface, WfdEnums.WFDDeviceType type) { WfdDevice wfdDevice = new WfdDevice(); wfdDevice.deviceType = type.getCode(); wfdDevice.macAddress = null; wfdDevice.isAvailableForSession = false;//since init is to be called wfdDevice.addressOfAP = n...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Device createDevice();", "public static BLDevice createInstance(short deviceType, String host, Mac mac) throws IOException {\r\n String desc = BLDevice.getDescOfType(deviceType);\r\n switch (deviceType) {\r\n case DEV_SP1:\r\n return new SP1Device(host, mac);\r\n case DEV_S...
[ "0.6462163", "0.61260694", "0.6073682", "0.6067869", "0.60548806", "0.58395773", "0.577029", "0.570516", "0.55964637", "0.559153", "0.5531216", "0.5461485", "0.54365045", "0.53813154", "0.53449243", "0.52844536", "0.52752864", "0.52652645", "0.52551746", "0.52485156", "0.5235...
0.81942284
0
Helper method to block on sERDLock object monitor
private void blockOnLock(final int timeout) { synchronized (sERDLock) { try { sERDLock.wait(timeout); } catch (InterruptedException e) { e.printStackTrace(); } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected void onBSLock() {\n\n }", "public synchronized void block() {\n\t\tsetBlocked(true);\n\t}", "public void openLock(){\n /*Code to send an unlocking signal to the physical device Gate*/\n }", "public void alertTheWaiter(){\n Chef c = (Chef) Thread.currentThread();\n Communi...
[ "0.6167584", "0.5946309", "0.58779204", "0.5852986", "0.58302313", "0.57282", "0.57253003", "0.5698826", "0.5688187", "0.56729245", "0.56294316", "0.5585922", "0.5555927", "0.5547193", "0.5543357", "0.55422497", "0.5540158", "0.55366945", "0.55366945", "0.55206066", "0.550125...
0.6432464
0
Helper method to unblock threads waiting on the seRDLock object monitor
private void unblockWaiters() { synchronized (sERDLock) { sERDLock.notifyAll(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static void unblockRequests() {\n\t\tif (isRunning.compareAndSet(false, true)) {\n\t\t\tsynchronized (isRunning) {\n\t\t\t\tisRunning.notify();\n\t\t\t}\n\t\t}\n\t}", "public void unlockThreadForClient()\n {\n masterThread.unlockThreadForClient();\n }", "public synchronized void unblock() {...
[ "0.67652225", "0.67406076", "0.64966434", "0.6370217", "0.6364982", "0.6308578", "0.6278447", "0.6242874", "0.62208563", "0.61442304", "0.6108209", "0.6102138", "0.60871273", "0.6066955", "0.5972435", "0.5922822", "0.5912803", "0.59094286", "0.5827657", "0.5812964", "0.580921...
0.78146577
0
Helper method to clean up the resources of the ERD object
private void cleanupResources() { Log.d(TAG, "Initiating resource cleanup"); if (mWorkerThread != null) { mWorkerThread.quitSafely(); try { mWorkerThread.join(); mWorkerThread = null; } catch (InterruptedException e) { L...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void cleanup() {\n \n }", "@Override\n public void cleanup() {\n \n }", "@Override\r\n\tpublic void cleanup() {\n\t\t\r\n\t}", "@Override\n\tpublic void cleanUp() {\n\t\tofferingStrategy = null;\n\t\tacceptConditions = null;\n\t\topponentMo...
[ "0.74977505", "0.74977505", "0.7358314", "0.73224795", "0.7304218", "0.72641706", "0.72515345", "0.72149724", "0.7200194", "0.7200194", "0.71810114", "0.71636313", "0.71450067", "0.71450067", "0.71450067", "0.71282804", "0.71083605", "0.70452714", "0.7008911", "0.70019114", "...
0.67629343
28
This method should always be invoked from Worker thread to stride over concurrency issues
private void setState(WFDState s) { Log.d(TAG, "Moving from " + sState + " --> " + s); sState = s; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void workOnQueue() {\n }", "private void concurrencyWrites8() {\n\t\ttry {\n\t\t\tlog.info(\"Starting TrxTableClient5: concurrencyWrites8\");\n\t\t\tlog.info(\"main--put[v1]\");\n\t\t\tlog.info(\"t1-----------beginTrans------------------------------------------put[v2]---abort\");\n\t\t\tlog.info(\"t...
[ "0.62318605", "0.62127393", "0.6137334", "0.60045636", "0.594898", "0.5938181", "0.5878417", "0.5878417", "0.5867561", "0.58525026", "0.5850576", "0.58501416", "0.5817306", "0.5812142", "0.5802761", "0.58001226", "0.5794641", "0.5780566", "0.5770882", "0.5765298", "0.5764896"...
0.0
-1
Zero argument constructor used to initialize the access bean. This constructor corresponds to the following home interface method: public abstract com.hps.july.persistence.SuperRegionAcc com.hps.july.persistence.SuperRegionAccHome.findByPrimaryKey(com.hps.july.persistence.SuperRegionAccKey) throws java.rmi.RemoteExcept...
public SuperRegionAccAccessBean () { super(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public SuperRegionAccAccessBean ( javax.ejb.EJBObject o ) throws java.rmi.RemoteException {\n super(o);\n }", "public SuperRegionAccessBean () {\n super();\n }", "public SuperRegionAccAccessBean(int arg0, int arg1, int arg2, boolean arg3, boolean arg4, boolean arg5, boolean arg6) throws jav...
[ "0.72291803", "0.66690737", "0.6645569", "0.6607714", "0.652195", "0.64326483", "0.6343222", "0.62036943", "0.61383265", "0.6018947", "0.6001868", "0.5951312", "0.5936688", "0.58624536", "0.5825027", "0.58155763", "0.5792745", "0.5775194", "0.56838244", "0.5668126", "0.564571...
0.73728365
0
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public SuperRegionAccAccessBean ( javax.ejb.EJBObject o ) throws java.rmi.RemoteException { super(o); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public SuperRegionAccAccessBean(int arg0, int arg1, int arg2, boolean arg3, boolean arg4, boolean arg5, boolean arg6) throws javax.ejb.CreateException, java.rmi.RemoteException, javax.naming.NamingException { ejbRef = ejbHome().create(arg0, arg1, arg2, arg3, arg4, arg5, arg6); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5952373", "0.58600783", "0.57866794", "0.57785434", "0.57656926", "0.57574415", "0.575699", "0.5737692", "0.5728438", "0.5721362", "0.5688742", "0.56363094", "0.56363094", "0.56233734", "0.5608275", "0.5597642", "0.55892277", "0.55807465", "0.5580092", "0.55782354", "0.556...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public java.util.Enumeration findAllOrderByCodeAsc() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { com.hps.july.persistence.SuperRegionAccHome localHome = ejbHome(); java.util.Enumeration ejbs = localHome.findAllOrderByCodeAsc(); return (java.util.Enu...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5953131", "0.58600646", "0.5787224", "0.5778468", "0.5765259", "0.5757716", "0.57563645", "0.57382214", "0.5728218", "0.5722344", "0.5687278", "0.5636496", "0.5636496", "0.56228137", "0.5609387", "0.5597283", "0.55888283", "0.55804783", "0.5580272", "0.5579374", "0.5566587...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public java.util.Enumeration findByOperator(java.lang.Integer arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { com.hps.july.persistence.SuperRegionAccHome localHome = ejbHome(); java.util.Enumeration ejbs = localHome.findByOperator(arg0); return (j...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public java.util.Enumeration findByOperatorAndId(java.lang.Integer arg0, java.lang.Integer arg1) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { com.hps.july.persistence.SuperRegionAccHome localHome = ejbHome(); java.util.Enumeration ejbs = localHome.findByOper...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public java.util.Enumeration findSuperRegionAccsByOperator(com.hps.july.persistence.OperatorKey arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { com.hps.july.persistence.SuperRegionAccHome localHome = ejbHome(); java.util.Enumeration ejbs = localHome.findS...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5952373", "0.58600783", "0.57866794", "0.57785434", "0.57656926", "0.57574415", "0.575699", "0.5737692", "0.5728438", "0.5721362", "0.5688742", "0.56363094", "0.56363094", "0.56233734", "0.5608275", "0.5597642", "0.55892277", "0.55807465", "0.5580092", "0.55782354", "0.556...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public java.util.Enumeration findSuperRegionAccsBySuperregion(com.hps.july.persistence.SuperRegionKey arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { com.hps.july.persistence.SuperRegionAccHome localHome = ejbHome(); java.util.Enumeration ejbs = localHome...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5953131", "0.58600646", "0.5787224", "0.5778468", "0.5765259", "0.5757716", "0.57563645", "0.57382214", "0.5728218", "0.5722344", "0.5687278", "0.5636496", "0.5636496", "0.56228137", "0.5609387", "0.5597283", "0.55888283", "0.55804783", "0.5580272", "0.5579374", "0.5566587...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void setInitKey_accessid( int newValue ) { this.initKey_accessid = (newValue); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
protected String defaultJNDIName() { return "com/hps/july/persistence/SuperRegionAcc"; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
private com.hps.july.persistence.SuperRegionAccHome ejbHome() throws java.rmi.RemoteException, javax.naming.NamingException { return (com.hps.july.persistence.SuperRegionAccHome) PortableRemoteObject.narrow(getHome(), com.hps.july.persistence.SuperRegionAccHome.class); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5952373", "0.58600783", "0.57866794", "0.57785434", "0.57656926", "0.57574415", "0.575699", "0.5737692", "0.5728438", "0.5721362", "0.5688742", "0.56363094", "0.56363094", "0.56233734", "0.5608275", "0.5597642", "0.55892277", "0.55807465", "0.5580092", "0.55782354", "0.556...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
private com.hps.july.persistence.SuperRegionAcc ejbRef() throws java.rmi.RemoteException { if ( ejbRef == null ) return null; if ( __ejbRef == null ) __ejbRef = (com.hps.july.persistence.SuperRegionAcc) PortableRemoteObject.narrow(ejbRef, com.hps.july.persistence.SuperRegionAcc.c...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5953131", "0.58600646", "0.5787224", "0.5778468", "0.5765259", "0.5757716", "0.57563645", "0.57382214", "0.5728218", "0.5722344", "0.5687278", "0.5636496", "0.5636496", "0.56228137", "0.5609387", "0.5597283", "0.55888283", "0.55804783", "0.5580272", "0.5579374", "0.5566587...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
protected void instantiateEJB() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { if ( ejbRef() != null ) return; com.hps.july.persistence.SuperRegionAccKey key = keyFromFields(initKey_accessid); ejbRef = ejbHome().findByPrimaryKey(key); ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
private com.hps.july.persistence.SuperRegionAccKey keyFromFields ( int f0 ) { com.hps.july.persistence.SuperRegionAccKey keyClass = new com.hps.july.persistence.SuperRegionAccKey(); keyClass.accessid = f0; return keyClass; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
protected boolean instantiateEJBByPrimaryKey() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.naming.NamingException { boolean result = false; if ( ejbRef() != null ) return true; try { com.hps.july.persistence.SuperRegionAccKey pKey = (com.hps.july.p...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5952373", "0.58600783", "0.57866794", "0.57785434", "0.57656926", "0.57574415", "0.575699", "0.5737692", "0.5728438", "0.5721362", "0.5688742", "0.56363094", "0.56363094", "0.56233734", "0.5608275", "0.5597642", "0.55892277", "0.55807465", "0.5580092", "0.55782354", "0.556...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void commitCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException { commitCopyHelper(ejbRef()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5953131", "0.58600646", "0.5787224", "0.5778468", "0.5765259", "0.5757716", "0.57563645", "0.57382214", "0.5728218", "0.5722344", "0.5687278", "0.5636496", "0.5636496", "0.56228137", "0.5609387", "0.5597283", "0.55888283", "0.55804783", "0.5580272", "0.5579374", "0.5566587...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void refreshCopyHelper() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException { refreshCopyHelper(ejbRef()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public com.hps.july.persistence.SuperRegionKey getSuperregionKey() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException { return (((com.hps.july.persistence.SuperRegionKey) __getCache("superregionKey"))); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public com.hps.july.persistence.OperatorKey getOperatorKey() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException { return (((com.hps.july.persistence.OperatorKey) __getCache("operatorKey"))); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5952373", "0.58600783", "0.57866794", "0.57785434", "0.57656926", "0.57574415", "0.575699", "0.5737692", "0.5728438", "0.5721362", "0.5688742", "0.56363094", "0.56363094", "0.56233734", "0.5608275", "0.5597642", "0.55892277", "0.55807465", "0.5580092", "0.55782354", "0.556...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public boolean getEditfact() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException { return (((Boolean) __getCache("editfact")).booleanValue()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5953131", "0.58600646", "0.5787224", "0.5778468", "0.5765259", "0.5757716", "0.57563645", "0.57382214", "0.5728218", "0.5722344", "0.5687278", "0.5636496", "0.5636496", "0.56228137", "0.5609387", "0.5597283", "0.55888283", "0.55804783", "0.5580272", "0.5579374", "0.5566587...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void setEditfact( boolean newValue ) { __setCache("editfact", new Boolean(newValue)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public boolean getViewfact() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException { return (((Boolean) __getCache("viewfact")).booleanValue()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void setViewfact( boolean newValue ) { __setCache("viewfact", new Boolean(newValue)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5952373", "0.58600783", "0.57866794", "0.57785434", "0.57656926", "0.57574415", "0.575699", "0.5737692", "0.5728438", "0.5721362", "0.5688742", "0.56363094", "0.56363094", "0.56233734", "0.5608275", "0.5597642", "0.55892277", "0.55807465", "0.5580092", "0.55782354", "0.556...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public boolean getEditplan() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException { return (((Boolean) __getCache("editplan")).booleanValue()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5953131", "0.58600646", "0.5787224", "0.5778468", "0.5765259", "0.5757716", "0.57563645", "0.57382214", "0.5728218", "0.5722344", "0.5687278", "0.5636496", "0.5636496", "0.56228137", "0.5609387", "0.5597283", "0.55888283", "0.55804783", "0.5580272", "0.5579374", "0.5566587...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void setEditplan( boolean newValue ) { __setCache("editplan", new Boolean(newValue)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public int getAccessid() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException { return (((Integer) __getCache("accessid")).intValue()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public boolean getViewplan() throws java.rmi.RemoteException, javax.ejb.CreateException, javax.ejb.FinderException, javax.naming.NamingException { return (((Boolean) __getCache("viewplan")).booleanValue()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5952373", "0.58600783", "0.57866794", "0.57785434", "0.57656926", "0.57574415", "0.575699", "0.5737692", "0.5728438", "0.5721362", "0.5688742", "0.56363094", "0.56363094", "0.56233734", "0.5608275", "0.5597642", "0.55892277", "0.55807465", "0.5580092", "0.55782354", "0.556...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void setViewplan( boolean newValue ) { __setCache("viewplan", new Boolean(newValue)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5953131", "0.58600646", "0.5787224", "0.5778468", "0.5765259", "0.5757716", "0.57563645", "0.57382214", "0.5728218", "0.5722344", "0.5687278", "0.5636496", "0.5636496", "0.56228137", "0.5609387", "0.5597283", "0.55888283", "0.55804783", "0.5580272", "0.5579374", "0.5566587...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public com.hps.july.persistence.OperatorAccessBean getOperator() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { instantiateEJB(); com.hps.july.persistence.Operator localEJBRef = ejbRef().getOperator(); if ( localEJBRef != null ) return new ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public com.hps.july.persistence.SuperRegionAccessBean getSuperregion() throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { instantiateEJB(); com.hps.july.persistence.SuperRegion localEJBRef = ejbRef().getSuperregion(); if ( localEJBRef != null ) ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void privateSetOperatorKey(com.hps.july.persistence.OperatorKey arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { instantiateEJB(); ejbRef().privateSetOperatorKey(arg0); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5952373", "0.58600783", "0.57866794", "0.57785434", "0.57656926", "0.57574415", "0.575699", "0.5737692", "0.5728438", "0.5721362", "0.5688742", "0.56363094", "0.56363094", "0.56233734", "0.5608275", "0.5597642", "0.55892277", "0.55807465", "0.5580092", "0.55782354", "0.556...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void privateSetSuperregionKey(com.hps.july.persistence.SuperRegionKey arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { instantiateEJB(); ejbRef().privateSetSuperregionKey(arg0); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5953131", "0.58600646", "0.5787224", "0.5778468", "0.5765259", "0.5757716", "0.57563645", "0.57382214", "0.5728218", "0.5722344", "0.5687278", "0.5636496", "0.5636496", "0.56228137", "0.5609387", "0.5597283", "0.55888283", "0.55804783", "0.5580272", "0.5579374", "0.5566587...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void secondarySetOperator(com.hps.july.persistence.Operator arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { instantiateEJB(); ejbRef().secondarySetOperator(arg0); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void secondarySetSuperregion(com.hps.july.persistence.SuperRegion arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { instantiateEJB(); ejbRef().secondarySetSuperregion(arg0); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.59541506", "0.58615094", "0.57869136", "0.57798046", "0.5766217", "0.5759594", "0.5757054", "0.5738239", "0.57295096", "0.57217026", "0.56885856", "0.5636801", "0.5636801", "0.56227463", "0.56097996", "0.55985194", "0.5588409", "0.5581504", "0.5580689", "0.55790657", "0.55...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void setOperator(com.hps.july.persistence.Operator arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { instantiateEJB(); ejbRef().setOperator(arg0); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5952373", "0.58600783", "0.57866794", "0.57785434", "0.57656926", "0.57574415", "0.575699", "0.5737692", "0.5728438", "0.5721362", "0.5688742", "0.56363094", "0.56363094", "0.56233734", "0.5608275", "0.5597642", "0.55892277", "0.55807465", "0.5580092", "0.55782354", "0.556...
0.0
-1
This method was generated by the VisualAge for Java Access Bean SmartGuide. Warning: Modifications will be lost when this part is regenerated.
public void setSuperregion(com.hps.july.persistence.SuperRegion arg0) throws java.rmi.RemoteException, javax.ejb.FinderException, javax.naming.NamingException { instantiateEJB(); ejbRef().setSuperregion(arg0); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RepositorioAtendimentoPublicoHBM() {\r\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "public void designBasement() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@SuppressWarnings(\"all\")\npublic interface I_LBR_DocLine_ICMS \n{\n\n /** TableName=LBR_DocLin...
[ "0.5953131", "0.58600646", "0.5787224", "0.5778468", "0.5765259", "0.5757716", "0.57563645", "0.57382214", "0.5728218", "0.5722344", "0.5687278", "0.5636496", "0.5636496", "0.56228137", "0.5609387", "0.5597283", "0.55888283", "0.55804783", "0.5580272", "0.5579374", "0.5566587...
0.0
-1
/ Given a square matrix of size , calculate the absolute difference between the sums of its diagonals. Input Format The first line contains a single integer, . The next lines denote the matrix's rows, with each line containing spaceseparated integers describing the columns. Output Format Print the absolute difference b...
public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); System.out.println("enter: "); int n = sc.nextInt(); int[][] two_d_a= new int[n][n]; int f_diag=0; int b_diag=0; for (int i=0; i<n; i++){ for (int j=0; j<n; j++){ two_d_a[i][j] = sc.ne...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "static int diagonalDifference(int[][] matrix) {\n int ltr = 0;\n int rtl = 0;\n for (int i = 0; i < matrix.length; i++) {\n System.out.println(\"matrix[\" + i + \"][\" + i + \"]: \" + matrix[i][i]);\n ltr += matrix[i][i];\n System.out.println(\"matrix[ \" + (i) + \"][\" + (matrix.length - 1...
[ "0.7183472", "0.664487", "0.6635687", "0.6610676", "0.660264", "0.6329759", "0.6231209", "0.62264305", "0.6169381", "0.6144283", "0.6053257", "0.6039041", "0.60091084", "0.5986592", "0.588612", "0.5736427", "0.5666706", "0.56136197", "0.5605224", "0.55746895", "0.554764", "...
0.556271
20
Assumed that caller has checked hasArray() already
public static void write( OutputStream os, ByteBuffer buf ) throws IOException { inputs.notNull( os, "os" ); inputs.notNull( buf, "buf" ); os.write( buf.array(), arrayPosOf( buf ), buf.remaining() ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "boolean hasArray();", "public boolean hasArray()\r\n/* 122: */ {\r\n/* 123:151 */ return true;\r\n/* 124: */ }", "@Override\r\n public boolean isArray() throws Exception\r\n {\n return false;\r\n }", "public void testCheckArray() {\n Object[] objects = new Object[] {\"one...
[ "0.7742013", "0.76545775", "0.69859016", "0.6824964", "0.68139714", "0.6811822", "0.6757711", "0.6690808", "0.6678645", "0.6667685", "0.6603536", "0.6603536", "0.6592831", "0.6563629", "0.65535545", "0.6551086", "0.6547714", "0.6533972", "0.6532131", "0.6490654", "0.6483343",...
0.0
-1
closes is regardless of how this method completes
public static List< String > readLines( InputStream is, String charset ) throws IOException { inputs.notNull( is, "is" ); try { inputs.notNull( charset, "charset" ); List< String > res = Lang.newList(); Buffered...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void close() {\n\t\t\r\n\t}", "@Override\n public void close() {\n \n }", "@Override\n public void close() {\n }", "public void close() {\t\t\n\t}", "@Override\r\n\tpublic void close()\r\n\t{\n\t\t\r\n\t}", "@Override\r\n\tpublic void close() {\n\t\t\...
[ "0.772056", "0.7646998", "0.76205444", "0.7616347", "0.7616137", "0.76059216", "0.76059216", "0.7589231", "0.7585063", "0.7585063", "0.7574456", "0.756642", "0.75618565", "0.7552641", "0.7552641", "0.7552641", "0.75383246", "0.75373775", "0.75373775", "0.75186235", "0.7515541...
0.0
-1
Fills dest from is, throwing EOFException if there is not sufficient data in the stream to do so
public static void fill( InputStream is, byte[] dest, int offset, int len ) throws IOException { inputs.notNull( is, "is" ); inputs.notNull( dest, "dest" ); inputs.nonnegativeI( offset, "offset" ); inputs.nonnegativeI( len, "len" ); ...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected void fill() throws IOException {\n ensureOpen();\n len = in.read(buf, 0, buf.length);\n if (len == -1) {\n throw new EOFException(\"Unexpected end of ZLIB input stream\");\n }\n inf.setInput(buf, 0, len);\n }", "private int fillBuffer(InputStream is) thr...
[ "0.62884307", "0.5811206", "0.5806238", "0.5641597", "0.558175", "0.5515632", "0.5504218", "0.54942197", "0.5404857", "0.5379434", "0.53688467", "0.5299161", "0.52737504", "0.5267649", "0.51389736", "0.5096947", "0.5076764", "0.5075303", "0.50642663", "0.5057671", "0.50289285...
0.71000344
0
Catches and warns about any Exception, not just IOException
public static void closeQuietly( Closeable c, String errMsgId ) { inputs.notNull( c, "c" ); inputs.notNull( errMsgId, "errMsgId" ); try { c.close(); } catch ( Exception ioe ) { CodeLoggers.warn( ioe, "Exception thrown from close: " +...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic void demoCheckedException() throws IOException {\n\n\t}", "public void exceptionEncountered(IOException ioe) {}", "private void ensureOpen() throws IOException {\n if (out == null) {\n throw new IOException(\n/* #ifdef VERBOSE_EXCEPTIONS */\n/// skipped ...
[ "0.72154605", "0.6809841", "0.646043", "0.6276141", "0.62001836", "0.60663635", "0.6052956", "0.60343635", "0.59852254", "0.593389", "0.5924781", "0.5892401", "0.5877029", "0.58692604", "0.5867673", "0.586201", "0.58464235", "0.58457935", "0.58019656", "0.58012044", "0.579733...
0.0
-1
Note: drains bb itself (bb.remaining() will be false on return from this method)
public static byte[] toByteArray( ByteBuffer bb ) { inputs.notNull( bb, "bb" ); byte[] res = new byte[ bb.remaining() ]; bb.get( res ); return res; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "static void hardDrop(Block b) {\n int[] pos = b.pos;\n char[][] piece = b.piece;\n\n while (canPlace(pos[0] + 1, pos[1], piece))\n pos[0]++;\n\n place(pos[0], pos[1], piece);\n }", "private void processOut() {\n while (!queue.isEmpty()) {\n var bb = qu...
[ "0.6533779", "0.62929344", "0.62929344", "0.6163352", "0.6134378", "0.60297334", "0.5895838", "0.5854468", "0.5848917", "0.57723147", "0.5667417", "0.5595489", "0.5572802", "0.5555185", "0.5555185", "0.5489155", "0.5465773", "0.5394224", "0.5373324", "0.53071505", "0.52812123...
0.0
-1
Workaround for This method should in all cases be used wherever CharBuffer.wrap would be
public static CharBuffer charBufferFor( CharSequence s ) { inputs.notNull( s, "s" ); CharBuffer res = CharBuffer.allocate( s.length() ); res.append( s ); res.flip(); return res.asReadOnlyBuffer(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private static String decodeStringFromBuffer(StringBuffer buf)\n {\n String returnValue = null;\n\n if (buf != null)\n {\n StringBuffer decodedBuffer = new StringBuffer();\n char[] pair = new char[2];\n\n // get the char equivelant of each number pair + 32\n...
[ "0.60023373", "0.5854597", "0.57657266", "0.56863004", "0.5629409", "0.56064475", "0.54960257", "0.5484823", "0.5470923", "0.5443135", "0.5435241", "0.54099137", "0.5404391", "0.538517", "0.5378129", "0.5360825", "0.5342139", "0.5338418", "0.53341234", "0.53212583", "0.529607...
0.5935795
1
suffix may be null, see javadocs for File.createTempFile
public static FileWrapper createTempFile( String prefix, String suffix, boolean deleteOnExit ) throws IOException { inputs.notNull( prefix, "prefix" ); File tmp = File.createTempFile( prefix, suffix ); if ( deleteOnExit ) tmp.delet...
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static String createTempFile(final String prefix, final String suffix, final boolean deleteOnExit, final boolean inTempDir) throws IOException {\n\n return FileSystem.getInstance(prefix).createTempFile(prefix, suffix, deleteOnExit, inTempDir);\n }", "public static File createTempFile(String pref...
[ "0.6874601", "0.67379034", "0.6598328", "0.65900385", "0.639519", "0.6388142", "0.63020635", "0.6285068", "0.6275008", "0.62099516", "0.6160326", "0.6156023", "0.604925", "0.6029749", "0.5994825", "0.59896463", "0.5933207", "0.5907349", "0.58995366", "0.5890107", "0.58484936"...
0.6982289
0