1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
|
# French translation of manpages
# This file is distributed under the same license as the manpages-l10n package.
# Copyright © of this file:
# Christophe Blaess <https://www.blaess.fr/christophe/>, 1996-2003.
# Stéphan Rafin <stephan.rafin@laposte.net>, 2002.
# Thierry Vignaud <tvignaud@mandriva.com>, 1999, 2002.
# François Micaux, 2002.
# Alain Portal <aportal@univ-montp2.fr>, 2003-2008.
# Jean-Philippe Guérard <fevrier@tigreraye.org>, 2005-2006.
# Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>, 2006-2007.
# Julien Cristau <jcristau@debian.org>, 2006-2007.
# Thomas Huriaux <thomas.huriaux@gmail.com>, 2006-2008.
# Nicolas François <nicolas.francois@centraliens.net>, 2006-2008.
# Florentin Duneau <fduneau@gmail.com>, 2006-2010.
# Simon Paillard <simon.paillard@resel.enst-bretagne.fr>, 2006.
# Denis Barbier <barbier@debian.org>, 2006, 2010, 2012.
# David Prévot <david@tilapin.org>, 2010, 2012.
# Cédric Boutillier <cedric.boutillier@gmail.com>, 2013.
# Jean-Philippe MENGUAL <jpmengual@debian.org>, 2020
msgid ""
msgstr ""
"Project-Id-Version: perkamon\n"
"POT-Creation-Date: 2024-06-01 06:09+0200\n"
"PO-Revision-Date: 2023-07-03 16:46+0200\n"
"Last-Translator: Jean-Philippe MENGUAL <jpmengual@debian.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Lokalize 22.12.3\n"
#. type: TH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "pow"
msgstr "pow"
#. type: TH
#: archlinux debian-unstable opensuse-tumbleweed
#, no-wrap
msgid "2024-05-02"
msgstr "2 mai 2024"
#. type: TH
#: archlinux debian-unstable
#, no-wrap
msgid "Linux man-pages 6.8"
msgstr "Pages du manuel de Linux 6.8"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "NAME"
msgstr "NOM"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "pow, powf, powl - power functions"
msgstr "pow, powf, powl — Fonctions puissance"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "LIBRARY"
msgstr "BIBLIOTHÈQUE"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "Math library (I<libm>, I<-lm>)"
msgstr "Bibliothèque de math (I<libm>, I<-lm>)"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SYNOPSIS"
msgstr "SYNOPSIS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "B<#include E<lt>math.hE<gt>>\n"
msgstr "B<#include E<lt>math.hE<gt>>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"B<double pow(double >I<x>B<, double >I<y>B<);>\n"
"B<float powf(float >I<x>B<, float >I<y>B<);>\n"
"B<long double powl(long double >I<x>B<, long double >I<y>B<);>\n"
msgstr ""
"B<double pow(double >I<x>B<, double >I<y>B<);>\n"
"B<float powf(float >I<x>B<, float >I<y>B<);>\n"
"B<long double powl(long double >I<x>B<, long double >I<y>B<);>\n"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Feature Test Macro Requirements for glibc (see B<feature_test_macros>(7)):"
msgstr ""
"Exigences de macros de test de fonctionnalités pour la glibc (consulter "
"B<feature_test_macros>(7)) :"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<powf>(), B<powl>():"
msgstr "B<powf>(), B<powl>() :"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
" _ISOC99_SOURCE || _POSIX_C_SOURCE E<gt>= 200112L\n"
" || /* Since glibc 2.19: */ _DEFAULT_SOURCE\n"
" || /* glibc E<lt>= 2.19: */ _BSD_SOURCE || _SVID_SOURCE\n"
msgstr ""
" _ISOC99_SOURCE || _POSIX_C_SOURCE\\ E<gt>=\\ 200112L\n"
" || /* Depuis la glibc 2.19 : */ _DEFAULT_SOURCE\n"
" || /* glibc E<lt>= 2.19 : */ _BSD_SOURCE || _SVID_SOURCE\n"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "DESCRIPTION"
msgstr "DESCRIPTION"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "These functions return the value of I<x> raised to the power of I<y>."
msgstr "Ces fonctions renvoient la valeur de I<x> élevée à la puissance I<y>."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "RETURN VALUE"
msgstr "VALEUR RENVOYÉE"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"On success, these functions return the value of I<x> to the power of I<y>."
msgstr ""
"En cas de réussite, ces fonctions renvoient la valeur de I<x> élevée à la "
"puissance I<y>."
#. The range error is generated at least as far back as glibc 2.4
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If the result overflows, a range error occurs, and the functions return "
"B<HUGE_VAL>, B<HUGE_VALF>, or B<HUGE_VALL>, respectively, with the "
"mathematically correct sign."
msgstr ""
"En cas de dépassement pour le résultat, une erreur d'intervalle se produit "
"et les fonctions renvoient respectivement B<HUGE_VAL>, B<HUGE_VALF> ou "
"B<HUGE_VALL>, avec le bon signe mathématique."
#. #-#-#-#-# archlinux: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. POSIX.1 does not specify the sign of the zero,
#. but https://www.sourceware.org/bugzilla/show_bug.cgi?id=2678
#. points out that the zero has the wrong sign in some cases.
#. type: Plain text
#. #-#-#-#-# debian-bookworm: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. POSIX.1 does not specify the sign of the zero,
#. but http://sources.redhat.com/bugzilla/show_bug.cgi?id=2678
#. points out that the zero has the wrong sign in some cases.
#. type: Plain text
#. #-#-#-#-# debian-unstable: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. POSIX.1 does not specify the sign of the zero,
#. but https://www.sourceware.org/bugzilla/show_bug.cgi?id=2678
#. points out that the zero has the wrong sign in some cases.
#. type: Plain text
#. #-#-#-#-# fedora-40: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. POSIX.1 does not specify the sign of the zero,
#. but https://www.sourceware.org/bugzilla/show_bug.cgi?id=2678
#. points out that the zero has the wrong sign in some cases.
#. type: Plain text
#. #-#-#-#-# fedora-rawhide: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. POSIX.1 does not specify the sign of the zero,
#. but https://www.sourceware.org/bugzilla/show_bug.cgi?id=2678
#. points out that the zero has the wrong sign in some cases.
#. type: Plain text
#. #-#-#-#-# mageia-cauldron: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. POSIX.1 does not specify the sign of the zero,
#. but https://www.sourceware.org/bugzilla/show_bug.cgi?id=2678
#. points out that the zero has the wrong sign in some cases.
#. type: Plain text
#. #-#-#-#-# opensuse-leap-15-6: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. POSIX.1 does not specify the sign of the zero,
#. but https://www.sourceware.org/bugzilla/show_bug.cgi?id=2678
#. points out that the zero has the wrong sign in some cases.
#. type: Plain text
#. #-#-#-#-# opensuse-tumbleweed: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. POSIX.1 does not specify the sign of the zero,
#. but https://www.sourceware.org/bugzilla/show_bug.cgi?id=2678
#. points out that the zero has the wrong sign in some cases.
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If result underflows, and is not representable, a range error occurs, and "
"0.0 with the appropriate sign is returned."
msgstr ""
"En cas de soupassement (« underflow ») pour le résultat, et qu'il ne peut "
"pas être représenté, une erreur d'intervalle se produit et B<0.0> est "
"renvoyé avec le signe approprié."
#. pow(\(+-0, <0 [[odd]]) = HUGE_VAL*
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is +0 or -0, and I<y> is an odd integer less than 0, a pole error "
"occurs and B<HUGE_VAL>, B<HUGE_VALF>, or B<HUGE_VALL>, is returned, with the "
"same sign as I<x>."
msgstr ""
"Si I<x> vaut B<+0> ou B<-0> et I<y> est un nombre entier impair négatif, une "
"erreur de pôle se produit et B<HUGE_VAL>, B<HUGE_VALF> ou B<HUGE_VALL> est "
"renvoyé avec le même signe que I<x>."
#. pow(\(+-0, <0 [[!odd]]) = HUGE_VAL*
#. The pole error is generated at least as far back as glibc 2.4
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is +0 or -0, and I<y> is less than 0 and not an odd integer, a pole "
"error occurs and +B<HUGE_VAL>, +B<HUGE_VALF>, or +B<HUGE_VALL>, is returned."
msgstr ""
"Si I<x> vaut B<+0> ou B<-0> et I<y> est négatif et pas un nombre impair, une "
"erreur de pôle se produit et +B<HUGE_VAL>, +B<HUGE_VALF> ou +B<HUGE_VALL> "
"est renvoyé."
#. pow(\(+-0, >0 [[odd]]) = \(+-0
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is +0 (-0), and I<y> is an odd integer greater than 0, the result is "
"+0 (-0)."
msgstr ""
"Si I<x> vaut B<+0> (resp. -0) et I<y> est un nombre entier impair positif, "
"le résultat est B<+0> (resp. -0)."
#. pow(\(+-0, >0 [[!odd]]) = +0
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is 0, and I<y> greater than 0 and not an odd integer, the result is "
"+0."
msgstr ""
"Si I<x> est nul et I<y> positif et n'est pas un nombre entier impair, le "
"résultat est B<+0>."
#. pow(-1, \(+-INFINITY) = 1.0
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is -1, and I<y> is positive infinity or negative infinity, the "
"result is 1.0."
msgstr ""
"Si I<x> vaut B<-1> et I<y> est une valeur infinie positive ou négative, le "
"résultat est 1,0."
#. pow(+1, y) = 1.0
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "If I<x> is +1, the result is 1.0 (even if I<y> is a NaN)."
msgstr "Si I<x> vaut B<+1>, le résultat est 1,0 (même si I<y> est un NaN)."
#. pow(x, \(+-0) = 1.0
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "If I<y> is 0, the result is 1.0 (even if I<x> is a NaN)."
msgstr "Si I<y> est nul, le résultat est 1,0 (même si I<x> est un NaN)."
#. pow(<0, y) = NaN
#. The domain error is generated at least as far back as glibc 2.4
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is a finite value less than 0, and I<y> is a finite noninteger, a "
"domain error occurs, and a NaN is returned."
msgstr ""
"Si I<x> est une valeur finie négative et I<y> un nombre fini non entier, une "
"erreur de domaine se produit et un NaN est renvoyé."
#. pow(|x|<1, -INFINITY) = INFINITY
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If the absolute value of I<x> is less than 1, and I<y> is negative infinity, "
"the result is positive infinity."
msgstr ""
"Si la valeur absolue de I<x> est inférieure à B<1> et I<y> est une valeur "
"infinie négative, le résultat est l'infini positif."
#. pow(|x|>1, -INFINITY) = +0
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If the absolute value of I<x> is greater than 1, and I<y> is negative "
"infinity, the result is +0."
msgstr ""
"Si la valeur absolue de I<x> est supérieure à B<1> et I<y> est une valeur "
"infinie négative, le résultat est B<+0>."
#. pow(|x|<1, INFINITY) = +0
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If the absolute value of I<x> is less than 1, and I<y> is positive infinity, "
"the result is +0."
msgstr ""
"Si la valeur absolue de I<x> est inférieure à B<1> et I<y> est une valeur "
"infinie positive, le résultat est B<+0>."
#. pow(|x|>1, INFINITY) = INFINITY
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If the absolute value of I<x> is greater than 1, and I<y> is positive "
"infinity, the result is positive infinity."
msgstr ""
"Si la valeur absolue de I<x> est supérieure à B<1> et I<y> est une valeur "
"infinie positive, le résultat est l'infini positif."
#. pow(-INFINITY, <0 [[odd]]) = -0
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is negative infinity, and I<y> is an odd integer less than 0, the "
"result is -0."
msgstr ""
"Si I<x> est une valeur infinie négative et I<y> est un nombre entier impair "
"négatif, le résultat est B<-0>."
#. pow(-INFINITY, <0 [[!odd]]) = +0
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is negative infinity, and I<y> less than 0 and not an odd integer, "
"the result is +0."
msgstr ""
"Si I<x> est une valeur infinie négative et I<y> est négatif et n'est pas un "
"nombre entier impair, le résultat est B<+0>."
#. pow(-INFINITY, >0 [[odd]]) = -INFINITY
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is negative infinity, and I<y> is an odd integer greater than 0, the "
"result is negative infinity."
msgstr ""
"Si I<x> est une valeur infinie négative et I<y> est un nombre entier impair "
"positif, le résultat est l'infini négatif."
#. pow(-INFINITY, >0 [[!odd]]) = INFINITY
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is negative infinity, and I<y> greater than 0 and not an odd "
"integer, the result is positive infinity."
msgstr ""
"Si I<x> est une valeur infinie négative et I<y> est positif et n'est pas un "
"nombre entier impair, le résultat est l'infini positif."
#. pow(INFINITY, <0) = +0
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "If I<x> is positive infinity, and I<y> less than 0, the result is +0."
msgstr ""
"Si I<x> est une valeur infinie positive et I<y> est négatif, le résultat est "
"B<+0>."
#. pow(INFINITY, >0) = INFINITY
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"If I<x> is positive infinity, and I<y> greater than 0, the result is "
"positive infinity."
msgstr ""
"Si I<x> est une valeur infinie positive et I<y> est positif, le résultat est "
"l'infini positif."
#. pow(NaN, y) or pow(x, NaN) = NaN
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Except as specified above, if I<x> or I<y> is a NaN, the result is a NaN."
msgstr ""
"Sauf dans les cas spécifiés ci-dessus, si I<x> ou I<y> est un NaN, le "
"résultat est un NaN."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "ERRORS"
msgstr "ERREURS"
#. #-#-#-#-# archlinux: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. FIXME . review status of this error
#. longstanding bug report for glibc:
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=369
#. For negative x, and -large and +large y, glibc 2.8 gives incorrect
#. results
#. pow(-0.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. pow(-1.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-0.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-1.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. type: Plain text
#. #-#-#-#-# debian-bookworm: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. FIXME . review status of this error
#. longstanding bug report for glibc:
#. http://sources.redhat.com/bugzilla/show_bug.cgi?id=369
#. For negative x, and -large and +large y, glibc 2.8 gives incorrect
#. results
#. pow(-0.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. pow(-1.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-0.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-1.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. type: Plain text
#. #-#-#-#-# debian-unstable: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. FIXME . review status of this error
#. longstanding bug report for glibc:
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=369
#. For negative x, and -large and +large y, glibc 2.8 gives incorrect
#. results
#. pow(-0.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. pow(-1.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-0.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-1.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. type: Plain text
#. #-#-#-#-# fedora-40: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. FIXME . review status of this error
#. longstanding bug report for glibc:
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=369
#. For negative x, and -large and +large y, glibc 2.8 gives incorrect
#. results
#. pow(-0.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. pow(-1.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-0.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-1.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. type: Plain text
#. #-#-#-#-# fedora-rawhide: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. FIXME . review status of this error
#. longstanding bug report for glibc:
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=369
#. For negative x, and -large and +large y, glibc 2.8 gives incorrect
#. results
#. pow(-0.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. pow(-1.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-0.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-1.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. type: Plain text
#. #-#-#-#-# mageia-cauldron: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. FIXME . review status of this error
#. longstanding bug report for glibc:
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=369
#. For negative x, and -large and +large y, glibc 2.8 gives incorrect
#. results
#. pow(-0.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. pow(-1.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-0.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-1.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. type: Plain text
#. #-#-#-#-# opensuse-leap-15-6: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. FIXME . review status of this error
#. longstanding bug report for glibc:
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=369
#. For negative x, and -large and +large y, glibc 2.8 gives incorrect
#. results
#. pow(-0.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. pow(-1.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-0.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-1.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. type: Plain text
#. #-#-#-#-# opensuse-tumbleweed: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. FIXME . review status of this error
#. longstanding bug report for glibc:
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=369
#. For negative x, and -large and +large y, glibc 2.8 gives incorrect
#. results
#. pow(-0.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. pow(-1.5,-DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-0.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-underflow (ERANGE, FE_UNDERFLOW); +0)
#. pow(-1.5,DBL_MAX)=nan
#. EDOM FE_INVALID nan; fail-errno fail-except fail-result;
#. FAIL (expected: range-error-overflow (ERANGE, FE_OVERFLOW); +INF)
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"See B<math_error>(7) for information on how to determine whether an error "
"has occurred when calling these functions."
msgstr ""
"Voir B<math_error>(7) pour savoir comment déterminer si une erreur s'est "
"produite lors de l'appel d'une de ces fonctions."
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "The following errors can occur:"
msgstr "Les erreurs suivantes peuvent se produire :"
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Domain error: I<x> is negative, and I<y> is a finite noninteger"
msgstr "Erreur de domaine : I<x> est négatif et I<y> est un nombre fini non entier"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"I<errno> is set to B<EDOM>. An invalid floating-point exception "
"(B<FE_INVALID>) is raised."
msgstr ""
"I<errno> prend la valeur B<EDOM>. Une exception de virgule flottante non "
"valable (B<FE_INVALID>) est levée."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Pole error: I<x> is zero, and I<y> is negative"
msgstr "Erreur de pôle : I<x> est nul et I<y> est négatif"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"I<errno> is set to B<ERANGE> (but see BUGS). A divide-by-zero floating-"
"point exception (B<FE_DIVBYZERO>) is raised."
msgstr ""
"I<errno> est configuré à la valeur B<ERANGE> (mais consultez la section "
"BOGUES). Une exception de virgule flottante divisée par zéro "
"(B<FE_DIVBYZERO>) est déclenchée."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Range error: the result overflows"
msgstr "Erreur d'intervalle : dépassement pour le résultat"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"I<errno> is set to B<ERANGE>. An overflow floating-point exception "
"(B<FE_OVERFLOW>) is raised."
msgstr ""
"I<errno> est configurée à B<ERANGE>. Une exception de dépassement par le "
"haut de virgule flottante (B<FE_OVERFLOW>) est levée."
#. type: TP
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Range error: the result underflows"
msgstr "Erreur d'intervalle : soupassement (« underflow ») du résultat"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"I<errno> is set to B<ERANGE>. An underflow floating-point exception "
"(B<FE_UNDERFLOW>) is raised."
msgstr ""
"I<errno> prend la valeur B<ERANGE>. Une exception de dépassement par le bas "
"de virgule flottante (B<FE_UNDERFLOW>) est levée."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "ATTRIBUTES"
msgstr "ATTRIBUTS"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"For an explanation of the terms used in this section, see B<attributes>(7)."
msgstr ""
"Pour une explication des termes utilisés dans cette section, consulter "
"B<attributes>(7)."
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Interface"
msgstr "Interface"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Attribute"
msgstr "Attribut"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Value"
msgstr "Valeur"
#. type: tbl table
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ".na\n"
msgstr ".na\n"
#. type: tbl table
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-tumbleweed
#, no-wrap
msgid ".nh\n"
msgstr ".nh\n"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid ""
"B<pow>(),\n"
"B<powf>(),\n"
"B<powl>()"
msgstr ""
"B<pow>(),\n"
"B<powf>(),\n"
"B<powl>()"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Thread safety"
msgstr "Sécurité des threads"
#. type: tbl table
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "MT-Safe"
msgstr "MT-Safe"
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "STANDARDS"
msgstr "STANDARDS"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "C11, POSIX.1-2008."
msgstr "C11, POSIX.1-2008."
#. type: SH
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "HISTORY"
msgstr "HISTORIQUE"
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "C99, POSIX.1-2001."
msgstr "C99, POSIX.1-2001."
#. type: Plain text
#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
#: opensuse-leap-15-6 opensuse-tumbleweed
msgid "The variant returning I<double> also conforms to SVr4, 4.3BSD, C89."
msgstr ""
"La variante renvoyant I<double> est également conforme à SVr4, 4.3BSD et C89."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "BUGS"
msgstr "BOGUES"
#. type: SS
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "Historical bugs (now fixed)"
msgstr "Bogues anciens (maintenant corrigés)"
#
#. https://sourceware.org/bugzilla/show_bug.cgi?id=13932
#. commit c3d466cba1692708a19c6ff829d0386c83a0c6e5
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"Before glibc 2.28, on some architectures (e.g., x86-64) B<pow>() may be "
"more than 10,000 times slower for some inputs than for other nearby inputs. "
"This affects only B<pow>(), and not B<powf>() nor B<powl>(). This problem "
"was fixed in glibc 2.28."
msgstr ""
"Avant la glibc 2.28, sur certaines architectures (par exemple x86-64), "
"B<pow>() peut être plus de 10 000 fois plus lent pour certaines entrées "
"(rares) que pour d'autres peu différentes. Cela ne concerne que B<pow>(), "
"mais ni B<powf>(), ni B<powl>(). Ce problème a été corrigé dans la glibc\\ "
"2.28."
#. #-#-#-#-# archlinux: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=3866
#. type: Plain text
#. #-#-#-#-# debian-bookworm: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. http://sources.redhat.com/bugzilla/show_bug.cgi?id=3866
#. type: Plain text
#. #-#-#-#-# debian-unstable: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=3866
#. type: Plain text
#. #-#-#-#-# fedora-40: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=3866
#. type: Plain text
#. #-#-#-#-# fedora-rawhide: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=3866
#. type: Plain text
#. #-#-#-#-# mageia-cauldron: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=3866
#. type: Plain text
#. #-#-#-#-# opensuse-leap-15-6: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=3866
#. type: Plain text
#. #-#-#-#-# opensuse-tumbleweed: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=3866
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"A number of bugs in the glibc implementation of B<pow>() were fixed in "
"glibc 2.16."
msgstr ""
"Un certain nombre de bogues dans l'implémentation de B<pow> dans la glibc "
"ont été corrigés dans la glibc 2.16."
#
#. #-#-#-#-# archlinux: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=6776
#. or possibly 2.9, I haven't found the source code change
#. and I don't have a 2.9 system to test
#. type: Plain text
#. #-#-#-#-# debian-bookworm: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. http://sources.redhat.com/bugzilla/show_bug.cgi?id=6776
#. or possibly 2.9, I haven't found the source code change
#. and I don't have a 2.9 system to test
#. type: Plain text
#. #-#-#-#-# debian-unstable: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=6776
#. or possibly 2.9, I haven't found the source code change
#. and I don't have a 2.9 system to test
#. type: Plain text
#. #-#-#-#-# fedora-40: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=6776
#. or possibly 2.9, I haven't found the source code change
#. and I don't have a 2.9 system to test
#. type: Plain text
#. #-#-#-#-# fedora-rawhide: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=6776
#. or possibly 2.9, I haven't found the source code change
#. and I don't have a 2.9 system to test
#. type: Plain text
#. #-#-#-#-# mageia-cauldron: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=6776
#. or possibly 2.9, I haven't found the source code change
#. and I don't have a 2.9 system to test
#. type: Plain text
#. #-#-#-#-# opensuse-leap-15-6: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=6776
#. or possibly 2.9, I haven't found the source code change
#. and I don't have a 2.9 system to test
#. type: Plain text
#. #-#-#-#-# opensuse-tumbleweed: pow.3.pot (PACKAGE VERSION) #-#-#-#-#
#. https://www.sourceware.org/bugzilla/show_bug.cgi?id=6776
#. or possibly 2.9, I haven't found the source code change
#. and I don't have a 2.9 system to test
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"In glibc 2.9 and earlier, when a pole error occurs, I<errno> is set to "
"B<EDOM> instead of the POSIX-mandated B<ERANGE>. Since glibc 2.10, glibc "
"does the right thing."
msgstr ""
"Dans la glibc 2.9 et les versions antérieures, si une erreur de pôle "
"survient, I<errno> est positionné à B<EDOM> à la place de la valeur "
"B<ERANGE> spécifiée par POSIX. Depuis la glibc 2.10, le comportement de la "
"glibc est corrigé."
#. Actually, glibc 2.3.2 is the earliest test result I have; so yet
#. to confirm if this error occurs only in glibc 2.3.2.
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid ""
"In glibc 2.3.2 and earlier, when an overflow or underflow error occurs, "
"glibc's B<pow>() generates a bogus invalid floating-point exception "
"(B<FE_INVALID>) in addition to the overflow or underflow exception."
msgstr ""
"Dans la glibc 2.3.2 et antérieures, quand un dépassement ou un soupassement "
"(« underflow ») se produit, B<pow>() génère à tort une exception de virgule "
"flottante non valable (B<FE_INVALID>) en plus de l'exception de dépassement "
"par le haut ou par le bas."
#. type: SH
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
#, no-wrap
msgid "SEE ALSO"
msgstr "VOIR AUSSI"
#. type: Plain text
#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
msgid "B<cbrt>(3), B<cpow>(3), B<sqrt>(3)"
msgstr "B<cbrt>(3), B<cpow>(3), B<sqrt>(3)"
#. type: TH
#: debian-bookworm
#, no-wrap
msgid "2023-02-05"
msgstr "5 février 2023"
#. type: TH
#: debian-bookworm
#, no-wrap
msgid "Linux man-pages 6.03"
msgstr "Pages du manuel de Linux 6.03"
#. type: Plain text
#: debian-bookworm
msgid "C99, POSIX.1-2001, POSIX.1-2008."
msgstr "C99, POSIX.1-2001, POSIX.1-2008."
#. type: Plain text
#: debian-bookworm
msgid "The variant returning I<double> also conforms to SVr4, 4.3BSD."
msgstr "La variante renvoyant I<double> est également conforme à SVr4, 4.3BSD."
#. type: TH
#: fedora-40 fedora-rawhide mageia-cauldron
#, no-wrap
msgid "2023-10-31"
msgstr "31 octobre 2023"
#. type: TH
#: fedora-40 mageia-cauldron
#, no-wrap
msgid "Linux man-pages 6.06"
msgstr "Pages du manuel de Linux 6.06"
#. type: TH
#: fedora-rawhide
#, no-wrap
msgid "Linux man-pages 6.7"
msgstr "Pages du manuel de Linux 6.7"
#. type: TH
#: opensuse-leap-15-6
#, no-wrap
msgid "2023-03-30"
msgstr "30 mars 2023"
#. type: TH
#: opensuse-leap-15-6
#, no-wrap
msgid "Linux man-pages 6.04"
msgstr "Pages du manuel de Linux 6.04"
#. type: TH
#: opensuse-tumbleweed
#, no-wrap
msgid "Linux man-pages (unreleased)"
msgstr "Pages du manuel de Linux (non publiées)"
|