============================================================================ Testsuite summary for NetworkManager 1.0.8 ============================================================================ # TOTAL: 5 # PASS: 5 # SKIP: 0 # XFAIL: 0 # FAIL: 0 # XPASS: 0 # ERROR: 0 ============================================================================ make[5]: Leaving directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/callouts/tests' make[4]: Leaving directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/callouts/tests' make[3]: Leaving directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/callouts/tests' make[2]: Leaving directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/callouts' make[1]: Leaving directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/callouts' Making check in clients make[1]: Entering directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/clients' Making check in cli make[2]: Entering directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/clients/cli' make check-am make[3]: Entering directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/clients/cli' make[3]: Nothing to be done for 'check-am'. make[3]: Leaving directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/clients/cli' make[2]: Leaving directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/clients/cli' Making check in tui make[2]: Entering directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/clients/tui' make[3]: Entering directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/clients/tui' make[3]: Nothing to be done for 'check-am'. make[3]: Leaving directory '/tmp/yaourt-tmp-andi/aur-lib32-libnm-glib/src/NetworkManager-1.0.8/clients/tui'
INSERT INTO kunden_meier(id, nachname, vorname, anrede, ort) SELECT 1, 'Kohl', 'Walter', 'Herr', 'Hamburg' UNION SELECT 2, 'Neuhaus', 'Andreas', 'Herr', 'Bonn' UNION SELECT 3, 'Talheim', 'Christiane', 'Frau', 'Frankfurth'; INSERT INTO kunden_schmidt(id, nachname, vorname, anrede, ort) SELECT 4, 'Kohl', 'Walter', 'Herr', 'Stuttgart' UNION SELECT 5, 'Kramer', 'Helmut', 'Herr', 'Berlin' UNION SELECT 6, 'Kunz', 'Michael', 'Herr', 'Dresden';
(define (custom-length lst) (cond [(empty? lst) 0] [else (+ 1 (custom-length (rest lst)))])) ---- > (custom-length (list "a" "b" "c")) 3
CC suricata.o suricata.c: In function ‘SCPrintBuildInfo’: suricata.c:782:50: error: ‘defined’ undeclared (first use in this function) printf("compiled with _FORTIFY_SOURCE=%d\n", _FORTIFY_SOURCE); ^ suricata.c:782:50: note: each undeclared identifier is reported only once for each function it appears in suricata.c:782:50: error: expected ‘)’ before numeric constant printf("compiled with _FORTIFY_SOURCE=%d\n", _FORTIFY_SOURCE); ^ Makefile:1503: recipe for target 'suricata.o' failed
# icinga2 node wizard ... Bind Host []: Bind Port []: Accept config from master? [y/N]: Accept commands from master? [y/N]: information/cli: Disabling the Notification feature. critical/cli: Cannot disable features. Path '/etc/icinga2/features-enabled' does not exist. information/cli: Enabling the Apilistener feature. critical/cli: Cannot parse available features. Path '/etc/icinga2/features-available' does not exist. Aborted
#!/usr/bin/env bash # curl-timing - curl wrapper returning timing information set -e curl -w "@-" -o /dev/null -s "${@}" <<EOF \n time_namelookup: %{time_namelookup}\n time_connect: %{time_connect}\n time_appconnect: %{time_appconnect}\n time_pretransfer: %{time_pretransfer}\n time_redirect: %{time_redirect}\n time_starttransfer: %{time_starttransfer}\n ----------\n time_total: %{time_total}\n \n EOF
#!/bin/sh fastboot flash aboot emmc_appsboot.mbn fastboot flash LOGO logo.bin fastboot flash modem NON-HLOS.bin fastboot flash rpm rpm.mbn fastboot flash sbl1 sbl1.mbn fastboot flash dbi sdi.mbn fastboot flash oppostanvbk static_nvbk.bin fastboot flash tz tz.mbn fastboot reboot-bootloader fastboot flash boot boot.img fastboot flash cache cache.img #fastboot flash recovery recovery.img fastboot flash system system.img
site.yml group_vars/ ├── all └── web production/ ├── group_vars │ ├── all │ └── web └── inventory staging/ ├── group_vars │ └── web └── inventory # ansible-playbook -i production site.yml
// qnx includes #include <stdlib.h> #include <stdio.h> #include <unistd.h> #include <stdint.h> #include <hw/inout.h> #include <sys/neutrino.h> #include <sys/mman.h> // xilinx includes #include <xgpio_l.h> #include <xparameters.h> #define AXI_GPIO_0_ADDR_LEN (XPAR_AXI_GPIO_0_HIGHADDR - XPAR_AXI_GPIO_0_BASEADDR) int main(int argc, char *argv[]) { printf("Welcome to the QNX Momentics IDE\n"); // O_o if (ThreadCtl(_NTO_TCTL_IO, 0) == -1) { printf("oh noez @ IO privs! :(\n"); return (EXIT_FAILURE); } else { printf("got IO privs! :)\n"); } // map GPIO memory