Group
Extension

Matches 35358

App-Dazz ( W/WA/WANGQ/App-Dazz-0.1.0.tar.gz, WANGQ, 2020; MetaCPAN )
App-Dazz/lib/App/Dazz/Command/cover.pm ( view source; MetaCPAN )
 $opt->{outfile} ) {
        $opt->{outfile} = Path::Tiny::path( $args->[0] )->absolute . ".cover.json";
    }
}

sub execute {
    my ( $self, $opt, $args ) = @_;

    # make paths absolute before we
       $tempdir->child("meta.cover.json")
            ->spew( JSON::to_json( $meta_of, { pretty => 1, canonical => 1, } ) );
        $tempdir->child("meta.cover.json")->copy( $opt->{outfile} );

     
App-Dazz ( W/WA/WANGQ/App-Dazz-0.1.0.tar.gz, WANGQ, 2020; MetaCPAN )
App-Dazz/lib/App/Dazz/Common.pm ( view source; MetaCPAN )
ings;
use autodie;

use 5.010001;

use Carp qw();
use Graph;
use IO::Zlib;
use IPC::Cmd qw();
use JSON qw();
use List::Util;
use Path::Tiny qw();
use Statistics::Descriptive qw();
use YAML::Syck qw();
Google-Chat-WebHooks ( I/IG/IGIBBS/Google-Chat-WebHooks-0.3.tar.gz, IGIBBS, 2020; MetaCPAN )
Google-Chat-WebHooks/lib/Google/Chat/WebHooks.pm ( view source; MetaCPAN )
P::UserAgent;
use subs 'timeout';
use Class::Tiny qw(room_webhook_url _ua timeout);
use Carp;
use JSON;
use Try::Tiny;
use Data::Validate::URI qw(is_uri);

BEGIN {
    our $VERSION     = '0.3';
}
my $
ft;

	my $msg_json = "{\"text\": \"$msg\"}";
	my $req = HTTP::Request->new('POST', $self->room_webhook_url);
	$req->header('Content-Type' => 'application/json');
	$req->content($msg_json);
	my $respon

	if($response->is_error)
	{
		my $content = $response->decoded_content();
		my $json;
		try
		{
			$json = decode_json($content);
		};
		my $error_message = $response->code." ".$response->message;
		
Nuvol ( T/TE/TEKKI/Nuvol-0.03.tar.gz, TEKKI, 2020; MetaCPAN )
Nuvol/lib/Nuvol/Connector.pm ( view source; MetaCPAN )
rm => \%form)->result;
  die color_error $res->message if $res->is_error;

  my $response = $res->json;
  say_ok 'ok';

  return $response;
}

sub _auth_headers ($self, $headers = {}) {
  my $access_t
rm)->result;
  Carp::confess $res->message if $res->is_error;

  $self->_set_token($config, $res->json);

  return $self;
}

1;

=encoding utf8

=head1 NAME

Nuvol::Connector - Base class for Nuvol co
Sentry-Raven ( Q/QR/QRRY/Sentry-Raven-1.14.tar.gz, QRRY, 2020; MetaCPAN )
Sentry-Raven/lib/Sentry/Raven.pm ( view source; MetaCPAN )
e File::Basename 'basename';
use HTTP::Request::Common 'POST';
use HTTP::Status ':constants';
use JSON::XS;
use LWP::UserAgent;
use Sys::Hostname;
use Time::Piece;
use URI;
use UUID::Tiny ':std';
use 
(
    is      => 'ro',
    isa     => Int,
    default => 5,
);

has json_obj => (
    is      => 'ro',
    builder => '_build_json_obj',
    lazy    => 1,
);

has ua_obj => (
    is      => 'ro',
   
nt);

    my ($response, $response_code, $response_content);

    eval {
        my $event_json = $self->json_obj()->encode( $event );

        $self->ua_obj()->timeout($self->timeout());

        my 
Zabbix2-API ( S/SU/SUJITSALI/Zabbix2-API-0.014.tar.gz, SUJITSALI, 2020; MetaCPAN )
Zabbix2-API/lib/Zabbix2/API/Macro.pm ( view source; MetaCPAN )
o;

use strict;
use warnings;
use 5.010;
use Carp;
use autodie;
use utf8;

use Moo;
use JSON;
extends qw/Zabbix2::API::CRUDE/;

sub id {
    ## mutator for id
    my ($self, $value) = @
$self->id ],
                                              globalmacro => $self->globalp ? JSON::true : JSON::false,
                                              $self->_extension })->[0];
    cro
