text stringlengths 3 1.05M |
|---|
package org.apache.activemq.apollo.filter;
import java.math.BigDecimal;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
/**
* An expression which performs an operation on two expression values
*
* @version $Revision: 1.3 $
*/
public abstract class UnaryE... |
package no.priv.garshol.duke.cleaners;
import no.priv.garshol.duke.Cleaner;
//cleaner that removes common abbreviations and acronym in financial institution names
public class FinancialInstitutionNameCleaner implements Cleaner {
@Override
public String clean(String value) {
value = value.replaceAll("\... |
language-haml
=============
HAML language grammar for GitHub's Atom IDE.

## Supported Filetypes
* .haml
* .hamlc (CoffeeScript HAML)
## Supported filters
You can switch to another language right in the middle of your HAML file by
u... |
require "sambal/version"
require 'open3'
require 'logger'
require 'json'
require 'pty'
require 'expect'
require 'time'
require 'tempfile'
module Sambal
class InternalError < RuntimeError; end
class Response
attr_reader :message
def initialize(message, success)
msg = message.split("\n")
msg.... |
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('products', '0006_colortag_parent'),
]
operations = [
migrations.AddField(
model_name='product',
name='color_tags',
... |
require 'rbconfig'
module ANB
# determine OS
def self.os (os_string = RbConfig::CONFIG['host_os'])
case os_string
when /darwin/ then :mac
when /linux/ then :linux
when /w32/ then :windows
else :unknown
end
end
end #module |
<?php
namespace TerAelis\ForumBundle\Entity;
use Doctrine\ORM\EntityRepository;
use Gedmo;
/**
* TagRepository
*
* This class was generated by the Doctrine ORM. Add your own custom
* repository methods below.
*/
class TagRepository extends EntityRepository
{
public function findByNames($arrayTag) {
... |
from soundDataBase import EscSoundDataBase
import numpy as np
import matplotlib.pyplot as plt
import itertools
def plot_confusion_matrix(cm, classes,
normalize=False,
title='Confusion matrix',
cmap=plt.cm.Blues):
"""
This... |
using System.Collections.Generic;
namespace ServicesRegistration
{
/// <summary>
/// Configuration object for loading services
/// </summary>
public class ServicesRegisterOptions
{
/// <summary>
/// Flag to load all available assemblies reference from startup class assembly.
... |
test_description='git p4 preserve users'
. ./lib-git-p4.sh
test_expect_success 'start p4d' '
start_p4d
'
test_expect_success 'create files' '
(
cd "$cli" &&
p4 client -o | sed "/LineEnd/s/:.*/:unix/" | p4 client -i &&
echo file1 >file1 &&
echo file2 >file2 &&
p4 add file1 file2 &&
p4 submit -d "add fil... |
def reverse(text):
array = []
count = 1
for i in list(range(len(text))):
array.append(text[len(text)-count])
count+=1
array = ''.join(array)
return array
print reverse('Hello World!')
|
"""
This script contains class method `dataset_func` which will return dataset elements
The data format structure of ImageNet required for `dataset_func` is similar as
data structure generated by following structure:
https://github.com/tensorflow/models/blob/master/research/inception/inception/data/build_imagenet_... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="lang:clipboard.copy" content... |
package com.evolveum.midpoint.model.common.expression.script.xpath;
import com.evolveum.midpoint.model.common.expression.ExpressionSyntaxException;
import com.evolveum.midpoint.model.common.expression.ExpressionVariables;
import com.evolveum.midpoint.model.common.expression.functions.BasicExpressionFunctions;
import ... |
package leetcode.api;
import java.util.Objects;
public final class ListNode {
public int val;
public ListNode next;
public ListNode() {
}
public ListNode(int val) {
this.val = val;
}
public ListNode(int val, ListNode next) {
this.val = val;
this.next = next;
... |
namespace Scene
{
class DLL_PUBLIC TimeNode : public BaseNode
{
private:
typedef BaseNode Parent;
public:
F32 mMultiplier;
TimeNode();
F32 getMultiplier() { return mMultiplier; }
void setMultiplier(F32 val) { mMultiplier = val; }
virtual void ... |
<?php
/**
* This file is part of the Spryker Demoshop.
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace Pyz\Zed\Collector\Business\Storage;
use Generated\Shared\Transfer\RawProductAttributesTransfer;
use Generated\Shared\Transfer\StorageAttribut... |
export declare class RandomInteger {
static nextInteger(min: number, max?: number): number;
static updateInteger(value: number, range?: number): number;
static sequence(min: number, max?: number): number[];
}
|
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/fotos.iml" filepath="$PROJECT_DIR$/.idea/fotos.iml" />
</modules>
</component>
</project> |
How to style and theme your documentation.
---
## Built-in themes
#### Bootstrap

#### Read the Docs

#### The bootswatch themes

#
# @handler :pubsub_publish
class Publish < PubSub
register :pubsub_publish, :publish, self.registered_ns
include E... |
from math import pi
import numpy as np
from numpy.linalg import norm
import openmc
import openmc.model
import pytest
import scipy.spatial
_RADIUS = 0.1
_PACKING_FRACTION = 0.35
_PARAMS = [
{'shape': 'rectangular_prism', 'volume': 1**3},
{'shape': 'x_cylinder', 'volume': 1*pi*1**2},
{'shape': 'y_cylinder'... |
BSLS_IDENT_RCSID(bdlmt_threadpool_cpp,"$Id$ $CSID$")
#include <bslmt_lockguard.h>
#include <bsls_systemclocktype.h>
#include <bsls_systemtime.h>
#include <bslma_default.h>
#include <bsls_assert.h>
#include <bsls_platform.h>
#include <bsls_timeinterval.h>
#include <bsls_timeutil.h>
#include <bsls_types.h>
#include <bs... |
package edu.gemini.servlet;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class HelloWorld extends HttpServlet {
protected vo... |
"""Base classes for API tests."""
# NOTE: Ported from ceilometer/tests/api.py (subsequently moved to
# ceilometer/tests/api/__init__.py). This should be oslo'ified:
# https://bugs.launchpad.net/ironic/+bug/1255115.
import mock
from oslo_config import cfg
import pecan
import pecan.testing
from six.moves.ur... |
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Versio... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>libhyps: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css... |
/* !depends
ilib.js
Calendar.js
MathUtils.js
Astro.js
GregorianDate.js
GregRataDie.js
RataDie.js
*/
var ilib = require("./ilib.js");
var MathUtils = require("./MathUtils.js");
var Calendar = require("./Calendar.js");
var Astro = require("./Astro.js");
var RataDie = require("./RataDie.js");
var GregorianDate = ... |
package org.agileclick.genorm.plugins.dbsupport;
import org.agileclick.genorm.CreatePlugin;
import org.agileclick.genorm.TemplateHelper;
import org.antlr.stringtemplate.*;
import java.io.*;
import org.dom4j.*;
import java.util.*;
import org.agileclick.genorm.Table;
import org.agileclick.genorm.ForeignKeySet;
public... |
class VehicleLicensingJourney < BaseJourney
def run
goToAndCheckJQuery "#{@domain}/performance"
sleep 5
moveToEl(@browser.link(:text => 'Vehicle licensing'), { :click => true })
sleep 8
moveToEl(@browser.link(:text => 'Tax disc'), { :click => true })
sleep 8
scrollToEl(@browser.element... |
//#nullable enable
using System;
using System.Linq;
using System.Threading.Tasks;
namespace LionFire.Structures
{
public interface IKeyed : IKeyed<string> { }
public interface IKeyed<TKey>
{
TKey Key { get; }
}
}
|
(function() {
'use strict';
angular
.module('manateeApp')
.controller('HomeController', HomeController);
HomeController.$inject = ['$scope', 'Principal', 'LoginService', '$state'];
function HomeController ($scope, Principal, LoginService, $state) {
var vm = this;
vm.a... |
package org.apache.beam.runners.fnexecution.control;
import org.apache.beam.runners.fnexecution.control.DefaultExecutableStageContext.MultiInstanceFactory;
import org.apache.beam.runners.fnexecution.control.ReferenceCountingExecutableStageContextFactory.WrappedContext;
import org.apache.beam.runners.fnexecution.provi... |
package com.amazonaws.services.resiliencehub.model.transform;
import java.math.*;
import javax.annotation.Generated;
import com.amazonaws.services.resiliencehub.model.*;
import com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*;
import com.amazonaws.transform.*;
import com.fasterxml.jackson.core.JsonToken;
impo... |
/*
* Infobip Client API Libraries OpenAPI Specification
* OpenAPI specification containing public endpoints supported in client API libraries.
*
* Contact: support@infobip.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not ... |
namespace chromeos {
StubAuthenticatorBuilder::StubAuthenticatorBuilder(
const UserContext& expected_user_context)
: expected_user_context_(expected_user_context) {}
StubAuthenticatorBuilder::~StubAuthenticatorBuilder() = default;
scoped_refptr<Authenticator> StubAuthenticatorBuilder::Create(
AuthStatusC... |
module Azure::Network::Mgmt::V2019_11_01
module Models
#
# Information on the connectivity status.
#
class ConnectivityInformation
include MsRestAzure
# @return [Array<ConnectivityHop>] List of hops between the source and
# the destination.
attr_accessor :hops
# @retur... |
package martin.common;
import java.text.BreakIterator;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
public class SentenceSplitter implements Iterator<Pair<Integer>>, Iterable<Pair<Integer>>{
int c = 1;
private List<Integer> breaks;
... |
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transparent">
<com.cjj.sva.JJSearchView
android:id="@+id/mSearchView"
and... |
/* ====================================================================
* Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributio... |
import { LinkComponent } from '@ember/legacy-built-in-components';
export default class {
constructor(applicationInstance, event, target = event.target) {
this.applicationInstance = applicationInstance;
this.event = event;
this.target = target;
let hrefAttr = this.target.attributes.href;
this.ur... |
Making a new Cask is easy. Follow the directions in [Getting Set Up To Contribute](../../CONTRIBUTING.md#getting-set-up-to-contribute) to begin.
### Examples
Here’s a Cask for `shuttle` as an example:
```ruby
cask 'shuttle' do
version '1.2.5'
sha256 '7df182f506b80011222c0cdd470be76e0376f38e331f3fafbb6af9add35780... |
import java.util.*;
public class Main {
public static void main(String[] args) {
ArrayList<String> names = new ArrayList<String>();
// Test print for an empty ArrayList
CollectionOps.print(names);
System.out.println();
// Test print for a ArrayList containing one element
names.add("a");
... |
[](https://travis-ci.org/ZeChrales/Monocle)
Monocle is the distinguished Pokémon Go scanner capable of scanning large areas for spawns. Features spawnpoint scanning, Twitter and PushBullet notifications, accurate expiration times and estimates ... |
#include "utils/RegexUtils.h"
#include <iostream>
#include <vector>
#include "Exception.h"
namespace org::apache::nifi::minifi::utils {
#ifndef NO_MORE_REGFREEE
SMatch::SMatch(const SMatch& other) {
*this = other;
}
SMatch::SMatch(SMatch&& other) {
*this = std::move(other);
}
SMatch& SMatch::operator=(cons... |
import $ from 'jquery'
import Util from './util'
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.1.2): alert.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
... |
/**
* @license AngularJS v1.5.11
* (c) 2010-2017 Google, Inc. http://angularjs.org
* License: MIT
*/
(function(window, angular) {'use strict';
var forEach;
var isArray;
var isString;
var jqLite;
/**
* @ngdoc module
* @name ngMessages
* @description
*
* The `ngMessages` module provides enhanced support for di... |
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See commented blocks below for -->
<!-- some examples of how to customize the build. -->
<!-- (If you delete it and reopen the project it will be recreated.) -->
<!-- By default, only the Clean and Build commands use this build script. -->
<!-- ... |
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 Twitter, Inc.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2... |
<?php
namespace Optima\OptimaBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
/**
* This is the class that validates and merges configuration from your app/config files
*
* To learn more see {@link http://symfo... |
<?php
namespace Victoire\Widget\RichListBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
/**
* This is the class that validates and merges configuration from your app/config files.
*
* To learn more see {@link ... |
class Treatment < ApplicationRecord
has_many :treatment_records
validates :name, presence: true,
length: {maximum: 100 }
AVAILABLE_FOR = ['Dog', 'Cat'].freeze
validates_inclusion_of :available_for, in: AVAILABLE_FOR, allow_blank: false
end
|
A project written in Java to get old tweets, it bypass some limitations of Twitter Official API.
## Details
Twitter Official API has the bother limitation of time constraints, you can't get older tweets than a week. Some tools provide access to older tweets but in the most of them you have to spend some money before.
... |
<?php
use yii\helpers\Html;
use kartik\detail\DetailView;
use yii\helpers\Url;
use yii\helpers\ArrayHelper;
use kartik\markdown\Markdown;
use kartik\markdown\MarkdownEditor;
use kartik\widgets\FileInput;
use kartik\grid\GridView;
use yii\widgets\Pjax;
/* @var $this yii\web\View */
/* @var $model common\models\Produc... |
/*
* Keen Data-Tools project. Made with <3 by Keen.io (https://keen.io/)
*/
/* ==========================================================================
$BASE-PICKER
========================================================================== */
/**
* Note: the root picker element should *NOT* be styled more th... |
import functools
from corehq.util.es import elasticsearch as elasticsearch_exceptions
from requests import exceptions as requests_exceptions
def require_elasticsearch(fn):
@functools.wraps(fn)
def decorated(*args, **kwargs):
try:
return fn(*args, **kwargs)
except (requests_exceptio... |
{% extends "rest_framework/base.html" %}
{% block title %}AppSec Pipeline Example{% endblock %}
{% block bootstrap_theme %}
<link rel="stylesheet" href="https://bootswatch.com/flatly/bootstrap.min.css" type="text/css">
{% endblock %}
{% block branding %}
<a class="navbar-brand" href="{% url 'pipeline:api-root'... |
package com.ccvb.android.yellowapi.model;
import org.json.JSONException;
import org.json.JSONObject;
public class Address
{
public String street;
public String city;
public String province;
public String provinceCode;
public Address(JSONObject json) throws JSONException
{
this.street = json.ge... |
/**
* this file will be loaded before server started
* you can define global functions used in controllers, models, templates
*/
import fs from 'fs';
global.firekylin = {
POST_PUBLIC: 1,
POST_ALLOW_COMMENT: 1,
POST_ARTICLE: 0,
POST_PAGE: 1,
POST_DRAFT: 0,
POST_AUDITING: 1,
POST_REJECT: 2,
POST_PUBLI... |
<?xml version='1.0' encoding='UTF-8'?>
<!--
Copyright (C) 2011 ArtiVisi Intermedia <info@artivisi.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet... |
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License... |
ACCEPTED
#### According to
International Plant Names Index
#### Published in
null
#### Original name
null
### Remarks
null |
define(['require', 'log', 'jquery', 'lodash', 'formUtils', 'streamForm', 'tableForm', 'windowForm', 'aggregationForm',
'triggerForm', 'windowFilterProjectionQueryForm', 'patternQueryForm', 'joinQueryForm', 'partitionForm',
'sequenceQueryForm', 'sourceForm', 'sinkForm', 'functionForm', 'appAnnotationFor... |
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
has_many :comments
end
|
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="@dimen/carbon_bottomBarHeight">
<carbon.widget.LinearLayout
android:id="@+id/carbon_bottomBarContent"
android:layout_width="wra... |
// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/lib/config.ts
/*global jasmine */
var SpecReporter = require('jasmine-spec-reporter').SpecReporter;
exports.config = {
allScriptsTimeout: 11000,
specs: [
'./e2e/**/*.e2e-spec.ts'
],
capabil... |
#ifndef TYPE_CAP_H
#define TYPE_CAP_H
#include <platform.h>
#include "../ast/ast.h"
#include "../ast/frame.h"
PONY_EXTERN_C_BEGIN
/**
* Every possible instantiation of sub is a subtype of every possible
* instantiation of super.
*/
bool is_cap_sub_cap(token_id sub, token_id subalias, token_id super,
token_id su... |
/*
* History:
* 2008-01-12 Tobias Lorenz <tobias.lorenz@gmx.net>
* Version 1.0.0
* - First working version
* 2008-01-13 Tobias Lorenz <tobias.lorenz@gmx.net>
* Version 1.0.1
* - Improved error handling, every function now returns errno
* - Improved multi user access (start/mute/stop)
* - Channel doesn... |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Evolution Text Style</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to... |
namespace Fixtures.AcceptanceTestsRequiredOptional.Models
{
using Fixtures.AcceptanceTestsRequiredOptional;
using Microsoft.Rest;
using Newtonsoft.Json;
using System.Linq;
public partial class ClassWrapper
{
/// <summary>
/// Initializes a new instance of the ClassWrapper class.... |
var RED = function() {
$('#btn-keyboard-shortcuts').click(function(){showHelp();});
function save(force) {
if (RED.view.dirty()) {
if (!force) {
var invalid = false;
RED.nodes.eachNode(function(node) {
invalid = invalid ... |
class AddOptionNodeToConditions < ActiveRecord::Migration[4.2]
def change
add_reference :conditions, :option_node, index: true, foreign_key: true
end
end
|
from marvin.tests import fixtures
from marvin.tests import TestCaseWithTempDB
from contextlib import contextmanager
from flask import template_rendered
@contextmanager
def rendered_context(app):
""" Store templates and contexts rendered during a request.
May be refactored out if needed elsewhere.
"""
... |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>io_service::strand</title>
<link rel="stylesheet" href="../../boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.75.2">
<link rel="home" href="../../index.html" title="Asio">
<link rel="up... |
"""The Panasonic Viera integration."""
import asyncio
from functools import partial
import logging
from urllib.request import URLError
from panasonic_viera import EncryptionRequired, Keys, RemoteControl, SOAPError
import voluptuous as vol
from homeassistant.components.media_player.const import DOMAIN as MEDIA_PLAYER_... |
package service
import (
"context"
"go-common/app/interface/main/mcn/model"
"go-common/app/interface/main/mcn/model/datamodel"
"go-common/app/interface/main/mcn/model/mcnmodel"
"go-common/library/ecode"
"go-common/library/log"
)
//GetMcnGetIndexInc .
func (s *Service) GetMcnGetIndexInc(c context.Context, arg *... |
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using SharpCrop.Forms;
namespace SharpCrop.Services
{
/// <summary>
/// ToastService creates new ToastForms for the user and handles there numbers.
/// </summary>
public static class ToastService
{
... |
angular.module('pzWebApp.products').service('listMenuService', function($http, $q, pizzConfig) {
function handleResponse(response) {
console.log("Success !")
return response.data
}
this.getMenus = function() {
console.log("Recuperation menus")
return $http.get(pizzConfig.MENU_LIST_RESOURCE_... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_26) on Wed Oct 03 05:15:38 UTC 2012 -->
<TITLE>
Uses of Interface org.apache.hadoop.record.RecordOutput (Hadoop 1.0.4 API)
</TITLE>
<META NAME="date... |
import lazyLoading from './lazyLoading'
export default {
meta: {
icon: 'fa-pie-chart',
expanded: false,
label: 'Report'
},
children: [
{
name: 'Daily',
path: '/report/daily',
meta: {
auth: true,
link: 'report/daily.vue'
},
component: lazyLoading('rep... |
using Newtonsoft.Json;
using System.Collections.Generic;
namespace OfficeDevPnP.Core.Framework.Graph.Model
{
/// <summary>
/// Defines a Microsoft Graph user delta
/// </summary>
public class UserDelta
{
/// <summary>
/// User objects with changes or all users if no SkipToken has b... |
using System;
using System.Collections.Generic;
using System.Text;
namespace Imml.Runtime
{
public interface ILog
{
void Write(string message);
}
}
|
from django.conf.urls import patterns, include, url
from feeds import FilingFeed, FilingsFeed, FilingsFormFeed, FilingsForms, CommitteeFormsFeed, SuperpacsForms, IEFeed, IEFeedMin, MixedFeed
urlpatterns = patterns('',
url(r'^committee\/(?P<committee_id>C\d+)/$', FilingFeed()),
url(r'^committee\/(?P<commi... |
/*
* File: algorithm.h
* Author: boliu1
* Comments: for CS431 dsPIC33f board PID controller
* Created on October 13, 2015, 5:01 PM
*/
#ifndef ABS_ALGORITHM_H
#define ABS_ALGORITHM_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "... |
package com.qiscus.sdk.ui.fragment;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.swiperefreshlayout.widget.SwipeRefreshLayout;
import android.view.View;
import android.view.ViewGroup;
im... |
source "${SANDBOX}/gvm2/scripts/gvm"
##
## Test output messages
##
gvm check -h # status=0; match=/Usage: gvm check \[option\]/
gvm check --help # status=0; match=/Usage: gvm check \[option\]/
## Test without flags (should fail as hg is not installed by default)
gvm check # status=1; match=/\[!!\] Could not find com... |
pressure
========
Range coding compression and decompression for Haskell
|
import SweetAlert from '../../services/sweetAlertService';
import template from './dynamicForm.html';
import controller from './dynamicForm.controller';
import './dynamicForm.styl';
let dynamicFormComponent = {
restrict: 'E',
bindings: {
columns: '=',
dataset: '=',
addColumnHeaderItemFunc: '&',
... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_23) on Sun Feb 26 06:28:58 CET 2012 -->
<TITLE>
FileTokenizer (Apache Ant API)
</TITLE>
<META NAME="date" CONTENT="2012-02-26">
<LINK REL ="stylesh... |
from __future__ import print_function
import sys
screen_width = 50
print('*' * screen_width)
if len(sys.argv) > 1:
header = ' '.join(sys.argv[1:])
print('*', header.center(screen_width - 4), '*')
print('*' * screen_width)
|
<?php
include 'common.php';
// WARNING
// This file is only to be run to pull price data from other exchanges before the exchange has it's own operations!
// Once the exchange is operating, it will generate it's own price data
echo "Beginning Historical Data processing...".PHP_EOL;
// QUANDL HISTORICAL DATA
$currenc... |
.class public interface abstract annotation Lo/abu;
.super Ljava/lang/Object;
.source ""
# interfaces
.implements Ljava/lang/annotation/Annotation;
# annotations
.annotation runtime Ljava/lang/annotation/Documented;
.end annotation
.annotation runtime Ljava/lang/annotation/Retention;
value = .enum Ljava/lang/an... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>coinductive-reals: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.... |
package javax.batch.api.listener;
/**
* The AbstractStepListener provides default implementations of less commonly
* implemented methods.
*/
public abstract class AbstractStepListener implements StepListener {
/**
* Override this method if the StepListener will do something before the
* ste... |
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="ut... |
#ifndef LOGFILE_H
#define LOGFILE_H
#define normLog 0
#define errLog 1
#include "includes.h"
#include <fstream>
#include <iostream>
#include <stdio.h> /* printf */
#include <stdlib.h> /* strtol */
#include <string.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <pthread.h>
... |
package ru.maizy.cheesecake.client
import ru.maizy.cheesecake.api
import ru.maizy.cheesecake.core.utils.CollectionsUtils
case class Stub(stub: String, apiDep: api.Stub, coreDep: CollectionsUtils.type) // FIXME: tmp
|