Displaying 17 results from an estimated 17 matches for "19min".
Did you mean:
15min
2019 Jun 19
4
Postgrey not working
...stemctl restart postfix
Now Postgrey seems to be running OK.
$ systemctl status postgrey
? postgrey.service - Postfix Greylisting Service
Loaded: loaded (/usr/lib/systemd/system/postgrey.service; enabled;
vendor preset: disabled)
Active: active (running) since mer. 2019-06-19 09:39:04 CEST; 19min ago
Docs: man:postgrey(8)
Process: 5228 ExecStart=/usr/sbin/postgrey
--unix=/var/spool/postfix/postgrey/socket
--pidfile=/var/run/postgrey.pid --group=postgrey --user=postgrey
--greylist-text=Greylisted for %%s seconds --daemonize $POSTGREY_OPTS
(code=exited, status=0/SUCCESS)
Process: 522...
2017 Feb 16
2
IPv6 broken on Linode
...how it running and does nmcli
> show anything?
>
systemctl status NetworkManager
? NetworkManager.service - Network Manager
Loaded: loaded (/usr/lib/systemd/system/NetworkManager.service;
enabled; vendor preset: enabled)
Active: active (running) since Thu 2017-02-16 08:19:34 UTC; 2h 19min ago
* more stuff *
nmcli
eth0: connected to Wired connection 1
"Red Hat Virtio network device"
ethernet (virtio_net), F2:3C:91:18:8A:7E, hw, mtu 1500
ip4 default, ip6 default
inet4 178.79.185.217/24
route4 178.79.187.246/32
inet6 2a01:7e00::825f:e564:ad53:72fc/64
inet6 fe80::a8ad...
2019 Jun 19
0
Postgrey not working
...ostgrey seems to be running OK.
>
> $ systemctl status postgrey
> ? postgrey.service - Postfix Greylisting Service
> Loaded: loaded (/usr/lib/systemd/system/postgrey.service; enabled;
> vendor preset: disabled)
> Active: active (running) since mer. 2019-06-19 09:39:04 CEST; 19min
> ago
> Docs: man:postgrey(8)
> Process: 5228 ExecStart=/usr/sbin/postgrey
> --unix=/var/spool/postfix/postgrey/socket
> --pidfile=/var/run/postgrey.pid --group=postgrey --user=postgrey
> --greylist-text=Greylisted for %%s seconds --daemonize $POSTGREY_OPTS
> (code=exit...
2019 Jun 19
0
Postgrey not working
...tgrey seems to be running OK.
>
> $ systemctl status postgrey
> ? postgrey.service - Postfix Greylisting Service
> Loaded: loaded (/usr/lib/systemd/system/postgrey.service; enabled;
> vendor preset: disabled)
> Active: active (running) since mer. 2019-06-19 09:39:04 CEST; 19min ago
> Docs: man:postgrey(8)
> Process: 5228 ExecStart=/usr/sbin/postgrey
> --unix=/var/spool/postfix/postgrey/socket
> --pidfile=/var/run/postgrey.pid --group=postgrey --user=postgrey
> --greylist-text=Greylisted for %%s seconds --daemonize $POSTGREY_OPTS
> (code=exited,...
2017 Feb 16
2
IPv6 broken on Linode
...>
>>
>> systemctl status NetworkManager
>> ? NetworkManager.service - Network Manager
>> Loaded: loaded (/usr/lib/systemd/system/NetworkManager.service; enabled;
>> vendor preset: enabled)
>> Active: active (running) since Thu 2017-02-16 08:19:34 UTC; 2h 19min ago
>>
>> * more stuff *
>>
>> nmcli
>> eth0: connected to Wired connection 1
>> "Red Hat Virtio network device"
>> ethernet (virtio_net), F2:3C:91:18:8A:7E, hw, mtu 1500
>> ip4 default, ip6 default
>> i...
2017 Jan 19
3
RFC: Building GlobalISel by default
...obalISel by default. In particular, Renato and I exchanged offline and he tried doing the switch on some of the bots he maintained and did not see any overhead/problem for that.
> Let me know if you disagree.
>
>
> * What is the impact on compile time?
>
> Negligible: ~5s for a 19min build. (See http://lists.llvm.org/pipermail/llvm-dev/2017-January/109185.html <http://lists.llvm.org/pipermail/llvm-dev/2017-January/109185.html> for the details.)
>
>
> * What is the impact on binary size?
>
> Negligible: 0 to 1M on a 37M to 104M. (See http://lists.llvm.org...
2010 Oct 21
0
[LLVMdev] Re : How to assign a constant to a register?
> If x is a local variable, it will be stored on the stack. So you need an
> alloca for it:
Aha, I remember this in Kaleidoscope tutorial. So, after the alloca %x can
be modified freely (e.g. without adding suffix)?
--
View this message in context: http://old.nabble.com/How-to-assign-a-constant-to-a-register--tp29987387p30016496.html
Sent from the LLVM - Dev mailing list archive at
2017 Feb 16
0
IPv6 broken on Linode
...> show anything?
>>
>
> systemctl status NetworkManager
> ? NetworkManager.service - Network Manager
> Loaded: loaded (/usr/lib/systemd/system/NetworkManager.service; enabled;
> vendor preset: enabled)
> Active: active (running) since Thu 2017-02-16 08:19:34 UTC; 2h 19min ago
>
> * more stuff *
>
> nmcli
> eth0: connected to Wired connection 1
> "Red Hat Virtio network device"
> ethernet (virtio_net), F2:3C:91:18:8A:7E, hw, mtu 1500
> ip4 default, ip6 default
> inet4 178.79.185.217/24
>...
2017 Feb 16
2
IPv6 broken on Linode
...nager
>>>> ? NetworkManager.service - Network Manager
>>>> Loaded: loaded (/usr/lib/systemd/system/NetworkManager.service;
>>>> enabled;
>>>> vendor preset: enabled)
>>>> Active: active (running) since Thu 2017-02-16 08:19:34 UTC; 2h 19min
>>>> ago
>>>>
>>>> * more stuff *
>>>>
>>>> nmcli
>>>> eth0: connected to Wired connection 1
>>>> "Red Hat Virtio network device"
>>>> ethernet (virtio_net), F2:3C:91:18:8A:7E,...
2010 Oct 20
3
[LLVMdev] Re : How to assign a constant to a register?
Hi,
If x is a local variable, it will be stored on the stack. So you need an
alloca for it:
%x = alloca i8 ; <i8*>
Then you can just perform a store:
Store i8* %x, i8 0
Cheers,
James
> -----Original Message-----
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
> On Behalf Of leledumbo
> Sent: 20 October 2010 14:39
> To: llvmdev at
2017 Feb 16
0
IPv6 broken on Linode
...ctl status NetworkManager
>>> ? NetworkManager.service - Network Manager
>>> Loaded: loaded (/usr/lib/systemd/system/NetworkManager.service;
>>> enabled;
>>> vendor preset: enabled)
>>> Active: active (running) since Thu 2017-02-16 08:19:34 UTC; 2h 19min
>>> ago
>>>
>>> * more stuff *
>>>
>>> nmcli
>>> eth0: connected to Wired connection 1
>>> "Red Hat Virtio network device"
>>> ethernet (virtio_net), F2:3C:91:18:8A:7E, hw, mtu 1500
>>>...
2017 Jan 25
3
RFC: Building GlobalISel by default
...particular, Renato and I exchanged offline and he tried doing the switch on some of the bots he maintained and did not see any overhead/problem for that.
>> Let me know if you disagree.
>>
>>
>> * What is the impact on compile time?
>>
>> Negligible: ~5s for a 19min build. (See http://lists.llvm.org/pipermail/llvm-dev/2017-January/109185.html <http://lists.llvm.org/pipermail/llvm-dev/2017-January/109185.html> for the details.)
>>
>>
>> * What is the impact on binary size?
>>
>> Negligible: 0 to 1M on a 37M to 104M. (See h...
2017 Feb 16
1
IPv6 broken on Linode
...Manager.service - Network Manager
>>>>>> Loaded: loaded (/usr/lib/systemd/system/NetworkManager.service;
>>>>>> enabled;
>>>>>> vendor preset: enabled)
>>>>>> Active: active (running) since Thu 2017-02-16 08:19:34 UTC; 2h 19min
>>>>>> ago
>>>>>>
>>>>>> * more stuff *
>>>>>>
>>>>>> nmcli
>>>>>> eth0: connected to Wired connection 1
>>>>>> "Red Hat Virtio network device"
>>>...
2017 Feb 16
0
IPv6 broken on Linode
...t;> ? NetworkManager.service - Network Manager
>>>>> Loaded: loaded (/usr/lib/systemd/system/NetworkManager.service;
>>>>> enabled;
>>>>> vendor preset: enabled)
>>>>> Active: active (running) since Thu 2017-02-16 08:19:34 UTC; 2h 19min
>>>>> ago
>>>>>
>>>>> * more stuff *
>>>>>
>>>>> nmcli
>>>>> eth0: connected to Wired connection 1
>>>>> "Red Hat Virtio network device"
>>>>> ethernet (...
2017 Jan 18
3
RFC: Building GlobalISel by default
On Wed, Jan 18, 2017 at 9:13 AM David Blaikie via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> These concerns sound applicable to the situation when GlobalISel is turned
> on by default and has an effect on code generation.
>
> While it's a library with tests like any other LLVM component I don't see
> these concerns as being significantly greater risk than any
2017 Feb 16
3
IPv6 broken on Linode
On 02/16/2017 02:03 AM, James Hogarth wrote:
> On 16 February 2017 at 09:09, Alice Wonder <alice at domblogger.net> wrote:
>> On 02/16/2017 12:54 AM, Tony Mountifield wrote:
>>>
>>> In article <4cbb9dc4-f063-3434-b7a1-d4d0e6581b5e at domblogger.net>,
>>> Alice Wonder <alice at domblogger.net> wrote:
>>>>
>>>>
2017 Jan 14
13
RFC: Building GlobalISel by default
Hi all,
Now, four backends (if I am counting right: X86, ARM, AArch64, AMDGPU) are working on bringing-up GlobalISel, I’d like to switch the default of the LLVM_BUILD_GLOBAL_ISEL variable in CMake, such that the framework gets built by default.
** Impact of Flipping the Switch **
* Upsides *
For people developing on GlobalISel, it will:
- Simplify the CMake command to type :)
- Build/Test