lf->id],
                                                  globalmacro => $self->globalp ? JSON::true : JSON::false,
                                                  countOutput => 1 });
    retur
Zabbix2-API ( S/SU/SUJITSALI/Zabbix2-API-0.014.tar.gz, SUJITSALI, 2020; MetaCPAN )
Zabbix2-API/lib/Zabbix2/API.pm ( view source; MetaCPAN )
blessed/;
use Module::Loaded;
use Module::Load;
use Params::Validate qw/validate :types/;
use JSON;
use LWP::UserAgent;
use Log::Any;

our $VERSION = '0.014';

has 'server' => (is => 'ro',
    'Content-Type' => 'application/json-rpc',
                                          Content => encode_json({
                                              jsonrpc => '2.0',
                    
          $error, $response->code, $response->message);
    }

    my $decoded = eval { decode_json($response->decoded_content) };

    if (my $error = $@) {
        # no good either
        cr
Text-Distill ( G/GR/GRIBUSER/Text-Distill-0.5.tar.gz, GRIBUSER, 2020; MetaCPAN )
Text-Distill/script/plagiarism_check.pl ( view source; MetaCPAN )
okFormat TextToGems GemsValidate ExtractSingleZipFile);
use Getopt::Long;
use LWP::UserAgent;
use JSON::XS;
use Data::Dumper;

binmode STDOUT, ":utf8";

my %OPT;
GetOptions(
	'help' => \$OPT{'help'},
ems = TextToGems($Text);

my $Result = GemsValidate($Gems, $Url);

if ($OPT{'fullinfo'}) {
	print JSON::XS->new->pretty(1)->encode($Result);
} else {
	print $Result->{'verdict'}."\n";
}

sub help {
  
Text-Distill ( G/GR/GRIBUSER/Text-Distill-0.5.tar.gz, GRIBUSER, 2020; MetaCPAN )
Text-Distill/lib/Text/Distill.pm ( view source; MetaCPAN )
ct;
use Encode;
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
use Carp;
use LWP::UserAgent;
use JSON::XS;
use File::Temp;
use URI::Escape;

Archive::Zip::setErrorHandler(sub{});

our (@ISA, @EXPORT_
(5);
  my $Response = $ua->post( $Url, {gems => join ",",@$Gems});

  my $Result;
  return decode_json( $Response->decoded_content ) if $Response->is_success;
  die $Response->status_line;
}

# EXTRAC
 or later);
 Unicode::Normalize (v1.25 or later);
 Archive::Zip
 Encode;
 Carp;
 LWP::UserAgent;
 JSON::XS;
 File::Temp;

=head1 SCRIPTS

=head2 plagiarism_check.pl - checks your ebook againts known t
Github-Email ( M/MO/MOMOZOR/Github-Email-1.1.0.tar.gz, MOMOZOR, 2020; MetaCPAN )
Github-Email/lib/Github/Email.pm ( view source; MetaCPAN )
ess); 
use JSON;
use LWP::UserAgent;
use List::MoreUtils qw(uniq);
use Email::Valid;


sub get_emails {
    my $username = shift;

    my $user_agent = LWP::UserAgent->new;
    my $get_json =
      $u
name/events/public");

    if ( $get_json->is_success ) {
        my $raw_json    = $get_json->decoded_content;
        my $decoded_json    = decode_json $raw_json;
        my @push_events = grep { $_
->{type} eq 'PushEvent' } @{$decoded_json};
        my @commits     = map { @{$_->{payload}->{commits}} } @push_events;
        my @addresses   = map { $_->{author}->{email} } @commits;
        my @un
Mojo-InfluxDB ( G/GN/GNZL/Mojo-InfluxDB-0.1.tar.gz, GNZL, 2020; MetaCPAN )
Mojo-InfluxDB/lib/Mojo/InfluxDB.pm ( view source; MetaCPAN )
 query_p ( $self, $query ) {
    $self->raw_query_p( $query )->then(sub($tx){
        c($tx->res->json('/results')->@*)->map(sub($src){
            Mojo::InfluxDB::Result->new(
                time_zo
JSON-Immutable-XS ( A/AD/ADDICT/JSON-Immutable-XS-0.1.3.tar.gz, ADDICT, 2020; MetaCPAN )
JSON-Immutable-XS/src/xs/dict.h ( view source; MetaCPAN )
space json_tree;

namespace xs {
    template <class T> struct Typemap<Dict*, T> : TypemapObject<Dict*, T, ObjectTypePtr, ObjectStorageMG> {
        static panda::string package () { return "JSON::Imm
te <class T> struct Typemap<const Dict*, T> : TypemapObject<const Dict*, T, ObjectTypeForeignPtr, ObjectStorageMG> {
        static panda::string package () { return "JSON::Immutable::XS"; }
    };
}
JSON-Immutable-XS ( A/AD/ADDICT/JSON-Immutable-XS-0.1.3.tar.gz, ADDICT, 2020; MetaCPAN )
JSON-Immutable-XS/external/rapidjson/error/error.h ( view source; MetaCPAN )
// Tencent is pleased to support the open source community by making RapidJSON available.
// 
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
//
// License
DJSON_ERROR_ERROR_H_
#define RAPIDJSON_ERROR_ERROR_H_

#include "../rapidjson.h"

#ifdef __clang__
RAPIDJSON_DIAG_PUSH
RAPIDJSON_DIAG_OFF(padded)
#endif

/*! \file error.h */

/*! \defgroup RAPIDJSON_
apidJSON error handling */

///////////////////////////////////////////////////////////////////////////////
// RAPIDJSON_ERROR_CHARTYPE

//! Character type of error messages.
/*! \ingroup RAPIDJSON_ER
JSON-Immutable-XS ( A/AD/ADDICT/JSON-Immutable-XS-0.1.3.tar.gz, ADDICT, 2020; MetaCPAN )
JSON-Immutable-XS/external/rapidjson/document.h ( view source; MetaCPAN )
// Tencent is pleased to support the open source community by making RapidJSON available.
// 
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
//
// License
ic language governing permissions and limitations under the License.

#ifndef RAPIDJSON_DOCUMENT_H_
#define RAPIDJSON_DOCUMENT_H_

/*! \file document.h */

#include "reader.h"
#include "internal/meta.
w>      // placement new
#include <limits>

RAPIDJSON_DIAG_PUSH
#ifdef _MSC_VER
RAPIDJSON_DIAG_OFF(4127) // conditional expression is constant
RAPIDJSON_DIAG_OFF(4244) // conversion from kXxxFlags to 
JSON-Immutable-XS ( A/AD/ADDICT/JSON-Immutable-XS-0.1.3.tar.gz, ADDICT, 2020; MetaCPAN )
JSON-Immutable-XS/external/rapidjson/encodedstream.h ( view source; MetaCPAN )
// Tencent is pleased to support the open source community by making RapidJSON available.
// 
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
//
// License
e License.

#ifndef RAPIDJSON_ENCODEDSTREAM_H_
#define RAPIDJSON_ENCODEDSTREAM_H_

#include "stream.h"
#include "memorystream.h"

#ifdef __GNUC__
RAPIDJSON_DIAG_PUSH
RAPIDJSON_DIAG_OFF(effc++)
#endif

#ifdef __clang__
RAPIDJSON_DIAG_PUSH
RAPIDJSON_DIAG_OFF(padded)
#endif

RAPIDJSON_NAMESPACE_BEGIN

//! Input byte stream wrapper with a statically bound encoding.
/*!
    \tparam Encoding The interpr
JSON-Immutable-XS ( A/AD/ADDICT/JSON-Immutable-XS-0.1.3.tar.gz, ADDICT, 2020; MetaCPAN )
JSON-Immutable-XS/XS.xs ( view source; MetaCPAN )
ict.h>
#include <panda/string.h>

using namespace json_tree;
using namespace xs;
using panda::string;

MODULE = JSON::Immutable::XS      PACKAGE = JSON::Immutable::XS
PROTOTYPES: DISABLE

Dict * new(S
JSON-Immutable-XS ( A/AD/ADDICT/JSON-Immutable-XS-0.1.3.tar.gz, ADDICT, 2020; MetaCPAN )
JSON-Immutable-XS/external/rapidjson/pointer.h ( view source; MetaCPAN )
// Tencent is pleased to support the open source community by making RapidJSON available.
// 
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
//
// License
DJSON_POINTER_H_
#define RAPIDJSON_POINTER_H_

#include "document.h"
#include "internal/itoa.h"

#ifdef __clang__
RAPIDJSON_DIAG_PUSH
RAPIDJSON_DIAG_OFF(switch-enum)
#endif

#ifdef _MSC_VER
RAPIDJSON_
DIAG_PUSH
RAPIDJSON_DIAG_OFF(4512) // assignment operator could not be generated
#endif

RAPIDJSON_NAMESPACE_BEGIN

static const SizeType kPointerInvalidIndex = ~SizeType(0);  //!< Represents an inval
JSON-Immutable-XS ( A/AD/ADDICT/JSON-Immutable-XS-0.1.3.tar.gz, ADDICT, 2020; MetaCPAN )
JSON-Immutable-XS/external/rapidjson/prettywriter.h ( view source; MetaCPAN )
// Tencent is pleased to support the open source community by making RapidJSON available.
// 
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
//
// License
JSON_PRETTYWRITER_H_
#define RAPIDJSON_PRETTYWRITER_H_

#include "writer.h"

#ifdef __GNUC__
RAPIDJSON_DIAG_PUSH
RAPIDJSON_DIAG_OFF(effc++)
#endif

#if defined(__clang__)
RAPIDJSON_DIAG_PUSH
RAPIDJSON
_DIAG_OFF(c++98-compat)
#endif

RAPIDJSON_NAMESPACE_BEGIN

//! Combination of PrettyWriter format flags.
/*! \see PrettyWriter::SetFormatOptions
 */
enum PrettyFormatOptions {
    kFormatDefault = 0, 
JSON-Immutable-XS ( A/AD/ADDICT/JSON-Immutable-XS-0.1.3.tar.gz, ADDICT, 2020; MetaCPAN )
JSON-Immutable-XS/external/rapidjson/reader.h ( view source; MetaCPAN )
// Tencent is pleased to support the open source community by making RapidJSON available.
//
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip. All rights reserved.
//
// Licensed
fic language governing permissions and limitations under the License.

#ifndef RAPIDJSON_READER_H_
#define RAPIDJSON_READER_H_

/*! \file reader.h */

#include "allocators.h"
#include "stream.h"
#incl


#if defined(RAPIDJSON_SIMD) && defined(_MSC_VER)
#include <intrin.h>
#pragma intrinsic(_BitScanForward)
#endif
#ifdef RAPIDJSON_SSE42
#include <nmmintrin.h>
#elif defined(RAPIDJSON_SSE2)
#include <e
JSON-Immutable-XS ( A/AD/ADDICT/JSON-Immutable-XS-0.1.3.tar.gz, ADDICT, 2020; MetaCPAN )
JSON-Immutable-XS/external/rapidjson/schema.h ( view source; MetaCPAN )
// Tencent is pleased to support the open source community by making RapidJSON available->
// 
// Copyright (C) 2015 THL A29 Limited, a Tencent company, and Milo Yip-> All rights reserved->
//
// Lice
ef RAPIDJSON_SCHEMA_H_
#define RAPIDJSON_SCHEMA_H_

#include "document.h"
#include "pointer.h"
#include <cmath> // abs, floor

#if !defined(RAPIDJSON_SCHEMA_USE_INTERNALREGEX)
#define RAPIDJSON_SCHEMA
_USE_INTERNALREGEX 1
#else
#define RAPIDJSON_SCHEMA_USE_INTERNALREGEX 0
#endif

#if !RAPIDJSON_SCHEMA_USE_INTERNALREGEX && !defined(RAPIDJSON_SCHEMA_USE_STDREGEX) && (__cplusplus >=201103L || (defined

Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.