text stringlengths 3 1.05M |
|---|
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="themeentries">
<item>Holo (Default)</item>
<item>Dark</item>
<item>Classic</item>
</string-array>
<string-array name="themevalues">
<item>1</item>
<item>2</item>
<item>3</item>
</string... |
import os
import unittest
import sys
import inmembrane
import inmembrane.tests
from inmembrane import helpers
from inmembrane.plugins import signalp_scrape_web
from inmembrane.tests.PluginTestBase import PluginTestBase
class TestSignalpScrapeWeb(PluginTestBase):
_plugin_name = "signalp_scrape_web"
def test... |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ga... |
#include <dns_sd.h>
#include <string.h>
#include <tcl.h>
#include "bonjour.h"
#include "txt_record.h"
///////////////////////////////////////////////////////////
// Function to convert a txt record to a Tcl list.
// The list will be of the format {key val ?key val? ...}
/////////////////////////////////////////////... |
.. _local_optimization:
==========================================
Third-party Non-linear optimizers in PyGMO
==========================================
Besides a variety of available metaheuristics and global optimization algorithms, PaGMO interfaces to several popular local optimizers (full list available on page :... |
// Author: jmarantz@google.com (Joshua Marantz)
//
// Contains implementation of CssCombineFilter, which concatenates multiple
// CSS files into one. Implemented in part via delegating to
// CssCombineFilter::CssCombiner, a ResourceCombiner subclass.
#include "net/instaweb/rewriter/public/css_combine_filter.h"
#inc... |
package org.apache.distributedlog.service;
import org.apache.distributedlog.DistributedLogConfiguration;
import org.apache.distributedlog.LocalDLMEmulator;
import org.apache.distributedlog.client.routing.SingleHostRoutingService;
import org.apache.distributedlog.impl.metadata.BKDLConfig;
import org.apache.distributed... |
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>List Group</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Arvo' rel='stylesheet' type='text/css'>
<link href="../css/typography.css" rel="stylesheet">
<... |
<?php
namespace SidekiqJobPusher;
use Predis\Client as PredisClient;
class Client
{
private $redis;
function __construct(PredisClient $redis, $namespace = null)
{
$this->redis = $redis;
$this->namespace = $namespace;
$this->keyGenerator = new KeyGenerator;
$this->message... |
.. _stingray-simulator:
Stingray Simulator (`stingray.simulator`)
*****************************************
Introduction
============
`stingray.simulator` provides a framework to simulate light curves with given variability distributions. In time series experiments, understanding the certainty is crucial to interpre... |
layout: generic
application_name: feedback
design_title: Tooltip tags panel feedback
design_description: "Populate the tags tooltip"
---
<div class="item-selector mode-follow">
{% capture include_id %}selector{% endcapture %} <!-- this attribute should be unique to the instance of the item-selector -->
<form c... |
require 'thor'
require 'sass_updater'
module SassUpdater
class CLI < Thor
default_task :file
desc "info", "show basic overview"
def info
puts "SASS UPDATER"
puts "A simple command line tool to convert old style Sass properties to the current convention"
puts "ie:"
puts "':displ... |
SYNONYM
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
import { Button, ButtonGroup, Intent, Label, MenuItem } from '@blueprintjs/core';
import { IconNames } from '@blueprintjs/icons';
import { sum } from 'd3-array';
import React from 'react';
import ReactTable, { Filter } from 'react-table';
import {
ACTION_COLUMN_ID,
ACTION_COLUMN_LABEL,
ACTION_COLUMN_WIDTH,
A... |
typedef struct _MY_PROCESS_INFO {
DWORD dwProcessId ;
CString szFilePath ;
} MY_PROCESS_INFO, *PMY_PROCESS_INFO ;
class CSelProcess : public CDialog
{
DECLARE_DYNAMIC(CSelProcess)
public:
CSelProcess(CWnd* pParent = NULL); // ±ê×¼¹¹Ô캯Êý
virtual ~CSelProcess();
// ¶Ô»°¿òÊý¾Ý
enum { IDD = IDD_DIALOG1 };
pro... |
class CreateAssets < ActiveRecord::Migration
def change
create_table :assets do |t|
t.string :asset_file_name
t.string :asset_content_type
t.integer :asset_file_size
t.datetime :asset_updated_at
t.integer :site_id
t.timestamps
end
end
end
|
/* Problem: Given a string, write a function to find out if the string is permutation of palindrome.
Note:
- Palindrome is a word or phrase which is same in front and backwards
Example: "madam" has characters appears same from front and the back
- Permutation is re-arrangement of characters
Example: "abc" and "... |
import React = require('react');
import Code = require('../general/Code');
import Subhead = require('../general/Subhead');
interface Props {
title?: string;
example: Object;
}
export class Component extends React.Component<Props, void> {
render(): React.ReactNode {
if (!this.props.example) {
... |
require 'rails_helper'
describe ProposalsController do
let!(:user) {User.create!(user_type: "faculty", name: "Roger Rabbit", email: "rr@wu.edu", password: "password")
}
let!(:proposal) { Proposal.create!( title: "Where is Bermuda Triangle", hypothesis: "Twilight Zone", summary: "This is stranger than fiction", pro... |
FROM elasticsearch:5.5.1-alpine
COPY config/* /usr/share/elasticsearch/config
|
import argparse
import gzip
import hashlib
import logging
import os
import re
import shutil
import subprocess
import sys
import tarfile
import tempfile
from typing import Any, IO, Iterable, List, Optional, Tuple
import urllib.request
import zipfile
# Make sure sockeye is on the system path
try:
from sockeye import... |
def warp_by_flow_backward(grad_inputs, inputs, input_shapes, outputs, output_shapes):
"""
Args:
grad_inputs (list of :obj:`nnabla.Variable`): Propagated grads to this backward function.
inputs (list of :obj:`nnabla.Variable` and None): Input Variables of the forward function
if this backwa... |
/* stddef.h:
* - NULL
* - size_t
*/
#include <stddef.h>
/*
* stdio.h:
* - fprintf
* - stderr
*/
#include <stdio.h>
/* stdlib.h:
* , calloc
* - free
* - malloc
* , realloc
*/
#include <stdlib.h>
/* string.h:
* - memcmp
* - memcpy
* - memmove
* - memset
* - strlen
*/
#includ... |
<?php
/**
*
* @package Core_Model
* @author Christian Gijtenbeek
*/
class Core_Model_Submit extends TA_Model_Acl_Abstract
{
/**
* Get submission by id
* @param integer $id Submission id
* @return Core_Resource_Submission_Item
*/
public function getSubmissionById($id)
{
$row = $this->getResource(... |
'use strict'
module.exports = makeContainer()
const components = require('./components')
function makeContainer() {
return class Container {
constructor(components) {
this.components = {}
this.setAll(components)
}
setAll(components) {
Object.keys(components || {}).forEach(key => {
... |
using System;
using System.Globalization;
using System.IO;
using System.Linq;
using Avalonia.Controls.Primitives;
using Avalonia.Data;
using Avalonia.Input;
using Avalonia.Interactivity;
using Avalonia.Threading;
using Avalonia.Utilities;
namespace Avalonia.Controls
{
/// <summary>
/// Control that represents... |
ACCEPTED
#### According to
The Catalogue of Life, 3rd January 2011
#### Published in
null
#### Original name
null
### Remarks
null |
using System;
using System.IO;
using System.Linq;
using System.Text;
using Midwhay.Core.Interface;
using Midwhay.Graph.Formatter;
namespace Midwhay.Graph
{
/// <summary>
/// A Writer which generates GraphViz DOT Format files from an Midwhay schema
/// </summary>
public class GraphVizWriter
{
... |
[](https://gitter.im/Fankserver/atom-firepad?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
This package for Atom adds collaborative editing support via [Firepad](http://firepa... |
package org.springframework.beans;
import java.beans.PropertyChangeEvent;
import org.springframework.lang.Nullable;
/**
* Superclass for exceptions related to a property access,
* such as type mismatch or invocation target exception.
*
* @author Rod Johnson
* @author Juergen Hoeller
*/
@SuppressWarnings("ser... |
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { LayoutModule } from './layout/layout.module';
import { NgReduxModule } from '@angular-redux/store';
import { StoreModule } from './store/store.module';
import { A... |
function NewIntlCollator() {
let obj = new Intl.Collator();
}
createSuite('NewIntlCollator', 100, NewIntlCollator, ()=>{});
function NewIntlDateTimeFormat() {
let obj = new Intl.DateTimeFormat();
}
createSuite('NewIntlDateTimeFormat', 100, NewIntlDateTimeFormat, ()=>{});
function NewIntlNumberFormat() {
let obj... |
import type { ILookerVersions } from '@looker/sdk-codegen'
import { BrowserTransport, DefaultSettings } from '@looker/sdk-rtl'
import type { RunItValues } from '../..'
export const RunItConfigKey = 'RunItConfig'
export const RunItFormKey = 'RunItForm'
export const RunItNoConfig = { base_url: '', looker_url: '' }
/*... |
/*
* 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.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed u... |
Code-signing private key notes
==
The private keys for these certificates were generated on Gavin's main work machine,
following the certificate authoritys' recommendations for generating certificate
signing requests.
For OSX, the private key was generated by Keychain.app on Gavin's main work machine.
The key and cer... |
package com.graphhopper.storage;
import com.graphhopper.util.Helper;
/**
* A helper class for GraphHopperStorage for its node access.
* <p/>
* @author Peter Karich
*/
class GHNodeAccess implements NodeAccess
{
private final GraphHopperStorage that;
private final boolean elevation;
public GHNodeAcces... |
-------------------------------------------------------------------------------------------------
IF OBJECT_ID( '[dbo].[CodegenTestStoredProcTableType]' ) IS NOT NULL
DROP PROCEDURE [dbo].[CodegenTestStoredProcTableType]
GO
IF EXISTS (SELECT * FROM sys.types st JOIN sys.schemas ss ON st.schema_id = ss.schema_... |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_60-ea) on Tue Sep 06 12:41:32 EDT 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ManagedScheduledExecutorS... |
<?xml version="1.0" encoding="utf-8"?>
<StructureDefinition xmlns="http://hl7.org/fhir">
<id value="oridashi-procedurerequest" />
<meta>
<lastUpdated value="2017-08-20T20:29:56.215+10:00" />
</meta>
<url value="http://oridashi.com.au/fhir/StructureDefinition/oridashi-procedurerequest" />
<name value="Ori... |
package v1alpha1
import (
"context"
"knative.dev/pkg/apis"
)
// Validate inspects and validates ClusterIngress object.
func (ci *ClusterIngress) Validate(ctx context.Context) *apis.FieldError {
return ci.Spec.Validate(apis.WithinSpec(ctx)).ViaField("spec")
}
|
from __future__ import absolute_import, division, print_function
__all__ = [
"__title__", "__summary__", "__uri__", "__version__", "__author__",
"__email__", "__license__", "__copyright__",
]
__title__ = "cryptography"
__summary__ = ("cryptography is a package which provides cryptographic recipes"
... |
<?php
namespace AppBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class NavigationController extends Controller
{
public function renderAction()
{
$nav = [
'Main Navigation' => [
'News' => 'news',
'Clanwars' => 'clanwar'
]
];
return $this->render('AppBundle:... |
using System;
using System.Globalization;
using Telerik.Core;
namespace Telerik.Charting
{
/// <summary>
/// Represents a data point that can be plotted on polar charts.
/// </summary>
/// <seealso cref="Telerik.UI.Xaml.Controls.Chart.RadPolarChart"/>
/// <seealso cref="Telerik.UI.Xaml.Controls.Ch... |
package com.oic.calcmarket.common.widgets.bill;
import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.ViewGroup;
import com.oic.calcmarket.R;
import com.oic.calcmarket.models.BaseBillData;
import butterknife.ButterKnife;
/**
* Created by khacpham ... |
[](https://travis-ci.org/ImmobilienScout24/gaius)
[](https://landscape.io/github/ImmobilienScout24/gaius/master)
[s.css')
register('css_blog', css) |
set system parameters 'no_backslash_escapes=yes';
select '\abc';
select '\a\d\e';
select '\'\"';
select '\\';
select '\\\\';
set system parameters 'no_backslash_escapes=no';
select '\abc';
select '\a\d\e';
select '\'\"';
select '\\';
select '\\\\';
commit;
--+ holdcas off;
|
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('projects', '0002_add_importedfile_model'),
]
operations = [
migrations.CreateModel(
name='Redirect',
fields=[
('id', models.AutoField(verbose_name='I... |
package com.thoughtworks.go.server.service.dd;
import com.thoughtworks.go.domain.materials.MaterialConfig;
/*
* Understands: Throws this exception when FainIn backtracking reaches the set limit
*/
public class MaxBackTrackLimitReachedException extends RuntimeException {
public MaxBackTrackLimitReachedException(... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package ui;
import java.awt.*;
import java.io.*;
import java.util.*;
import java.util.List;
import javax.swing.*;
public c... |
import { ChartPlugin } from './Plugin';
import { Trend } from "./Trend";
import Vector3 = THREE.Vector3;
import PerspectiveCamera = THREE.PerspectiveCamera;
import Scene = THREE.Scene;
import Renderer = THREE.Renderer;
import WebGLRenderer = THREE.WebGLRenderer;
import OrthographicCamera = THREE.OrthographicCamera;
im... |
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="/devwidgets/changepic/css/changepic.css" />
<link rel="stylesheet" type="text/css" href="/dev/lib/jquery/plugins/imgareaselect/imgareaselect-default.css" />
<!-- HTML -->
<div style="display:none" class="s3d-dialog s3d-dialog-container dailog_changepic" id="cha... |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>statsmodels.regression.mixed_linear_model.MixedLM.loglike — statsmodels v0.10.1 documentation</title>
<link rel="stylesheet" href="../_static/nature.css" type="text/css" />
<link rel="stylesheet" ... |
package stroom.pipeline.xml.converter;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
public interface ParserFactory {
XMLReader getParser() throws SAXException;
}
|
TMGSMS01 ;TMG/kst/OS SMS Message ;1/18/15, 2/24/21
;;1.0;TMG-LIB;**1**;12/9/14
;
;"TMG FUNCTIONS
;"I.e. functions that related to sending SMS messages
;
;"~--~--~--~--~--~--~--~--~--~--~--~--~--~--~--~--~--~--~--~--~--~--~--~--
;"Copyright (c) 6/23/2015 Kevin S. Toppenberg MD
;"
;"This file is part of... |
__author__ = 'Bohdan Mushkevych'
import unittest
import mock
from synergy.mq.flopsy import PublishersPool, _Pool, Publisher
from synergy.system.data_logging import get_logger
from tests.ut_context import PROCESS_UNIT_TEST, register_processes
class TestPublishersPool(unittest.TestCase):
@classmethod
def set... |
package com.rubix.config;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import org.mockito.stubbing.Answer;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation... |
<html>
<head>
<title>Build a form</title>
</head>
<body>
<form action=<?php
echo ($_SERVER['PHP_SELF']);
?> method="get">
<label>Search:<input type="text" name="search" size="5" maxlength="4" />
</label><br> <label>Suggestion: <textarea name="suggestions" cols="20"
rows="4"></textarea> </label><br>
<fie... |
using MarcelJoachimKloubert.Messages.ChatExample.Contracts;
using System;
using System.Text;
using System.Windows.Forms;
namespace MarcelJoachimKloubert.Messages.ChatExample
{
public partial class ChatForm : Form, IMessageHandler
{
#region Fields (1)
private static int _current... |
package jsf;
import java.util.ArrayList;
import java.util.List;
import javax.faces.application.FacesMessage;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import javax.faces.context.FacesContext;
import javax.faces.event.ActionEvent;
import javax.faces.model.DataModel;
import javax.faces... |
/**
*/
package edu.kit.ipd.sdq.kamp4aps.model.fieldofactivityannotations;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Training Doc Intern</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link edu.kit.ipd... |
namespace paddle {
namespace framework {
namespace details {
inline void InitVarsInScope(const std::vector<VarInfo> &var_infos, Scope *scope,
Scope *local_scope) {
VLOG(3) << "InitVarsInScope";
for (auto &info : var_infos) {
if (info.persistable_) { // Persistable
auto *var =... |
package ro.nextreports.designer;
import ro.nextreports.engine.band.Padding;
import ro.nextreports.engine.band.ParameterBandElement;
import ro.nextreports.engine.ReportLayout;
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.border.EmptyBorder;
import javax.swing.border.CompoundBorder;
impo... |
import contextlib
import os
import sys
import zipfile
__all__ = ('bootstrap_pex',)
def pex_info_name(entry_point):
"""Return the PEX-INFO for an entry_point"""
return os.path.join(entry_point, 'PEX-INFO')
def is_compressed(entry_point):
return os.path.exists(entry_point) and not os.path.exists(pex_info_name(... |
Rails.application.config.filter_parameters += [:password]
|
from .core import *
from .buyer import *
from .seller import *
__version__ = VERSION
__all__ = ('PATSBuyer', 'PATSSeller', 'PATSException', '__version__')
__author__ = 'Brendan Quinn'
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<!-- Common Lisp HyperSpec (TM), version 3.0 generated by kmp on Thu, 2-May-1996 10:21am EDT -->
<HTML>
<HEAD>
<TITLE>CLHS: Issue RETURN-VALUES-UNSPECIFIED:SPECIFY Summary</TITLE>
<META HTTP-EQUIV="Author" CONTENT="Kent M. Pitman">
<META HTTP-EQUIV="Organization" CONTE... |
layout: slide
---
{{{ slide.content }}}
{{{ slide.question.html }}}
<textarea rows="{{{ slide.rows }}}" style="width:95%" class='submitCompare'
placeholder='Type your answer (at least 140 characters)'>
</textarea>
<a class='btn btn-success submitCompare'>
Submit and Compare
</a>
<a class='btn btn-danger... |
package nextStep.noSql.cassandra;
import com.datastax.driver.core.Cluster;
import com.datastax.driver.core.Session;
public class Batch {
public static void main(String args[]){
//query
String query =" BEGIN BATCH "
+ "INSERT INTO emp (emp_id, emp_city,emp_name, emp_phone, emp_s... |
[](https://app.codeship.com/projects/238054) [](https://gemnasium.com/github.com... |
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
use app\commands\MainFunctions;
use kartik\file\FileInput;
/* @var $this yii\web\View */
/* @var $model common\models\OrderLevel */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="order-level-form box-padding" style="padding: 0 50px 0 30px;">
<?php ... |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Input;
namespace ReadySet.Core
{
public class BaseViewModel : INotifyPropertyChanged
{
... |
import shutil
from collections import OrderedDict
import http.server
import socketserver
import argparse
import json
import os
import numpy as np
from tqdm import tqdm
from jinja2 import Environment, FileSystemLoader
def bool_(string):
if string == 'True':
return True
elif string == 'False':
... |
package com.amazonaws.services.ec2.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.DescribeConversionTasksRequestMarshaller;
/**
*
*/
@Generated("com.amazonaws:aws-... |
FROM alpine:3.1
MAINTAINER David Sanders <dsanders11@ucsbalum.com>
# Install dependencies first for layer caching
RUN apk add --update-cache curl bash grep
# This is here first for maximum layer caching
ENTRYPOINT [ "/home/docker/docker-entry.sh" ]
# Add the Docker entrypoint
ADD docker-entry.sh /home/docker/docker... |
.class public abstract Lcom/android/internal/telephony/IccPhoneBookInterfaceManager;
.super Ljava/lang/Object;
.source "IccPhoneBookInterfaceManager.java"
# static fields
.field protected static final ALLOW_SIM_OP_IN_UI_THREAD:Z = false
.field protected static final DBG:Z = true
.field protected static final EVENT_... |
namespace views {
WebViewTestHelper::WebViewTestHelper() {
test_content_client_initializer_ =
std::make_unique<content::TestContentClientInitializer>();
// Setup to register a new RenderViewHost factory which manufactures
// mock render process hosts. This ensures that we never create a 'real'
// render... |
@media (max-width: 565px) {
.navbar-brand {
display: none; } }
@media (max-width: 665px) {
#topbar .breadcrumb {
float: none;
text-align: center; } }
/*===============================================
B. Content
================================================= */
#content,
#content:after,... |
package com.ToxicBakery.app.screenshot_redaction.widget;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.Paint.Style;
import android.graphics.Rect;
import android.graphics.RectF;
impor... |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<!--************************************************************************... |
addIndex() and dropIndex()- index with same name on same integer bin recreated.
--FILE--
<?php
include dirname(__FILE__)."/../../astestframework/astest-phpt-loader.inc";
aerospike_phpt_runtest("Index", "testCreateAndDropIndexSameIntegerBinWithSameNamePositive");
--EXPECT--
ERR_INDEX_FOUND
|
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectTasksOptions" suppressed-tasks="Jade;Traceur compiler;Babel" />
</project> |
extern "C" {
using namespace std;
// caller must free the returned memory
char* ADDCALL sass_string_quote (const char *str, const char quote_mark) {
string quoted = Sass::quote(str, quote_mark);
char *cstr = (char*) malloc(quoted.length() + 1);
std::strcpy(cstr, quoted.c_str());
return cstr;
}
... |
@class TSAccount;
@class TSCDAccount;
@class TSItem;
@class TSCDItem;
@class TSNotification;
@class TSCDNotification;
@class TSTab;
@class TSCDTab;
@class TSTransaction;
@class TSCDTransaction;
@class TSTabUser;
@class TSCDUser;
@class TSUserTabSplit;
@class TSCDUserTabSplit;
@interface TSCoreDataBridgingController : ... |
<?php
namespace nctech\usuariosBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* LxCustomers
*
* @ORM\Table(name="lx_customers")
* @ORM\Entity
*/
class LxCustomers
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(str... |
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/chatting_setmode_keyboard_btn_pressed" />
<item android:state_selected="true" android:drawable="@drawable/chatting_setmode_keyboard_bt... |
# selector-pseudo-class-whitelist
**_Deprecated: Instead use the [`selector-pseudo-class-allowed-list`](../selector-pseudo-class-allowed-list/README.md) rule._**
Specify a list of allowed pseudo-class selectors.
<!-- prettier-ignore -->
```css
a:hover {}
/** ↑
* This pseudo-class selector */
```
This rule ignore... |
ACCEPTED
#### According to
Interim Register of Marine and Nonmarine Genera
#### Published in
null
#### Original name
null
### Remarks
null |
from jira.resources import Resource
from airflow.contrib.operators.jira_operator import JIRAError
from airflow.contrib.operators.jira_operator import JiraOperator
from airflow.sensors.base_sensor_operator import BaseSensorOperator
from airflow.utils.decorators import apply_defaults
class JiraSensor(BaseSensorOperato... |
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<item value="C:\Users\ael10jso\Xilinx\embedded_bruteforce\brutus_system\software\brutus_hw_platform\system_bd.bmm" key="brutus_hw_platform-bmmFile"/>
<item value="C:\Users\ael10jso\Xilinx\embedded_bruteforce\brutus_system\software\brutus_sw\Debug\brutu... |
#ifndef MITKTRANFERFUNCTIONPROPERTY_H_HEADER_INCLUDED
#define MITKTRANFERFUNCTIONPROPERTY_H_HEADER_INCLUDED
#include "mitkBaseProperty.h"
#include "mitkTransferFunction.h"
namespace mitk
{
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4522)
#endif
/**
* @brief The TransferFunctionProperty cla... |
namespace Ui {
class Notes;
}
class Notes : public QDialog
{
Q_OBJECT
public:
explicit Notes(QWidget *parent = 0);
~Notes();
private:
Ui::Notes *ui;
};
#endif // NOTES_H
|
/*
* timg_starpu.c
*
* Implements a basic TIMG pipeline using StarPU and the ARL C Wrappers.
*
* Very much a work-in-progress with a lot of duplicated code.
* TODO: Some code sourced directly from ffi_demo.c, need to create separate
* source/header for all helper routines.
*
* Author: Arjen Tamerus <at748@cam... |
package com.cloud.api.command.admin.affinitygroup;
import com.cloud.api.APICommand;
import com.cloud.api.ApiConstants.VMDetails;
import com.cloud.api.ApiErrorCode;
import com.cloud.api.ResponseObject.ResponseView;
import com.cloud.api.ServerApiException;
import com.cloud.api.command.user.affinitygroup.UpdateVMAffinity... |
#ifndef __CCDECORATIVEDISPLAY_H__
#define __CCDECORATIVEDISPLAY_H__
#include "../utils/CCArmatureDefine.h"
#include "CCDisplayFactory.h"
#include "../datas/CCDatas.h"
#if ENABLE_PHYSICS_BOX2D_DETECT || ENABLE_PHYSICS_CHIPMUNK_DETECT || ENABLE_PHYSICS_SAVE_CALCULATED_VERTEX
#include "../physics/CCColliderDetector.h... |
bool glibc_sanity_test();
bool glibcxx_sanity_test();
#endif // BITCON_COMPAT_SANITY_H
|
<?php
class Foo
{
public function bar()
{
echo 'Do';
}
}
class MyFoo extends Foo
{
public function bar()
{
parent::bar();
echo ' more!';
}
}
class FooTest extends PHPUnit_Framework_TestCase
{
/**
* Foo Object
* @var Foo
*/
protected $_foo;
/**
* Setup environment
*/
public f... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>lambda: 26 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="styl... |