search for: reconcil

Displaying 20 results from an estimated 244 matches for "reconcil".

Did you mean: reconcile
2012 Sep 18
1
Windows 7 Clients Slow/Unresponsive with some file types
...desktop, the file will open up in a few seconds. This is most noticable with files in sizes over a few megabytes. Quickbooks. Logging into the Quickbooks file can take longer than normal, upwards of 30 seconds, instead of 5 or fewer seconds. Once in, the application operates normally, until a reconcile action is taken. What happens is that the reconcile action goes through, but the application appears to be processing the reconcile for an inordinate amount of time. This has been left sitting for upwards of 10 to 15 minutes without returning control to the user. Killing the application and then r...
2010 Dec 23
1
Reconcile Random Samples
Is there a way to generate identical random samples using R's runif function and SAS's ranuni function? I have assigned the same seed values in both software packages, but the following results show different results. Thanks! R === > set.seed(6) > random <- runif(10) > random [1] 0.6062683 0.9376420 0.2643521 0.3800939 0.8074834 0.9780757 0.9579337 [8] 0.7627319 0.5096485
2010 Dec 16
6
two cents or not two cents
...ns (like Firefox, Thunderbird, Opera etc) depend on and which wont install unless the libraries are also newer versions? But is that what it means -- ie that those infrastructural libraries (libpango, libcairo etc) are continuously updateable to fairly recent versions? If so, the problem is in reconciling that meaning with the reputation of CentOS to only support older versions of applications (eg Firefox-1.5, Thunderbird-1.0 etc). It does reconcile, of course, if the implications are merely that the CentOS user must compile and install the later versions of such applications from source, ra...
2011 Jun 03
0
How to reconcile Kalman filter result (by package dlm) with linear regression?
  Hello All,   I am working with dlm for the purpose of estimating and forecasting with a Kalman filter model. I have succesfully set up the model and started generating results. Of course, I need to somehow be sure that the results make sense. Without any apparent target to compare with, my natural selection is the results by odinary least square. The idea being that if I choose a diffuse prior,
