search for: optn

Displaying 6 results from an estimated 6 matches for "optn".

Did you mean: open
2002 Feb 11
0
profile
...lt;- 16.78 gN <- 0.5511 E.nfert1 <- 0.3271 E.nfert2 <- 0.6132 Beta <- 0.8902 Dls <- 0.5378 eta1 <- 0.3791 eta2 <- 0.6332 PopStd <- 90468 beta <- Beta DIs <- Dls MnmN <- Nmin OptN <- Nopt1 # define model function Y.model <- function(gN, MnmN, OptN, DIs, beta, eta1, eta2, Popn, Dmax, AWC, SumEp, PotYield3, Nsupply) { Ymax<- 1-ifelse(Popn<=PopStd, eta1, eta2)*log(Popn/PopStd) Ymax <- Ymax*PotY...
2007 Jun 06
2
Getting ajax to update a select box after php mysql script is run.
Hi I''ll get to it right away: 1. I have a simple page with a form, in this form there is a "select" box with a number of options. On the right i also have a "input" field with a submit option. 2. When the user puts something in the input field and hits submit, a php script is run, that puts that entry in mysql table. Question: 3. How do i with Ajax update the
2008 Feb 23
1
Need some dialplan help
I'm hoping someone can give me a little dialplan assistance. Here is my scenario... I currently have an AT&T T1 connected to a Nortel Optn 11. I recently purchased a Rhino system with a Rhino dual T1 card. What I want to do is insert the Rhino box between the CO and the Nortel on the T1 so I can start migrating users over to the Asterisk system in the near future. But, in the meantime, I basically need to take all the calls that come...
2006 Mar 23
0
[LLVMdev] Re: LLVM JIT questions
...will produce a dump of the machine IR right before outputing code with the JIT. It doesn't use the assembly syntax, but is a 1-1 mapping with it and is easy enough to understand. I'm assuming you're using the JIT library, not 'lli', so you're not using the command line optn parsing stuff natively. As such, something like this should work when your app starts up: static const char * const Args[] = { "", "-print-machineinstrs", 0 }; cl::ParseCommandLineOptions(2, Args); .. this lets you pass other options to LLVM, which could be useful later. Al...
2011 Nov 22
0
[PATCH] kinit: Add ability to mount filesystems via /etc/fstab or cmdline
...lags = 0; + char new_fs_opts[128] = { 0 }; + char *saveptr = NULL; + char *fs_opts_savedptr = NULL; + int opt_first = 1; + const char *opt; + + if (strncmp(argv[arg_i], "kinit_mount=", 12)) + continue; + /* + * Format: + * <fs_name>;<dir>;<fs_type>;[opt1],[optn...] + */ + fs_name = strtok_r(&argv[arg_i][12], ";", &saveptr); + if (!fs_name) { + fprintf(stderr, "Failed to parse fs_name\n"); + continue; + } + fs_dir = strtok_r(NULL, ";", &saveptr); + if (!fs_dir) { + fprintf(stderr, "Failed to parse...
2012 Mar 08
3
[PATCH 0/3] kinit: Allow mount options
This patch series allows user-specified mount commands to be sent in via kernel command line ("kinit_mount=...") or via an embedded /etc/fstab file. The first patch is a cleanup of a patch sent last November by San Mehat (http://web.archiveorange.com/archive/v/EazJNBMORV2U7E0coh5h); the next two are small improvements or bug fixes.