Group
Extension

Matches 35358

C600 ( X/XY/XYF/C600-0.002.tar.gz, XYF, 2022; MetaCPAN )
C600/lib/C600.pm ( view source; MetaCPAN )
;
use warnings;

package C600;
{
    $C600::VERSION = '0.02';
}
use Encode;
use REST::Client;
use JSON;
use DBI;
use DateTime;
use DateTime::Format::Natural;
use DateTime::Format::Oracle;
use Data::Du
h !!";
	}

    my $init_headers = {
        Accept         => 'application/json',
        'Content-type' => 'application/json',
    };
	my $user_name = $_[1] || "admin";
	my $password  = $_[2] || "Lan
 . $client->responseContent()
      if $client->responseCode != 200;
    my $response      = from_json( $client->responseContent() );
    my $access_header = {
        'Content-Type' => 'application/x
Sah ( P/PE/PERLANCAR/Sah-0.9.51.tar.gz, PERLANCAR, 2022; MetaCPAN )
Sah/lib/Sah/Type.pod ( view source; MetaCPAN )
"input_is_yaml", "input_is_json"], ["input_value", "input_file"]]

If either "input_value" or "input_file" exists, then one of "input_format",
"input_is_yaml", "input_is_json" is allowed to be specifi
Linux-NFTables ( F/FE/FELIPE/Linux-NFTables-0.01.tar.gz, FELIPE, 2022; MetaCPAN )
Linux-NFTables/NFTables.xs ( view source; MetaCPAN )
TATELESS);
    _MAKE_PRIVATE_CONST(NFT_CTX_OUTPUT_HANDLE);
    _MAKE_PRIVATE_CONST(NFT_CTX_OUTPUT_JSON);
    _MAKE_PRIVATE_CONST(NFT_CTX_OUTPUT_ECHO);
    _MAKE_PRIVATE_CONST(NFT_CTX_OUTPUT_GUID);
   
Linux-NFTables ( F/FE/FELIPE/Linux-NFTables-0.01.tar.gz, FELIPE, 2022; MetaCPAN )
Linux-NFTables/lib/Linux/NFTables.pm ( view source; MetaCPAN )
ts/nftables/>

=head1 SYNOPSIS

    my $nft = Linux::NFTables->new()->set_output_options('json');

    my $json = $nft->run_cmd("list tables");

=head1 DESCRIPTION

This module provides a Perl interfa
eturns its output.

=head2 @opts = I<OBJ>->get_output_options()

Returns a list of names, e.g., C<json> or C<guid>. Must be called
in list context.

Possible values are libnftables’s various C<NFT_C
Sah ( P/PE/PERLANCAR/Sah-0.9.51.tar.gz, PERLANCAR, 2022; MetaCPAN )
Sah/lib/Sah/FAQ.pod ( view source; MetaCPAN )
es and type systems

=head3 Comparison to JSON schema?

=over 4

=item * JSON schema limits its type system to that supported by JSON/JavaScript.

=item * JSON schema's syntax is simpler.

Its metasch
ema (schema for the schema) is only about 130 lines. There are no
shortcut forms.

=item * JSON schema's features are more limited.

No expression, no function.

=back

=head3 Comparison to Data::Rx?
WebSerivce-SendBird ( D/DE/DERIV/WebSerivce-SendBird-0.002.tar.gz, DERIV, 2022; MetaCPAN )
WebSerivce-SendBird/lib/WebService/SendBird.pm ( view source; MetaCPAN )
ut

sub http_headers {
    my $self = shift;

    return {
        'Content-Type' => 'application/json, charset=utf8',
        'Api-Token'    => $self->api_token,
    };
}

=head2 request

