search for: cp2

Displaying 20 results from an estimated 41 matches for "cp2".

Did you mean: cp
2001 Jun 05
2
a bug? (PR#968)
...0 0 203 C04 CP1 CP 180 10 0 204 C04 CP1 CP 180 10 0 205 C04 CP1 CP 180 10 0 206 C04 CP1 CP 180 10 0 207 C04 CP1 CP 180 10 0 208 C04 CP1 CP 180 10 0 209 C04 CP1 CP 180 10 0 210 C04 CP1 CP 180 10 0 211 C04 CP1 CP 180 10 0 212 C04 CP1 CP 180 10 0 213 C04 CP1 CP 180 10 0 214 C04 CP1 CP 180 10 0 215 C05 CP2 CP 180 10 1 216 C05 CP2 CP 180 10 1 217 C05 CP2 CP 180 10 1 218 C05 CP2 CP 180 10 1 219 C05 CP2 CP 180 10 1 220 C05 CP2 CP 180 10 1 221 C05 CP2 CP 180 10 1 222 C05 CP2 CP 180 10 1 223 C05 CP2 CP 180 10 1 224 C05 CP2 CP 180 10 1 225 C05 CP2 CP 180 10 1 226 C05 CP2 CP 180 10 1 227 C05 CP2 CP 180 10 0...
2004 Oct 03
0
[patch] tell user about hosts with same key
...rlen(hostname) + 1); + sprintf(n->host, "%s", hostname); + n->next = l; + return n; +} + +HostList * +find_hosts_by_key(const char *filename, const Key *search_key, HostList *initial_hosts) +{ + Key *found; + FILE *f; + char line[8192]; + int linenum = 0; + u_int kbits; + char *cp, *cp2; + HostList *hostlist; + char *thishost = NULL; + u_int thishostlen; + + debug3("find_hosts_by_key: filename %s", filename); + + /* Open the file containing the list of known hosts. */ + f = fopen(filename, "r"); + if (!f) + return initial_hosts; + + hostlist = initial_hosts; +...
2012 Dec 17
3
simplifying code
...as wondering if you could help me with the following: I have the code:   tin <-0.5 tau <-24 output0 <-10 TIMELOW <-tin TIMEHIGH <-1*tau TIME1 <-c(seq(TIMELOW,TIMEHIGH, by = sign(TIMEHIGH-TIMELOW)*(tau-tin)/3))   then I would like to calculate:   cp1 <-output0*exp(-0.3*TIME1[1]) cp2 <-output0*exp(-0.3*TIME1[2]) cp3 <-output0*exp(-0.3*TIME1[3]) cp4 <-output0*exp(-0.3*TIME1[4])   then plot(TIME1,c(cp1,cp2,cp3,cp4))   is there a way to rewrite the equations for calculating the cp(1 to n) in a "single line" so that the run of the code will produce the vector  c...
2012 Dec 27
3
[PATCH] hostfile: list known names (if any) for new hostkeys
...ostkeys(void) } void -load_hostkeys(struct hostkeys *hostkeys, const char *host, const char *path) +load_hostkeys(struct hostkeys *hostkeys, const char *lookup_host, + const Key *lookup_key, const char *path) { FILE *f; char line[8192]; u_long linenum = 0, num_loaded = 0; char *cp, *cp2, *hashed_host; + const char *current_host; HostkeyMarker marker; Key *key; int kbits; if ((f = fopen(path, "r")) == NULL) return; - debug3("%s: loading entries for host \"%.100s\" from file \"%s\"", - __func__, host, path); + debug3("%s:...
2009 Jan 12
1
re tail case-pack ordering problem - can R help?
...t of sizes that the supplier assembles. The retailer must order in whole case packs. For example, For a given shoe style, in the color brown, a supplier has the following case packs available. Sizes - > XS S M L XL XXL XXXL CasePack profiles: cp1 1 3 5 4 2 1 0 cp2 0 2 2 2 0 0 0 cp3 0 2 3 3 1 0 0 cp4 2 4 5 5 4 1 0 And, for a given store, the retailer has determined the following set the desired quantites of sizes to purchase. (This determination is based on sales history, and is not at all based...
2017 Jun 16
2
[PATCH] allow relative path in streamlocal forwarding
...e == '/') + return xstrdup(pathname); + + if (xasprintf(&ret, "%s/%s", root_directory, pathname) >= PATH_MAX) { + error("Socket path too long"); + free(ret); + return NULL; + } + + cp = ret + strlen(root_directory) + 1; + while (*cp != '\0') { + char *cp2 = strchr(cp, '/'); + if (cp2 != NULL) + *cp2 = '\0'; + if (cp2 == cp || strcmp(cp, ".") == 0 || strcmp(cp, "..") == 0) { + error("Invalid socket path"); + free(ret); + return NULL; + } + if (stat(ret, &st) == -1) { + if (cp2 != NULL &a...
2009 Jan 10
1
Setting a contingency table
...set a make a contingency table which will look like this.. The problem is that I can't  set the table like the following.                      col1     col2       Total     row1              a         b         n10                      rp1       rp2        100                      cp1       cp2       rtp1   ---------------------------------------------     row2             c         d         n20                      rp3       rp4       100                      cp3       cp4       rtp2   ---------------------------------------------     Total            n01       n02         n            ...
2009 Apr 27
4
Pygrub + ZFS: problem of booting
Hello! My Dom0 config: Xubuntu 8.10 + "Xen-3.3.1 and kernel-2.6.18-xen.hg" I have Nexenta CP2 RC1 (Opensolaris b104) on ZFS file system. I installed this OS in HVM. For PV i used pygrub. My config file: ''ncp2.pygrub'' bootloader = "/usr/bin/pygrub" boot = "c" memory = 512 name = "NexentaPV" uuid = "06ed00fe-1162-4fc4-b5d8-11993ee4a8b9&q...
2020 Aug 30
4
[Bug 3206] New: sftp client(32bit) chown command does not support uid >LONG_MAX
...(optidx = parse_ch_flags(cmd, argv, argc, hflag)) == -1) return -1; /* Get numeric arg (mandatory) */ if (argc - optidx < 1) goto need_num_arg; errno = 0; l = strtol(argv[optidx], &cp2, base); if (cp2 == argv[optidx] || *cp2 != '\0' || ((l == LONG_MIN || l == LONG_MAX) && errno == ERANGE) || l < 0) { need_num_arg: error("You must supply a numeric argument "...
2010 Feb 22
2
ld: Unsatisfied symbol "options" in file ./libssh.a[hostfile.o]
..... extern Options options .......... static HostStatus check_host_in_hostfile_by_key_or_type(const char *filename, const char *host, const Key *key, int keytype, Key *found, int *numret) { FILE *f; char line[8192]; int linenum = 0; u_int kbits; char *cp, *cp2, *hashed_host; HostStatus end_return; debug3("check_host_in_hostfile: filename %s", filename); /* Open the file containing the list of known hosts. */ f = fopen(filename, "r"); if (!f) { if(options.usesshldaphostkey...
2008 Apr 29
0
[LLVMdev] [PATCH] use-diet for review
...BitcodeReaderValueList::resize(unsigned Desired) { + if (Desired > Capacity) + { Please put brace on same line as if. - Constant *C= ConstantExpr::getFCmp(FCmpInst::FCMP_OEQ, - const_cast<Constant*>(CP1->getOperand(i)), - const_cast<Constant*>(CP2->getOperand(i))); + Constant *C = ConstantExpr::getFCmp(FCmpInst::FCMP_OEQ, + CP1->getOperand(i), + CP2->getOperand(i)); getOperand() is no longer const-correct? InvokeInst::~InvokeInst()...
1999 Aug 04
0
Win9x & Samba 2.0.5a (PR#19465)
...======= RCS file: /data/cvs/samba/source/lib/util.c,v retrieving revision 1.218.2.18.2.14 diff -u -r1.218.2.18.2.14 util.c --- util.c 1999/07/22 01:47:02 1.218.2.18.2.14 +++ util.c 1999/07/22 19:04:15 @@ -1430,7 +1430,7 @@ */ if (win9x_semantics) { - if (*cp2 == '\0' && (strequal(cp1, "*") || str_is_all(cp1, '?'))) + if (*cp2 == '\0' && str_is_all(cp1, '?')) break; } -- -------------------------------------------------------- Buying an operating system without sour...
2013 Jun 14
3
[PATCH 0/2] Fix inspection of Fedora guests (RHBZ#974489).
Here is a preliminary fix for this bug. I'm running the test suite on this now. Rich.
2006 Jun 16
2
--remove-sent-files to remove "synced" files
I was looking through the documentation on -remove-sent-files and it seems it will only remove files actually sent across the connection. Am I correct in assuming this and is there any patch/method for removing synced files from the source regardless of whether they were necessary to transfer over or not? Thanks, Matt Breedlove -------------- next part -------------- HTML
2003 Nov 15
6
Samba 3 and CUPs printer causes explorer to abend
...r DW02-C> Info Created by redhat-config-printer 0.6.x Location HPLJ 4500 Color DeviceURI socket://192.168.8.52:9100 State Idle Accepting Yes JobSheets none none QuotaPeriod 0 PageLimit 0 KLimit 0 </Printer> <Printer DW03> Info Created by redhat-config-printer 0.6.x Location HPLJ 4000 CP2-250 DeviceURI socket://192.168.8.53:9100 State Idle Accepting Yes JobSheets none none QuotaPeriod 0 PageLimit 0 KLimit 0 </Printer> <Printer NOG01> Info NT Group HPLJ 8000N Location CP2-250 DeviceURI socket://192.168.8.51 State Idle Accepting Yes JobSheets none none QuotaPeriod 0 PageLi...
2008 Apr 29
5
[LLVMdev] [PATCH] use-diet for review
Hi all, I have reported more than enough about the space savings achieved and the associated costs, here comes the current patch for review. Since this one is substantially smaller than the previous one, I did not cut it in pieces. The front part is about headers and the rest the .cpp and other files. Cheers, Gabor -------------- next part -------------- An embedded and charset-unspecified
2008 Mar 25
1
Error propagation
...covMat <- cov(as.data.frame(varList)) ### calculate error from square root af all squared terms ERROR <- sqrt(sum(term) + sum(COVALL)) return(list(error = ERROR, partials = el, htest = BT, covMat = covMat)) } ############ Example: e <- expression((E1^cp1)/(E2^cp2)) data <- list(E1 = c(1.8, 1.7, 1.8), E2 = c(1.65, 1.72, 1.71), cp1 = c(17.6, 17.8, 17.7), cp2 = c(22.12, 21.5, 22.1)) temp <- propagate(e, data, type = "raw", cov = T) print(temp) Many thanks in advance!! _____________________________________ Dr. rer. nat. Andrej-Nikolai Sp...
2003 Mar 04
0
hashing known_hosts
...-3.4p1/hostfile.c Thu Dec 20 20:47:09 2001 +++ openssh-3.4p1-hash/hostfile.c Mon Mar 3 17:28:25 2003 @@ -135,8 +135,13 @@ check_host_in_hostfile(const char *filen ; /* Check if the host name matches. */ +#ifdef HASH_KNOWN_HOSTS + if (match_hashed_hostname(host, cp, (u_int) (cp2 - cp)) != 1) + continue; +#else if (match_hostname(host, cp, (u_int) (cp2 - cp)) != 1) continue; +#endif /* Got a match. Skip host name. */ cp = cp2; diff -u -p openssh-3.4p1/match.c openssh-3.4p1-hash/match.c --- openssh-3.4p1/match.c Mon Mar 4 20:42:43 2002...
2009 Mar 21
2
1.6.2 beta 1 crash
...tion=0xb6f9fe20 "ODBC_MSSQL(IVR_TEST_Asterisk 1001)", workspace=0xb6f9ee10 "1,0", len=4096) at pbx.c:3346 #10 0x081070dd in pbx_substitute_variables_helper_full (c=0x8a527e8, headp=0x8a52900, cp1=0x8a0fae8 "HASH(Cliente)=${ODBC_MSSQL(IVR_TEST_Asterisk ${ANI})}", cp2=0xb6fa3f02 "", count=8177, used=0xb6fa61a8) at pbx.c:3481 #11 0x0810797a in pbx_extension_helper (c=0x8a527e8, con=0x0, context=0x8a52a58 "outgoing", exten=0x8a52aa8 "141", priority=11, label=0x0, callerid=0x8a4b0a0 "1001", action=E_SPAWN, found=0xb6fa...
2006 Jun 16
8
DO NOT REPLY [Bug 3845] New: Add --remove-source-files
...Let's have a --remove-source-files option that works like --remove-sent-files but removes from the source everything in the file list, not just transferred files. Then I could use rsync for my primary move command (via a wrapper called "mv2") as well as my primary copy command ("cp2"). -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact.