search for: adhere

Displaying 20 results from an estimated 625 matches for "adhere".

2011 Feb 12
1
[LLVMdev] Stricter adherence to coding standards in LLVM?
...istently put the space after, some files put it before, while some files use one convention for parameters, and a different convention for member variables and local variables. Within a single file, the usage is pretty consistent, so you know that the people who wrote the code were really trying to adhere to a standard. Now, common wisdom for open source projects is that inconsistent legacy formatting is left alone, and new code adheres to whatever style is used in nearby code. Otherwise it creates difficulty for people who want to compare revisions in the source control. Occasionally there is a ne...
2011 Jun 16
1
Scatter plot produces "'x' and 'y' lengths differ"
...e some scatter plots. I have syntax for 26 plots, and 22 of them display as they should. But here, for example, is a sample of the command syntax I am using: good <- complete.cases(affect1,adh1scr) plot (jitter(affect1,2.0),jitter(adh1scr,1.0),xlim=c(1,35),ylim=c(1,35),pch=1 6, main='Adherence Score by Affectiveness Level - Visit 1', ylab='Adherence score',xlab='Affect Scale - Patient Survey',abline(lsfit(affect1,adh1scr)),col="red") lines(lowess(affect1[good], adh1scr[good]), col="blue") I run this and get: > good <- complete.ca...
2019 Aug 02
0
Re: libvirt/dnsmasq is not adhering to static DHCP assignments
On 8/1/19 4:21 AM, Christian Kujau wrote: > This is basically a continuation of an older posting[0] I found, but > apparently no solution has been posted. So, I'm trying to setup static > DHCP leases with dnsmasq that is being started by libvirtd: > > > ----------------------------------------------------------- > $ sudo virsh net-dumpxml --network default >
2015 Apr 08
0
[PATCH 04/10] Use AC_CONFIG_LIBOBJ_DIR and AC_REPLACE_FUNCS to adhere to autoconf standards
--- configure.ac | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 2d638fc..58d0843 100644 --- a/configure.ac +++ b/configure.ac @@ -17,6 +17,10 @@ LDFLAGS=${LDFLAGS-""} AC_CANONICAL_HOST +dnl define the directory for replacement function since AC_LIBOBJ does not +dnl officially support subdirs and fails with
2017 Oct 30
0
Re: libvirt/dnsmasq is not adhering to static DHCP assignments
Please check the dnsmasq hostsfile, should have all the records there: # cat /var/lib/libvirt/dnsmasq/osc_mgmt.hostsfile 52:54:00:2c:85:92,192.168.80.1,openstack-controller-00 52:54:00:e2:4b:25,192.168.80.2,openstack-database-00 52:54:00:50:91:04,192.168.80.3,openstack-keystone-00 52:54:00:fe:5b:36,192.168.80.7,openstack-rabbitmq-00 52:54:00:95:ca:bd,192.168.80.5,openstack-glance-00 -------
2017 Oct 31
1
Re: libvirt/dnsmasq is not adhering to static DHCP assignments
Hi, It looks like that's the issue: # cat /var/lib/libvirt/dnsmasq/osc_mgmt.hostsfile 52:54:00:2c:85:92,192.168.80.1,openstack-controller-00 But it makes me wonder...libvirt should be generating and managing this file right? Do I need to edit this myself or should libvirt be updating this file? If so then why isn't it? On Mon, Oct 30, 2017 at 5:21 AM, Yalan Zhang
2000 Apr 28
4
problem need help
I've installed the openss* rpm's from metalab.unc.edu/pub/Linux/distributions/redhat/contrib/libc6/i386 on a redhat 6.2 system. sshd is running but refuses all connections from all hosts including localhost. The client reports debug: Connection established. ssh_exchange_identification: Connection closed by remote host debug: Calling cleanup 0x8056160(0x0)
2019 Aug 01
2
libvirt/dnsmasq is not adhering to static DHCP assignments
This is basically a continuation of an older posting[0] I found, but apparently no solution has been posted. So, I'm trying to setup static DHCP leases with dnsmasq that is being started by libvirtd: ----------------------------------------------------------- $ sudo virsh net-dumpxml --network default <network> [...] <dns enable='no'/> <ip
2019 Feb 04
2
Variable names rule
On 2/4/2019 2:29 PM, Tim Northover via llvm-dev wrote: > On Mon, 4 Feb 2019 at 20:21, JD Jones <jjones at prc-hsv.com> wrote: >> If _<lowerCaseLetter> violates a standard, please say which one. It does not violate the C++11 standard: > > If strictly adhered to, it doesn't, and I've never claimed any > different. But coding standards are never strictly adhered to. > Particularly not in a codebase like LLVM which already has a good > handful in play for historical reasons. We can't expect reviewers to > be perfect either, and vi...
2011 Apr 15
3
[PATCHv3] libxl: Exposed Flask XSM functionality
Adds support for assigning a label to domains, obtaining and setting the current enforcing mode, and loading a policy with xl command and libxl header when the Flask XSM is in use. Adheres to the changes made by the patch to remove exposure of libxenctrl/libxenstore headers via libxl.h. tools/libxl/libxl_flask.c | 71 ++++++++++++++++++ tools/libxl/Makefile | 2 tools/libxl/libxl.c | 1 tools/libxl/libxl.h | 8 ++ tools/libxl/libxl.idl...
2003 Nov 17
2
UNIX paths vs UNC names in [profile]
...en - yet it seemed to work. QUESTION My question therefore is this - I have multiple /home/subdomain directories, like /home/disk1 /home/disk2 /home/backupdisk3b ... etc How do I store the profile in the users home dir. My rationale is that as all of my OSX users, and Unix/Linux users have to adhere to a quota - I'd rather force my windows users to adhere to the same quota by storing their profile in /home/disk?/user/profile and I could do that using \\%L\%U\profile. Now one solution is to apply the quote to say /var/lib/samba/profile/%U but I'd rather keep the profile in or off o...
2018 Aug 23
7
conflicted: an alternative conflict resolution strategy
...order in which packages are attached. - A number of packages provide a function that appears to conflict with a function in a base package, but they follow the superset principle (i.e. they only extend the API, as explained to me by Herv? Pages). conflicted assumes that packages adhere to the superset principle, which appears to be true in most of the cases that I?ve seen. For example, the lubridate package provides `as.difftime()` and `date()` which extend the behaviour of base functions, and provides S4 generics for the set operators. conflict_scout(c(&...
2019 Feb 04
2
Variable names rule
If _<lowerCaseLetter> violates a standard, please say which one. It does not violate the C++11 standard: •Reserved in any scope, including for use as implementation macros: •identifiers beginning with an underscore followed immediately by an uppercase letter •identifiers containing adjacent underscores (or "double underscore") •Reserved in the global namespace: •identifiers
2009 May 27
1
RFC 3501 section 7
...running. My previous email server when talking IMAP to Apple Mail, will eventually go "deaf" and new messages will not make it to the Inbox of Apple Mail Client. A restart of the desktop application is required. I am told that the reason for this is that my current email server adheres to RFC 3501, specifically section 7, the second paragraph of which says: The client MUST be prepared to accept any response at all times. Apparently, Apple Mail is not adhering to that, and my email server is sending out that type of response. However, I look at this list, for which I...
2024 Feb 01
1
Request: Add XDG Base Directory paths as fallback locations
Hello. I'd like to preface this by saying that while this can be considered a feature request, I am more than happy to contribute a patch myself that would deliver this. I am aware that in the past there has been some hostility towards the suggestion to adhere to the XDG Base Directory Specification for OpenSSH and its various configuration files. For the record, I am not asking for any of the paths to change, nor for the removal of the traditional ~/.ssh directory; I understand that many people still expect this directory to exist for most conventional...
2017 Oct 30
2
libvirt/dnsmasq is not adhering to static DHCP assignments
Given the following network configuration: =========== <network> <name>osc_mgmt</name> <uuid>d93fe709-14ae-4a0e-8989-aeaa8c76c513</uuid> <forward mode='route'/> <bridge name='osc_mgmt' stp='on' delay='0'/> <mac address='52:54:00:3f:fe:10'/> <ip address='192.168.80.254'
2007 Jun 27
2
Meta-Analysis of proportions
Dear colleagues, I'm conducting a meta-analysis of studies evaluating adherence of HIV-positive drug users into AIDS treatment, therefore I'm looking for some advice and syntax suggestion for running the meta-regression using proportions, not the usual OR/RR frequently used on RCT studies. Have already searched already several handbooks, R-manuals, mailing lists, profe...
2010 Aug 18
4
Linux should be as easy as Windows
...lem. A shift in thinking is required. That should say : "Open source and Free software should be as easy as Windows" In this way we allow someone running BSD, Solaris or some port of Debian to an old Dec AlphaServer will have the same level of functionality provided standards are adhered to. Once programmers begin to see everything in the light of Linux then we can also kiss goodbye the opportunity for portability to other OS types. Dennis
2019 Feb 04
2
Variable names rule
...2/4/2019 2:29 PM, Tim Northover via llvm-dev wrote: > > On Mon, 4 Feb 2019 at 20:21, JD Jones <jjones at prc-hsv.com> wrote: > >> If _<lowerCaseLetter> violates a standard, please say which one. It > does not violate the C++11 standard: > > > > If strictly adhered to, it doesn't, and I've never claimed any > > different. But coding standards are never strictly adhered to. > > Particularly not in a codebase like LLVM which already has a good > > handful in play for historical reasons. We can't expect reviewers to > > be pe...
2005 Mar 05
2
maptools, filename writing shapefiles
Hi, I meet a strange trouble writing shapefiles with write.pointShape() from maptools. > write.pointShape(mylines[,5:9], file="Sxtplinshp", mycoordspt) Error in write.pointShape(mylines[, 5:9], file = "Sxtplinshp", mycoordspt) : shapefile names must conform to the 8.3 format It seems that the function request a special shapefile name spelling (conformed to 8.3