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
Delete permission through API.
public void deletePermission(String permissionID) { Connection conn = null; PreparedStatement ps = null; String query = null; try { conn = getConnection(); query = queryManager.getQuery(conn, QueryManager.DELETE_PERMISSION_BY_ID_QUERY); conn.setAutoCommit(false); ps = conn.prepareStatement(query); ps.setString(1, permissionID); ps.execute(); conn.commit(); } catch (SQLException e) { log.debug("Failed to execute SQL query {}", query); throw new PermissionException("Unable to delete permission.", e); } finally { closeConnection(conn, ps, null); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "int deleteByExample(EpermissionDOExample example);", "public boolean removePermission(Permission permission);", "@Override\r\n\tpublic int delPermission(int id) {\n\t\treturn 0;\r\n\t}", "@Test\n public void deleteAppPermissionTest() throws ApiException {\n String appId = null;\n String user...
[ "0.72607267", "0.72005004", "0.71865046", "0.71568614", "0.6878429", "0.67850965", "0.67775655", "0.6686339", "0.66562927", "0.642981", "0.6427187", "0.6386033", "0.63730204", "0.636465", "0.63593847", "0.62500316", "0.6246893", "0.6218948", "0.61481184", "0.61197406", "0.606...
0.6437552
9
Grant permission to specific role.
public void grantPermission(Permission permission, Role role) { List<Role> roles = new ArrayList<>(); roles.add(role); if (hasPermission(roles, permission)) { return; } Connection conn = null; PreparedStatement ps = null; String uuid = PermissionUtil.createPermissionID(permission); String query = null; try { conn = getConnection(); query = queryManager.getQuery(conn, QueryManager.GRANT_PERMISSION_QUERY); conn.setAutoCommit(false); ps = conn.prepareStatement(query); ps.setString(1, uuid); ps.setString(2, permission.getAppName()); ps.setString(3, permission.getPermissionString()); ps.setString(4, role.getId()); ps.executeUpdate(); conn.commit(); } catch (SQLException e) { log.debug("Failed to execute SQL query {}", query); throw new PermissionException("Unable to grant permission.", e); } finally { closeConnection(conn, ps, null); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test(dependsOnMethods = \"testRoleAdd\", groups = \"role\", priority = 1)\n public void testRoleGrantPermission() throws ExecutionException, InterruptedException {\n this.authDisabledAuthClient\n .roleGrantPermission(rootRole, rootRolekeyRangeBegin, rootkeyRangeEnd,\n Permission.Type.READWRI...
[ "0.73013", "0.70744634", "0.70331573", "0.70268875", "0.6084612", "0.6073833", "0.60128284", "0.59924465", "0.5986595", "0.5955901", "0.59408325", "0.5912459", "0.5885166", "0.58811986", "0.58804363", "0.58597356", "0.5817085", "0.5809204", "0.58030826", "0.5802289", "0.57963...
0.7119155
1
Revoke permission from all the roles.
public void revokePermission(Permission permission) { Connection conn = null; PreparedStatement ps = null; String query = null; try { conn = getConnection(); query = queryManager.getQuery(conn, QueryManager.REVOKE_PERMISSION_QUERY); conn.setAutoCommit(false); ps = conn.prepareStatement(query); ps.setString(1, permission.getAppName()); ps.setString(2, permission.getPermissionString()); ps.execute(); conn.commit(); } catch (SQLException e) { log.debug("Failed to execute SQL query {}", query); throw new PermissionException("Unable to revoke permission.", e); } finally { closeConnection(conn, ps, null); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void deleteRolePermissions(int[] ids) {\n\t\tfor(int i=0;i<ids.length;i++){\r\n\t\t\trolePermissionMapper.deleteByPrimaryKey(ids[i]);\r\n\t\t}\r\n\t}", "public void revokeAllPrivilegesForSubject(GrouperSession grouperSession, Subject subject);", "void deleteAllAccesses(Role role) {\n f...
[ "0.64633584", "0.63064027", "0.6236548", "0.61840826", "0.6111383", "0.6108155", "0.6057992", "0.5997475", "0.5954619", "0.5844747", "0.5827412", "0.58268374", "0.57843536", "0.57701844", "0.5764188", "0.5743324", "0.5740664", "0.57222056", "0.57029766", "0.56677234", "0.5645...
0.5189264
44
Revoke permission for PermissionID.
public void revokePermission(String permissionID) { Connection conn = null; PreparedStatement ps = null; String query = null; try { conn = getConnection(); query = queryManager.getQuery(conn, QueryManager.REVOKE_PERMISSION_BY_PERMISSION_ID_QUERY); conn.setAutoCommit(false); ps = conn.prepareStatement(query); ps.setString(1, permissionID); ps.execute(); conn.commit(); } catch (SQLException e) { log.debug("Failed to execute SQL query {}", query); throw new PermissionException("Unable to revoke permission.", e); } finally { closeConnection(conn, ps, null); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void revokePermission(Permission permission) {\n Connection conn = null;\n PreparedStatement ps = null;\n String query = null;\n try {\n conn = getConnection();\n query = queryManager.getQuery(conn, QueryManager.REVOKE_PERMISSION_QUERY);\n conn.se...
[ "0.72825694", "0.7155992", "0.6956873", "0.6816512", "0.681536", "0.6792938", "0.64999986", "0.6429035", "0.6394634", "0.6323983", "0.6228625", "0.6204226", "0.61986214", "0.61871785", "0.6170971", "0.6069827", "0.6023225", "0.59319556", "0.5905829", "0.5850553", "0.5817295",...
0.8202095
0
Revoke permission from a specific role.
public void revokePermission(Permission permission, Role role) { Connection conn = null; PreparedStatement ps = null; String query = null; try { conn = getConnection(); query = queryManager.getQuery(conn, QueryManager.REVOKE_PERMISSION_BY_ROLE_QUERY); conn.setAutoCommit(false); ps = conn.prepareStatement(query); ps.setString(1, permission.getAppName()); ps.setString(2, permission.getPermissionString()); ps.setString(3, role.getId()); ps.execute(); conn.commit(); } catch (SQLException e) { log.debug("Failed to execute SQL query {}", query); throw new PermissionException("Unable to revoke permission.", e); } finally { closeConnection(conn, ps, null); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public RevokeRoleResponse revokeRole(RevokeRoleRequest request) throws GPUdbException {\n RevokeRoleResponse actualResponse_ = new RevokeRoleResponse();\n submitRequest(\"/revoke/role\", request, actualResponse_, false);\n return actualResponse_;\n }", "public void revoke(String role) thr...
[ "0.7491678", "0.7463806", "0.74010354", "0.7127881", "0.71251", "0.68781567", "0.6788038", "0.67675734", "0.6742614", "0.6472746", "0.6459521", "0.6442449", "0.63995516", "0.63932925", "0.6388105", "0.63799685", "0.63517255", "0.63421047", "0.63296556", "0.63182765", "0.62596...
0.79663455
0
Check set of roles for specific permission.
public boolean hasPermission(List<Role> roles, Permission permission) { boolean hasPermission = false; Connection conn = null; PreparedStatement ps = null; ResultSet resultSet = null; String query = null; StringBuilder sb = new StringBuilder(); for (int i = 0; i < roles.size(); i++) { sb.append("?,"); } String roleIds = sb.deleteCharAt(sb.length() - 1).toString(); try { conn = getConnection(); query = queryManager.getQuery(conn, QueryManager.HAS_PERMISSION_QUERY) .replace("{ROLE_IDS}", roleIds); ps = conn.prepareStatement(query); ps.setString(1, permission.getAppName()); ps.setString(2, permission.getPermissionString()); for (int i = 0; i < roles.size(); i++) { ps.setString(i + 3, roles.get(i).getId()); } resultSet = ps.executeQuery(); while (resultSet.next()) { hasPermission = true; } } catch (SQLException e) { log.debug("Failed to execute SQL query {}", query); throw new PermissionException("Unable to check permissions.", e); } finally { closeConnection(conn, ps, resultSet); } return hasPermission; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "boolean anyGranted(String roles);", "boolean allGranted(String roles);", "AuthorizationResult hasRoles(Subject subject, String[] roles);", "@Test\n public void testGetPermissionsRole() throws Exception\n {\n permission = permissionManager.getPermissionInstance(\"GREET_PEOPLE\");\n permiss...
[ "0.72499245", "0.71381027", "0.65732014", "0.64579254", "0.6445192", "0.61504537", "0.6120621", "0.60888994", "0.60659945", "0.6064338", "0.6009146", "0.5966545", "0.5928936", "0.5881552", "0.5854755", "0.5853097", "0.5852313", "0.5835822", "0.5827207", "0.58254576", "0.57995...
0.6417588
5
Get granted roles of a specific permission.
public List<Role> getGrantedRoles(Permission permission) { List<Role> roles = new ArrayList<>(); Connection conn = null; PreparedStatement ps = null; ResultSet resultSet = null; String query = null; try { conn = getConnection(); query = queryManager.getQuery(conn, QueryManager.GET_GRANTED_ROLES_QUERY); ps = conn.prepareStatement(query); ps.setString(1, permission.getAppName()); ps.setString(2, permission.getPermissionString()); resultSet = ps.executeQuery(); while (resultSet.next()) { roles.add(new Role(resultSet.getString("ROLE_ID"), "")); } } catch (SQLException e) { log.debug("Failed to execute SQL query {}", query); throw new PermissionException("Unable to get roles assigned for the permission " + permission + ".", e); } finally { closeConnection(conn, ps, resultSet); } return roles; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "PermissionInfo getRolePermissions(HibBaseElement element, InternalActionContext ac, String roleUuid);", "List<RolePermission> findByRoleId(Long roleId);", "List<String> getRoles();", "List<Role> getRoles();", "public void getGrantedRoles() {\n\t\tif (path != null) {\n\t\t\tauthService.getGrantedRoles(path,...
[ "0.6679999", "0.64200073", "0.6172899", "0.61217576", "0.60805994", "0.6065818", "0.6042323", "0.6037605", "0.6032331", "0.60088956", "0.5977766", "0.59721625", "0.5867711", "0.5866492", "0.5840307", "0.5808297", "0.58007157", "0.577522", "0.5768733", "0.5768733", "0.57593966...
0.7426917
0
Get datasource object from carbon datasources.
private DataSource getDataSource() throws PermissionException { if (dataSource != null) { return dataSource; } if (dataSourceService == null) { throw new PermissionException("Datasource service is null. Cannot retrieve datasource " + permissionConfig.getDatasourceName()); } try { dataSource = (DataSource) dataSourceService.getDataSource(permissionConfig.getDatasourceName()); } catch (DataSourceException e) { throw new PermissionException("Unable to retrieve the datasource: " + permissionConfig.getDatasourceName(), e); } return dataSource; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "static public DataSource getDataSource(Context appContext) {\n // As per\n // http://goo.gl/clVKsG\n // we can rely on the application context never changing, so appContext is only\n // used once (during initialization).\n if (ds == null) {\n //ds = new InMemoryDataS...
[ "0.61162454", "0.61042124", "0.6071671", "0.6065753", "0.5977498", "0.5975291", "0.59520835", "0.594985", "0.5942472", "0.59220415", "0.59208685", "0.5920019", "0.59192055", "0.590699", "0.5895329", "0.58908725", "0.58865744", "0.5881857", "0.58393204", "0.58343005", "0.58321...
0.58701426
18
Close connection including prepared statement and result set objects.
public static void closeConnection(Connection connection, PreparedStatement preparedStatement, ResultSet resultSet) { if (connection != null) { try { connection.close(); } catch (SQLException e) { log.warn("Error closing database connection", e); } } if (preparedStatement != null) { try { preparedStatement.close(); } catch (SQLException e) { log.warn("Error closing prepared statement.", e); } } if (resultSet != null) { try { resultSet.close(); } catch (SQLException e) { log.warn("Error closing result set.", e); } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void close() {\n\t\tcloseConnection();\n\t\tcloseStatement();\n\t\tcloseResultSet();\n\t}", "public static void close()\n\t{\n\t\t\n\t\ttry \n\t\t{\t\t\t\n\t\t\t\n\t\t\tif (RESULT_SET != null)\n\t\t\t{\n\t\t\t\tRESULT_SET.close();\n\t\t\t}\n\t\t\t\n\t\t\tSTATEMENT.close();\n\t\t\tCONNECTION.close();\t\t\n...
[ "0.7936344", "0.7853156", "0.7738382", "0.76762885", "0.76358896", "0.7595493", "0.7595493", "0.7591188", "0.75799537", "0.7545593", "0.75130635", "0.74871016", "0.7473836", "0.7457146", "0.7412009", "0.73641", "0.7359786", "0.73591673", "0.733844", "0.73357195", "0.7329305",...
0.7113426
43
TODO Autogenerated method stub
public SettlementManagevo shuRu(String da, String danw, String pers, String shou, int mon, String add) { 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
public void baocun() { }
{ "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 System.out.println(iivo.beizhu.moneymouth+"sfeferegrttry");
public boolean getOrder2(IncomeInputvo iivo) { System.out.println("ssss"); FinancialmanService cs = new SettlementListIO(); try { if(cs.writeOrder2(new IncomeInputpo(iivo))) HostLog.addMes("写入结算清单"+"\n"); return true; } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } return false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public NeptunianAlienMouth() {\n\t\tinit(\"mouth-1\", 3, 27, 0);\n\t}", "public int getMouthPosition()\n {\n return (mouthPosition);\n }", "public String getWinner()\n\t{\n\n\n\n\n\n\n\n\n\n\n\n\n\t\treturn \"\";\n\t}", "public YuanC_LuH_Sides() {\n\t\tsuper();\n\t\tmaker=\"\";\n\t\t\n\t}", "@...
[ "0.6822167", "0.6072244", "0.60383636", "0.57254285", "0.5593338", "0.5551796", "0.5532341", "0.5412501", "0.53852206", "0.5341803", "0.5322733", "0.5310368", "0.5277595", "0.5273623", "0.52648133", "0.52641857", "0.5233105", "0.5225259", "0.52116877", "0.521117", "0.52076656...
0.0
-1
TODO Autogenerated method stub
public boolean writeOrder2(IncomeInputpo incomeInputpo) throws RemoteException { return false; }
{ "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.66708666", "0.65675074", "0.65229905", "0.6481001", "0.64770633", "0.64584893", "0.6413091", "0.63764185", "0.6275735", "0.62541914", "0.6236919", "0.6223816", "0.62017626", "0.61944294", "0.61944294", "0.61920846", "0.61867654", "0.6173323", "0.61328775", "0.61276996", "0...
0.0
-1
TODO Autogenerated method stub
public static void main(String[] args) { BufferedReader br =null; try { br =new BufferedReader(new FileReader("test.txt")); String l; while((l=br.readLine())!=null) { System.out.println(l); } } catch(IOException e) { System.out.println("print catch"); } finally { try { br.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
{ "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
private EditText jobtitle, jobdescription, noofemployees, joblocation,jobcategory, workinghours, salary, applybefore ; private ProgressBar progressBar; private Button btnapply;
@Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.apply_job); mListView = (ListView) findViewById(R.id.listview); //btnapply= findViewById(R.id.apply); //btnback = findViewById(R.id.back_button); //progressBar = findViewById(R.id.progressbar); /* jobtitle = findViewById(R.id.job_title); jobdescription = findViewById(R.id.job_description); noofemployees = findViewById(R.id.no_of_employees); joblocation = findViewById(R.id.job_location); jobcategory = findViewById(R.id.job_category); noofemployees = findViewById(R.id.no_of_employees); workinghours = findViewById(R.id.working_hours); applybefore = findViewById(R.id.apply_before); salary = findViewById(R.id.salary); */ //declare the database reference object. This is what we use to access the database. //NOTE: Unless you are signed in, this will not be useable. auth = FirebaseAuth.getInstance(); database = FirebaseDatabase.getInstance(); reference=database.getReference("UserInformation");//maile suru ma userinfo haleko thyina FirebaseUser user = auth.getCurrentUser(); String userID = user.getUid(); //userID = user.getUid(); //ValueEventListener listener = new ValueEventListener() reference.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(DataSnapshot snapshot) { // This method is called once with the initial value and again // whenever data at this location is updated. showData(snapshot); // comment thyo UserInformation post = snapshot.getValue(UserInformation.class); } @Override public void onCancelled(DatabaseError error) { } }); //reference.addValueEventListener(listener); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void buttonIsClicked(View view){\n\n if(view.getId()==R.id.btnSave){\n\n String FN=etFN.getEditText().getText().toString().trim();\n String LN=etLN.getEditText().getText().toString().trim();\n String GL=etGL.getEditText().getText().toString().trim();\n Stri...
[ "0.6270065", "0.6064406", "0.6003256", "0.6001614", "0.5828146", "0.57740194", "0.57488716", "0.5713092", "0.56596243", "0.564294", "0.5620008", "0.55978173", "0.5588807", "0.55805945", "0.5579484", "0.5575155", "0.5571365", "0.55518836", "0.5548019", "0.5537456", "0.5513451"...
0.5618915
11
This method is called once with the initial value and again whenever data at this location is updated.
@Override public void onDataChange(DataSnapshot snapshot) { showData(snapshot); // comment thyo UserInformation post = snapshot.getValue(UserInformation.class); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tprotected void init() {\n\t\tupdateValues();\r\n\t}", "public void initialize() {\r\n\t\tsetValue(initialValue);\r\n\t}", "private void onChange() {\n startTime = -1L;\n endTime = -1L;\n minLat = Double.NaN;\n maxLat = Double.NaN;\n minLon = Double.NaN;\n maxLon = Double.NaN;\n...
[ "0.6856542", "0.6654883", "0.6446471", "0.64045274", "0.62937367", "0.62570226", "0.62508667", "0.624989", "0.6217914", "0.6217914", "0.6217914", "0.61913645", "0.6187112", "0.61626685", "0.6160627", "0.6160627", "0.61481184", "0.614558", "0.6142754", "0.6118363", "0.6087983"...
0.0
-1
Created by wanglin on 2017/9/7 12:23.
public interface UnionCommonListContract { interface View extends IView, ILoading, INoData, INoNet, IDialog { void showUnionList(List<ClassInfo> data, int page, boolean isFitst); void showMemberList(List<StudentInfo> list); void showMyGroupList(List<ClassInfo> list); void showCommonClassList(List<ClassInfo> list); void showIsMember(int is_member, ClassInfo classInfo); } interface Presenter extends IPresenter { void getCommonClassList(); void applyJoinGroup(ClassInfo classInfo); void isGroupMember(ClassInfo classInfo); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private stendhal() {\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\tpublic void tires() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Overrid...
[ "0.610544", "0.60489386", "0.58298534", "0.58187133", "0.58187133", "0.5802504", "0.57866764", "0.57480603", "0.5743487", "0.57233095", "0.5684324", "0.5680246", "0.56770283", "0.567593", "0.56663245", "0.56663245", "0.5662753", "0.5647584", "0.5644263", "0.5642365", "0.56230...
0.0
-1
TODO Autogenerated method stub
public static void main(String[] args) { }
{ "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
FUNCTION: Obtains the sequence stored in a text file. INPUT: String (file path) RETURN: String (sequence)
public static ArrayList<String> parseSequenceFile(String filePath) { ArrayList<String> sequence = new ArrayList<String>(); File file = new File(filePath); Scanner scanner; try { scanner = new Scanner(file); while (scanner.hasNextLine()) { sequence.add(scanner.nextLine()); } scanner.close(); } catch (FileNotFoundException e) { System.out.println("File not found. Program aborted."); System.exit(-1); } return sequence; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "static String getSeq(String line)\n{\n\tString pattern = \"SEQ=\";\n\tint idx = line.indexOf(pattern);\n\tif(idx == -1) return \"\";\n\tline = line.toUpperCase();\n\tidx += pattern.length();\n\tint end = idx;\n\twhile(end < line.length() && isBasePair(line.charAt(end))) end++;\n\treturn line.substring(idx, end);\n...
[ "0.6649833", "0.64290065", "0.6163854", "0.59061086", "0.5899726", "0.5851393", "0.5836324", "0.5827306", "0.57785296", "0.5721236", "0.57201964", "0.57073367", "0.56990695", "0.5684905", "0.5645597", "0.5644841", "0.5644841", "0.5644841", "0.5644841", "0.5644841", "0.5644841...
0.67134726
0
TODO Autogenerated method stub
@Override public String getOptionCode() { return zjlxdm; }
{ "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 String getOptionName() { return zjlxmc; }
{ "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.66708666", "0.65675074", "0.65229905", "0.6481001", "0.64770633", "0.64584893", "0.6413091", "0.63764185", "0.6275735", "0.62541914", "0.6236919", "0.6223816", "0.62017626", "0.61944294", "0.61944294", "0.61920846", "0.61867654", "0.6173323", "0.61328775", "0.61276996", "0...
0.0
-1
TODO Autogenerated method stub
@Override public String getOrder() { return "zjlxdm,asc"; }
{ "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 String getSqlWhere() { 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 String getTableName() { return "DMDB.GY_DM_ZJLX"; }
{ "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
constructor Method GS ///////////// General Methods////////////// Connecting DB
private void getConnection() { try { Class.forName(driver); conn = DriverManager.getConnection(url, id, pw); System.out.println("[접속성공]"); } catch (ClassNotFoundException e) { System.out.println("error: 드라이버 로딩 실패 -" + e); } catch (SQLException e) { System.out.println("error:" + e); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ConnectDB(){\r\n\r\n\t}", "public DBManager(){\r\n connect(DBConstant.driver,DBConstant.connetionstring);\r\n }", "public DBConnection() {\n this(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST, DB_PORT);\n }", "private DBConnection() \n {\n initConnection();\n }", "DBConnect() {\n...
[ "0.81884784", "0.81145436", "0.7921451", "0.7901214", "0.7893872", "0.7712164", "0.76839954", "0.76453125", "0.76431155", "0.7639381", "0.7613305", "0.75853163", "0.757623", "0.756568", "0.755075", "0.7504186", "0.74775696", "0.7464205", "0.73846215", "0.73643726", "0.7361474...
0.0
-1
just easy/lazy. If the user inside is being updated, the userLoc loading state changes, which which case we need to notify that the userLoadingState value is changing. Without checking which LOC has a property change, nor whether it's the relevant property, I'm just going to always notify that the userLoadingState might have changed. Like I said, lazy.
@Override public void onPropertyChanged(Observable observable, int i) { notifyPropertyChanged(BR.userLoadingState); onDataLoaded(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void onDataLoaded() {\n if (userLoc.getLoadingState() != LoadingState.DATA\n || randomNumberLoc1.getLoadingState() != LoadingState.DATA\n || randomNumberLoc2.getLoadingState() != LoadingState.DATA) {\n return;\n }\n\n // Let's pretend that adapting is expensive and takes a while...
[ "0.6096503", "0.57590896", "0.5674081", "0.56694627", "0.5594223", "0.55787826", "0.5514833", "0.54120076", "0.5404365", "0.5382743", "0.5372489", "0.53293157", "0.5317648", "0.53098446", "0.52855974", "0.52762055", "0.5254032", "0.5247103", "0.5229095", "0.5222509", "0.52162...
0.57169604
2
== For View (binding) =====================================================
@Bindable public LoadingState getLoadingState() { return loadingState; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected abstract void bindingView();", "@Override\n\tpublic View bindView() {\n\t\treturn null;\n\t}", "@Override\n\tprotected void initView() {\n\t\t\n\t}", "@Override\n\tprotected void initView() {\n\t\t\n\t}", "@Override\n protected void initView() {\n }", "@Override\n protected void initVi...
[ "0.82633436", "0.72910976", "0.7217881", "0.7217881", "0.72064376", "0.72064376", "0.7191028", "0.7117397", "0.7117397", "0.71125335", "0.71065056", "0.71037877", "0.7074797", "0.70493156", "0.70493156", "0.7026259", "0.69428337", "0.6920912", "0.6913238", "0.6890331", "0.682...
0.0
-1
noinspection ConstantConditions // button would not have been available
public void onUpdateButtonClick() { androidUserService.updateUser(userLoc.getUser().getId()) .subscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.mainThread()) .subscribe(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test(priority =1)\r\n\tpublic void button() {\r\n button = driver.findElement(By.cssSelector(\"button.black\"));\r\n assertFalse(button.isDisplayed());\r\n //sf.assertFalse(button.isDisplayed());\r\n System.out.println(\"Print this\");\r\n\t}", "@Override\n public void onClick(View v) {\n...
[ "0.62287796", "0.6071049", "0.6016081", "0.5967363", "0.59582007", "0.59338623", "0.5915096", "0.5899596", "0.5891478", "0.5887389", "0.5886501", "0.5881652", "0.58788997", "0.58788997", "0.58596903", "0.5849674", "0.58304876", "0.57935", "0.5787082", "0.5779352", "0.5756663"...
0.0
-1
== Private methods ======================================================== This is called any time data has loaded (into one of the LOCs), including when data has changed (inside the LOC). When all the data are in, this will "adapt" them; that is, set the view model fields (which Android Data Binding will then update the view with). These operations can We could do some adapting with partial data (when some data has come in but other has not), showing the user what has arrived so far. That's simple in that all you have to do is decide what adapting to do when within this method (but you also have to decide whether that can make sense for your UI). For simplicity, for this demo, I'm not going to do any adapting until all the data are in.
private void onDataLoaded() { if (userLoc.getLoadingState() != LoadingState.DATA || randomNumberLoc1.getLoadingState() != LoadingState.DATA || randomNumberLoc2.getLoadingState() != LoadingState.DATA) { return; } // Let's pretend that adapting is expensive and takes a while try { Thread.sleep(ADAPT_DELAY_MS); } catch (InterruptedException e) { // can't catch a break! } UserService.User user = userLoc.getUser(); assert user != null; // based on LoadingState check DateFormat dateTimeInstance = SimpleDateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG); loadingState = LoadingState.DATA; text1 = user.getId() + ": " + user.getName() + " (" + randomNumberLoc1.getRandomNumber() + ")"; text2 = dateTimeInstance.format(user.getLastUpdate()) + " (" + randomNumberLoc2.getRandomNumber() + ")"; notifyPropertyChanged(BR.loadingState); notifyPropertyChanged(BR.text1); notifyPropertyChanged(BR.text2); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void fillData() {\n\t\tmCursor = dbHelper.getResultsByTime();\n\t\tstartManagingCursor(mCursor);\n\n\t\tdataListAdapter = new SimpleCursorAdapter(this, R.layout.row, mCursor,\n\t\t\t\tFROM, TO);\n\t\tmConversationView.setAdapter(dataListAdapter);\n\t}", "public void loadData() {\n if (this.model !...
[ "0.6656999", "0.64732784", "0.632489", "0.6182649", "0.6147676", "0.61403763", "0.6099013", "0.6094268", "0.6092019", "0.6057931", "0.6053417", "0.59890944", "0.59735066", "0.5959922", "0.595216", "0.5942831", "0.5937441", "0.5922076", "0.5895217", "0.5892556", "0.58885807", ...
0.7488424
0
Handle unknown localization. Happens when there is no publication mapped to the domain.
public Localization handleUnknown(Exception exception, ServletRequest request) { // Create a new localization object on every request // This cannot be static as the publication id can be different on any request return new DocsLocalization(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "void localizationChaneged();", "public MissingLanguageException()\n\t{\n\t\tsuper(String.format(BASE_MESSAGE, \"Localized___... type\"), ERROR_CODE, \"Localized___... type\");\n\t}", "public void handleError() {\n\t\tSystem.out.println(defaultLocale);\n\t}", "public void testXW404() {\n\n ResourceBund...
[ "0.6036798", "0.57975614", "0.5607978", "0.5453464", "0.541426", "0.541426", "0.541426", "0.52995855", "0.52111953", "0.52079403", "0.5206527", "0.51494557", "0.5143501", "0.5121979", "0.5069576", "0.5023583", "0.5019585", "0.49913758", "0.49812588", "0.49578068", "0.49439326...
0.67881113
0
Created by zhuqiuzhu on 17/4/26.
public interface Datum { Component createComponent(ComponentContext c); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public void perish() {\n \n }", "private stendhal() {\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void grabar() {\n\t\t\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Over...
[ "0.64100397", "0.63942397", "0.62086684", "0.61740077", "0.61459255", "0.61051846", "0.61051846", "0.6061648", "0.60589856", "0.6056884", "0.6029664", "0.6016208", "0.6012414", "0.6010241", "0.60003334", "0.59762996", "0.59719545", "0.5950433", "0.59501505", "0.5945811", "0.5...
0.0
-1
/ The process() method is overloaded in the Processor class.
public int process(int i, int j) { //System.out.printf("Processing two integers:%d, %d", i, j); return i + j; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n \tpublic void process() {\n \t\t\r\n \t}", "public void process() {\n\t}", "public void process() {\n\n }", "public void process();", "@Override\n\tpublic void processing() {\n\n\t}", "void process();", "void process();", "public void processing();", "@Override\n\tpublic Result doP...
[ "0.84239584", "0.83624434", "0.82253206", "0.8114664", "0.78068244", "0.77658594", "0.77658594", "0.76162356", "0.7474833", "0.74634004", "0.7447781", "0.73560977", "0.722525", "0.72116745", "0.7185992", "0.71462595", "0.71210897", "0.7092021", "0.70195144", "0.6993439", "0.6...
0.0
-1
/ The process() method is overridden in the child class MathProcessor.
@Override public int process(int i, int j) { /** * When invoking a superclass version of an overridden method the super keyword is used. */ int x = super.process(i, j); return i + j + x; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n \tpublic void process() {\n \t\t\r\n \t}", "protected abstract Object doCalculations();", "public void doMath();", "public void process() {\n\t}", "protected abstract SoyValue compute();", "public void compute() {}", "@Override\r\n\tpublic void compute() {\n\t\t\r\n\t}", "@Override\r\n\...
[ "0.675151", "0.6460628", "0.63938934", "0.6389545", "0.6332247", "0.6251864", "0.621187", "0.62042886", "0.61709684", "0.61636543", "0.61567616", "0.61523354", "0.6128655", "0.60833126", "0.6068346", "0.6052856", "0.60230446", "0.60167575", "0.6009192", "0.60061514", "0.59924...
0.5616439
50
Returns the calibration data for a certain user. If there is no data for this user, it creates a new container.
private CalibrationData dataForUser(final String userID) { if (!dataCollection.containsKey(userID)) { // Create new container. final CalibrationData calibrationData = new CalibrationData(); // Add it to collection. dataCollection.put(userID, calibrationData); return calibrationData; } else { return dataCollection.get(userID); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public UserData get(String user_id) {\n\t\treturn null;\r\n\t}", "OiDataCollection getUserCollection() {\n return userCollection;\n }", "private void loadUser() {\n File dataFile = new File(getFilesDir().getPath() + \"/\" + DATA_FILE);\n\n if(dataFile.exists()) {\n loadData()...
[ "0.57064193", "0.5517521", "0.53855944", "0.52457345", "0.5218125", "0.51205933", "0.5038031", "0.50276995", "0.49959543", "0.49752533", "0.49493763", "0.48804322", "0.4870285", "0.48694605", "0.4865819", "0.48625588", "0.48598805", "0.48509988", "0.4841432", "0.48404667", "0...
0.7699885
0
Add several calibration records from a certain source.
private final void addCalibrationRecords(final String userID, final NetcdfFile ncfile, final String sourceName, final String sourceURL, final Array dateArray, final Array offsetArray, final Array offsetSeArray, final Array slopeArray, final Array slopeSeArray, final Array covarianceArray, final int channelNum, final double sceneTb, final String radToTbConvFormula, final String tbToRadConvFormula, final Set<String> convVarsNames) throws BadArgumentException, InvalidFilenameException, DatasetReadException, VariableNotFoundException, ChannelNotFoundException, VariableReadException { // Check dimensions consistency. if ((dateArray.getShape()[0] != offsetArray.getShape()[0]) || (dateArray.getShape()[0] != slopeArray.getShape()[0]) || (dateArray.getShape()[0] != offsetSeArray.getShape()[0]) || (dateArray.getShape()[0] != slopeSeArray.getShape()[0]) || (dateArray.getShape()[0] != covarianceArray.getShape()[0])) { throw new BadArgumentException("array dimensions mismatch."); } // Sweep arrays and add each record into the map. for (int i = 0; i < dateArray.getShape()[0]; i++) { Double dateDouble = dateArray.getDouble(i) * 1e3; // in [ms] Date date = new Date(dateDouble.longValue()); // Read the conversion variables. Map<String, Double> convVars = new HashMap<String, Double>(); for (String convVarName : convVarsNames) { // TODO: [Remove workaround when formulas are changed] // Restore 'c1' and 'c2', if they are in the formula... if (convVarName.equals(configManager.getGlobalAttributesNames().getC1())) { convVars.put(C1_VARNAME, NetcdfUtils.readDouble(ncfile, convVarName, i, channelNum)); } else if (convVarName.equals(configManager.getGlobalAttributesNames().getC2())) { convVars.put(C2_VARNAME, NetcdfUtils.readDouble(ncfile, convVarName, i, channelNum)); } else { convVars.put(convVarName, NetcdfUtils.readDouble(ncfile, convVarName, i, channelNum)); } } // Create calibration record. CalibrationRecord calRecord = new CalibrationRecordImpl(radToTbConvFormula, tbToRadConvFormula, convVars, TB_VARNAME, RAD_VARNAME, offsetArray.getDouble(i), offsetSeArray.getDouble(i), slopeArray.getDouble(i), slopeSeArray.getDouble(i), covarianceArray.getDouble(i), sceneTb); // Add calibration record, if valid, to data for this user. if (calRecord.isValid()) { dataForUser(userID).addRecord(date, sourceName, sourceURL, calRecord); // TODO: to be checked. // if single-point, add a second one, with same value, and shifted one second, so that // it can be plotted by dygraphs. if (dateArray.getShape()[0] == 1) { DateTime dt = new DateTime(date); dt = dt.plus(Seconds.ONE); dataForUser(userID).addRecord(dt.toDate(), sourceName, sourceURL, calRecord); } } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "int addAllComponents(RecordSet inputRecords);", "public void addSources(String[] sources) {\n if ( ! this.correlatedSources.isEmpty()) {\n throw new IllegalArgumentException(\"CORE: correlated sources have already been declared in this clause\");\n }\n this.correlatedSources.addAl...
[ "0.5628972", "0.5522401", "0.5026349", "0.50204706", "0.49919587", "0.4963139", "0.48641074", "0.48355415", "0.48138347", "0.47650295", "0.47324714", "0.47247112", "0.47108063", "0.46731886", "0.46653828", "0.46626887", "0.46605644", "0.46540654", "0.46315372", "0.4627637", "...
0.6721266
0
Process the radiance to tb conversion formula (always lower case).
private final String processRadianceToTbFormula(final String radianceToTbFormula, final Set<String> convVarsNames) throws FormulaException { // Support both 'ln' and 'log' for expressing 'logarithmus naturalis (base e)'. // Library "JEP" (GPL) support 'ln', and "exp4j" (apache license) support 'log'. String radToTbFormulaClean = radianceToTbFormula.toLowerCase().replaceAll("\\s", "").replaceAll("ln", "log"); // Read the variable names from the formula. String[] variableNamesArray = radToTbFormulaClean.split("((\\W)|((?<=\\W)\\d+(?=\\W)?)|" + "(abs|acos|asin|atan|cbrt|ceil|cos|cosh|exp|floor|ln|log|log2|log10|sin|sinh|sqrt|tan|tanh))+"); convVarsNames.addAll(Arrays.asList(variableNamesArray)); convVarsNames.remove(""); // Validity check. try { new ExpressionBuilder(radToTbFormulaClean).withVariableNames( convVarsNames.toArray(new String[convVarsNames.size()])).build(); } catch (UnknownFunctionException ufe) { throw new FormulaException(ufe.getMessage(), ufe); } catch (UnparsableExpressionException upe) { throw new FormulaException(upe.getMessage(), upe); } // Remove radiance and tb, since this will not come from any netCDF variable. convVarsNames.remove(RAD_VARNAME); convVarsNames.remove(TB_VARNAME); // TODO: [Remove workaround when formulas are changed] // Remove 'c1' and 'c2', if they are in the formula, and substitute them for the configured name... if (convVarsNames.contains(C1_VARNAME)) { convVarsNames.remove(C1_VARNAME); convVarsNames.add(configManager.getGlobalAttributesNames().getC1()); } if (convVarsNames.contains(C2_VARNAME)) { convVarsNames.remove(C2_VARNAME); convVarsNames.add(configManager.getGlobalAttributesNames().getC2()); } return radToTbFormulaClean; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private final String processTbToRadianceFormula(final String tbToRadianceFormula, final Set<String> convVarsNames)\r\n throws FormulaException\r\n {\r\n // Support both 'ln' and 'log' for expressing 'logarithmus naturalis (base e)'.\r\n // Library \"JEP\" (GPL) support 'ln', and \"exp4j...
[ "0.70226616", "0.55153704", "0.53064764", "0.52930015", "0.50949275", "0.50674486", "0.49916232", "0.49872112", "0.4944804", "0.49116468", "0.4909653", "0.49047107", "0.48745632", "0.48691693", "0.48619008", "0.48536593", "0.48505005", "0.4834399", "0.48338214", "0.482898", "...
0.6942678
1
Process tb to radiance conversion formula (always lower case).
private final String processTbToRadianceFormula(final String tbToRadianceFormula, final Set<String> convVarsNames) throws FormulaException { // Support both 'ln' and 'log' for expressing 'logarithmus naturalis (base e)'. // Library "JEP" (GPL) support 'ln', and "exp4j" (apache license) support 'log'. String tbToRadFormulaClean = tbToRadianceFormula.toLowerCase().replaceAll("\\s", "").replaceAll("ln", "log"); // Read the variable names from the formula. String[] variableNamesArray = tbToRadFormulaClean.split("((\\W)|((?<=\\W)\\d+(?=\\W)?)|" + "(abs|acos|asin|atan|cbrt|ceil|cos|cosh|exp|floor|ln|log|log2|log10|sin|sinh|sqrt|tan|tanh))+"); convVarsNames.addAll(Arrays.asList(variableNamesArray)); convVarsNames.remove(""); // Validity check. try { new ExpressionBuilder(tbToRadFormulaClean).withVariableNames( convVarsNames.toArray(new String[convVarsNames.size()])).build(); } catch (UnknownFunctionException ufe) { throw new FormulaException(ufe.getMessage(), ufe); } catch (UnparsableExpressionException upe) { throw new FormulaException(upe.getMessage(), upe); } // Remove radiance and tb, since this will not come from any netCDF variable. convVarsNames.remove(RAD_VARNAME); convVarsNames.remove(TB_VARNAME); // TODO: [Remove workaround when formulas are changed] // Remove 'c1' and 'c2', if they are in the formula, and substitute them for the configured name... if (convVarsNames.contains(C1_VARNAME)) { convVarsNames.remove(C1_VARNAME); convVarsNames.add(configManager.getGlobalAttributesNames().getC1()); } if (convVarsNames.contains(C2_VARNAME)) { convVarsNames.remove(C2_VARNAME); convVarsNames.add(configManager.getGlobalAttributesNames().getC2()); } return tbToRadFormulaClean; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private final String processRadianceToTbFormula(final String radianceToTbFormula, final Set<String> convVarsNames)\r\n throws FormulaException\r\n {\r\n // Support both 'ln' and 'log' for expressing 'logarithmus naturalis (base e)'.\r\n // Library \"JEP\" (GPL) support 'ln', and \"exp4j...
[ "0.65173703", "0.53663623", "0.507922", "0.49812728", "0.491827", "0.49005273", "0.487622", "0.48221603", "0.48207656", "0.48201153", "0.47830367", "0.47604352", "0.47339553", "0.47144705", "0.47011974", "0.46814972", "0.4664465", "0.46621805", "0.46571425", "0.46543413", "0....
0.7073995
0
TODO Autogenerated method stub
@Override protected Transaction createTarget() { 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
Method wich describe mail logic of thead. It depends of two values. word and space diference logic.
@Override public void run() { char[] symbol; count = 0; int i = 0; symbol = text.getText().toCharArray(); while(i < symbol.length) { if(!Thread.interrupted()) { if (name.equals("space")) { if (symbol[i] == ' ') { count++; showThread(); } } else if (name.equals("word")) { if (symbol[i] == ' ' || (i + 1) >= text.getText().length()) { count++; showThread(); } } i++; } else { System.out.println(name + " поток прерван "); show(); return; } try { Thread.sleep(100); } catch (InterruptedException e) { System.out.println(name + " поток прерван "); show(); return; } } show(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void sendTableHeader(CommandType type) {\n switch (type) {\n case LECTURER:\n sendMsgToClient(\"@|bold,cyan \" + String.format(\"%-25s %s\", \"Name\", \"Subject\" + \"|@\"));\n sendMsgToClient(\"@|cyan -------------------------------- |@\");\n ...
[ "0.5835529", "0.5733327", "0.55765915", "0.5395648", "0.529718", "0.49429384", "0.491339", "0.48918575", "0.48514548", "0.48479092", "0.48451984", "0.4839361", "0.4818223", "0.48108217", "0.48100945", "0.47999585", "0.47922647", "0.47917968", "0.476986", "0.4762768", "0.47564...
0.0
-1
Solo las request por GET, que tengan la cabecera accept=application/json
@GetMapping(produces=MediaType.APPLICATION_JSON_VALUE) public Saludo consulta() { return new Saludo("Hola", "!!!!"); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\n public void getWitheaders(){\n with().accept(ContentType.JSON)\n .when().get(\"http://34.223.219.142:1212/ords/hr/countries/US\")\n .then().statusCode(200);\n }", "@GET\n @Path(\"/getAll\")\n @Produces(MediaType.APPLICATION_JSON)\n public Response getJson() {\n ...
[ "0.6369771", "0.62463963", "0.60997826", "0.59867764", "0.59319794", "0.5914144", "0.5887951", "0.5883641", "0.5873655", "0.5836266", "0.57989705", "0.57967335", "0.579326", "0.57675284", "0.5747996", "0.5714089", "0.5701287", "0.5674242", "0.5673691", "0.5667504", "0.5650029...
0.0
-1
Solo las request por POST, que tengan la cabecera content_type=application/json
@PostMapping(consumes=MediaType.APPLICATION_JSON_VALUE) public void alta(@RequestBody Saludo saludo) { System.out.println("Dando de alta el saludo: "+ saludo); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void setPostRequestProperties(HttpURLConnection conn){\n try {\n conn.setDoInput(true);\n conn.setDoOutput(true);\n conn.setRequestProperty(\"Content-Type\", \"application/json\");\n conn.setRequestProperty(\"Accept\", \"application/json\");\n c...
[ "0.64851606", "0.647186", "0.6072884", "0.6055829", "0.6049776", "0.60460395", "0.604393", "0.6029352", "0.60204935", "0.59598994", "0.59486747", "0.5946831", "0.59359586", "0.59354365", "0.5926299", "0.59201103", "0.59155405", "0.5848848", "0.5812793", "0.5811392", "0.578814...
0.57525694
23
The Factory for the model. It provides a create method for each nonabstract class of the model.
public interface HiphopsFactory extends EFactory { /** * The singleton instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ HiphopsFactory eINSTANCE = hiphops.impl.HiphopsFactoryImpl.init(); /** * Returns a new object of class '<em>Model</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Model</em>'. * @generated */ Model createModel(); /** * Returns a new object of class '<em>System</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>System</em>'. * @generated */ System createSystem(); /** * Returns a new object of class '<em>Component</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Component</em>'. * @generated */ Component createComponent(); /** * Returns a new object of class '<em>Port</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Port</em>'. * @generated */ Port createPort(); /** * Returns a new object of class '<em>Implementation</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Implementation</em>'. * @generated */ Implementation createImplementation(); /** * Returns a new object of class '<em>FData</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>FData</em>'. * @generated */ FData createFData(); /** * Returns a new object of class '<em>Output Deviation</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Output Deviation</em>'. * @generated */ OutputDeviation createOutputDeviation(); /** * Returns a new object of class '<em>Output Deviations</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Output Deviations</em>'. * @generated */ OutputDeviations createOutputDeviations(); /** * Returns a new object of class '<em>Basic Event</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Basic Event</em>'. * @generated */ BasicEvent createBasicEvent(); /** * Returns a new object of class '<em>Basic Events</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Basic Events</em>'. * @generated */ BasicEvents createBasicEvents(); /** * Returns a new object of class '<em>Named Class</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Named Class</em>'. * @generated */ NamedClass createNamedClass(); /** * Returns a new object of class '<em>Line</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Line</em>'. * @generated */ Line createLine(); /** * Returns a new object of class '<em>Described Class</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Described Class</em>'. * @generated */ DescribedClass createDescribedClass(); /** * Returns a new object of class '<em>Alloc Alternative</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Alloc Alternative</em>'. * @generated */ AllocAlternative createAllocAlternative(); /** * Returns a new object of class '<em>Hazard</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Hazard</em>'. * @generated */ Hazard createHazard(); /** * Returns the package supported by this factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the package supported by this factory. * @generated */ HiphopsPackage getHiphopsPackage(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Model createModel();", "Model createModel();", "Model createModel();", "Model createModel();", "Model createModel();", "Model createModel();", "Model createModel();", "TestModelFactory getTestModelFactory();", "public UsermodelFactoryImpl() {\r\n\t\tsuper();\r\n\t}", "public SqliteModelFactoryImp...
[ "0.7155545", "0.7155545", "0.7155545", "0.7155545", "0.7155545", "0.7155545", "0.7155545", "0.70741254", "0.7052838", "0.6984461", "0.69753486", "0.69645774", "0.6957413", "0.69466615", "0.6860321", "0.6810913", "0.6808419", "0.67546237", "0.66941464", "0.6656521", "0.6652656...
0.0
-1
Returns a new object of class 'Model'.
Model createModel();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static Model newOf(Model model) {\n\t\tModel newModel = Model.newOf();\n\t\tnewModel.setTitle(model.getTitle());\n\t\tnewModel.setTableCode(model.getTableCode());\n\t\tnewModel.setDescription(model.getDescription());\n\t\treturn newModel;\n\t}", "InstanceModel createInstanceOfInstanceModel();", "public ...
[ "0.7724402", "0.74879456", "0.73728114", "0.7366849", "0.72704834", "0.72373086", "0.71811604", "0.70790565", "0.68526566", "0.6849991", "0.6849991", "0.6849991", "0.68372846", "0.68131554", "0.6798883", "0.67974764", "0.6792193", "0.6784425", "0.67540056", "0.67471766", "0.6...
0.79696
6
Returns a new object of class 'System'.
System createSystem();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static System getInstance() {\n\t\ttry {\n\t\t\treturn instance == null ? new System(null, null, null) : instance;\n\t\t} catch (Exception e) {\n\t\t\tlogger.fatal(\"System Initialization Failed\", e);\n\t\t\treturn null;\n\t\t}\n\t}", "public SystemInfo() {\r\n\t}", "org.hyperflex.roscomponentmodel.Sys...
[ "0.748182", "0.6704831", "0.6693963", "0.6689483", "0.6664866", "0.6519072", "0.65061265", "0.6494749", "0.64046675", "0.64018023", "0.6361486", "0.63039887", "0.6289539", "0.62807196", "0.6227807", "0.6137939", "0.6123552", "0.61199176", "0.611752", "0.60877395", "0.6083604"...
0.8196199
0
Returns a new object of class 'Component'.
Component createComponent();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "ComponentType createComponentType();", "public Component() {\n }", "public Component() {\n\t\tlocation = new Point(0, 0);\n\t\tsize = new Dimension(100, 80);\n\t\tproperties = new LinkedHashMap<>();\n\t\tsubJobContainer= new LinkedHashMap<>();\n\t\tleftPortCount = 0;\n\t\trightPortCount = 0;\n\t\tbottomPort...
[ "0.7202099", "0.7062562", "0.6791238", "0.670937", "0.6698855", "0.66444856", "0.6638723", "0.6634172", "0.65970844", "0.65823126", "0.65623575", "0.6498782", "0.6492833", "0.6453195", "0.63994306", "0.63916665", "0.6373514", "0.63063014", "0.6279996", "0.6278236", "0.6192063...
0.8138645
1
Returns a new object of class 'Port'.
Port createPort();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "PortDefinition createPortDefinition();", "DynamicPort createDynamicPort();", "public PortRange() {\n }", "Port getPort2();", "public ABLPort Port(String portName) {\t\t\r\n\t\treturn new ABLPort(BrickFinder.getDefault().getPort(portName));\t \r\n\t}", "public Node(int port) {\n this();\n...
[ "0.74995637", "0.7275891", "0.7010477", "0.6960317", "0.6934117", "0.68899333", "0.68679404", "0.68245846", "0.68245846", "0.6786382", "0.6744688", "0.67299926", "0.6723061", "0.66959006", "0.65614635", "0.6516404", "0.65069795", "0.64983594", "0.64983594", "0.6467574", "0.64...
0.8345903
1
Returns a new object of class 'Implementation'.
Implementation createImplementation();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public java.lang.Object newImplementation(Class newImplementation) \n {\n if (disableUpdates) return this;\n if (!(newImplementation == this.getClass()) && !newImplementation.isInterface())\n RuntimeItemManager.getRuntimeItemManager().implementationChanged(getImplementedInterface(), newImplementation);...
[ "0.7084858", "0.65932864", "0.658839", "0.6422431", "0.638201", "0.63637614", "0.61514443", "0.6085668", "0.5924322", "0.58689475", "0.58535886", "0.5843263", "0.57769066", "0.5750807", "0.56973076", "0.56703424", "0.5669072", "0.564631", "0.56279165", "0.5614142", "0.5609499...
0.85051966
0
Returns a new object of class 'FData'.
FData createFData();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "DataFactory getDataFactory();", "protected abstract D createData();", "public static FileData createEntity() {\n FileData fileData = Reflections.createObj(FileData.class, Lists.newArrayList(\n\t\t FileData.F_NAME\n\t\t,FileData.F_PATH\n\t\t,FileData.F_SIZE\n\t\t,FileData.F_TYPE\n\t\t,FileData.F_DESCRIPT...
[ "0.6739313", "0.6729372", "0.6536686", "0.64951986", "0.62615854", "0.62426233", "0.6171464", "0.6117402", "0.6083145", "0.60038936", "0.59917927", "0.595849", "0.59379363", "0.5923717", "0.5909512", "0.59090996", "0.589155", "0.587129", "0.5860645", "0.5851496", "0.5851496",...
0.8486757
0
Returns a new object of class 'Output Deviation'.
OutputDeviation createOutputDeviation();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public double GetStandardDev();", "public double stddev() { \n return StdStats.stddev(result);\n }", "public double stddev() {\n return stddev;\n }", "public float getStandardDeviation(){\r\nreturn StandardDeviation;\r\n\t}", "public double stddev() {\n return StdStats.stddev(tri...
[ "0.66516834", "0.66030127", "0.6596116", "0.6541569", "0.6500924", "0.64356977", "0.6426754", "0.6426406", "0.6416699", "0.63859063", "0.6364084", "0.6359974", "0.6353662", "0.6344764", "0.63200504", "0.62385494", "0.6212271", "0.62070185", "0.6178455", "0.6164065", "0.615352...
0.77398485
0
Returns a new object of class 'Output Deviations'.
OutputDeviations createOutputDeviations();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Output createOutput();", "private Output() {}", "public void createOutput() {\n\t\tsetOutput(new Output());\n\t}", "OutputDecl createOutputDecl();", "public abstract Object getOutput ();", "public Output getOutput() {\n\t\treturn output;\n\t}", "public Output<T> output() {\n return output;\n }", ...
[ "0.712381", "0.70835614", "0.68469906", "0.68149245", "0.63342094", "0.62614286", "0.62508106", "0.6229223", "0.6174283", "0.61732936", "0.6129275", "0.6109858", "0.60064954", "0.6002561", "0.59975827", "0.5991504", "0.59533733", "0.5916883", "0.59117496", "0.5876961", "0.583...
0.84586763
0
Returns a new object of class 'Basic Event'.
BasicEvent createBasicEvent();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "BasicEvents createBasicEvents();", "Event createEvent();", "Event createEvent();", "public Event() {}", "public Event() {\r\n\r\n\t}", "public Event() {\n\t}", "public Event() {\n\n }", "public Event() {\n }", "public Event() {\n }", "public Event(){\n \n }", "public\n C...
[ "0.8166698", "0.78875697", "0.78875697", "0.74873084", "0.727809", "0.72484607", "0.7189056", "0.7167931", "0.7167931", "0.7068716", "0.7044785", "0.70409024", "0.70323443", "0.6986631", "0.68685776", "0.66884905", "0.656096", "0.6555692", "0.6545309", "0.6506573", "0.6506454...
0.8822992
0
Returns a new object of class 'Basic Events'.
BasicEvents createBasicEvents();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "BasicEvent createBasicEvent();", "Event createEvent();", "Event createEvent();", "public Event() {}", "public Event() {\r\n\r\n\t}", "public Event() {\n\t}", "public Event() {\n\n }", "protected ICEvent() {}", "public Event() {\n }", "public Event() {\n }", "public Event() {\n ...
[ "0.8447452", "0.77143276", "0.77143276", "0.7276747", "0.7108204", "0.70713484", "0.70312893", "0.7001037", "0.6999613", "0.6999613", "0.69252706", "0.6919132", "0.6918827", "0.6915967", "0.6894137", "0.68838537", "0.6847356", "0.66983426", "0.64988256", "0.649044", "0.644867...
0.8555064
0
Returns a new object of class 'Named Class'.
NamedClass createNamedClass();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "NamedType createNamedType();", "Class createClass();", "public RubyClass getClass(String name) {\n return objectClass.getClass(name);\n }", "IArenaClass getClass(final String name);", "public static Object newInstance(String classname) {\n return newInstance(classname, Object.class);\n ...
[ "0.6962392", "0.67998505", "0.66923624", "0.6373806", "0.6370431", "0.62447315", "0.6228372", "0.61898404", "0.618886", "0.6179265", "0.61450714", "0.61070514", "0.6024072", "0.598355", "0.59610605", "0.59469515", "0.5886459", "0.5873399", "0.5861155", "0.5858792", "0.5857052...
0.87123024
0
Returns a new object of class 'Line'.
Line createLine();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static Line CreateLine(String id) { return new MyLine(id); }", "public Line(){\n\t\t\n\t}", "public OMAbstractLine() {\n super();\n }", "private Line addLine() {\n\t\t// Create a new line\n\t\tLine line = new Line(doily.settings.getPenScale(), \n\t\t\t\tdoily.settings.getPenColor(), doily.se...
[ "0.8158508", "0.781448", "0.73601454", "0.72963464", "0.72626597", "0.708836", "0.7063009", "0.69685054", "0.6943999", "0.69188446", "0.6914091", "0.68779856", "0.68300927", "0.68152964", "0.66431314", "0.66307425", "0.65807724", "0.6533396", "0.648424", "0.64669526", "0.6457...
0.8141032
1
Returns a new object of class 'Described Class'.
DescribedClass createDescribedClass();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public abstract Class getDescriptedClass();", "private void __setClassDescription() {\n\t\tEOClassDescription cd = EOClassDescription.classDescriptionForClass(getClass());\n\t\tif (cd == null) {\n\t\t\tthrow new IllegalStateException(\"Unabled to find an EOClassDescription for objects of \" + getClass());\n\t\t}...
[ "0.6695572", "0.6342622", "0.6181141", "0.5585548", "0.5567402", "0.55673283", "0.554608", "0.55382675", "0.5464334", "0.54478705", "0.5430029", "0.5412771", "0.5363641", "0.5360403", "0.5331085", "0.5329111", "0.5300348", "0.5294711", "0.5293578", "0.5293578", "0.5293242", ...
0.88012457
0
Returns a new object of class 'Alloc Alternative'.
AllocAlternative createAllocAlternative();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public ItemReference alloc();", "public GAAlloc(VMCwMProblem instance) {\n super(instance, \"NSGAII\", VMCwMProblem.Encoding.INTEGER);\n AlgorithmFactory.getInstance().addProvider(new GAAllocAlgorithmProvider());\n }", "public ByteBufAllocator alloc()\r\n/* 66: */ {\r\n/* 67:101 */ ...
[ "0.6516782", "0.5862769", "0.5815818", "0.563745", "0.55324656", "0.54158175", "0.53199875", "0.52962154", "0.5230788", "0.5107332", "0.5094759", "0.5080221", "0.50606155", "0.5050438", "0.49884662", "0.4948853", "0.49384713", "0.4932531", "0.49229106", "0.49088034", "0.48901...
0.85366607
0
Returns a new object of class 'Hazard'.
Hazard createHazard();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Hurt createHurt();", "public static HazardAlert generateHazardAlert() {\n HazardAlert hazardAlert_thu = new HazardAlert(\n HazardAlert.HazardType.GENERAL, new Position(48.408880, 9.997507), 5, true\n );\n return hazardAlert_thu;\n }", "public Hero createHero() {\r\n\t\t//...
[ "0.6367922", "0.62217426", "0.597665", "0.5951903", "0.5865896", "0.5458783", "0.5441665", "0.54209846", "0.53532845", "0.5345353", "0.5326079", "0.5309678", "0.5258316", "0.5160007", "0.51393235", "0.5113438", "0.50805414", "0.5059495", "0.5010022", "0.5007378", "0.49961552"...
0.8535063
0
Returns the package supported by this factory.
HiphopsPackage getHiphopsPackage();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "PackageType getRequiredPackage();", "public PackageNode getPackage();", "java.lang.String getPackage();", "public String getPackageName();", "public String getPackageName() {\n return pkg;\n }", "String getPackageName();", "public DsByteString getPackage() {\n return m_strPackage;\n }", ...
[ "0.7031596", "0.6824025", "0.6818806", "0.6752645", "0.67181015", "0.6704875", "0.6698022", "0.6678774", "0.6635858", "0.6556546", "0.65183675", "0.6501405", "0.6496429", "0.6481852", "0.6376274", "0.63505894", "0.6338929", "0.63388515", "0.6327788", "0.6314242", "0.63126606"...
0.5638249
95
This is the default constructor (do not remove).
public PrtNotificationVORowImpl() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Constructor() {\r\n\t\t \r\n\t }", "public Constructor(){\n\t\t\n\t}", "@SuppressWarnings(\"unused\")\n public NoConstructor() {\n // Empty\n }", "private Instantiation(){}", "defaultConstructor(){}", "public PSRelation()\n {\n }", "public Orbiter() {\n }", "public Gen...
[ "0.8008779", "0.7769194", "0.73964155", "0.7316486", "0.7260056", "0.718806", "0.71752644", "0.7150133", "0.7121881", "0.7095582", "0.7064848", "0.7043535", "0.7021626", "0.6989982", "0.69864064", "0.6976774", "0.696405", "0.69608796", "0.69593084", "0.69549793", "0.69526047"...
0.0
-1
Gets PrtNotificationEO entity object.
public PrtNotificationEOImpl getPrtNotificationEO() { return (PrtNotificationEOImpl)getEntity(0); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n public EventNotification getEntity(Object id) throws EwpException {\n String sql = \"SELECT * From PFEventNotification where EventNotificationId= '\" + id.toString() + \"'\";\n\n return executeSqlAndGetEntity(sql);\n }", "public E getEntity() {\n return this.entity;\n }"...
[ "0.6760598", "0.60109055", "0.58945405", "0.5862432", "0.5707127", "0.56687564", "0.56333727", "0.56333727", "0.56333727", "0.5622179", "0.5581825", "0.55812997", "0.55236506", "0.5480919", "0.5480661", "0.54663175", "0.5457646", "0.54227483", "0.54133916", "0.5382865", "0.53...
0.88769555
0
Gets the attribute value for COUNTRY_CODE using the alias name CountryCode.
public String getCountryCode() { return (String) getAttributeInternal(COUNTRYCODE); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getCountryCode() {\n return (String)getAttributeInternal(COUNTRYCODE);\n }", "public String getCountryCode() {\n return (String)getAttributeInternal(COUNTRYCODE);\n }", "public String countryCode() {\n return countryCode;\n }", "public String getCountry() {\n ...
[ "0.68061346", "0.68061346", "0.66124314", "0.6588959", "0.6588959", "0.6588959", "0.65055245", "0.64578384", "0.64578384", "0.64236414", "0.63915616", "0.63915616", "0.63868904", "0.635705", "0.6349029", "0.63173115", "0.6312878", "0.6310549", "0.6310421", "0.629382", "0.6275...
0.6890311
0
Sets value as attribute value for COUNTRY_CODE using the alias name CountryCode.
public void setCountryCode(String value) { setAttributeInternal(COUNTRYCODE, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setCountryCode(String value) {\n setAttributeInternal(COUNTRYCODE, value);\n }", "public void setCountryCode(String value) {\n setAttributeInternal(COUNTRYCODE, value);\n }", "public void setCountryCode(int value) {\r\n\t\tthis.countryCode = value;\r\n\t}", "public void setCou...
[ "0.6840922", "0.6840922", "0.67127126", "0.6569208", "0.6569208", "0.6569208", "0.64704853", "0.6438764", "0.6381709", "0.6367978", "0.63319206", "0.61504644", "0.6135496", "0.60940766", "0.6092734", "0.60782003", "0.6073513", "0.60458165", "0.6009404", "0.59581447", "0.59576...
0.6896377
0
Gets the attribute value for NOTI_ID using the alias name NotiId.
public DBSequence getNotiId() { return (DBSequence)getAttributeInternal(NOTIID); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public StrColumn getIprId() {\n return delegate.getColumn(\"ipr_id\", DelegatingStrColumn::new);\n }", "public Number getDssNotifIdFk() {\r\n return (Number) getAttributeInternal(DSSNOTIFIDFK);\r\n }", "public String getId() {\n return (String)getAttributeInternal(ID);\n }", "pu...
[ "0.6426003", "0.63220847", "0.6165178", "0.6165178", "0.60815346", "0.6008917", "0.6005617", "0.5990701", "0.5911842", "0.59045404", "0.58894914", "0.58616066", "0.58495605", "0.58224726", "0.58062243", "0.5792568", "0.57769233", "0.5768844", "0.576727", "0.5745416", "0.56999...
0.6770985
0
Sets value as attribute value for NOTI_ID using the alias name NotiId.
public void setNotiId(DBSequence value) { setAttributeInternal(NOTIID, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setId(String i) {\n\t\tid = i;\n\t}", "protected void setID(int i){\r\n\t\tthis.ID = i;\r\n\t}", "void setID(int val)\n throws RemoteException;", "public void setId(int i) {\n\t\tthis.id = i;\n\t}", "public void setID(int i){\n\t\tid = i;\n\t}", "void setIdNumber(String idNumber);"...
[ "0.6524935", "0.623788", "0.60788697", "0.602924", "0.60133845", "0.6012886", "0.5990288", "0.59805", "0.59506595", "0.5913246", "0.5913246", "0.5910182", "0.5894797", "0.58929515", "0.58929515", "0.58929515", "0.5881728", "0.5879892", "0.5876799", "0.5873324", "0.58484024", ...
0.6982422
0
Gets the attribute value for RULE_ID using the alias name RuleId.
public String getRuleId() { return (String) getAttributeInternal(RULEID); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Integer getRuleId() {\n return (Integer) getAttributeInternal(RULEID);\n }", "public String getRuleId() {\n return this.RuleId;\n }", "public String getRuleId() {\n return ruleId;\n }", "public int getRuleId() {\n\t\treturn ruleId;\n\t}", "public Long getRuleID() {\n ...
[ "0.68738186", "0.6814874", "0.6804128", "0.6449395", "0.62348944", "0.6067444", "0.59935194", "0.59859025", "0.59748644", "0.5953958", "0.57587606", "0.57571095", "0.57177913", "0.57177913", "0.5715822", "0.56975466", "0.56975466", "0.56975466", "0.56975466", "0.5666815", "0....
0.7199938
0
Sets value as attribute value for RULE_ID using the alias name RuleId.
public void setRuleId(String value) { setAttributeInternal(RULEID, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setRuleId(Integer value) {\n setAttributeInternal(RULEID, value);\n }", "public void setId(String ruleId) {\r\n if (ruleId != null && StringUtils.isBlank(ruleId)) {\r\n throw new IllegalArgumentException(\"rule ID must be null or else non-blank\");\r\n }...
[ "0.74485594", "0.67594737", "0.6468565", "0.6325048", "0.6273721", "0.6061445", "0.58841085", "0.5809777", "0.5745162", "0.5665758", "0.56214434", "0.559417", "0.5584896", "0.5582913", "0.55282193", "0.5505601", "0.5503192", "0.5452351", "0.5452351", "0.54391265", "0.54343194...
0.7548965
0
Gets the attribute value for RULE_ISENABLED using the alias name RuleIsenabled.
public String getRuleIsenabled() { return (String) getAttributeInternal(RULEISENABLED); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setRuleIsenabled(String value) {\r\n setAttributeInternal(RULEISENABLED, value);\r\n }", "java.lang.String getEnabled();", "public String isEnabled() {\n return this.isEnabled;\n }", "public String getEnabled() {\r\n\t\treturn enabled;\r\n\t}", "final public int getEnabled()...
[ "0.6283501", "0.5806008", "0.5695564", "0.5601758", "0.55598444", "0.5546828", "0.5508859", "0.5508859", "0.5508859", "0.54508597", "0.53132546", "0.53132546", "0.53075165", "0.5288555", "0.5250509", "0.52456146", "0.523479", "0.51944244", "0.51814926", "0.517533", "0.5171706...
0.785845
0
Sets value as attribute value for RULE_ISENABLED using the alias name RuleIsenabled.
public void setRuleIsenabled(String value) { setAttributeInternal(RULEISENABLED, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getRuleIsenabled() {\r\n return (String) getAttributeInternal(RULEISENABLED);\r\n }", "public void setEnabled(String tmp) {\n enabled = DatabaseUtils.parseBoolean(tmp);\n }", "@PUT(\"pushrules/global/{kind}/{ruleId}/enabled\")\n Call<Void> updateEnableRuleStatus(@Path(\"kind\") S...
[ "0.6389252", "0.58796024", "0.57595456", "0.5733393", "0.5695714", "0.5429854", "0.540934", "0.5397626", "0.5375507", "0.53097177", "0.5276627", "0.5276627", "0.5276627", "0.5276627", "0.5252022", "0.52372354", "0.52372354", "0.52349424", "0.51717734", "0.51699376", "0.516659...
0.76365757
0
Gets the attribute value for SUB_ID using the alias name SubId.
public String getSubId() { return (String) getAttributeInternal(SUBID); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@JsonGetter(\"subaccount_id\")\r\n public int getSubaccountId ( ) { \r\n return this.subaccountId;\r\n }", "public void setSubId(String value) {\r\n setAttributeInternal(SUBID, value);\r\n }", "@AutoEscape\n\tpublic String getIdSubCanal();", "public String getSubKey() {\n return...
[ "0.59098893", "0.5803901", "0.5785994", "0.57696533", "0.5736428", "0.57076865", "0.569917", "0.55967957", "0.5594719", "0.5552517", "0.5528949", "0.5507832", "0.5488121", "0.53439844", "0.53352934", "0.5334209", "0.5331507", "0.5292226", "0.525963", "0.52432984", "0.5227463"...
0.74688876
0
Sets value as attribute value for SUB_ID using the alias name SubId.
public void setSubId(String value) { setAttributeInternal(SUBID, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setSuburItemId(long suburItemId);", "public void setIdSubCanal(String idSubCanal);", "@JsonSetter(\"subaccount_id\")\r\n public void setSubaccountId (int value) { \r\n this.subaccountId = value;\r\n }", "public String getSubId() {\r\n return (String) getAttributeInternal(SUBID...
[ "0.6650714", "0.6575419", "0.64755076", "0.6102321", "0.5803468", "0.5719356", "0.5655496", "0.56112677", "0.5596968", "0.55267155", "0.5505327", "0.54131895", "0.53959894", "0.53885037", "0.5366548", "0.5346215", "0.5320246", "0.5291875", "0.52805823", "0.52602214", "0.52212...
0.8010257
0
Gets the attribute value for USER_ID using the alias name UserId.
public String getUserId() { return (String) getAttributeInternal(USERID); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "java.lang.String getUserId();", "java.lang.String getUserId();", "java.lang.String getUserId();", "String getUserId();", "String getUserId();", "Long getUserId();", "Integer getUserId();", "public long getUserId();", "public long getUserId();", "public long getUserId();", "public long getUserId...
[ "0.68660355", "0.68660355", "0.68660355", "0.6681444", "0.6681444", "0.6665511", "0.66376907", "0.655865", "0.655865", "0.655865", "0.655865", "0.6524216", "0.6513797", "0.6513797", "0.64440155", "0.64110893", "0.6379834", "0.63734055", "0.63635004", "0.63611424", "0.6277382"...
0.71983784
0
Sets value as attribute value for USER_ID using the alias name UserId.
public void setUserId(String value) { setAttributeInternal(USERID, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setIdUser(int value) {\n this.idUser = value;\n }", "private void setUserId(long value) {\n \n userId_ = value;\n }", "public void setIdUser(String idUser) {\n\t\tthis.idUser = idUser;\n\t}", "private void setUserId(long value) {\n\n userId_ = value;\n }", "publ...
[ "0.77652353", "0.74452126", "0.7405048", "0.73941576", "0.73536086", "0.73258454", "0.7209512", "0.7194812", "0.71647584", "0.71414673", "0.7012013", "0.6969077", "0.68687844", "0.6822895", "0.68195355", "0.67878014", "0.6787759", "0.6776323", "0.6776323", "0.6776323", "0.677...
0.74624425
1
Gets the attribute value for PARTNER using the alias name Partner.
public String getPartner() { return (String) getAttributeInternal(PARTNER); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "AdPartner getAdPartnerByName(String partnerName);", "com.google.ads.googleads.v13.resources.AdvertisingPartnerLinkIdentifier getAdvertisingPartner();", "public String getPartner() {\n return partner;\n }", "public String getPartner() {\n return partner;\n }", "public String getPartnerNa...
[ "0.6141255", "0.5843563", "0.5706244", "0.5706244", "0.556056", "0.54883325", "0.540553", "0.53925645", "0.5337512", "0.5294698", "0.52823395", "0.52279437", "0.5207751", "0.5134872", "0.51018816", "0.5101838", "0.5100697", "0.49984527", "0.4930534", "0.4929214", "0.49208856"...
0.75086236
0
Sets value as attribute value for PARTNER using the alias name Partner.
public void setPartner(String value) { setAttributeInternal(PARTNER, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setPartner(String partner) {\n this.partner = partner;\n }", "public void setPartner(String partner) {\n this.partner = partner;\n }", "public String getPartner() {\r\n return (String) getAttributeInternal(PARTNER);\r\n }", "@Override\r\n\tpublic void addPartner(Stri...
[ "0.6357265", "0.6357265", "0.63533896", "0.5903299", "0.57214224", "0.57214224", "0.5682605", "0.558277", "0.55377704", "0.5503823", "0.5406915", "0.5379946", "0.53740096", "0.5297419", "0.52724737", "0.5265243", "0.525326", "0.5173152", "0.5130009", "0.5120036", "0.5099283",...
0.7882147
0
Gets the attribute value for ACCOUNT_ID using the alias name AccountId.
public String getAccountId() { return (String) getAttributeInternal(ACCOUNTID); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "java.lang.String getAccountId();", "java.lang.String getAccountId();", "java.lang.String getAccountId();", "public java.lang.String getAccount_Id() {\n return account_Id;\n }", "public String getAccountID() {\n return (tozAdAccountID);\n }", "Long getAccountId();", "public String ge...
[ "0.6680471", "0.6680471", "0.6680471", "0.6667077", "0.6644511", "0.6585147", "0.64953977", "0.64711654", "0.63763", "0.63529027", "0.63529027", "0.63529027", "0.63362265", "0.63362265", "0.63362265", "0.6334365", "0.63293976", "0.63293976", "0.6322225", "0.631181", "0.631037...
0.72842175
0
Sets value as attribute value for ACCOUNT_ID using the alias name AccountId.
public void setAccountId(String value) { setAttributeInternal(ACCOUNTID, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setAccountID(Long value) {\n this.accountID = value;\n }", "public void setAccountID(Long value) {\n this.accountID = value;\n }", "public void setAccountId(long value) {\n this.accountId = value;\n }", "public Builder setAccountID(long value) {\n validate(fields()[0], valu...
[ "0.69840306", "0.69840306", "0.6811708", "0.66571826", "0.6650331", "0.6646166", "0.64975363", "0.6468254", "0.6357463", "0.63408315", "0.63184863", "0.63184863", "0.63070714", "0.6235095", "0.61912566", "0.6155367", "0.61356074", "0.6130028", "0.60723543", "0.6025158", "0.60...
0.72554153
0
Gets the attribute value for CARDGROUP_MAIN using the alias name CardgroupMain.
public String getCardgroupMain() { return (String) getAttributeInternal(CARDGROUPMAIN); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setCardgroupMain(String value) {\r\n setAttributeInternal(CARDGROUPMAIN, value);\r\n }", "public String getMainGroup() {\n\t\treturn _mainGroup;\n\t}", "public String getCardgroupSub() {\r\n return (String) getAttributeInternal(CARDGROUPSUB);\r\n }", "public Integer getMainGro...
[ "0.64025", "0.6037589", "0.5822744", "0.5357946", "0.48883596", "0.48259974", "0.48186547", "0.47560754", "0.474999", "0.47295296", "0.47295296", "0.47098446", "0.46772605", "0.46662635", "0.46600762", "0.46533975", "0.46430436", "0.46313995", "0.46280333", "0.46280333", "0.4...
0.797142
0
Sets value as attribute value for CARDGROUP_MAIN using the alias name CardgroupMain.
public void setCardgroupMain(String value) { setAttributeInternal(CARDGROUPMAIN, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getCardgroupMain() {\r\n return (String) getAttributeInternal(CARDGROUPMAIN);\r\n }", "public void setMainGroupId(Integer mainGroupId) {\n this.mainGroupId = mainGroupId;\n }", "public void setCardgroupSub(String value) {\r\n setAttributeInternal(CARDGROUPSUB, value);\r...
[ "0.6395371", "0.5726152", "0.5497852", "0.5402541", "0.49518153", "0.49078336", "0.4883884", "0.47997183", "0.47812843", "0.47682378", "0.47551554", "0.47367764", "0.4647946", "0.46384364", "0.46313947", "0.46232584", "0.46156788", "0.46004674", "0.45985436", "0.45842233", "0...
0.8008362
0
Gets the attribute value for CARDGROUP_SUB using the alias name CardgroupSub.
public String getCardgroupSub() { return (String) getAttributeInternal(CARDGROUPSUB); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setCardgroupSub(String value) {\r\n setAttributeInternal(CARDGROUPSUB, value);\r\n }", "public String getSubId() {\r\n return (String) getAttributeInternal(SUBID);\r\n }", "public String getSubFundGroupCode() {\n return subFundGroupCode;\n }", "public String getCardg...
[ "0.59887713", "0.5798574", "0.57261866", "0.5250425", "0.5138908", "0.51113105", "0.50481206", "0.5038634", "0.49806604", "0.49605337", "0.49240845", "0.4909756", "0.48738214", "0.48684272", "0.48432335", "0.4821713", "0.47913784", "0.47560123", "0.4747534", "0.47442356", "0....
0.77570236
0
Sets value as attribute value for CARDGROUP_SUB using the alias name CardgroupSub.
public void setCardgroupSub(String value) { setAttributeInternal(CARDGROUPSUB, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getCardgroupSub() {\r\n return (String) getAttributeInternal(CARDGROUPSUB);\r\n }", "public void setSubId(String value) {\r\n setAttributeInternal(SUBID, value);\r\n }", "public void setSubFundGroupCode(String subFundGroupCode) {\n this.subFundGroupCode = subFundGroupCo...
[ "0.61967343", "0.6096998", "0.54859596", "0.54515624", "0.53903127", "0.53678364", "0.523932", "0.5183142", "0.51821434", "0.5137605", "0.50933105", "0.5001321", "0.48874763", "0.48292375", "0.48168704", "0.48056635", "0.48050013", "0.4786183", "0.47799307", "0.47712985", "0....
0.7945476
0
Gets the attribute value for CARDGROUP_SEQ using the alias name CardgroupSeq.
public String getCardgroupSeq() { return (String) getAttributeInternal(CARDGROUPSEQ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setCardgroupSeq(String value) {\r\n setAttributeInternal(CARDGROUPSEQ, value);\r\n }", "@Nullable\n public String getSequence() {\n return XmlUtils.getAttributeValue(this.mAdNode, \"sequence\");\n }", "public String getQrIdseq() {\n return (String) getAttributeInternal(QRI...
[ "0.6589081", "0.6268584", "0.5914938", "0.59045154", "0.5900941", "0.5806505", "0.56159425", "0.5585941", "0.5576219", "0.55439526", "0.55272704", "0.55256313", "0.5522691", "0.5522691", "0.5522691", "0.5474427", "0.5474427", "0.5465747", "0.54360354", "0.54360354", "0.543049...
0.7822442
0
Sets value as attribute value for CARDGROUP_SEQ using the alias name CardgroupSeq.
public void setCardgroupSeq(String value) { setAttributeInternal(CARDGROUPSEQ, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getCardgroupSeq() {\r\n return (String) getAttributeInternal(CARDGROUPSEQ);\r\n }", "public void setQcIdseq(String value) {\n setAttributeInternal(QCIDSEQ, value);\n }", "public Builder setSeq(int value) {\n\n seq_ = value;\n onChanged();\n return this;\n }...
[ "0.6584871", "0.6444986", "0.6332193", "0.6332193", "0.62951803", "0.6256088", "0.6183477", "0.6183477", "0.6183477", "0.6173462", "0.6107761", "0.6107761", "0.6092876", "0.608778", "0.608778", "0.608778", "0.608778", "0.59801304", "0.5969512", "0.59655344", "0.59587944", "...
0.83771694
0
Gets the attribute value for CARD_PK using the alias name CardPk.
public String getCardPk() { return (String) getAttributeInternal(CARDPK); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setCardPk(String value) {\r\n setAttributeInternal(CARDPK, value);\r\n }", "public Long getCardId() {\r\n return cardId;\r\n }", "public String getRankCodeFk() {\r\n return (String) getAttributeInternal(RANKCODEFK);\r\n }", "Card selectByPrimaryKey(String card);", ...
[ "0.5729442", "0.5698787", "0.55866414", "0.5457519", "0.543048", "0.53824043", "0.5328447", "0.5303991", "0.5265791", "0.5249149", "0.5244169", "0.52183354", "0.5195523", "0.5175298", "0.51583105", "0.51580715", "0.51580715", "0.51580715", "0.5126381", "0.51203203", "0.508127...
0.7650486
0
Sets value as attribute value for CARD_PK using the alias name CardPk.
public void setCardPk(String value) { setAttributeInternal(CARDPK, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getCardPk() {\r\n return (String) getAttributeInternal(CARDPK);\r\n }", "public void setPk(double pk)\n {\n this.pk = pk;\n }", "public void setIdCardNo(String idCardNo) {\n this.idCardNo = idCardNo;\n }", "public void setIdCard(String idCard) {\n\t\tthis.idCard...
[ "0.62430793", "0.6014809", "0.5975679", "0.5973923", "0.58650917", "0.5822144", "0.5757932", "0.57489145", "0.5623085", "0.54289365", "0.54269433", "0.53934526", "0.53934526", "0.53478783", "0.5326014", "0.5308303", "0.5303493", "0.521129", "0.5208077", "0.5208077", "0.520807...
0.8002083
0
Gets the attribute value for EMBOSS_CARD_NUM using the alias name EmbossCardNum.
public String getEmbossCardNum() { return (String) getAttributeInternal(EMBOSSCARDNUM); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setEmbossCardNum(String value) {\r\n setAttributeInternal(EMBOSSCARDNUM, value);\r\n }", "public String getcardnumfrom() {\n return (String) getAttributeInternal(CARDNUMFROM);\n }", "public String getCardNo() {\n\t\treturn cardNo;\n\t}", "public String getcardnumto() {\n ...
[ "0.664788", "0.6365468", "0.6299342", "0.62924623", "0.6253938", "0.6253938", "0.62492967", "0.62069935", "0.6142997", "0.61341995", "0.6117958", "0.61154944", "0.60828406", "0.6082145", "0.6033391", "0.6025925", "0.60162777", "0.58650905", "0.57970524", "0.5780568", "0.57673...
0.8173478
0
Sets value as attribute value for EMBOSS_CARD_NUM using the alias name EmbossCardNum.
public void setEmbossCardNum(String value) { setAttributeInternal(EMBOSSCARDNUM, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getEmbossCardNum() {\r\n return (String) getAttributeInternal(EMBOSSCARDNUM);\r\n }", "public void setCardNo(int cardNumber);", "public void setcardnumfrom(String value) {\n setAttributeInternal(CARDNUMFROM, value);\n }", "public void setcardnumto(String value) {\n se...
[ "0.70079756", "0.6588867", "0.6120458", "0.60596967", "0.6009429", "0.5958679", "0.5958526", "0.5898605", "0.561301", "0.54992497", "0.5455214", "0.5455214", "0.544024", "0.5426734", "0.53824407", "0.5344658", "0.5319575", "0.5307346", "0.53057957", "0.5280783", "0.527612", ...
0.85039204
0
Gets the attribute value for TRANSACTION_TIME using the alias name TransactionTime.
public Timestamp getTransactionTime() { return (Timestamp) getAttributeInternal(TRANSACTIONTIME); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@ApiModelProperty(example = \"1518811817\", value = \"The transaction time in seconds since epoch.\")\n public Long getTransactionTime() {\n return transactionTime;\n }", "DateTime getTransactionTime() {\n assertInTransaction();\n return TRANSACTION_INFO.get().transactionTime;\n }", "com.google.pro...
[ "0.6676606", "0.65556866", "0.62803924", "0.5945823", "0.5742923", "0.5710609", "0.56936115", "0.5508144", "0.54523474", "0.53877974", "0.53843355", "0.5379214", "0.53545743", "0.5335315", "0.5303846", "0.5299888", "0.52898794", "0.528908", "0.52661383", "0.5253629", "0.52075...
0.7401489
0
Sets value as attribute value for TRANSACTION_TIME using the alias name TransactionTime.
public void setTransactionTime(Timestamp value) { setAttributeInternal(TRANSACTIONTIME, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@ApiModelProperty(example = \"1518811817\", value = \"The transaction time in seconds since epoch.\")\n public Long getTransactionTime() {\n return transactionTime;\n }", "public Timestamp getTransactionTime() {\r\n return (Timestamp) getAttributeInternal(TRANSACTIONTIME);\r\n }", "public void s...
[ "0.6202494", "0.6087948", "0.607319", "0.5779158", "0.5774037", "0.57061476", "0.56744707", "0.566905", "0.566905", "0.566905", "0.55965626", "0.5582494", "0.5582494", "0.5582494", "0.5582494", "0.55711865", "0.55381", "0.55278426", "0.55037504", "0.5440778", "0.54097414", ...
0.74437875
0
Gets the attribute value for NOTI_CREATED using the alias name NotiCreated.
public Date getNotiCreated() { return (Date) getAttributeInternal(NOTICREATED); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Integer getCreated() {\r\n return created;\r\n }", "public Integer getnCreated() {\r\n return nCreated;\r\n }", "public String getCreatedAt(int i){\n return created[i];\n }", "public Integer getCreated() {\n return created;\n }", "public String getCreated() {\n r...
[ "0.60427785", "0.60376537", "0.6014468", "0.5990103", "0.59526855", "0.59526855", "0.5898993", "0.5785079", "0.5765551", "0.57564896", "0.5753366", "0.5748377", "0.5730274", "0.56940657", "0.5687703", "0.56786233", "0.56786233", "0.56786233", "0.566884", "0.5668318", "0.56480...
0.73149216
0
Sets value as attribute value for NOTI_CREATED using the alias name NotiCreated.
public void setNotiCreated(Date value) { setAttributeInternal(NOTICREATED, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Date getNotiCreated() {\r\n return (Date) getAttributeInternal(NOTICREATED);\r\n }", "public void setnCreated(Integer nCreated) {\r\n this.nCreated = nCreated;\r\n }", "public void setCreated(Integer created) {\r\n this.created = created;\r\n }", "public void setCreated(Integer...
[ "0.6504219", "0.63054675", "0.62085915", "0.6158111", "0.607816", "0.5757725", "0.5591982", "0.54318416", "0.54237366", "0.541131", "0.54044497", "0.54044497", "0.5394114", "0.5385936", "0.53837234", "0.5365026", "0.5362326", "0.5358759", "0.5347945", "0.5335399", "0.5335399"...
0.7398648
0
Gets the attribute value for NOTI_CATEGORY using the alias name NotiCategory.
public String getNotiCategory() { return (String) getAttributeInternal(NOTICATEGORY); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getIntAttributeCategory() {\n return (String) getAttributeInternal(INTATTRIBUTECATEGORY);\n }", "public String getAttributeCategory()\n {\n return (String)getAttributeInternal(ATTRIBUTECATEGORY);\n }", "public String getCategory()\n {\n return (String) getProperty(Propert...
[ "0.7081802", "0.68009555", "0.67098945", "0.6385538", "0.6343769", "0.6337481", "0.6315917", "0.6265004", "0.6250027", "0.6245184", "0.6215499", "0.62133116", "0.62113607", "0.6207999", "0.6175528", "0.61734575", "0.61631656", "0.6162927", "0.6153719", "0.6153719", "0.6146435...
0.78603524
0
Sets value as attribute value for NOTI_CATEGORY using the alias name NotiCategory.
public void setNotiCategory(String value) { setAttributeInternal(NOTICATEGORY, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setAttributeCategory(String value)\n {\n setAttributeInternal(ATTRIBUTECATEGORY, value);\n }", "public String getNotiCategory() {\r\n return (String) getAttributeInternal(NOTICATEGORY);\r\n }", "CloudCategory(String value) {\n this.value = value;\n }", "public voi...
[ "0.66334933", "0.6488512", "0.6202406", "0.61546487", "0.6134521", "0.6077516", "0.59923345", "0.59203273", "0.58602345", "0.5811067", "0.57184076", "0.57126826", "0.56960154", "0.5682298", "0.56813544", "0.5639721", "0.5635429", "0.5631925", "0.5629941", "0.5610268", "0.5596...
0.77264774
0
Gets the attribute value for NOTI_SUBCATEGORY using the alias name NotiSubcategory.
public String getNotiSubcategory() { return (String) getAttributeInternal(NOTISUBCATEGORY); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setNotiSubcategory(String value) {\r\n setAttributeInternal(NOTISUBCATEGORY, value);\r\n }", "public String getCodigoImovelSubCategoria() {\r\n return codigoImovelSubCategoria;\r\n }", "public String getSubId() {\r\n return (String) getAttributeInternal(SUBID);\r\n }",...
[ "0.6571018", "0.65120465", "0.64006305", "0.61158985", "0.6111312", "0.60321826", "0.5851406", "0.5807419", "0.57942253", "0.5688047", "0.56165916", "0.55713445", "0.55649096", "0.5561274", "0.550736", "0.5496654", "0.5486571", "0.53935254", "0.53752506", "0.5369631", "0.5369...
0.8029055
0
Sets value as attribute value for NOTI_SUBCATEGORY using the alias name NotiSubcategory.
public void setNotiSubcategory(String value) { setAttributeInternal(NOTISUBCATEGORY, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getNotiSubcategory() {\r\n return (String) getAttributeInternal(NOTISUBCATEGORY);\r\n }", "public void setCodigoImovelSubCategoria(String codigoImovelSubCategoria) {\r\n this.codigoImovelSubCategoria = codigoImovelSubCategoria;\r\n }", "public void setSubId(String value) {\r\n...
[ "0.6651055", "0.64438033", "0.61892575", "0.6007986", "0.5951526", "0.5907888", "0.5711216", "0.5583639", "0.55502", "0.5501119", "0.54898614", "0.5487542", "0.54617375", "0.539309", "0.53702575", "0.5345292", "0.5342474", "0.53230906", "0.53122073", "0.53061366", "0.5271961"...
0.81749535
0
Gets the attribute value for SHOW_FLAG using the alias name ShowFlag.
public String getShowFlag() { return (String) getAttributeInternal(SHOWFLAG); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Byte getShowFlag() {\n return showFlag;\n }", "public String getActiveflag() {\n return (String)getAttributeInternal(ACTIVEFLAG);\n }", "public String getActiveFlag() {\n return (String) getAttributeInternal(ACTIVEFLAG);\n }", "public String getIvaMFlag() {\n retur...
[ "0.6929562", "0.60966337", "0.606965", "0.59719986", "0.595984", "0.5897121", "0.5834373", "0.58208674", "0.5814719", "0.5807996", "0.5772232", "0.57357556", "0.57279474", "0.5717472", "0.55689317", "0.5567131", "0.5551574", "0.5479158", "0.5469434", "0.53994215", "0.5397517"...
0.7751045
0
Sets value as attribute value for SHOW_FLAG using the alias name ShowFlag.
public void setShowFlag(String value) { setAttributeInternal(SHOWFLAG, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getShowFlag() {\r\n return (String) getAttributeInternal(SHOWFLAG);\r\n }", "public Byte getShowFlag() {\n return showFlag;\n }", "public void setFlags(short flag) {\n\tflags = flag;\n }", "public void giveFlag(Flag f)\r\n\t{\r\n\t\thasFlag = true;\r\n\t\tflag = f;\r\n\t}...
[ "0.64370203", "0.6249073", "0.5954332", "0.5694", "0.56733316", "0.56604564", "0.5658234", "0.56399924", "0.56399924", "0.5600796", "0.559076", "0.55905783", "0.5590566", "0.5582832", "0.55821913", "0.5544433", "0.554284", "0.55413926", "0.5537489", "0.5501965", "0.5499807", ...
0.7679977
0
Gets the attribute value for NOTI_DESCRIPTION using the alias name NotiDescription.
public String getNotiDescription() { return (String) getAttributeInternal(NOTIDESCRIPTION); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getDescription() {\n return (String)getAttributeInternal(DESCRIPTION);\n }", "public String getDescription() {\n return (String)getAttributeInternal(DESCRIPTION);\n }", "public String getDescription() {\n return (String) getAttributeInternal(DESCRIPTION);\n }", "pu...
[ "0.703179", "0.703179", "0.6961027", "0.6924582", "0.6904573", "0.6752797", "0.6677206", "0.65666896", "0.64677554", "0.646395", "0.646395", "0.646395", "0.646395", "0.6429436", "0.63703763", "0.6361224", "0.63388014", "0.6322136", "0.63065416", "0.63065416", "0.63012385", ...
0.7283681
0
Sets value as attribute value for NOTI_DESCRIPTION using the alias name NotiDescription.
public void setNotiDescription(String value) { setAttributeInternal(NOTIDESCRIPTION, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setDescription(String value) {\r\n this.description = value;\r\n }", "public void setDescription(String value) {\n this.description = value;\n }", "public void xsetDescription(org.apache.xmlbeans.XmlString description)\n {\n synchronized (monitor())\n ...
[ "0.6982348", "0.6937457", "0.6883957", "0.6881161", "0.68685", "0.68685", "0.68685", "0.6801857", "0.6796919", "0.67779267", "0.6764155", "0.67607313", "0.67607313", "0.670108", "0.6686286", "0.6673689", "0.66443586", "0.6614134", "0.660745", "0.6559842", "0.65283835", "0.6...
0.7684665
0
Gets the attribute value for MODIFIED_BY using the alias name ModifiedBy.
public String getModifiedBy() { return (String) getAttributeInternal(MODIFIEDBY); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String getModifiedby()\n {\n return (String)getAttributeInternal(MODIFIEDBY);\n }", "public String getModifiedBy() {\n return (String) getAttributeInternal(MODIFIEDBY);\n }", "public User getModifiedBy()\n\t{\n\t\treturn (User) this.getKeyValue(\"Modified_By\");\n\n\t}", "public java.la...
[ "0.77449435", "0.77356774", "0.75391036", "0.75067866", "0.74779844", "0.74779844", "0.7469129", "0.7313301", "0.7312411", "0.7312411", "0.7290398", "0.7284362", "0.7284362", "0.7284362", "0.7284362", "0.7249097", "0.7201994", "0.7094295", "0.7058472", "0.6946035", "0.6945755...
0.77687114
0
Sets value as attribute value for MODIFIED_BY using the alias name ModifiedBy.
public void setModifiedBy(String value) { setAttributeInternal(MODIFIEDBY, value); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setModifiedBy(String value) {\n setAttributeInternal(MODIFIEDBY, value);\n }", "public void setModifiedBy(String v) \n {\n \n if (!ObjectUtils.equals(this.modifiedBy, v))\n {\n this.modifiedBy = v;\n setModified(true);\n }\n ...
[ "0.8141774", "0.7949431", "0.7937911", "0.7911413", "0.78764623", "0.78408945", "0.7739776", "0.7739776", "0.77252275", "0.7560289", "0.7499019", "0.7491069", "0.7491069", "0.7491069", "0.7491069", "0.7483421", "0.74156225", "0.74156225", "0.7414683", "0.73929733", "0.7392973...
0.8154912
0