search for: reckon

Displaying 20 results from an estimated 560 matches for "reckon".

2008 Jun 13
2
Warhammer Online - Age of Reckoning
http://www.warhammeronline.com/ Anyone else awaiting the release of this game as eagerly as I am? Heres hoping it will function well in wine :P
2013 Aug 16
2
bugs closed by xen 4.3 release in svn
waldi, I reckon you can close at least the following with the new release. Ian. diff --git a/xen/debian/changelog b/xen/debian/changelog index e5b25ef..fc3f161 100644 --- a/xen/debian/changelog +++ b/xen/debian/changelog @@ -2,14 +2,15 @@ xen (4.3.0-1) UNRELEASED; urgency=low [ Bastian Blank ] * New upst...
2011 Jul 13
0
[LLVMdev] [Frustration] API breakage
...release doc when > breaking the frigging API is the Right Thing To Do and shouldn't take that > long, when done when the change is fresh in memory. I regularly make small API-breaking changes in the name of cleaning things up. Sorry! I'd be happy to update the release notes if folks reckon this is the right thing to do. Would it just mean adding a <ul> to the (currently empty) list in docs/ReleaseNotes.html#api_changes ? Jay.
2007 Jul 16
2
Computing window sizes and adjustments
In SSHv2, the data that consumes window space is that sent in the channel data and channel data extended messages. My question is, how is the data that consumes window space reckoned? One would have thought that it is the total length of the message itself, but the standard seems to imply that only the data contained in the data string field in the messages above is to be taken into account. That is, things like eg the padding and HMAC fields do not consume window space....
2016 Sep 29
3
LLVM Virtual Machine
...he LLVM, >> please let me have the virtual machine link to download if there is any. >> > > I don't know of anybody who has set up a VM to test LLVM. I think having a > VM image with pre-compiled LLVM and all the dependencies would indeed be a > useful thing. > > I reckon that vagrant init ubuntu/xenial64 would be a good start; LLVM > should build fine on recent Linuxes. > Hmm. If that's what is wanted, there's this: https://github.com/d11wtq/llvm-docker A little old now, but could be undated. -------------- next part -------------- An HTML attachme...
2011 Jul 13
4
[LLVMdev] [Frustration] API breakage
Hi all, I know this issue has been discussed over and over again, but I'd like to voice my opinion while 3.0 is still fairly early-ish in the pipeline. So the issue is... API breakage. I understand and agree with the rationale why, namely faster development. But this principle should mean that for each breakage, the dude who makes the breakage should accompany the final commit (or something
2013 Aug 16
0
bugs closed by xen 4.3 release in svn
On Fri, 2013-08-16 at 15:12 +0100, Ian Campbell wrote: > waldi, > > I reckon you can close at least the following with the new release. > > Ian. > > diff --git a/xen/debian/changelog b/xen/debian/changelog > index e5b25ef..fc3f161 100644 > --- a/xen/debian/changelog > +++ b/xen/debian/changelog > @@ -2,14 +2,15 @@ xen (4.3.0-1) UNRELEASED; urgency=...
2015 Aug 06
2
backing up IMAP server on a hard drive
Hi, I am trying to back up my IMAP server to a hard drive. Later I intend to extract all mails for attachments. What do you reckon is the best too to perform this ? Imapsync or Thunderbird (or something else, please recommend) One problem I am having with imapsync is the setting for host2 (being a localhost computer). How does one set a parameter for host2 being a desktop computer. Thanks Kevin
2017 May 08
3
Re: nwfilter and address of network ip address
...> address in the filter? > >There is a pre-defined parameter for the VM's own IP address: > > http://libvirt.org/formatnwfilter.html#nwfelemsRulesAdvIPAddrDetection > >but we don't have anything for the host's IP address. We could fairly >easily add it though I reckon - eg provide a HOST_IP parameter. Thanks Daniel. >Regards, >Daniel
2010 Aug 31
5
Yes it is a dimensioning question! Atom CPU
I am looking for pros and cons on the Intel Atom cpu. Has anybody been using these in production? I am looking at an Atom D510 (dual core 1.6GHz, 1M cache) to run maybe 25 to 30 extensions, 4 or 5 calls at once(maybe as high as 7 simultaneous calls), g729 all the way through except voicemail will be wav format for email purposes(requirement). I will be tying 3 of these together to route
2015 May 05
2
Mapping other Inbox method (symlink vs ACL)
Hi, I am trying to map a account(bob at mydomain.com) to help at mydomain.com. I would like him to see/access Inbox,Sent,Junk,Trash of help at mydomain.com . What would you reckon would be the best way to do this? ACL or Symlink? With symlink, I dont think I will be able to set permissions. Is it possible to use ACL to get the entire email account access(the inbox, junk, sent etc.)?
2009 Jun 18
2
Fixing ogg vorbis corruption caused by bad metadata
On 6/18/09, Conrad Parker <conrad at metadecks.org> wrote: > This sounds like it needs a new tool specifically for fixing broken > Ogg files. I see two solutions: 1) the new vcut which I reckon will fix the problem since it has to split and rebuild the audio in a new Ogg 2) an Hex editor, even if just to check what's wrong in the metadata section -Ivo
2008 Feb 13
3
Header packet multiplicity
...t; field like that might be enough. I do know at start, and I have such a field too. However, I was concerned about the RTP streaming case, where packets may be lost, and the "other" container case, where they have to be concatenated (and thus one needs a way to walk past them easily). I reckon I'll just add a "header length" to headers past the first one, and maybe on data packets as well. I'm not clear at all on what would happen when not in Ogg, I need to think more about this case. Cheers
2005 Apr 22
2
[LLVMdev] Optional Target Builds
...nerators for > the current build host > -- "c", "x86", "ppc", ... : build only the code generators for the > named targets (hmm, maybe '--enable-target' is better..). > > If that's what you meant, it sounds good to me... but I reckon > Reid gets to have a say, too :). Yeah, that's pretty much exactly it, with one exception. I was planning to *always* build the CBackend and Skeleton targets. Both are pretty fast to build and it gives LLVM *some* kind of target to fall back on. Given that, we might also want to have an o...
2020 Sep 08
2
[RFC] [DebugInfo] Using DW_OP_entry_value within LLVM IR
...e in https://reviews.llvm.org/D87233 is good -- although dropping the variable location there is largely because of SelectionDAGs own limitations rather than the generated code. We can't describe arguments that aren't used because they're not copied to a virtual register. In general, I reckon entry values will be a key part of recovering variable locations, however I'm not sure that there are many places where it's truly necessary in LLVM-IR. deadargelim is definitely one of them; but even then, the Argument remains in the function signature. We're still able to refer to the...
2015 Aug 06
2
backing up IMAP server on a hard drive
...On Thursday, August 6, 2015, Rick Romero <rick at havokmon.com> wrote: > Quoting Kevin Laurie <superinterstellar at gmail.com>: > > Hi, >> I am trying to back up my IMAP server to a hard drive. Later I intend to >> extract all mails for attachments. What do you reckon is the best too to >> perform this ? >> >> Imapsync or Thunderbird (or something else, please recommend) >> >> One problem I am having with imapsync is the setting for host2 (being a >> localhost computer). >> How does one set a parameter for host2 being a...
2014 Aug 31
3
Bug#577788: dom0 kernels should suggest irqbalance
...el doesn't do any balancing by itself (any more, it did use to). Looking on my laptop for instance I see that all interrupts are going to CPU0 out of the 4 processes. On the other hand my workstation does seem to have balanced IRQs despite having no irqbalanced running, so I don't know. I reckon the kernel probably should recommend irqbalance these days, but in any case there is no reason for Xen to do something different (since IRQ balancing should work as on native). Ian.
2010 Dec 20
2
Sine Regression in R
...By trial and error I also detemined that the sensibel value for d is 1/58. I have 366 days of data and want to fit a single sine onto it. *First question*: 1/ 58 = (2 pi) / 366. I guess 366 is the period of my data, I have 366 days. so *d = (2 pi) / Period*. Is this correct. *Second question*: I reckon that all of this looks very DIY. Is there a better way to do this in R? Maybe through a package I dont know? Thanks in advance Paolo [[alternative HTML version deleted]]
2012 Aug 29
4
troubleshooting resource collection
...hostname $ipaddress ":} } I can see it echoes the host key of the host the puppet agent runs on. But the /etc/ssh/ssh_known_hosts file isn''t actually written - I can add an sshkey resource "manually" in a manifest somewhere and then puppet does write the file though. I reckon when compiling the catalog, Puppet doesn''t actually use the collected resource to include in another host''s configuration. But why not? -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the w...
2013 Apr 08
3
[LLVMdev] Integer divide by zero
...ver" is a constant expression). > > > Ah, that's super interesting. I'll have to give it some more thought. Thanks for > this, Duncan. > > My knee-jerk reaction is that emulating hardware behaviour in software should be > avoided. At least in this specific case. I reckon it shouldn't be too hard to teach the code generators to turn this IR sequence into "y = target-divide whatever/x" on targets for which dividing by 0 traps in a satisfactory way, so it turns into something efficient. Ciao, Duncan.