@@ -27,7 +27,7 @@ msgid ""
27
27
msgstr ""
28
28
"Project-Id-Version : Python 3.13\n "
29
29
"Report-Msgid-Bugs-To : \n "
30
- "POT-Creation-Date : 2024-05-11 18:37 +0000\n "
30
+ "POT-Creation-Date : 2024-05-17 14:15 +0000\n "
31
31
"PO-Revision-Date : 2021-06-28 01:10+0000\n "
32
32
"
Last-Translator :
Adorilson Bezerra <[email protected] >, 2024\n "
33
33
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -5656,33 +5656,36 @@ msgstr ":ref:`Disponibilidade <availability>`: Linux >= 2.6.30"
5656
5656
5657
5657
#: ../../library/os.rst:3866
5658
5658
msgid "Timer File Descriptors"
5659
- msgstr ""
5659
+ msgstr "Descritores de arquivo de temporizador "
5660
5660
5661
5661
#: ../../library/os.rst:3870
5662
5662
msgid ""
5663
5663
"These functions provide support for Linux's *timer file descriptor* API. "
5664
5664
"Naturally, they are all only available on Linux."
5665
5665
msgstr ""
5666
+ "Essas funções fornecem suporte para a API de *descritores de arquivo de "
5667
+ "temporizador*."
5666
5668
5667
5669
#: ../../library/os.rst:3875
5668
5670
msgid "Create and return a timer file descriptor (*timerfd*)."
5669
- msgstr ""
5671
+ msgstr "Cria e retorna um descritor de arquivo de temporizador (*timerfd*). "
5670
5672
5671
5673
#: ../../library/os.rst:3877
5672
5674
msgid "The file descriptor returned by :func:`timerfd_create` supports:"
5673
5675
msgstr ""
5676
+ "O descritor de arquivo retornado por :func:`timerfd_create` implementa:"
5674
5677
5675
5678
#: ../../library/os.rst:3879
5676
5679
msgid ":func:`read`"
5677
- msgstr ""
5680
+ msgstr ":func:`read` "
5678
5681
5679
5682
#: ../../library/os.rst:3880
5680
5683
msgid ":func:`~select.select`"
5681
- msgstr ""
5684
+ msgstr ":func:`~select.select` "
5682
5685
5683
5686
#: ../../library/os.rst:3881
5684
5687
msgid ":func:`~select.poll`"
5685
- msgstr ""
5688
+ msgstr ":func:`~select.poll` "
5686
5689
5687
5690
#: ../../library/os.rst:3883
5688
5691
msgid ""
@@ -5692,30 +5695,40 @@ msgid ""
5692
5695
"converted to an :class:`int` by ``int.from_bytes(x, byteorder=sys."
5693
5696
"byteorder)``."
5694
5697
msgstr ""
5698
+ "O método :func:`read` do descritor de arquivo pode ser chamado com um buffer "
5699
+ "de tamanho 8. Se o temporizador já expirou uma ou mais vezes,:func:`read` "
5700
+ "retorna o número de vezes que o descritor expirou com a extremidade do "
5701
+ "hospedeiro, que pode ser convertido para um :class:`int` com ``int."
5702
+ "from_bytes(x, byteorder=sys.byteorder)``. "
5695
5703
5696
5704
#: ../../library/os.rst:3888
5697
5705
msgid ""
5698
5706
":func:`~select.select` and :func:`~select.poll` can be used to wait until "
5699
5707
"timer expires and the file descriptor is readable."
5700
5708
msgstr ""
5709
+ ":func:`~select.select` e :func:`~select.poll` pode ser usado para esperar "
5710
+ "até que o temporizador expire e o descritor de arquivo possa ser lido."
5701
5711
5702
5712
#: ../../library/os.rst:3891
5703
5713
msgid ""
5704
5714
"*clockid* must be a valid :ref:`clock ID <time-clock-id-constants>`, as "
5705
5715
"defined in the :py:mod:`time` module:"
5706
5716
msgstr ""
5717
+ "*clockid* deve ser um :ref:`ID de relógio <time-clock-id-constants>` válido, "
5718
+ "conforme definido no módulo :py:mod:`time`:"
5707
5719
5708
5720
#: ../../library/os.rst:3894
5709
5721
msgid ":const:`time.CLOCK_REALTIME`"
5710
- msgstr ""
5722
+ msgstr ":const:`time.CLOCK_REALTIME` "
5711
5723
5712
5724
#: ../../library/os.rst:3895
5713
5725
msgid ":const:`time.CLOCK_MONOTONIC`"
5714
- msgstr ""
5726
+ msgstr ":const:`time.CLOCK_MONOTONIC` "
5715
5727
5716
5728
#: ../../library/os.rst:3896
5717
5729
msgid ":const:`time.CLOCK_BOOTTIME` (Since Linux 3.15 for timerfd_create)"
5718
5730
msgstr ""
5731
+ ":const:`time.CLOCK_BOOTTIME` (A partir de Linux 3.15 para timerfd_create)"
5719
5732
5720
5733
#: ../../library/os.rst:3898
5721
5734
msgid ""
@@ -5724,34 +5737,48 @@ msgid ""
5724
5737
"updated. To cancel timer when system clock is changed, see :const:"
5725
5738
"`TFD_TIMER_CANCEL_ON_SET`."
5726
5739
msgstr ""
5740
+ "Se *clockid* é :const:`time.CLOCK_REALTIME`, é usado um relógio em tempo "
5741
+ "real definido em todo o sistema. Se o relógio do sistema muda, a "
5742
+ "configuração do temporizador precisa ser atualizado. Para cancelar o "
5743
+ "temporizador quando o relógio do sistema é alterado, veja :const:"
5744
+ "`TFD_TIMER_CANCEL_ON_SET`."
5727
5745
5728
5746
#: ../../library/os.rst:3903
5729
5747
msgid ""
5730
5748
"If *clockid* is :const:`time.CLOCK_MONOTONIC`, a non-settable monotonically "
5731
5749
"increasing clock is used. Even if the system clock is changed, the timer "
5732
5750
"setting will not be affected."
5733
5751
msgstr ""
5752
+ "Se *clockid* é :const:`time.CLOCK_MONOTONIC`, é usado um relógio "
5753
+ "monotonicamente não estável. Mesmo se o relógio do sistema é alterado, a "
5754
+ "configuração do temporizador não será afetada."
5734
5755
5735
5756
#: ../../library/os.rst:3907
5736
5757
msgid ""
5737
5758
"If *clockid* is :const:`time.CLOCK_BOOTTIME`, same as :const:`time."
5738
5759
"CLOCK_MONOTONIC` except it includes any time that the system is suspended."
5739
5760
msgstr ""
5761
+ "Se *clockid* é :const:`time.CLOCK_BOOTTIME`, é idêntica a :const:`time."
5762
+ "CLOCK_MONOTONIC` exceto por incluir qualquer tempo que o sistema está "
5763
+ "suspenso."
5740
5764
5741
5765
#: ../../library/os.rst:3910
5742
5766
msgid ""
5743
5767
"The file descriptor's behaviour can be modified by specifying a *flags* "
5744
5768
"value. Any of the following variables may used, combined using bitwise OR "
5745
5769
"(the ``|`` operator):"
5746
5770
msgstr ""
5771
+ "O comportamento do descritor de arquivo pode ser modificado especificando um "
5772
+ "valor para *flags*. Qualquer um dos seguintes valores pode ser usado, "
5773
+ "combinadas usando OU bit a bit (o operador ``|``):"
5747
5774
5748
5775
#: ../../library/os.rst:3914
5749
5776
msgid ":const:`TFD_NONBLOCK`"
5750
- msgstr ""
5777
+ msgstr ":const:`TFD_NONBLOCK` "
5751
5778
5752
5779
#: ../../library/os.rst:3915
5753
5780
msgid ":const:`TFD_CLOEXEC`"
5754
- msgstr ""
5781
+ msgstr ":const:`TFD_CLOEXEC` "
5755
5782
5756
5783
#: ../../library/os.rst:3917
5757
5784
msgid ""
@@ -5760,20 +5787,27 @@ msgid ""
5760
5787
"there hasn't been an expiration since the last call to read, :func:`read` "
5761
5788
"raises :class:`OSError` with ``errno`` is set to :const:`errno.EAGAIN`."
5762
5789
msgstr ""
5790
+ "Se :const:`TFD_NONBLOCK` não está definido como um sinalizador, :func:`read` "
5791
+ "bloqueia até o temporizador expirar. Se está definido como um sinalizador, :"
5792
+ "func:`read` não bloqueia, mas se não expirou desde a última chamada, :func:"
5793
+ "`read` levanta :class:`OSError` com ``errno`` definido como :const:`errno."
5794
+ "EAGAIN`."
5763
5795
5764
5796
#: ../../library/os.rst:3923
5765
5797
msgid ":const:`TFD_CLOEXEC` is always set by Python automatically."
5766
- msgstr ""
5798
+ msgstr ":const:`TFD_CLOEXEC` é sempre definido pelo Python automaticamente. "
5767
5799
5768
5800
#: ../../library/os.rst:3925
5769
5801
msgid ""
5770
5802
"The file descriptor must be closed with :func:`os.close` when it is no "
5771
5803
"longer needed, or else the file descriptor will be leaked."
5772
5804
msgstr ""
5805
+ "O descritor de arquivo deve ser fechado com :func:`os.close` quando não é "
5806
+ "mais necessário, caso contrário o descritor de arquivo será vazado."
5773
5807
5774
5808
#: ../../library/os.rst:3928
5775
5809
msgid "The :manpage:`timerfd_create(2)` man page."
5776
- msgstr ""
5810
+ msgstr "A página man :manpage:`timerfd_create(2)`. "
5777
5811
5778
5812
#: ../../library/os.rst:3937
5779
5813
msgid ""
0 commit comments