lexa_fitriyahoo.com8860, lihat postingan baru dari k3ykitchen, medantalk, meglabridal dan lainnya

2018-10-31 Thread Instagram via freebsd-doc


___
freebsd-doc@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-doc
To unsubscribe, send any mail to "freebsd-doc-unsubscr...@freebsd.org"


[Bug 211618] dtruss man page missing

2018-10-31 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211618

--- Comment #8 from commit-h...@freebsd.org ---
A commit references this bug:

Author: yuripv
Date: Wed Oct 31 15:29:26 UTC 2018
New revision: 339956
URL: https://svnweb.freebsd.org/changeset/base/339956

Log:
  dtrace(1): remove reference to dtruss that was removed from base
  system in r300226.

  PR:   211618
  Reviewed by:  gnn, markj, 0mp
  Approved by:  kib (mentor, implicit)
  Differential Revision:https://reviews.freebsd.org/D17762

Changes:
  head/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-doc@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-doc
To unsubscribe, send any mail to "freebsd-doc-unsubscr...@freebsd.org"


[Bug 211618] dtruss man page missing

2018-10-31 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=211618

Yuri Pankov  changed:

   What|Removed |Added

   Assignee|b...@freebsd.org|yur...@freebsd.org
 Status|New |In Progress
 CC||yur...@freebsd.org

--- Comment #9 from Yuri Pankov  ---
With dtruss reference removed from dtrace(1), it looks like there are no other
actionable items for this PR.  OK to close?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-doc@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-doc
To unsubscribe, send any mail to "freebsd-doc-unsubscr...@freebsd.org"


[Bug 232852] ps(1): Improve the exit status section of the manual page

2018-10-31 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=232852

Mateusz Piotrowski <0...@freebsd.org> changed:

   What|Removed |Added

   Keywords||needs-patch
Product|Base System |Documentation
Version|CURRENT |Latest
 CC||d...@freebsd.org
  Component|bin |Manual Pages

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
freebsd-doc@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-doc
To unsubscribe, send any mail to "freebsd-doc-unsubscr...@freebsd.org"


[PATCH] Add missing parenthesis to csqrt.3

2018-10-31 Thread Steve Kargl
The patch at the end of this email adds a missing ')'.

What is concerning is this somewhat dubious sentence
in the Results section:

  The square root of 0 is +0 ± 0, where the imaginary parts
  of the input and respective result have the same sign.

csqrt((0.0,0.0)) = (0.0,0.0)
csqrt((0.0,-0.0)) = (0.0,-0.0)
csqrt((-0.0,0.0)) = (0.0,0.0)
csqrt((-0.0,-0.0)) = (0.0,-0.0)

It seems the sentence should be 

  The square root of ±0 ± 0I is +0 ± 0I, where the imaginary parts
  of the input and respective result have the same sign.


Index: csqrt.3
===
--- csqrt.3 (revision 339978)
+++ csqrt.3 (working copy)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 30, 2008
+.Dd October 31, 2018
 .Dt CSQRT 3
 .Os
 .Sh NAME
@@ -78,7 +78,7 @@
 .Pp
 For numbers with negative imaginary parts, the above special cases
 apply given the identity:
-.Dl csqrt(conj(z) = conj(sqrt(z))
+.Dl csqrt(conj(z)) = conj(sqrt(z))
 Note that the sign of \*(Na is indeterminate.
 Also, if the real or imaginary part of the input is finite and
 an \*(Na is generated, an invalid exception will be thrown.


-- 
Steve
___
freebsd-doc@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-doc
To unsubscribe, send any mail to "freebsd-doc-unsubscr...@freebsd.org"


Re: [PATCH] Add missing parenthesis to csqrt.3

2018-10-31 Thread Steve Kargl
On Wed, Oct 31, 2018 at 04:50:43PM -0700, Steve Kargl wrote:
> The patch at the end of this email adds a missing ')'.
> 

Minor update.  The rhs should have csqrt instead of sqrt.

Index: csqrt.3
===
--- csqrt.3 (revision 339978)
+++ csqrt.3 (working copy)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 30, 2008
+.Dd October 31, 2018
 .Dt CSQRT 3
 .Os
 .Sh NAME
@@ -78,7 +78,7 @@
 .Pp
 For numbers with negative imaginary parts, the above special cases
 apply given the identity:
-.Dl csqrt(conj(z) = conj(sqrt(z))
+.Dl csqrt(conj(z)) = conj(csqrt(z))
 Note that the sign of \*(Na is indeterminate.
 Also, if the real or imaginary part of the input is finite and
 an \*(Na is generated, an invalid exception will be thrown.

-- 
Steve
___
freebsd-doc@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-doc
To unsubscribe, send any mail to "freebsd-doc-unsubscr...@freebsd.org"