Sends reque
$method, $self->_url_for($path), $self->http_headers, uc($method) eq 'GET' ? (form => $params) : (json => $params),));

    if ($resp->result->is_error) {
        my $details = $resp->result->{content
 request to SB API: ' . $details);
    }

    my $data;
    eval {
        $data = $resp->result->json;
        1;
    } or do {
        Carp::croak('Fail to parse response from SB API: ' . $@);
    }
Sah ( P/PE/PERLANCAR/Sah-0.9.51.tar.gz, PERLANCAR, 2022; MetaCPAN )
Sah/lib/Sah.pod ( view source; MetaCPAN )
g data structures.

In this document, schemas and data structures are mostly written in pseudo-JSON
(JSON with comments C<// ...>, ellipsis C<...>, or some JavaScript).

The key words "MUST", "MUST NO
Mojolicious-Plugin-Iconify ( G/GD/GDT/Mojolicious-Plugin-Iconify-1.20.tar.gz, GDT, 2022; MetaCPAN )
Mojolicious-Plugin-Iconify/lib/Mojolicious/Plugin/Iconify/API.pm ( view source; MetaCPAN )
use Mojo::Base 'Mojolicious::Plugin';

use Carp;

use Mojo::File qw(path);
use Mojo::JSON qw(decode_json encode_json);
use Mojo::Cache;

use constant DEBUG => $ENV{MOJO_ICONIFY_DEBUG} || 0;

use const
 $file ( $collections_path->list->each ) {
        next if ( !$file =~ /.json/ );
        $collections->{ $file->basename('.json') } = $file;
    }

    # Helpers

    $app->helper(
        'iconify_a
    return if ( !defined $collections->{$collection} );

            my $collection_data = decode_json $collections->{$collection}->slurp;
            $cache->set( $collection => $collection_data );

WebService-SendBird ( D/DE/DERIV/WebService-SendBird-0.002.tar.gz, DERIV, 2022; MetaCPAN )
WebService-SendBird/lib/WebService/SendBird/User.pm ( view source; MetaCPAN )
package WebService::SendBird::User;

use strict;
use warnings;

use Carp;
use JSON::MaybeXS;

our $VERSION = '0.002';    ## VERSION

=head1 NAME

WebService::SendBird::User - SendBird User

=head1 SYN
.

=cut

sub issue_session_token {
    my ($self) = @_;

    $self->update(issue_session_token => JSON::MaybeXS::true);

    my $tokens = $self->session_tokens // [];

    my ($latest_token) = sort { 
WebService-SendBird ( D/DE/DERIV/WebService-SendBird-0.002.tar.gz, DERIV, 2022; MetaCPAN )
WebService-SendBird/lib/WebService/SendBird/GroupChat.pm ( view source; MetaCPAN )
package WebService::SendBird::GroupChat;

use strict;
use warnings;

use Carp;
use JSON::MaybeXS ();
use WebService::SendBird::User;

our $VERSION = '0.002';    ## VERSION

=head1 NAME

WebService::Se
annel>.

=cut

sub set_freeze {
    my ($self, $freeze) = @_;

    $freeze = $freeze ? JSON::MaybeXS::true : JSON::MaybeXS::false;

    my $res = $self->api_client->request(
        PUT => 'group_chan
WebSerivce-SendBird ( D/DE/DERIV/WebSerivce-SendBird-0.002.tar.gz, DERIV, 2022; MetaCPAN )
WebSerivce-SendBird/lib/WebService/SendBird/User.pm ( view source; MetaCPAN )
package WebService::SendBird::User;

use strict;
use warnings;

use Carp;
use JSON::MaybeXS;

our $VERSION = '0.002';    ## VERSION

=head1 NAME

WebService::SendBird::User - SendBird User

=head1 SYN
.

=cut

sub issue_session_token {
    my ($self) = @_;

    $self->update(issue_session_token => JSON::MaybeXS::true);

    my $tokens = $self->session_tokens // [];

    my ($latest_token) = sort { 
WebSerivce-SendBird ( D/DE/DERIV/WebSerivce-SendBird-0.002.tar.gz, DERIV, 2022; MetaCPAN )
WebSerivce-SendBird/lib/WebService/SendBird/GroupChat.pm ( view source; MetaCPAN )
package WebService::SendBird::GroupChat;

use strict;
use warnings;

use Carp;
use JSON::MaybeXS ();
use WebService::SendBird::User;

our $VERSION = '0.002';    ## VERSION

=head1 NAME

WebService::Se
annel>.

=cut

sub set_freeze {
    my ($self, $freeze) = @_;

    $freeze = $freeze ? JSON::MaybeXS::true : JSON::MaybeXS::false;

    my $res = $self->api_client->request(
        PUT => 'group_chan
WebService-SendBird ( D/DE/DERIV/WebService-SendBird-0.002.tar.gz, DERIV, 2022; MetaCPAN )
WebService-SendBird/lib/WebService/SendBird.pm ( view source; MetaCPAN )
ut

sub http_headers {
    my $self = shift;

    return {
        'Content-Type' => 'application/json, charset=utf8',
        'Api-Token'    => $self->api_token,
    };
}

=head2 request

Sends reque
$method, $self->_url_for($path), $self->http_headers, uc($method) eq 'GET' ? (form => $params) : (json => $params),));

    if ($resp->result->is_error) {
        my $details = $resp->result->{content
 request to SB API: ' . $details);
    }

    my $data;
    eval {
        $data = $resp->result->json;
        1;
    } or do {
        Carp::croak('Fail to parse response from SB API: ' . $@);
    }
Net-FattureInCloud ( A/AR/ARTHAS/Net-FattureInCloud-0.2.3.tar.gz, ARTHAS, 2022; MetaCPAN )
Net-FattureInCloud/lib/Net/FattureInCloud.pm ( view source; MetaCPAN )
args = {
            %$args,
        };

        my $datatransport = $method eq 'get' ? 'form' : 'json';

        my $res = $self->ua->$method( $self->endpoint_uri . "$path" =>
            { Authoriza
esult;
        croak $res->message .': ' . $res->body if !$res->is_success;

        return $res->json;
    }

    sub crequest($self, $path, $method, $args = {}) {
        croak 'Please provide path'
args = {
            %$args,
        };

        my $datatransport = $method eq 'get' ? 'form' : 'json';

        my $res = $self->ua->$method( $self->endpoint_uri . 'c/' . $self->company_id . "/$path
Sah-PSchemas-Perl ( P/PE/PERLANCAR/Sah-PSchemas-Perl-0.010.tar.gz, PERLANCAR, 2022; MetaCPAN )
Sah-PSchemas-Perl/lib/Sah/PSchema/perl/modname_with_optional_args.pm ( view source; MetaCPAN )
           recurse_matching=>'all-at-once',
        }],
    }];

    my $schema_ary = [array_from_json => {
        min_len => 1,
        max_len => 2,
        elems => [
            $schema_str,
    
TableDataBundle-Software-License ( P/PE/PERLANCAR/TableDataBundle-Software-License-0.002.tar.gz, PERLANCAR, 2022; MetaCPAN )
TableDataBundle-Software-License/lib/TableData/Software/License/FromRPL.pm ( view source; MetaCPAN )
IPL-1.0","IBM Public License 1.0"
"ISC","ISC License"
"jabberpl","Jabber Open Source License"
"JSON","JSON License"
"Jython","Jython License"
"Kevlin-Henney","Kevlin Henney License"
"LGPL","GNU Lesser
Dyn ( S/SA/SANKO/Dyn-0.05.tar.gz, SANKO, 2022; MetaCPAN )
Dyn/builder/Dyn.pm ( view source; MetaCPAN )
r splitpath curdir/;
use Getopt::Long 2.36     qw/GetOptionsFromArray/;
use JSON::PP 2            qw/encode_json decode_json/;
use HTTP::Tiny;
use Path::Tiny;
use Archive::Tar;
use IO::File;
use IO::U

    return do { local $/; <$fh> };
}

sub get_meta {
    my ($metafile) = grep { -e $_ } qw/META.json META.yml/ or die "No META information provided\n";
    return CPAN::Meta->load_file($metafile);
}
 = @_;
        rmtree( $_, $opt{verbose} ) for qw/blib temp Build _build_params MYMETA.yml MYMETA.json/;
        return 0;
    }
);

sub Build {
    my $action = @ARGV && $ARGV[0] =~ /\A\w+\z/ ? shift
RPC-Switch-Client ( W/WI/WIEGEROP/RPC-Switch-Client-0.22.tar.gz, WIEGEROP, 2022; MetaCPAN )
RPC-Switch-Client/lib/RPC/Switch/Client.pm ( view source; MetaCPAN )
m cpan
use JSON::RPC2::TwoWay 0.07; # for configurable json encoder
# JSON::RPC2::TwoWay depends on JSON::MaybeXS anyways, so it can be used here
# without adding another dependency
use JSON::MaybeXS 
itch::Client::Steps;

has [qw(
	actions address auth cb_used channels clientid conn debug ioloop
	json lastping log method ns ping_timeout port rpc timeout tls token
	who
)];

# keep in sync with the 
per channel hash of waitids
	$self->{debug} = $debug;
	$self->{json} = $args{json} // 1;
	$self->{jsonobject} = $args{jsonobject}  // JSON::MaybeXS->new(utf8 => 1),
	$self->{ping_timeout} = $args{ping
Minecraft-ServerStatus ( L/LD/LDILLEY/Minecraft-ServerStatus-1.1.0.tar.gz, LDILLEY, 2022; MetaCPAN )
Minecraft-ServerStatus/lib/Minecraft/ServerStatus.pm ( view source; MetaCPAN )
GACY => 1,   # server versions 1.4 to 1.5
  REQUEST_EXTENDED => 2, # server version 1.6
  REQUEST_JSON => 3,     # server versions 1.7 to latest
  REQUEST_BEDROCK => 4   # Bedrock/Pocket Edition
};

s
EXTENDED) { $retval = extended_request(\%data); }
  elsif($data{request_type} == REQUEST_JSON) { $retval = json_request(\%data); }
  elsif($data{request_type} == REQUEST_BEDROCK) { $retval = bedrock_r
uest(\%data); }                         # SLP 1.6
    #if($retval ne RETURN_CONNFAIL) { $retval = json_request(\%data); }                             # SLP 1.7
    #if(!$data{online}) { $retval = bedr
Net-Async-Spotify ( V/VN/VNEALV/Net-Async-Spotify-0.002.tar.gz, VNEALV, 2022; MetaCPAN )
Net-Async-Spotify/lib/Net/Async/Spotify/Object/ExternalId.pod ( view source; MetaCPAN )
ify::Object::Base/generate>, L<to_hash|Net::Async::Spotify::Object::Base/to_hash>, L<to_human|Net::Async::Spotify::Object::Base/to_human>, L<to_json|Net::Async::Spotify::Object::Base/to_json>

=back


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