-
Find the system modules directory, which is something like
$JBOSS_HOME/modules
or.../jboss-eap/modules/system/layers/base/
. -
Add a new directory
com/foundationdb/main
there. (There should already be com and org or you probably don't have the right starting directory.) -
Put the
module.xml
file into that new directory.
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
diff --git a/Gemfile b/Gemfile | |
index 678a5d2..d5748b4 100644 | |
--- a/Gemfile | |
+++ b/Gemfile | |
@@ -56,6 +56,7 @@ ENV['DB'] ||= 'mysql' | |
gem 'mysql2', '0.3.16' if ENV['DB'] == 'all' || ENV['DB'] == 'mysql' | |
gem 'pg', '0.17.1' if ENV['DB'] == 'all' || ENV['DB'] == 'postgres' | |
+gem 'activerecord-fdbsql-adapter', github: 'FoundationDB/sql-layer-adapter-activerecord' if ENV['DB'] == 'all' || ENV['DB'] == 'fdbsql' | |
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 com.foundationdb.example; | |
import com.foundationdb.Transaction; | |
import com.foundationdb.directory.DirectoryLayer; | |
import com.foundationdb.server.store.FDBTransactionService.TransactionState; | |
import com.foundationdb.server.store.FDBTransactionService; | |
import com.foundationdb.sql.server.ServerCallContextStack; | |
import com.foundationdb.sql.server.ServerQueryContext; | |
import java.util.Arrays; |
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 com.foundationdb.example; | |
public class TestJavaBasic | |
{ | |
public static void addSub(int x, int y, int[] sum, int[] diff) { | |
sum[0] = x + y; | |
diff[0] = x - y; | |
} | |
} |
Problem sequence:
- Server completes request and sends close.
- Client interrupt handler sets
closed_sockets
. - Application closes socket before reading all input and so without calling
connected
when empty. - Closed flag is still set on unused connection.
- New connection (CC3000 does not cycle socket numbers -- so almost always
0
again). - Server is slow to respond so no input available.
connected
has closed and none available, so not connected.- Connection failed.
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
run_program("/sbin/cp", "-R", "/cache/recovery", "/tmp/recovery"); | |
ui_print("ROM Manager Version 5.0.2.0"); | |
ui_print("Septiembre 12, 2012"); | |
ui_print("Preparing to install ROM..."); | |
run_program("/sbin/mount", "/sdcard"); | |
format("/system"); | |
format("/data"); | |
format("/cache"); | |
assert(install_zip("/sdcard/cm10_a10_20121011.zip")); | |
assert(install_zip("/sdcard/gapps-jb-20121011-signed.zip")); |
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 test; | |
import com.foundationdb.Database; | |
import com.foundationdb.FDB; | |
import com.foundationdb.KeyValue; | |
import com.foundationdb.Transaction; | |
import com.foundationdb.directory.DirectoryLayer; | |
import com.foundationdb.directory.DirectorySubspace; | |
import com.foundationdb.async.AsyncIterable; | |
import com.foundationdb.async.AsyncUtil; |
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 | |
$dbh = new PDO("pgsql:host=localhost port=15432 dbname=system"); | |
$stmt = $dbh->prepare('SELECT version()'); | |
$stmt->execute(); | |
$row = $stmt->fetch(); | |
echo $row[0] . "\n"; | |
?> |
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
from google.protobuf import descriptor | |
from google.protobuf import descriptor_pb2 | |
from google.protobuf import descriptor_pool | |
from google.protobuf import message | |
from google.protobuf import reflection | |
import fdb | |
from directory import directory |