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
CONFIG_XEN=y | |
CONFIG_XEN_DOM0=y | |
CONFIG_XEN_PRIVILEGED_GUEST=y | |
CONFIG_XEN_PVHVM=y | |
CONFIG_XEN_MAX_DOMAIN_MEMORY=500 | |
CONFIG_XEN_SAVE_RESTORE=y | |
# CONFIG_XEN_DEBUG_FS is not set | |
CONFIG_PCI_XEN=y | |
CONFIG_XEN_PCIDEV_FRONTEND=m | |
CONFIG_XEN_BLKDEV_FRONTEND=y |
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
1.4.7 | |
Use a monotonically increasing timer | |
Immediately expire items when given a negative expiration time | |
fix memcached-tool to print about all slabs | |
Properly daemonize memcached for debian | |
Don't permanently close UDP listeners on error | |
Allow memcached-init to start multiple instances (not recommended) | |
Issue 214 : Search for network libraries before searching for libevent | |
Issue 213 : Search for clock_gettime in librt | |
Issue 115 : accont for CAS in item_size_ok |
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
require 'rubygems' | |
require 'isaac' | |
configure do |c| | |
c.nick = 'ExplainerBot' | |
c.server = 'dev.urbanairship.com' | |
c.port = 6697 | |
c.ssl = true | |
end |
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 main | |
import ( | |
"http" | |
"net" | |
"io" | |
"log" | |
"os" | |
"bufio" | |
) |
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
#include <stdio.h> | |
int main(int argc, char** argv) { | |
printf("argc = %d\n", argc); | |
} |
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 fsa | |
type FSA interface { | |
Accept(s string) bool | |
} |
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 nfa | |
import "fmt" | |
type nfa struct { | |
Q []chan string | |
q0, F int | |
monitor chan int | |
input chan string |
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 nfa | |
import "fmt" | |
type nfa struct { | |
Q []chan string | |
q0, F int | |
monitor chan int | |
input chan string |
NewerOlder