This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
appTrainers.factory('ModelPhone', ['$http', function ($http) { | |
function ModelPhone(modelData) { | |
if (modelData) { | |
this.setData(modelData); | |
} | |
} | |
ModelPhone.prototype = { | |
ID_PHONE: '', | |
FID_CONTACT: '', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package l2ft.commons.dbcp; | |
import org.apache.commons.dbcp.ConnectionFactory; | |
import org.apache.commons.dbcp.DriverManagerConnectionFactory; | |
import org.apache.commons.dbcp.PoolableConnectionFactory; | |
import org.apache.commons.dbcp.PoolingDataSource; | |
import org.apache.commons.pool.ObjectPool; | |
import org.apache.commons.pool.impl.GenericKeyedObjectPool; | |
import org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory; | |
import org.apache.commons.pool.impl.GenericObjectPool; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package l2ft.gameserver.database; | |
import l2ft.commons.dbcp.BasicDataSource; | |
import l2ft.gameserver.Config; | |
import java.sql.Connection; | |
import java.sql.SQLException; | |
public class DatabaseFactory extends BasicDataSource { | |
private static final DatabaseFactory _instance = new DatabaseFactory(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-Xms128m | |
-Xmx384m | |
-XX:ReservedCodeCacheSize=128m | |
-XX:+UseConcMarkSweepGC | |
-XX:SoftRefLRUPolicyMSPerMB=50 | |
-XX:+DoEscapeAnalysis | |
-XX:+AggressiveOpts | |
-XX:+UseCodeCacheFlushing | |
-ea | |
-Dsun.io.useCanonCaches=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
concurrent = 1 | |
check_interval = 0 | |
[[runners]] | |
name = "{name}" | |
url = "https://{host}/" | |
token = "{tocken}" | |
executor = "docker" | |
[runners.docker] | |
tls_verify = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by Maxim Novikov. | |
* Date: 21.09.17 - 15:09 | |
*/ | |
namespace prometheus\core\components; | |
use Aws\S3\S3Client; |