2003 Jul 08
4
Call Accounting
Why doesn't the CDR show outgoing numbers? I need a record of outbound digits dialed to reconcile my phone bills. __________________________________ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com
2007 Jan 30
2
Comments on Billing reconcillation with providers
Hi, I just want out find out how to do bill recon's when you send calls to a provider. They send me their CDR's, and when I compare it to my * CDR's, some calls are 1 second off, either way. How in general is it done by others? -- thanks, Yusuf
2008 Jun 12
1
How do you reconcile foreign keys for forms?
Hi all, I''m looking to resolve foreign keys for forms -- similar to the way "streamlined" does it. Although the actual value stored in an object is the foreign key integer, I''d like the actual name of the item displayed. I''m *sure* it''s easy. Thoughts? Regards. --~--~---------~--~----~------------~-------~--~----~ You received this message because
2006 Jun 05
4
Swap memory: I can't reconcile this stuff.
...501 11080 4248 1912 0.5 6832 cupsd Note that the summary line says 160k of swap is used. The man pages say the summary and the details under "SWAP" are both reported in "k". No mention of "m" is made, I presume that it means "megabytes"? If so, I can't reconcile what I'm seeing. Free seems to support the summary lines. total used free... Mem: 775708 764772 10936... -/+ buffers/cache: 326584 449124 Swap: 1572856 160 1572696 Cat of /proc/meminfo also seems to support the summary lines. S...
2002 Apr 22
10
How To Fix Duplication Block Error?
...sses Pass 1B: Rescan for duplicate/bad blocks /:Duplicate/bad block(s) in inode 52:/: 1661/: /:Duplicate/bad block(s) in inode 53:/: 1662/: /:Duplicate/bad block(s) in inode 71:/: 1662/: /:Duplicate/bad block(s) in inode 74:/: 1661/: /Pass 1C: Scan directories for inodes with dup blocks /:Pass 1D: Reconciling duplicate blocks /:(There are 4 inodes containing duplicate/bad blocks) /:File /root/.gnome/session/ (inode #74, mod time Sun Apr 21 12:48:48 2002) has 1 duplicate blocks), shared with 1 file(s): /: /root/.gnome/panel.d/default/Applet_4.desktop (inode #52, mod time Sun Apr 21 10:02:00 200...
2020 Jun 05
2
Advanced Codec Negotiation: Need info and uses cases
Greetings All, We've been working hard on new codec negotiation stuff for Asterisk 18 and we've got some stuff to run by you. It's a lot so please read carefully. To give you some idea of just how difficult a job this is, a simple call from Alice to Bob currently causes 8 attempts to reconcile codecs between them in app_dial, chan_pjsip, res_pjsip_session and res_pjsip_sdp_rtp. If you've noticed a recent addition of a SCOPE_TRACE facility for Asterisk being committed, this was the driver. It was also very enlightening. So we're trying to simplify things a little. Well, a lot...
2013 Aug 01
0
[LLVMdev] PNaCl Bitcode reference manual
...o more lowering of illegal types (like i128 or i17) and other things within the LLVM IR layer, and the proposal was roundly rejected by the LLVM community: http://lists.cs.uiuc.edu/pipermail/llvmdev/2013-April/061567.html PNaCl is essentially doing what my proposal described. How do you expect to reconcile the community's desire to avoid doing lowering on LLVM IR with PNaCl's design that is built on doing lowering on LLVM IR? Dan On Tue, Jul 30, 2013 at 3:11 PM, Eli Bendersky <eliben at google.com> wrote: > Hello, > > Following an earlier email ( > http://lists.cs.uiuc....
2012 Mar 09
4
round giving different results on Windows and Mac
Dear all, I have been running some tests of my package RSiena on different platforms and trying to reconcile the results. With Mac, the commands options(digits=4) round(1.81652, digits=4) print 1.817 With Windows, the same commands print 1.816 I am not bothered which answer I get, but it would be nice if they were the same. A linux box agreed with the Mac. Mac sessionInfo(): R version 2.14.2 (2012...
2019 Dec 11
2
IR inline assembly: the x86 Intel "offset" operator
...inline assembly is in Intel dialect, this expands as "Bar" in AT&T syntax or "dword ptr [Bar]" in Intel syntax. If the inline assembly is in AT&T dialect, it expands as "$Bar" in AT&T syntax or "offset Bar" in Intel syntax. I'd like to try to reconcile this, but I haven't been able to track down where inline-assembly operands are expanded yet... anyone know where I should be looking? On Tue, Dec 10, 2019 at 7:23 PM Reid Kleckner <rnk at google.com> wrote: > I think perhaps we want to make this LLVM IR asm string: > call void...
2013 Mar 22
4
[LLVMdev] proposed change to class BasicTTI
Just realized that BasicTransformInfoClass is an immutable pass. Not sure how to reconcile this with fact that there will be different answers needed depending on the subtarget. Seems like BasicTansformInfoClass should become a function pass that does not modify anything. On 03/22/2013 09:43 AM, Reed Kotler wrote: > Another way to do this would to be to have a reset virtual func...
2011 Feb 01
2
[LLVMdev] Convenience methods in ConstantExpr et al
...oundsGetElementPtr getInBoundsGetElementPtr It would be nice if ConstantExpr's GEP-building methods used the same naming convention and had the same convenience methods as IRBuilder. (In fact, the naming convention between IRBuilder and the various Constants.h classes desperately needs to be reconciled, a point which I am sure everyone is painfully aware of.) Another thing I'd like to see is for ConstantArray::get(), ConstantStruct::get() and ConstantVector::get() to have an overload that takes an iterator pair like IRBuilder's CreateGEP and CreateCall methods. Also useful for creating...
2019 Jul 23
2
errors restoring samba
...root # group: root user::rwx group::r-x group:bind:r-x mask::r-x other::--- RESTORE: # file: samba/private # owner: root # group: root user::rwx group::r-x other::--- The bad news is everything under sysvol has the same problem. So I have over a hundred of permissions discrepancies to manually reconcile before I can attempt another roll back :( And, moving forward, I need to modify Bacula backup parameters.
2010 Nov 09
5
Changes made to main.c on implementing real time Rsync
Hi, All, I am implementing real-time Rsync on Windows 2008 system. I set up Rsync server and Rsync client on two machines. An windows service is watching all the Windows file events with FileSystemWatcher. However, the service cannot tell the exactly what happened to folders such as create, delete, or modified. So, I ignored folder event, and only catch file changing events. After I catch
2009 Jun 23
5
Merging Irregular Time Series With NAs
...r time series, which are of different lengths and being and end at different times. For the common subset of time that they both span, they should have the same values, but the values may occur at slightly different time intervals. I am trying to "line up" the identical values and reconcile them. I have merged the two series into a zoo object which looks like the following: > head(m) aq$mid d2$mid 2009-06-22 16:25:40.044 NA 1.63755 2009-06-22 16:25:40.909 1.63760 NA 2009-06-22 16:25:40.987 NA 1.63760 2009-06-22 16:25:41.657 1.63755 NA 2009-06-22 16:25:41.738 NA 1.63755 2009-06-...
2010 Sep 20
2
interpreting one-way anova tables
Hi, I am trying to reconcile anova table in R (summary(lm)) with individual t.test. datafilename="http://personality-project.org/R/datasets/R.appendix1.data" data.ex1=read.table(datafilename,header=T) #read the data into a table summary(lm(Alertness~Dosage,data=data.ex1)) gives: Call: lm(formula = Alertness ~ Do...
2014 Apr 16
2
[LLVMdev] RFC: Binary format for instrumentation based profiling data
...rote: > We need to settle of a file format ASAP for our internal work, but from > the perspective of the LLVM community, it makes sense to me that this > should remain wide open to change, at least until it goes out in an > open-source LLVM release. Ok, I don't really know how to reconcile this. Is it fine to make breaking, backwards incompatible changes to the file format in the coming months or not? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140416/099cb0fb/attachment.html>