search for: quiet

Displaying 20 results from an estimated 4122 matches for "quiet".

2010 Nov 22
2
New 'quiet' behavior - optional?
Syslinux version 3.74 introduced the following change (I know, old news really) -> Suppress the Loading ... message if "quiet" is specified on the kernel command line. Unfortunately, for our PXELinux environment this was a very unwanted change. The linux command line parameter 'quiet' is included and passed to linux because we want (and in cases absolutely require) that the kernel be booted in quiet mode....
2015 May 09
1
PATCH: library(..., quietly=TRUE) still outputs "Loading required package: ..." (forgot to pass down 'quietly')
Calling library(..., quietly=TRUE) may still output: Loading required package: <other pkg> in some cases, e.g. > library("R.utils", quietly=TRUE) Loading required package: R.methodsS3 [...] I traced this to base:::.getRequiredPackages2(), which forgets to pass 'quietly' to an internal librar...
2009 Sep 12
1
[PATCH] Let MEMDISK honor the quiet append option
When you add "quiet" to the append line, Syslinux doesn't display the file reading progress anymore. When you use this option to boot an image with MEMDISK, you still get a lot of text. ========================== LABEL mydisk LINUX memdisk INITRD mydisk.img APPEND raw quiet ========================== The fo...
2010 Jan 21
3
cross validation function translated from stata
...=========== First is stata code. forvalues i=1(1)200 { local event="cancer" local predictors1 = "total_psa" local predictors2 = "total_psa free_psa" local prediction1 = "base" local prediction2 = "full" g `prediction1'=. g `prediction2'=. quietly g u = uniform() sort `event' u g set = mod(_n, 10) + 1 forvalues j=1(1)10{ quietly logit `event' `predictors1' if set~=`j' quietly predict ptemp if set==`j' quietly replace `prediction1' = ptemp if set==`j' drop ptemp quietly logit `event' `predictors2' if s...
2009 Aug 16
2
Quiet in append
I understand that the action of pxelinux has changed so that when "quiet" is specified in append you no longer see the progress of the kernel and init image download. My question is, is it possible to have pxelinux be verbose (ie: show progress), but then pass quiet to the linux kernel so it is quiet. I run a downstream project that uses pxelinux and I wanted to...
2005 Sep 12
1
Boot process slow with rhgb quiet on
If I boot with "rhgb quiet" off, my computer boots in 1 minute and 30 seconds. If I boot with "rhgb quiet" on, my computer boots in 3m11s. That's a long time to wait. Significantly, when booting with "rhgb quiet", right at the moment X takes over, there is a 1m36s pause where the screen is b...
2019 Jul 23
2
quiet namespace load is noisy
Dear R-devel, Consider the following clip (in R version 3.6.0, Windows): > requireNamespace("ggplot2", quietly = TRUE) Registered S3 methods overwritten by 'ggplot2': method from [.quosures rlang c.quosures rlang print.quosures rlang It seems to me that if one specifies 'quietly = TRUE', then messages about S3 method overrides should be quieted...
2005 Mar 22
3
X100P voicemail volume too low (quiet)
Hello, I'm running Asterisk 1.0.6 with zaptel 1.0.6 on Gentoo Linux with a 2.6.11-gentoo-r2 SMP kernel (but no SMP hardware) and mpg123 0.59s-r9. When I leave a voicemail message via my X100P, the message is way too quiet. I can barely hear it. I googled this a bit, and I saw similar complaints with older versions, but no resolutions. Also, many complained that it was only too quiet via email, but checking the message via SIP was OK. This isn't the case for me. It's just too quiet all around. However, if I...
2008 Jan 19
6
Quiet Backtrace in RSpec
I''m using RSpec on Rails and would like to clean up the backtraces, so I went looking for an RSpec equivalent to ThoughtBot''s Quiet Backtrace gem<http://thoughtbot.com/projects/quietbacktrace>. I found Spec::Runner::QuietBacktraceTweaker in the RDOCS, but I can''t figure out how to use it. Can I add something to spec_helper.rb that will utilize Spec::Runner::QuietBacktraceTweaker to quiet the backtraces? ---------...
2016 Jul 20
1
[PATCH] v2v: make virsh command quiet if v2v is quiet (RHBZ#1358142)
Pass -q to virsh if virt-v2v was run with -q, to reduce its output in quiet mode. Unfortunately this does not currently work in virsh as it should, see RHBZ#1358179, so only after that bug is fixed this change can actually take effect. --- v2v/output_libvirt.ml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/v2v/output_libvirt.ml...
2016 Dec 08
2
require(..., quietly=TRUE) does not suppress warning
Hi, The `quietly` argument of `require` is documented as follows: quietly: a logical. If ?TRUE?, no message confirming package attaching is printed, and most often, no errors/warnings are printed if package attaching fails. However: > require(foo, quietly=TRUE) Warning message: In libr...
2016 Dec 06
0
system2 fails with quiet=TRUE, but runs through with quiet=FALSE
Hi, I have recently tried to check the test coverage using library("covr") and, interestingly, the command > covr::package_coverage() fails, while > covr::package_coverage(quiet = FALSE) runs through without problem. I traced the problem to a call to utils::install.packages(), where the option quiet is passed on. In utils::install.packages(), the problem seems to lie in the following call of system2(): output <- if (quiet) FALSE else "" [...] sta...
2019 Jun 19
2
libvirtd does not update VM .xml configuration on filesystem after virsh blockcommit
...OK on Fedora 29 KVM hosts! 0. XML configurations before snapshot is taken (all good, nothing found) [root@server1 ~]# cat /etc/libvirt/qemu/somedomain.com.ncloud.xml| grep BACK [root@server1 ~]# cat /etc/libvirt/qemu/somedomain.com.ncloud.xml| grep backingStore [root@server1 ~]# /usr/bin/virsh --quiet dumpxml somedomain.com.ncloud|grep BACK [root@server1 ~]# /usr/bin/virsh --quiet dumpxml somedomain.com.ncloud|grep backingStore [root@server1 ~]# /usr/bin/virsh --quiet dumpxml --inactive somedomain.com.ncloud|grep BACK [root@server1 ~]# /usr/bin/virsh --quiet dumpxml --inactive somedomain.com...
2007 Jan 03
6
Any quiet 24 port POE switches out there?
I have an upcoming install which places the switch close to some employees in a quiet work environment. Can anyone recommend a quiet 24 port POE switch? The Linksys SRW224P behind me right now would be objectionable, I'm sure. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070103/b...
2019 Jul 23
2
[External] Re: quiet namespace load is noisy
...in my vignettes, so I will seek > some other workaround. > > > > Russ > > > > Sent from my iPhone > > > >> On Jul 23, 2019, at 1:32 AM, Lionel Henry <lionel at rstudio.com> wrote: > >> > >> Hello, > >> > >> I think `quietly` should only silence normal masking messages > >> intended for users and providing information about normal > >> behaviour, such as masking. This is not the case here as the > >> message is about overriding of S3 methods, which has global > >> effect and is ra...
2019 Jul 23
2
[External] Re: quiet namespace load is noisy
...llation and that will help. But basically I don?t ever want these kinds of messages to appear in my vignettes, so I will seek some other workaround. Russ Sent from my iPhone > On Jul 23, 2019, at 1:32 AM, Lionel Henry <lionel at rstudio.com> wrote: > > Hello, > > I think `quietly` should only silence normal masking messages > intended for users and providing information about normal > behaviour, such as masking. This is not the case here as the > message is about overriding of S3 methods, which has global > effect and is rather problematic. It may change beha...
2013 Feb 17
1
RELENG_8: amdtemp module and newer CPUs not working. MFC?
Hello, I'm running FreeBSD 8.3-stable on a machine with an AMD A8-5600K cpu. tingo at kg-quiet$ uname -a FreeBSD kg-quiet.kg4.no 8.3-STABLE FreeBSD 8.3-STABLE #2: Fri Jan 4 19:18:15 CET 2013 root at kg-quiet.kg4.no:/usr/obj/usr/src/sys/GENERIC amd64 tingo at kg-quiet$ dmesg | grep CPU | head -1 CPU: AMD A8-5600K APU with Radeon(tm) HD Graphics (3618.02-MHz K8-class CPU) Unfortunat...
2016 Dec 08
1
require(..., quietly=TRUE) does not suppress warning
...--- Original Message ----- > From: "John P. Nolan" <jpnolan at american.edu> > To: "Dan Tenenbaum" <dtenenba at fredhutch.org>, "R-devel" <r-devel at r-project.org> > Sent: Thursday, December 8, 2016 12:37:02 PM > Subject: RE: require(..., quietly=TRUE) does not suppress warning > Well, it says "most often" no errors/warnings are given, so it is not > contradicting the docs! It looks like the person/team that coded require( ) > decided you should get an error when the package doesn't exist. > > If you want...
2006 Dec 27
1
how to suppress a "loading required package: ..." message
Hi, how to suppress a "loading required package:... " message? Kind regards Jaci --
2015 May 15
0
[PATCH 3/4] ocaml tools: Use global variables to store trace (-x) and verbose (-v) flags.
.../builder.ml b/builder/builder.ml index 7e18065..260281c 100644 --- a/builder/builder.ml +++ b/builder/builder.ml @@ -73,15 +73,14 @@ let main () = let mode, arg, arch, attach, cache, check_signature, curl, delete_on_failure, format, gpg, list_format, memsize, - network, ops, output, quiet, size, smp, sources, sync, - trace, verbose = + network, ops, output, quiet, size, smp, sources, sync = parse_cmdline () in (* Timestamped messages in ordinary, non-debug non-quiet mode. *) let msg fs = make_message_function ~quiet fs in (* If debugging, echo the command lin...