This file contains 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
use openfmb_ops_protobuf::openfmb::commonmodule; | |
fn get_current_datetime() -> Timestamp { | |
let t = Utc::now(); | |
let tq = commonmodule::TimeQuality { | |
clock_failure: false, | |
clock_not_synchronized: false, | |
leap_seconds_known: true, | |
time_accuracy: commonmodule::TimeAccuracyKind::Unspecified as i32, | |
}; |
This file contains 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
pub type Body = [u8]; | |
pub trait BodyBuilder{} | |
impl BodyBuilder for Body {} | |
pub struct Body2 {body:[u8]} | |
pub trait BodyBuilder2{} | |
impl BodyBuilder2 for Body2 {} | |
both fail with |
This file contains 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
#[repr(C, packed)] | |
pub struct CqlStringMap<'a> { | |
count:u16, | |
map:[u8] | |
} |
This file contains 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
use std::io::{BufferedReader,File}; | |
use std::collections::BinaryHeap; //latest nightlies have switch renamed PriorityQueue to BinaryHeap | |
fn main() { | |
let n = 3u; // n longest lines. | |
let path = Path::new("test.txt"); | |
let mut file = BufferedReader::new(File::open(&path)); | |
let mut pq = BinaryHeap::new(); // note: max-heap. See above about BinaryHeap | |
for (i, line) in file.lines().enumerate() { |
This file contains 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
import com.datastax.spark.connector.cql.CassandraConnector | |
import org.apache.spark.{SparkContext,SparkConf} | |
import org.apache.spark.sql.SQLContext | |
import com.databricks.spark.csv._ | |
import com.datastax.spark.connector._ | |
object CSV2Cassandra { | |
def main(args: Array[String]): Unit = { | |
val conf = new SparkConf(true).set("spark.cassandra.connection.host", "127.0.0.1").setMaster("local") | |
val sc = new SparkContext("local", "test", conf) |
This file contains 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
fn send (&mut self, err: c_int, bytes: &[&[u8]]) { | |
assert!(self.sender.is_some()); | |
let len = bytes.iter().fold(0, |l, b| { l + b.len()}); | |
let header = fuse_out_header { | |
len: (mem::size_of::<fuse_out_header>() + len) as u32, | |
error: -err, | |
unique: self.unique, | |
}; | |
as_bytes(&header, |headerbytes| { | |
let sender = self.sender.take_unwrap(); |
This file contains 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
import java.lang.Math.sqrt | |
object Positioning extends App { | |
class Circle(val x: Double, val y: Double, val r: Double) | |
class Point(val x: Double, val y: Double) | |
run_test(new Circle(-1.0, -1.0, 1.5), new Circle(1.0, 1.0, 2.0)) | |
run_test(new Circle(236, 67, 695.075535464), new Circle(-268, 172, 409.498473746)) |
This file contains 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
extern mod std; | |
use std::net::tcp::connect; | |
use std::net::tcp::write; | |
use std::net::ip::v4::parse_addr; | |
use std::uv::global_loop; | |
fn main() { | |
let port:uint = 80; |
This file contains 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
extern mod std; | |
use std::net::tcp::connect; | |
use std::net::tcp::write; | |
use std::net::ip::v4::parse_addr; | |
use std::uv::global_loop; | |
fn main() { | |
let port:uint = 80; |
This file contains 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
extern mod std; | |
use std::net::tcp::connect; | |
use std::net::ip::v4::parse_addr; | |
use std::uv::global_loop; | |
fn main() { | |
let port:uint = 80; | |
let iotask = global_loop::get(); | |
let ip = parse_addr("127.0.0.1"); |
NewerOlder