Перейти к содержанию

GoGLiKK

Заблокирован
  • Публикаций

    307
  • Зарегистрирован

  • Посещение

  • Победитель дней

    2
  • Отзывы

    0%

Весь контент GoGLiKK

  1. помогите пожалуйста ,хочу настроить телепорт до уровня 40 чтоб было бесплатно вот уже встроены код L2TeleporterInstance /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * * http://www.gnu.org/copyleft/gpl.html */ package net.sf.l2j.gameserver.model.actor.instance; import java.util.StringTokenizer; import net.sf.l2j.Config; import net.sf.l2j.gameserver.datatables.TeleportLocationTable; import net.sf.l2j.gameserver.instancemanager.CastleManager; import net.sf.l2j.gameserver.instancemanager.SiegeManager; import net.sf.l2j.gameserver.instancemanager.TownManager; import net.sf.l2j.gameserver.model.L2TeleportLocation; import net.sf.l2j.gameserver.serverpackets.ActionFailed; import net.sf.l2j.gameserver.serverpackets.NpcHtmlMessage; import net.sf.l2j.gameserver.serverpackets.SystemMessage; import net.sf.l2j.gameserver.templates.L2NpcTemplate; /** * @author NightMarez * @version $Revision: 1.3.2.2.2.5 $ $Date: 2005/03/27 15:29:32 $ * */ public final class L2TeleporterInstance extends L2FolkInstance { //private static Logger _log = Logger.getLogger(L2TeleporterInstance.class.getName()); private static int Cond_All_False = 0; private static int Cond_Busy_Because_Of_Siege = 1; private static int Cond_Owner = 2; private static int Cond_Regular = 3; /** * @param template */ public L2TeleporterInstance(int objectId, L2NpcTemplate template) { super(objectId, template); } public void onBypassFeedback(L2PcInstance player, String command) { player.sendPacket(new ActionFailed()); int condition = validateCondition(player); StringTokenizer st = new StringTokenizer(command, " "); String actualCommand = st.nextToken(); // Get actual command if (actualCommand.equalsIgnoreCase("goto")) { if (st.countTokens() <= 0) { return; } int whereTo = Integer.parseInt(st.nextToken()); if (condition == Cond_Regular) { doTeleport(player, whereTo); return; } else if (condition == Cond_Owner) { int minPrivilegeLevel = 0; // NOTE: Replace 0 with highest level when privilege level is implemented if (st.countTokens() >= 1) { minPrivilegeLevel = Integer.parseInt(st.nextToken()); } if (10 >= minPrivilegeLevel) // NOTE: Replace 10 with privilege level of player doTeleport(player, whereTo); else player.sendMessage("You do not have the sufficient access level to teleport there."); return; } } super.onBypassFeedback(player, command); } public String getHtmlPath(int npcId, int val) { String pom = ""; if (val == 0) { pom = "" + npcId; } else { pom = npcId + "-" + val; } return "data/html/teleporter/" + pom + ".htm"; } public void showChatWindow(L2PcInstance player) { String filename = "data/html/teleporter/castleteleporter-no.htm"; int condition = validateCondition(player); if (condition == Cond_Regular) { super.showChatWindow(player); return; } else if (condition > Cond_All_False) { if (condition == Cond_Busy_Because_Of_Siege) filename = "data/html/teleporter/castleteleporter-busy.htm"; // Busy because of siege else if (condition == Cond_Owner) // Clan owns castle filename = getHtmlPath(getNpcId(), 0); // Owner message window } NpcHtmlMessage html = new NpcHtmlMessage(getObjectId()); html.setFile(filename); html.replace("%objectId%", String.valueOf(getObjectId())); html.replace("%npcname%", getName()); player.sendPacket(html); } private void doTeleport(L2PcInstance player, int val) { L2TeleportLocation list = TeleportLocationTable.getInstance().getTemplate(val); if (list != null) { // you cannot teleport to village that is in siege if (!Config.ALLOW_SIEGE_TELEPORT && SiegeManager.getInstance().getSiege(list.getLocX(), list.getLocY(), list.getLocZ()) != null) { player.sendPacket(new SystemMessage(707)); return; } else if (!Config.ALLOW_SIEGE_TELEPORT && TownManager.getInstance().townHasCastleInSiege(list.getLocX(), list.getLocY()) && getIsInCastleTown()) { player.sendPacket(new SystemMessage(707)); return; } else if (player.getKarma() > 0 && !Config.ALT_GAME_KARMA_PLAYER_CAN_USE_GK) //karma { SystemMessage sm = new SystemMessage(614); sm.addString("Go away, you're not welcome here."); player.sendPacket(sm); return; } else if (list.getIsForNoble() && !player.isNoble()) { String filename = "data/html/teleporter/nobleteleporter-no.htm"; NpcHtmlMessage html = new NpcHtmlMessage(getObjectId()); html.setFile(filename); html.replace("%objectId%", String.valueOf(getObjectId())); html.replace("%npcname%", getName()); player.sendPacket(html); return; } else if (player.isAlikeDead()) { return; } else if (!list.getIsForNoble() && (Config.ALT_GAME_FREE_TELEPORT || player.reduceAdena("Teleport", list.getPrice(), this, true) && player.getLevel() > 39)) { if (Config.DEBUG) _log.fine("Teleporting player " + player.getName() + " to new location: " + list.getLocX() + ":" + list.getLocY() + ":" + list.getLocZ()); player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ(), true); } else if (!list.getIsForNoble() && player.getLevel() < 40) { if (Config.DEBUG) _log.fine("Teleporting player " + player.getName() + " to new location: " + list.getLocX() + ":" + list.getLocY() + ":" + list.getLocZ()); player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ(), true); } } else if(list.getIsForNoble() && (Config.ALT_GAME_FREE_TELEPORT || player.destroyItemByItemId("Noble Teleport", 6651, list.getPrice(), this, true))) { if (Config.DEBUG) _log.fine("Teleporting player " + player.getName() + " to new location: " + list.getLocX() + ":" + list.getLocY() + ":" + list.getLocZ()); player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ(), true); } } else { _log.warning("No teleport destination with id:" + val); } player.sendPacket(new ActionFailed()); } private int validateCondition(L2PcInstance player) { if (CastleManager.getInstance().getCastleIndex(this) < 0) // Teleporter isn't on castle ground return Cond_Regular; // Regular access else if (getCastle() != null && getCastle().getSiege().getIsInProgress()) // Teleporter is on castle ground and siege is in progress return Cond_Busy_Because_Of_Siege; // Busy because of siege else if (player.getClan() != null) // Teleporter is on castle ground and player is in a clan { if (getCastle().getOwnerId() == player.getClanId()) // Clan owns castle return Cond_Owner; // Owner } return Cond_All_False; } } сам код тут - else if (!list.getIsForNoble() && (Config.ALT_GAME_FREE_TELEPORT || player.reduceAdena("Teleport", list.getPrice(), this, true))) + else if (!list.getIsForNoble() && (Config.ALT_GAME_FREE_TELEPORT || player.reduceAdena("Teleport", list.getPrice(), this, true) && player.getLevel() > 39)) { if (Config.DEBUG) _log.fine("Teleporting player " + player.getName() + " to new location: " + list.getLocX() + ":" + list.getLocY() + ":" + list.getLocZ()); player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ(), true); } + else if (!list.getIsForNoble() && player.getLevel() < 40) + { + if (Config.DEBUG) + _log.fine("Teleporting player " + player.getName() + " to new location: " + + list.getLocX() + ":" + list.getLocY() + ":" + list.getLocZ()); + player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ(), true); + } но когда пытаюсь компилировать выдает такие ошибки [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:195: error: illegal start of type [javac] else [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:195: error: ';' expected [javac] else [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:197: error: <identifier> expected [javac] _log.warning("No teleport destination with id:" + val); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:197: error: illegal start of type [javac] _log.warning("No teleport destination with id:" + val); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:197: error: ')' expected [javac] _log.warning("No teleport destination with id:" + val); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:197: error: ';' expected [javac] _log.warning("No teleport destination with id:" + val); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:197: error: illegal start of type [javac] _log.warning("No teleport destination with id:" + val); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:197: error: <identifier> expected [javac] _log.warning("No teleport destination with id:" + val); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:197: error: ';' expected [javac] _log.warning("No teleport destination with id:" + val); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:199: error: <identifier> expected [javac] player.sendPacket(new ActionFailed()); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:199: error: illegal start of type [javac] player.sendPacket(new ActionFailed()); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:199: error: ')' expected [javac] player.sendPacket(new ActionFailed()); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:199: error: ';' expected [javac] player.sendPacket(new ActionFailed()); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:199: error: illegal start of type [javac] player.sendPacket(new ActionFailed()); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:199: error: <identifier> expected [javac] player.sendPacket(new ActionFailed()); [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:202: error: class, interface, or enum expected [javac] private int validateCondition(L2PcInstance player) [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:206: error: class, interface, or enum expected [javac] else if (getCastle() != null && getCastle().getSiege().getIsInProgress()) // Teleporter is on castle ground and siege is in progress [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:208: error: class, interface, or enum expected [javac] else if (player.getClan() != null) // Teleporter is on castle ground and player is in a clan [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:212: error: class, interface, or enum expected [javac] } [javac] ^ [javac] C:\Users\Gia\Desktop\GoGLiKK\source\L2jlisvus\Lisvus_GameServer\java\net\sf\l2j\gameserver\model\actor\instance\L2TeleporterInstance.java:215: error: class, interface, or enum expected [javac] } [javac] ^ [javac] 20 errors [javac] 5 warnings BUILD FAILED зарание спасибо всем
  2. GoGLiKK

    Swf Файлы, Помогите.

    рекомендую Trillix вот ссылка
  3. Нужен инвестор на 20 000-30 000 рублей. сервер классика , Средства пойдут на хостинг сайта, защиту и остальное на рекламу. У нас есть полностью готовая сборка к старту + source. Переработаны все скилы, гео дата, баланс, квесты и еще много других мелочей. готовый сайт в PSD формате . пишите в личку
  4. использовал этот я в прошлом, в шаре нету . протестируй и отпиши ) ссылка и если pathnode нужен еще ссылка
  5. GoGLiKK

    Какой Двиг?

    извиняюсь это не ghtweb
  6. GoGLiKK

    Какой Двиг?

    похоже на ghtweb
  7. у меня в AuthLogin.java // Exploit Prevention if (LoginServerThread.getInstance().getAccountInGameServer(_loginName)) { _log.warning("Double login attempt by account " + _loginName); getConnection().close(); return; }
  8. GoGLiKK

    Реализовать

    без исходников никак
  9. GoGLiKK

    Geodata C4

    ищу геодату для сервера с4 , помогите если можете скажите какая из платных лучшая и из шары тоже
  10. требуется специалист ява заплачу от 500 рублей работа не сложная =)) пишите в личку или в skype : gio_gogla
  11. срочно Куплю Защиту C4 для сервера ц4 . на сервере запущен wallker
  12. GoGLiKK

    Куплю Защиту C4

    mivcer lameguardis an smartguard is admins da gamiketeben interlude da c4 titqmis erti da igivea )) mara iqneb aq vinmem gamichitos ra cota iafad pts ic maqvs da javac prosta java mirchevnia impontshi ro source maqvs da yvelafers vaketeb )) PTS dacva 300 $ girs zborka 50$ + extendedi ro daitrio sakaifo +50$
  13. GoGLiKK

    Куплю Защиту C4

    срочно нужна защита для сервера ц4 . срочно нужна защита для сервера ц4 . на сервере запущен wallker
  14. GoGLiKK

    Psd В Stressweb Или Ghtweb

    нужен человек который сделает из PSD файла дизайн в stress web или в ghtweb.
  15. Дайте мне CatsGuard source Если вы можете
  16. посоветуйте, какую защиту брать из шары на время?какая из них лучшья ? для Interlude или C4
  17. GoGLiKK

    Сборка Chronicle 4

    http://l2jlisvus.great-forum.com/ Java c4 =)) norm + svn
  18. # # A fatal error has been detected by the Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6eed6876, pid=2472, tid=2952 # # JRE version: Java SE Runtime Environment (8.0_05-b13) (build 1.8.0_05-b13) # Java VM: Java HotSpot Client VM (25.5-b02 mixed mode windows-x86 ) # Problematic frame: # C [libapr-1.dll+0x16876] # # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: # http://bugreport.sun.com/bugreport/crash.jsp # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # --------------- T H R E A D --------------- Current thread (0x1e1f0000): JavaThread "ModalContext" [_thread_in_native, id=2952, stack(0x235e0000,0x236e0000)] siginfo: ExceptionCode=0xc0000005, reading address 0x00000004 Registers: EAX=0x00000000, EBX=0x1fc3bc28, ECX=0x236ded58, EDX=0x00000000 ESP=0x236ded48, EBP=0x236ded48, ESI=0x1e1f0130, EDI=0x1e1f0130 EIP=0x6eed6876, EFLAGS=0x00010212 Top of Stack: (sp=0x236ded48) 0x236ded48: 236df5fc 23be418a 236ded58 00000000 0x236ded58: 00000000 23be4d65 23be43d7 1e1f0130 0x236ded68: 1e1f0130 236dedc0 236deda0 23bf9088 0x236ded78: ffffffff 23be3e0e 1e1f0130 1e1f0000 0x236ded88: 1fc3bc28 236df5fc 1fc3bc28 046e8d28 0x236ded98: 236df060 01f5145f 236df7bc 23bf9068 0x236deda8: ffffffff 23bf86d3 1e1f0130 23c025e0 0x236dedb8: 23c025e8 236df60c 23bfa3cc 0c1c2e68 Instructions: (pc=0x6eed6876) 0x6eed6856: 6e ff d6 85 c0 75 06 5f 5e 5d c2 0c 00 ff d6 5f 0x6eed6866: 05 80 fc 0a 00 5e 5d c2 0c 00 55 8b ec 8b 45 0c 0x6eed6876: 8b 48 04 51 ff 15 48 91 ed 6e 8b 55 08 85 c0 89 0x6eed6886: 02 74 06 33 c0 5d c2 08 00 56 8b 35 14 92 ed 6e Register to memory mapping: EAX=0x00000000 is an unknown value EBX=0x1fc3bc28 is an unknown value ECX=0x236ded58 is pointing into the stack for thread: 0x1e1f0000 EDX=0x00000000 is an unknown value ESP=0x236ded48 is pointing into the stack for thread: 0x1e1f0000 EBP=0x236ded48 is pointing into the stack for thread: 0x1e1f0000 ESI=0x1e1f0130 is an unknown value EDI=0x1e1f0130 is an unknown value Stack: [0x235e0000,0x236e0000], sp=0x236ded48, free space=1019k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C [libapr-1.dll+0x16876] C [libsvnjavahl-1.dll+0x418a] j org.tigris.subversion.javahl.Version.isAtLeast(III)Z+1 j org.tigris.subversion.javahl.NativeResources.init()V+19 j org.tigris.subversion.javahl.NativeResources.loadNativeLibrary()V+57 j org.tigris.subversion.javahl.SVNClient.<clinit>()V+0 v ~StubRoutines::call_stub V [jvm.dll+0x142285] V [jvm.dll+0x2070be] V [jvm.dll+0x14231e] V [jvm.dll+0xb0f44] V [jvm.dll+0xb2b21] V [jvm.dll+0xb3548] V [jvm.dll+0x75681] j org.tigris.subversion.svnclientadapter.javahl.JhlClientAdapterFactory.isAvailable()Z+331 j org.tigris.subversion.clientadapter.javahl.Activator.isAvailable()Z+0 j org.tigris.subversion.clientadapter.Activator.getClientAdapter(Ljava/lang/String;)Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;+46 j org.tigris.subversion.subclipse.core.SVNClientManager.getAdapter(Ljava/lang/String;)Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;+41 j org.tigris.subversion.subclipse.core.SVNClientManager.getSVNClient()Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;+5 j org.tigris.subversion.subclipse.core.SVNProviderPlugin.getSVNClient()Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;+4 j org.tigris.subversion.subclipse.core.repo.SVNRepositoryLocation.getSVNClient()Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;+3 j org.tigris.subversion.subclipse.core.repo.SVNRepositoryLocation.validateConnection(Lorg/eclipse/core/runtime/IProgressMonitor;)V+1 j org.tigris.subversion.subclipse.ui.wizards.NewLocationWizard$1.run(Lorg/eclipse/core/runtime/IProgressMonitor;)V+7 j org.eclipse.jface.operation.ModalContext$ModalContextThread.run()V+15 v ~StubRoutines::call_stub V [jvm.dll+0x142285] V [jvm.dll+0x2070be] V [jvm.dll+0x14231e] V [jvm.dll+0x1424a6] V [jvm.dll+0x142517] V [jvm.dll+0xede0f] V [jvm.dll+0x1645fc] V [jvm.dll+0x164e8a] V [jvm.dll+0x1a9186] C [MSVCR100.dll+0x5c556] C [MSVCR100.dll+0x5c600] C [kernel32.dll+0x4ee1c] C [ntdll.dll+0x637eb] C [ntdll.dll+0x637be] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.tigris.subversion.javahl.Version.getMajor()I+0 j org.tigris.subversion.javahl.Version.isAtLeast(III)Z+1 j org.tigris.subversion.javahl.NativeResources.init()V+19 j org.tigris.subversion.javahl.NativeResources.loadNativeLibrary()V+57 j org.tigris.subversion.javahl.SVNClient.<clinit>()V+0 v ~StubRoutines::call_stub j org.tigris.subversion.svnclientadapter.javahl.JhlClientAdapterFactory.isAvailable()Z+331 j org.tigris.subversion.clientadapter.javahl.Activator.isAvailable()Z+0 j org.tigris.subversion.clientadapter.Activator.getClientAdapter(Ljava/lang/String;)Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;+46 j org.tigris.subversion.subclipse.core.SVNClientManager.getAdapter(Ljava/lang/String;)Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;+41 j org.tigris.subversion.subclipse.core.SVNClientManager.getSVNClient()Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;+5 j org.tigris.subversion.subclipse.core.SVNProviderPlugin.getSVNClient()Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;+4 j org.tigris.subversion.subclipse.core.repo.SVNRepositoryLocation.getSVNClient()Lorg/tigris/subversion/svnclientadapter/ISVNClientAdapter;+3 j org.tigris.subversion.subclipse.core.repo.SVNRepositoryLocation.validateConnection(Lorg/eclipse/core/runtime/IProgressMonitor;)V+1 j org.tigris.subversion.subclipse.ui.wizards.NewLocationWizard$1.run(Lorg/eclipse/core/runtime/IProgressMonitor;)V+7 j org.eclipse.jface.operation.ModalContext$ModalContextThread.run()V+15 v ~StubRoutines::call_stub --------------- P R O C E S S --------------- Java Threads: ( => current thread ) =>0x1e1f0000 JavaThread "ModalContext" [_thread_in_native, id=2952, stack(0x235e0000,0x236e0000)] 0x1e1ef800 JavaThread "Worker-4" [_thread_blocked, id=3028, stack(0x22c10000,0x22d10000)] 0x1e1ef400 JavaThread "Worker-3" [_thread_blocked, id=2576, stack(0x22b10000,0x22c10000)] 0x1e1eec00 JavaThread "Worker-2" [_thread_blocked, id=1984, stack(0x1fcf0000,0x1fdf0000)] 0x1e1ee000 JavaThread "Worker-1" [_thread_blocked, id=1204, stack(0x1f5e0000,0x1f6e0000)] 0x1e1ee800 JavaThread "Java indexing" daemon [_thread_blocked, id=3532, stack(0x20e60000,0x20f60000)] 0x1d3c7c00 JavaThread "[ThreadPool Manager] - Idle Thread" daemon [_thread_blocked, id=2408, stack(0x1ef60000,0x1f060000)] 0x1dee6400 JavaThread "Provisioning Event Dispatcher" daemon [_thread_blocked, id=1368, stack(0x1ed60000,0x1ee60000)] 0x1c645800 JavaThread "Worker-0" [_thread_blocked, id=2288, stack(0x1ec60000,0x1ed60000)] 0x1de50400 JavaThread "Bundle File Closer" daemon [_thread_blocked, id=2664, stack(0x1d860000,0x1d960000)] 0x1d23d000 JavaThread "Worker-JM" [_thread_blocked, id=3300, stack(0x1dd30000,0x1de30000)] 0x1d1f4000 JavaThread "[Timer] - Main Queue Handler" daemon [_thread_blocked, id=3580, stack(0x1d960000,0x1da60000)] 0x1c4bcc00 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=308, stack(0x1d760000,0x1d860000)] 0x1c506000 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=2892, stack(0x1d660000,0x1d760000)] 0x1d0c0400 JavaThread "State Data Manager" daemon [_thread_blocked, id=1916, stack(0x1d460000,0x1d560000)] 0x1c4c0c00 JavaThread "Service Thread" daemon [_thread_blocked, id=148, stack(0x1cc60000,0x1cd60000)] 0x1c4a7000 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2336, stack(0x1cb60000,0x1cc60000)] 0x1c4a5c00 JavaThread "Attach Listener" daemon [_thread_blocked, id=344, stack(0x1ca60000,0x1cb60000)] 0x1c4a3000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=1432, stack(0x1c960000,0x1ca60000)] 0x1c471800 JavaThread "Finalizer" daemon [_thread_blocked, id=196, stack(0x1c860000,0x1c960000)] 0x1c46c800 JavaThread "Reference Handler" daemon [_thread_blocked, id=192, stack(0x1c760000,0x1c860000)] 0x01cbc000 JavaThread "main" [_thread_in_native, id=4084, stack(0x00030000,0x00130000)] Other Threads: 0x1c468400 VMThread [stack: 0x1c660000,0x1c760000] [id=4048] 0x1c4ca000 WatcherThread [stack: 0x1cd60000,0x1ce60000] [id=588] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap: def new generation total 17728K, used 9510K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 48% used [0x04000000, 0x04769988, 0x04f70000) from space 1920K, 100% used [0x05150000, 0x05330000, 0x05330000) to space 1920K, 0% used [0x04f70000, 0x04f70000, 0x05150000) tenured generation total 39200K, used 34004K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 86% used [0x0c000000, 0x0e135208, 0x0e135400, 0x0e648000) Metaspace used 27499K, capacity 28956K, committed 29032K, reserved 29056K Card table byte_map: [0x03ea0000,0x03f70000] byte_map_base: 0x03e80000 Polling page: 0x01130000 CodeCache: size=32768Kb used=3805Kb max_used=3805Kb free=28962Kb bounds [0x01ea0000, 0x02260000, 0x03ea0000] total_blobs=1826 nmethods=1609 adapters=146 compilation: enabled Compilation events (10 events): Event: 85.418 Thread 0x1c4a7000 1654 org.eclipse.core.commands.Command::getParameters (78 bytes) Event: 85.419 Thread 0x1c4a7000 nmethod 1654 0x02257108 code [0x02257260, 0x022578cc] Event: 85.964 Thread 0x1c4a7000 1655 org.eclipse.swt.internal.win32.OS::PeekMessage (26 bytes) Event: 85.965 Thread 0x1c4a7000 nmethod 1655 0x02257f08 code [0x02258000, 0x0225809c] Event: 87.284 Thread 0x1c4a7000 1658 org.eclipse.core.internal.jobs.InternalJob::isSystem (15 bytes) Event: 87.285 Thread 0x1c4a7000 nmethod 1658 0x02258388 code [0x02258480, 0x02258520] Event: 89.807 Thread 0x1c4a7000 1659 java.util.HashMap$TreeNode::getTreeNode (22 bytes) Event: 89.807 Thread 0x1c4a7000 nmethod 1659 0x02258588 code [0x02258690, 0x0225875c] Event: 89.808 Thread 0x1c4a7000 1660 org.eclipse.ui.menus.CommandContributionItem::update (56 bytes) Event: 89.809 Thread 0x1c4a7000 nmethod 1660 0x02258848 code [0x02258970, 0x02258ac4] GC Heap History (10 events): Event: 56.791 GC heap before {Heap before GC invocations=17 (full 2): def new generation total 17728K, used 15840K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 99% used [0x04000000, 0x04f68918, 0x04f70000) from space 1920K, 3% used [0x04f70000, 0x04f7f9c8, 0x05150000) to space 1920K, 0% used [0x05150000, 0x05150000, 0x05330000) tenured generation total 39200K, used 23918K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 61% used [0x0c000000, 0x0d75b9c0, 0x0d75ba00, 0x0e648000) Metaspace used 20449K, capacity 21286K, committed 21352K, reserved 21888K Event: 56.793 GC heap after Heap after GC invocations=18 (full 2): def new generation total 17728K, used 78K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 0% used [0x04000000, 0x04000000, 0x04f70000) from space 1920K, 4% used [0x05150000, 0x051638c8, 0x05330000) to space 1920K, 0% used [0x04f70000, 0x04f70000, 0x05150000) tenured generation total 39200K, used 23918K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 61% used [0x0c000000, 0x0d75b9c0, 0x0d75ba00, 0x0e648000) Metaspace used 20449K, capacity 21286K, committed 21352K, reserved 21888K } Event: 56.805 GC heap before {Heap before GC invocations=18 (full 2): def new generation total 17728K, used 15861K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 99% used [0x04000000, 0x04f69d58, 0x04f70000) from space 1920K, 4% used [0x05150000, 0x051638c8, 0x05330000) to space 1920K, 0% used [0x04f70000, 0x04f70000, 0x05150000) tenured generation total 39200K, used 23918K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 61% used [0x0c000000, 0x0d75b9c0, 0x0d75ba00, 0x0e648000) Metaspace used 20449K, capacity 21286K, committed 21352K, reserved 21888K Event: 56.807 GC heap after Heap after GC invocations=19 (full 2): def new generation total 17728K, used 91K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 0% used [0x04000000, 0x04000000, 0x04f70000) from space 1920K, 4% used [0x04f70000, 0x04f86d18, 0x05150000) to space 1920K, 0% used [0x05150000, 0x05150000, 0x05330000) tenured generation total 39200K, used 23918K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 61% used [0x0c000000, 0x0d75b9c0, 0x0d75ba00, 0x0e648000) Metaspace used 20449K, capacity 21286K, committed 21352K, reserved 21888K } Event: 59.122 GC heap before {Heap before GC invocations=19 (full 2): def new generation total 17728K, used 15899K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 100% used [0x04000000, 0x04f70000, 0x04f70000) from space 1920K, 4% used [0x04f70000, 0x04f86d18, 0x05150000) to space 1920K, 0% used [0x05150000, 0x05150000, 0x05330000) tenured generation total 39200K, used 23918K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 61% used [0x0c000000, 0x0d75b9c0, 0x0d75ba00, 0x0e648000) Metaspace used 22433K, capacity 23476K, committed 23528K, reserved 23936K Event: 59.135 GC heap after Heap after GC invocations=20 (full 2): def new generation total 17728K, used 1920K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 0% used [0x04000000, 0x04000000, 0x04f70000) from space 1920K, 100% used [0x05150000, 0x05330000, 0x05330000) to space 1920K, 0% used [0x04f70000, 0x04f70000, 0x05150000) tenured generation total 39200K, used 25740K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 65% used [0x0c000000, 0x0d9230f8, 0x0d923200, 0x0e648000) Metaspace used 22433K, capacity 23476K, committed 23528K, reserved 23936K } Event: 61.935 GC heap before {Heap before GC invocations=20 (full 2): def new generation total 17728K, used 17728K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 100% used [0x04000000, 0x04f70000, 0x04f70000) from space 1920K, 100% used [0x05150000, 0x05330000, 0x05330000) to space 1920K, 0% used [0x04f70000, 0x04f70000, 0x05150000) tenured generation total 39200K, used 25740K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 65% used [0x0c000000, 0x0d9230f8, 0x0d923200, 0x0e648000) Metaspace used 24816K, capacity 26046K, committed 26088K, reserved 27008K Event: 61.958 GC heap after Heap after GC invocations=21 (full 2): def new generation total 17728K, used 1920K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 0% used [0x04000000, 0x04000000, 0x04f70000) from space 1920K, 100% used [0x04f70000, 0x05150000, 0x05150000) to space 1920K, 0% used [0x05150000, 0x05150000, 0x05330000) tenured generation total 39200K, used 29679K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 75% used [0x0c000000, 0x0dcfbe18, 0x0dcfc000, 0x0e648000) Metaspace used 24816K, capacity 26046K, committed 26088K, reserved 27008K } Event: 67.730 GC heap before {Heap before GC invocations=21 (full 2): def new generation total 17728K, used 17728K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 100% used [0x04000000, 0x04f70000, 0x04f70000) from space 1920K, 100% used [0x04f70000, 0x05150000, 0x05150000) to space 1920K, 0% used [0x05150000, 0x05150000, 0x05330000) tenured generation total 39200K, used 29679K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 75% used [0x0c000000, 0x0dcfbe18, 0x0dcfc000, 0x0e648000) Metaspace used 27057K, capacity 28462K, committed 28520K, reserved 29056K Event: 67.754 GC heap after Heap after GC invocations=22 (full 2): def new generation total 17728K, used 1920K [0x04000000, 0x05330000, 0x0c000000) eden space 15808K, 0% used [0x04000000, 0x04000000, 0x04f70000) from space 1920K, 100% used [0x05150000, 0x05330000, 0x05330000) to space 1920K, 0% used [0x04f70000, 0x04f70000, 0x05150000) tenured generation total 39200K, used 34004K [0x0c000000, 0x0e648000, 0x1c000000) the space 39200K, 86% used [0x0c000000, 0x0e135208, 0x0e135400, 0x0e648000) Metaspace used 27057K, capacity 28462K, committed 28520K, reserved 29056K } Deoptimization events (0 events): No events Internal exceptions (10 events): Event: 61.747 Thread 0x1e1eec00 Exception <a 'java/io/FileNotFoundException'> (0x04df55e0) thrown at [D:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jni.cpp, line 716] Event: 61.804 Thread 0x1e1eec00 Exception <a 'java/io/FileNotFoundException'> (0x04e75b08) thrown at [D:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jni.cpp, line 716] Event: 61.932 Thread 0x01cbc000 Exception <a 'java/io/FileNotFoundException'> (0x04f4c460) thrown at [D:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jni.cpp, line 716] Event: 62.765 Thread 0x01cbc000 Exception <a 'java/io/FileNotFoundException'> (0x0450dc40) thrown at [D:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jni.cpp, line 716] Event: 62.906 Thread 0x01cbc000 Exception <a 'java/io/FileNotFoundException'> (0x046bf678) thrown at [D:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jni.cpp, line 716] Event: 62.920 Thread 0x01cbc000 Exception <a 'java/io/FileNotFoundException'> (0x046ee3b8) thrown at [D:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jni.cpp, line 716] Event: 63.112 Thread 0x01cbc000 Exception <a 'java/io/FileNotFoundException'> (0x0473fe78) thrown at [D:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jni.cpp, line 716] Event: 63.145 Thread 0x1e1ef800 Exception <a 'java/io/FileNotFoundException'> (0x044b2838) thrown at [D:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jni.cpp, line 716] Event: 65.390 Thread 0x1e1f0000 Exception <a 'java/io/FileNotFoundException'> (0x04b85998) thrown at [D:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jni.cpp, line 716] Event: 65.391 Thread 0x1e1f0000 Exception <a 'java/io/FileNotFoundException'> (0x04c5ea00) thrown at [D:\re\workspace\8-2-build-windows-i586-cygwin\jdk8u5\2488\hotspot\src\share\vm\prims\jni.cpp, line 716] Events (10 events): Event: 82.128 Executing VM operation: RevokeBias done Event: 82.579 Executing VM operation: RevokeBias Event: 82.579 Executing VM operation: RevokeBias done Event: 86.500 Executing VM operation: RevokeBias Event: 86.500 Executing VM operation: RevokeBias done Event: 89.822 Thread 0x1e1f0000 Thread added: 0x1e1f0000 Event: 89.833 Executing VM operation: RevokeBias Event: 89.833 Executing VM operation: RevokeBias done Event: 91.678 loading class java/lang/ClassLoaderHelper Event: 91.678 loading class java/lang/ClassLoaderHelper done Dynamic libraries: 0x00400000 - 0x0040d000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\eclipse.exe 0x772c0000 - 0x773fc000 C:\Windows\SYSTEM32\ntdll.dll 0x76ba0000 - 0x76c74000 C:\Windows\system32\kernel32.dll 0x753f0000 - 0x7543b000 C:\Windows\system32\KERNELBASE.dll 0x77400000 - 0x774c9000 C:\Windows\system32\USER32.dll 0x76ed0000 - 0x76f1e000 C:\Windows\system32\GDI32.dll 0x76d20000 - 0x76d2a000 C:\Windows\system32\LPK.dll 0x76820000 - 0x768bd000 C:\Windows\system32\USP10.dll 0x76f20000 - 0x76fcc000 C:\Windows\system32\msvcrt.dll 0x6eac0000 - 0x6eb44000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_5.82.7601.18201_none_ec80f00e8593ece5\COMCTL32.dll 0x76de0000 - 0x76e80000 C:\Windows\system32\ADVAPI32.dll 0x75920000 - 0x75939000 C:\Windows\SYSTEM32\sechost.dll 0x76d30000 - 0x76dd2000 C:\Windows\system32\RPCRT4.dll 0x774d0000 - 0x774ef000 C:\Windows\system32\IMM32.DLL 0x75640000 - 0x7570c000 C:\Windows\system32\MSCTF.dll 0x75280000 - 0x752cf000 C:\Windows\system32\AppInitHook321.dll 0x72000000 - 0x7200d000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.1.1.R36x_v20100810\eclipse_1309.dll 0x74700000 - 0x74709000 C:\Windows\system32\VERSION.dll 0x739c0000 - 0x73a00000 C:\Windows\system32\uxtheme.dll 0x77030000 - 0x7718c000 C:\Windows\system32\ole32.dll 0x75200000 - 0x7520c000 C:\Windows\system32\CRYPTBASE.dll 0x722e0000 - 0x72676000 C:\Program Files\Java\jre8\bin\client\jvm.dll 0x72c70000 - 0x72c77000 C:\Windows\system32\WSOCK32.dll 0x75940000 - 0x75975000 C:\Windows\system32\WS2_32.dll 0x75630000 - 0x75636000 C:\Windows\system32\NSI.dll 0x6f140000 - 0x6f172000 C:\Windows\system32\WINMM.dll 0x76d10000 - 0x76d15000 C:\Windows\system32\PSAPI.DLL 0x70830000 - 0x708ef000 C:\Windows\system32\MSVCR100.dll 0x72ec0000 - 0x72ecc000 C:\Program Files\Java\jre8\bin\verify.dll 0x72c10000 - 0x72c31000 C:\Program Files\Java\jre8\bin\java.dll 0x72c50000 - 0x72c63000 C:\Program Files\Java\jre8\bin\zip.dll 0x75a00000 - 0x7664a000 C:\Windows\system32\SHELL32.dll 0x76fd0000 - 0x77027000 C:\Windows\system32\SHLWAPI.dll 0x752d0000 - 0x752db000 C:\Windows\system32\profapi.dll 0x74c80000 - 0x74c96000 C:\Windows\system32\CRYPTSP.dll 0x74a20000 - 0x74a5b000 C:\Windows\system32\rsaenh.dll 0x74860000 - 0x74877000 C:\Windows\system32\USERENV.dll 0x72bf0000 - 0x72c04000 C:\Program Files\Java\jre8\bin\net.dll 0x74c40000 - 0x74c7c000 C:\Windows\system32\mswsock.dll 0x74c30000 - 0x74c36000 C:\Windows\System32\wship6.dll 0x73320000 - 0x7333c000 C:\Windows\system32\IPHLPAPI.DLL 0x73310000 - 0x73317000 C:\Windows\system32\WINNSI.DLL 0x73180000 - 0x73192000 C:\Windows\system32\dhcpcsvc.DLL 0x73170000 - 0x7317d000 C:\Windows\system32\dhcpcsvc6.DLL 0x72c40000 - 0x72c4f000 C:\Program Files\Java\jre8\bin\nio.dll 0x76b10000 - 0x76b9f000 C:\Windows\system32\OLEAUT32.DLL 0x1eb30000 - 0x1eb93000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\configuration\org.eclipse.osgi\bundles\209\1\.cp\swt-win32-3655.dll 0x75980000 - 0x759fb000 C:\Windows\system32\comdlg32.dll 0x73f90000 - 0x7412e000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2\COMCTL32.dll 0x76650000 - 0x76814000 C:\Windows\system32\WININET.dll 0x75440000 - 0x75444000 C:\Windows\system32\api-ms-win-downlevel-user32-l1-1-0.dll 0x754c0000 - 0x754c4000 C:\Windows\system32\api-ms-win-downlevel-shlwapi-l1-1-0.dll 0x75620000 - 0x75624000 C:\Windows\system32\api-ms-win-downlevel-version-l1-1-0.dll 0x75350000 - 0x75353000 C:\Windows\system32\api-ms-win-downlevel-normaliz-l1-1-0.dll 0x75770000 - 0x75773000 C:\Windows\system32\normaliz.DLL 0x768c0000 - 0x76ad7000 C:\Windows\system32\iertutil.dll 0x754b0000 - 0x754b5000 C:\Windows\system32\api-ms-win-downlevel-advapi32-l1-1-0.dll 0x733a0000 - 0x733b3000 C:\Windows\system32\dwmapi.dll 0x03fd0000 - 0x03fed000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\configuration\org.eclipse.osgi\bundles\209\1\.cp\swt-gdip-win32-3655.dll 0x73830000 - 0x739c0000 C:\Windows\WinSxS\x86_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7601.18120_none_72d2e82386681b36\gdiplus.dll 0x73040000 - 0x73170000 C:\Windows\system32\WindowsCodecs.dll 0x73a20000 - 0x73b15000 C:\Windows\system32\propsys.dll 0x76c80000 - 0x76d03000 C:\Windows\system32\CLBCatQ.DLL 0x6d6c0000 - 0x6d82f000 C:\Windows\system32\explorerframe.dll 0x733e0000 - 0x7340f000 C:\Windows\system32\DUser.dll 0x735e0000 - 0x73692000 C:\Windows\system32\DUI70.dll 0x729b0000 - 0x729ec000 C:\Windows\system32\oleacc.dll 0x75210000 - 0x7521e000 C:\Windows\system32\RpcRtRemote.dll 0x6e460000 - 0x6e46f000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\configuration\org.eclipse.osgi\bundles\45\1\.cp\jWinHttp-1.0.0.dll 0x70b20000 - 0x70b78000 C:\Windows\system32\WINHTTP.dll 0x70910000 - 0x7095f000 C:\Windows\system32\webio.dll 0x75190000 - 0x751ab000 C:\Windows\system32\SspiCli.dll 0x74950000 - 0x74958000 C:\Windows\system32\credssp.dll 0x75480000 - 0x754a7000 C:\Windows\system32\CFGMGR32.dll 0x66ce0000 - 0x66d00000 C:\Program Files\Java\jre8\bin\sunec.dll 0x72ba0000 - 0x72ba5000 C:\Windows\system32\msimg32.dll 0x75780000 - 0x7591d000 C:\Windows\system32\SETUPAPI.dll 0x75600000 - 0x75612000 C:\Windows\system32\DEVOBJ.dll 0x745c0000 - 0x745e1000 C:\Windows\system32\ntmarta.dll 0x76e80000 - 0x76ec5000 C:\Windows\system32\WLDAP32.dll 0x751b0000 - 0x751fc000 C:\Windows\system32\apphelp.dll 0x67080000 - 0x6709c000 C:\Program Files\FileZilla FTP Client\fzshellext.dll 0x6d0d0000 - 0x6d140000 C:\Windows\system32\ntshrui.dll 0x75100000 - 0x75119000 C:\Windows\system32\srvcli.dll 0x6d2c0000 - 0x6d2cb000 C:\Windows\system32\cscapi.dll 0x734d0000 - 0x734da000 C:\Windows\system32\slc.dll 0x73c90000 - 0x73c99000 C:\Windows\system32\netutils.dll 0x6c9b0000 - 0x6c9bc000 C:\Windows\system32\mssprxy.dll 0x6ca40000 - 0x6ca49000 C:\Windows\system32\LINKINFO.dll 0x74790000 - 0x74795000 C:\Windows\System32\wshtcpip.dll 0x74b00000 - 0x74b44000 C:\Windows\system32\DNSAPI.dll 0x70b80000 - 0x70b86000 C:\Windows\system32\rasadhlp.dll 0x73230000 - 0x73268000 C:\Windows\System32\fwpuclnt.dll 0x6eec0000 - 0x6eee4000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libapr-1.dll 0x6ee50000 - 0x6ee59000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libapriconv-1.dll 0x236e0000 - 0x2381a000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libeay32.dll 0x754e0000 - 0x75600000 C:\Windows\system32\CRYPT32.dll 0x75340000 - 0x7534c000 C:\Windows\system32\MSASN1.dll 0x23820000 - 0x2385c000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\ssleay32.dll 0x6ee60000 - 0x6ee90000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libaprutil-1.dll 0x616c0000 - 0x617d5000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\dbghelp.dll 0x23860000 - 0x23873000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libsasl.dll 0x23880000 - 0x23931000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libsvn_subr-1.dll 0x74df0000 - 0x74df5000 C:\Windows\system32\SHFOLDER.dll 0x23940000 - 0x23956000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libsvn_delta-1.dll 0x23500000 - 0x2350d000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libsvn_diff-1.dll 0x23960000 - 0x23995000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libsvn_wc-1.dll 0x23ac0000 - 0x23ae1000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libsvn_fs-1.dll 0x23af0000 - 0x23b13000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libsvn_repos-1.dll 0x23b20000 - 0x23ba0000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libsvn_ra-1.dll 0x75170000 - 0x75178000 C:\Windows\system32\Secur32.dll 0x23ba0000 - 0x23bd2000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libsvn_client-1.dll 0x23be0000 - 0x23c09000 C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins\org.tigris.subversion.clientadapter.javahl.win32_1.6.17\libsvnjavahl-1.dll 0x66970000 - 0x669d6000 C:\Windows\system32\MSVCP60.dll VM Arguments: jvm_args: -Dosgi.requiredJavaVersion=1.5 -Xms40m -Xmx384m -XX:MaxPermSize=256m java_command: <unknown> java_class_path (initial): C:\Users\Gia\Desktop\GoGLiKK\eclipse\plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar Launcher Type: generic Environment Variables: JAVA_HOME=C:\Program Files\Java\jdk1.8.0_05 PATH=C:/Program Files/Java/jre8/bin/client;C:/Program Files/Java/jre8/bin;C:/Program Files/Java/jre8/lib/i386;C:\Program Files\Broadcom\Broadcom 802.11 Network Adapter;;;;C:\Program Files\Intel\iCLS Client\;;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Intel\Intel® Management Engine Components\DAL;C:\Program Files\Intel\Intel® Management Engine Components\IPT;C:\ant\bin USERNAME=Gia OS=Windows_NT PROCESSOR_IDENTIFIER=x86 Family 6 Model 58 Stepping 9, GenuineIntel --------------- S Y S T E M --------------- OS: Windows 7 Build 7601 Service Pack 1 CPU:total 2 (2 cores per cpu, 1 threads per core) family 6 model 58 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, clmul, erms, tsc, tscinvbit Memory: 4k page, physical 1905004k(550688k free), swap 3810008k(2210136k free) vm_info: Java HotSpot Client VM (25.5-b02) for windows-x86 JRE (1.8.0_05-b13), built on Mar 18 2014 01:14:47 by "java_re" with MS VC++ 10.0 (VS2010) time: Fri Apr 18 13:50:10 2014 elapsed time: 92 seconds
  19. скачал этот исходны код и хочу собрать , перерыл весь интернет , использовал eclipse,ant но не смог собрать
  20. помогите с компилятором, не могу скомпилировать . если кто то знает напишите . уже неделя питаюсь скомпилировать , но не получается .
  21. всем + спасибо за ответы проблема в хостинге
  22. сайт на другом языке не поймешь вот характеристики машины http://youlook.ge (ne reklama)
  23. хостинг платный , настроил как мог но не получается , даже пробовал на разных компах с разными версиями mysql но не получается .
  24. помогите пожалуйста если можете , когда соединяю сайт к дб сервера он проста зависает (( переустановил MYSQL раз сто ,добавляю пользователя с правами на доступ с другого сервера даже через мой комп могу подключиться к mysql но сайт зависает. уже не знаю что делать .
×
×
  • Создать...