Displaying 12 results from an estimated 12 matches for "l238".
Did you mean:
238
2015 Dec 04
2
virsh attach device equivalent in libvirt API
Hi,
Is there an equivalent of "virsh attach-device -live -persistent " within libvirt API :
virDomainAttachDevice() or virDomainAttachDeviceFlags() or ???
Thanks for help.
Regards,
J.P. Ribeauville
P: +33.(0).1.47.17.20.49
.
Puteaux 3 Etage 5 Bureau 4
jpribeauville@axway.com<mailto:jpribeauville@axway.com>
http://www.axway.com<http://www.axway.com/>
P
2019 May 24
2
imap userdb Fatal setuid errors
...://trac.macports.org/ticket/58506>
Code at https://github.com/dovecot/core/blob/master/src/lib/restrict-access.c <https://github.com/dovecot/core/blob/master/src/lib/restrict-access.c>:
https://github.com/dovecot/core/blob/863887d4272f962926ab279ac4cf37855dd2008d/src/lib/restrict-access.c#L238-L256 <https://github.com/dovecot/core/blob/863887d4272f962926ab279ac4cf37855dd2008d/src/lib/restrict-access.c#L238-L256>
https://github.com/dovecot/core/blob/863887d4272f962926ab279ac4cf37855dd2008d/src/lib/restrict-access.c#L342-L346 <https://github.com/dovecot/core/blob/863887d4272f96292...
2015 Dec 04
0
Re: virsh attach device equivalent in libvirt API
...ille wrote:
> Hi,
>
> Is there an equivalent of "virsh attach-device -live
> -persistent" within libvirt API :
Use the source, Luke! You can see exactly how virsh implements the
attach-device command:
https://github.com/libvirt/libvirt/blob/master/tools/virsh-domain.c#L238
--
Lars Kellogg-Stedman <lars@redhat.com> | larsks @ {freenode,twitter,github}
Cloud Engineering / OpenStack | http://blog.oddbit.com/
2016 Apr 20
0
Cannot Run On The Command Line
$ R
/usr/bin/R: line 238: /usr/lib64/R/etc/ldpaths: Permission denied
$ rpm -q R
R-3.2.3-2.fc23.x86_64
That /usr/bin/R#L238 is:
. "${R_HOME}/etc${R_ARCH}/ldpaths"
I noticed the error began bursting shortly after I ran dnf update.
An excerpt from dnf's transaction logs:
$ dnf history info <ID>
Upgraded setroubleshoot-3.3.5-2.fc23.x86_64 @updates
Upgrade 3.3.5-3.fc23.x86_64...
2014 Jun 11
1
Setting the transfer threshold voltage on a TrippLite OMNI900LCD
At the company I work for, we are using many TrippLite OMNI900LCD UPSs and
are having difficulty setting the lower transfer threshold voltage. On our
other model, the Eaton MGE-3S550, this can be set using upsrw to set the
input.transfer.lowsetting, but on the Omni900, this option is not
available. In our testing, it defaults to ~95v but we want to set it to 84v.
More info:
- OS = OpenSuse 13.1
-
2016 Jun 25
2
strange behavior in 'inherits' check for loaded S4 object
Hi,
(sorry for the wall of text; the issue here appears to be rather complicated)
I'm seeing a somewhat strange case where checking whether an S4 object
inherits from a parent class defined from another package with
'inherits' fails if that object is materialized through a call to
'load'. That's a mouthful, so I've put together a relatively small
reproducible example
2016 Jul 29
2
strange behavior in 'inherits' check for loaded S4 object
...> https://github.com/wch/r-source/blob/trunk/src/library/methods/R/SClasses.R#L255
>
> Note that we reach this code path as the S3 class cache has not been
> populated yet; ie, this code returns NULL:
>
> https://github.com/wch/r-source/blob/trunk/src/library/methods/R/SClasses.R#L238-L240
>
> So, the class hierarchy is looked up using this code:
>
> if(isTRUE(nzchar(package))) {
> whereP <- .requirePackage(package)
> value <- get0(cname, whereP, inherits = inherits)
> }
>
> However, because the '.__C__SubMatrix' obj...
2016 Jul 29
0
strange behavior in 'inherits' check for loaded S4 object
...de
eventually gets us here:
https://github.com/wch/r-source/blob/trunk/src/library/methods/R/SClasses.R#L255
Note that we reach this code path as the S3 class cache has not been
populated yet; ie, this code returns NULL:
https://github.com/wch/r-source/blob/trunk/src/library/methods/R/SClasses.R#L238-L240
So, the class hierarchy is looked up using this code:
if(isTRUE(nzchar(package))) {
whereP <- .requirePackage(package)
value <- get0(cname, whereP, inherits = inherits)
}
However, because the '.__C__SubMatrix' object is only made available
in the package&...
2016 Jul 31
2
strange behavior in 'inherits' check for loaded S4 object
.../trunk/src/library/methods/R/SClasses.R#L255
>>>
>>> Note that we reach this code path as the S3 class cache
>>> has not been populated yet; ie, this code returns NULL:
>>>
>>> https://github.com/wch/r-source/blob/trunk/src/library/methods/R/SClasses.R#L238-L240
>>>
>>> So, the class hierarchy is looked up using this code:
>>>
>>> if(isTRUE(nzchar(package))) { whereP <-
>>> .requirePackage(package) value <- get0(cname, whereP,
>>> inherits = inherits) }
>>>
>>> However, b...
2016 Jul 30
0
strange behavior in 'inherits' check for loaded S4 object
.../trunk/src/library/methods/R/SClasses.R#L255
>>
>> Note that we reach this code path as the S3 class cache
>> has not been populated yet; ie, this code returns NULL:
>>
>> https://github.com/wch/r-source/blob/trunk/src/library/methods/R/SClasses.R#L238-L240
>>
>> So, the class hierarchy is looked up using this code:
>>
>> if(isTRUE(nzchar(package))) { whereP <-
>> .requirePackage(package) value <- get0(cname, whereP,
>> inherits = inherits) }
>>
>> However, b...
2020 Feb 06
2
Why is lldb telling me "variable not available"?
...quot; object. But, looking at the
IR in test.ll lines 221-238, the 'llvm.dbg.value' intrinsic is being
used to denote the location of the values, which I think should allow
lldb to print the correct values:
https://gist.github.com/modocache/670bc38e5a5ea2e0a3d6bafe8ea9c693#file-test-ll-L221-L238
The 'llvm.dbg.value' intrinsics reference metadata in slots !659 and
!668, and these seem correct to me as well:
```
!659 = !DILocalVariable(name: "i", scope: !660, file: !5, line: 24, type: !130)
!668 = !DILocalVariable(name: "j", scope: !660, file: !5, line: 32, type...
2016 Aug 02
0
strange behavior in 'inherits' check for loaded S4 object
.../methods/R/SClasses.R#L255
>>>>
>>>> Note that we reach this code path as the S3 class cache
>>>> has not been populated yet; ie, this code returns NULL:
>>>>
>>>> https://github.com/wch/r-source/blob/trunk/src/library/methods/R/SClasses.R#L238-L240
>>>>
>>>> So, the class hierarchy is looked up using this code:
>>>>
>>>> if(isTRUE(nzchar(package))) { whereP <-
>>>> .requirePackage(package) value <- get0(cname, whereP,
>>>> inherits = inherits) }
>>>>...