This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Modern::Perl '2012'; | |
use Test::More; | |
use Data::Dumper; | |
my %hash = ( | |
1 => undef | |
); | |
ok(! $hash{1}, 'Ok, undef unter Key 1 ist false'); | |
is( ref($hash{1}), '', 'Ok, dort ist auch keine Referenz'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Modern::Perl '2014'; | |
use IO::Socket::SSL; | |
use Thrift; | |
use Thrift::Socket; | |
=head1 NAME | |
Thrift::SSLSocket - A SSL wrapper around the standard C<Thrift::Socket> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use v5.14; | |
use strict; | |
use warnings; | |
package RoleA; | |
use Moose::Role; | |
requires 'm1'; | |
sub m2() { | |
my $self = shift; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Moops; | |
role RoleA { | |
requires 'm1'; | |
method m2() { | |
$self->m1." World!\n"; | |
} | |
} | |
role RoleB { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/bundles/com.eclipsesource.jaxrs.publisher/src/com/eclipsesource/jaxrs/publisher/internal/JerseyContext.java b/bundles | |
index 78636db..6e25f2b 100644 | |
--- a/bundles/com.eclipsesource.jaxrs.publisher/src/com/eclipsesource/jaxrs/publisher/internal/JerseyContext.java | |
+++ b/bundles/com.eclipsesource.jaxrs.publisher/src/com/eclipsesource/jaxrs/publisher/internal/JerseyContext.java | |
@@ -13,11 +13,13 @@ package com.eclipsesource.jaxrs.publisher.internal; | |
import java.util.ArrayList; | |
import java.util.List; | |
+import java.util.logging.Logger; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/PKGBUILD b/PKGBUILD | |
index bc479d2..8ddd0bd 100644 | |
--- a/PKGBUILD | |
+++ b/PKGBUILD | |
@@ -66,7 +66,7 @@ package() { | |
mv * "$pkgdir"/opt/java/ | |
msg2 "Symlinking the binaries" | |
- find /opt/java/bin -type f -exec ln -s {} "${pkgdir}"/usr/bin/ \; | |
+ find ${pkgdir}/opt/java/bin -type f -printf "%f\n" | while read file; do ln -s /opt/java/bin/$file "${pkgdir}"/usr/bin/; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <uuid.h> | |
#include <stdio.h> | |
#include <time.h> | |
int main(int argc, char** argv){ | |
if(argc<2) return 1; | |
uuid_t uuid; | |
if( uuid_parse(argv[1],uuid) < 0 ){ | |
return 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/PKGBUILD b/PKGBUILD | |
index 19bc728..2a7f90c 100644 | |
--- a/PKGBUILD | |
+++ b/PKGBUILD | |
@@ -3,7 +3,7 @@ | |
# Maintainer: Your Name <youremail@domain.com> | |
pkgname=sundown-git | |
-pkgver=20110815 | |
+pkgver=20120516 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use warnings; | |
use strict; | |
use POSIX qw(:signal_h); | |
my $sigset = POSIX::SigSet->new(SIGCHLD); | |
my $oldset = POSIX::SigSet->new; | |
my $counter = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use warnings; | |
use strict; | |
use POSIX qw(:signal_h); | |
my $sigset = POSIX::SigSet->new(SIGHUP); | |
my $oldset = POSIX::SigSet->new; | |
my $counter = 0; |
NewerOlder