answer stringlengths 15 1.25M |
|---|
#ifndef __G_LIST_H__
#define __G_LIST_H__
#include <glib/gmem.h>
G_BEGIN_DECLS
typedef struct _GList GList;
struct _GList
{
gpointer data;
GList *next;
GList *prev;
};
/* Doubly linked lists
*/
GList* g_list_alloc (void) <API key>;
void g_list_free (GList *li... |
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include "el_defs.h"
#include "el_string.h"
void clearMarker(char * s, char marker)
{
char * pos;
if ((pos = strchr(s, marker)) != NULL) {
*pos = '\0';
}
}
Remove all leading spaces of string
Returns pointer to string, whi... |
#include <event.h>
#include "xBlog.h"
#include "xMysqlPool.h"
#include "xConfig.h"
#include "xBlogCache.h"
xBlog::xBlog()
{
memset(szDir, 0, sizeof(szDir));
#ifdef WIN32
WSADATA WSAData;
WSAStartup(0x101, &WSAData);
#else
if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
{
log_error("void xBlog::xBlo... |
.lv_window {
position: absolute;
top: 50%;
left: 50%;
padding: 0;
overflow: hidden;
text-align: left;
-<API key>: rgba(0,0,0,0);
}
.lv_window,
.lv_controls_top,
.<API key>,
.lv_thumbnails,
.<API key> {
z-index: 100000;
}
.lv_skin {
float: left;
width: 100%;
height: 100%;
position: relative;
ov... |
package rope1401;
import java.awt.*;
import java.awt.datatransfer.*;
public class ClipboardListener extends Thread implements ClipboardOwner
{
private final Clipboard sysClip;
RopeFrame mainFrame;
public boolean hasValidContent;
ClipboardListener (RopeFrame parent)
{
mainFrame = parent;
... |
<template name="postList">
<div class="row">
<div class="col-md-12 posts">
<div id="accordion_post" class="panel-group inPost">
{{#each postsWithRank}}
<!-- style="/* padding: 1em; background-color: #f3f3f3*/" -->
<div class="panel panel-default tags">
{{> postItem}}
</di... |
<?php
namespace Solution\MongoAggregation\Pipeline\Operators\Date;
use Solution\MongoAggregation\Pipeline\Operators\Operator;
class Minute extends Operator
{
function getName()
{
return 'minute';
}
} |
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
... |
package com.lgvalle.beaufitulphotos.fivehundredpxs.model;
import com.lgvalle.beaufitulphotos.R;
public enum Feature {
Popular("popular", R.string.feature_popular),
HighestRated("highest_rated", R.string.<API key>);
private final String param;
private final int title;
Feature(String param, int title)... |
package org.n52.v3d.triturus.gisimplm;
import org.n52.v3d.triturus.vgis.*;
import org.n52.v3d.triturus.core.T3dException;
import java.util.ArrayList;
/**
* Class to manage a grid holding elevation values. The grid is assumed
* to be parallel in line with the <i>x</i>- and <i>y</i>-axis. It might be specified
* as ve... |
#include "rstp.h"
#include "swsock.h"
#include "switch.h"
#include <sys/time.h>
pthread_t mgmt_thread;
pthread_t recv_thread;
pthread_t sig_thread;
LIST_HEAD(<API key>);
pthread_mutex_t list_lock;
extern char rstp_queue_name[32];
extern unsigned int <API key>(struct rstp_interface *);
struct rstp_bridge bridge;
// TODO... |
#include "settings/filesettingsbase.h"
namespace Settings {
TFileSettingsBase::TFileSettingsBase(const QString& filename) :
QSettings(filename, QSettings::IniFormat) {
}
TFileSettingsBase::~TFileSettingsBase() {
}
} // namespace Settings |
#ifndef G3D_COLOR3UINT8_H
#define G3D_COLOR3UINT8_H
#include "G3D/platform.h"
#include "G3D/g3dmath.h"
namespace G3D {
/*
Represents a Color3 as a packed integer. Convenient
for creating unsigned int vertex arrays. Used by
G3D::GImage as the underlying format.
<B>WARNING</B>: Integer color formats are different t... |
## Emacs, make this -*- mode: sh; -*-
FROM ubuntu:focal
LABEL org.label-schema.license="GPL-2.0" \
org.label-schema.vcs-url="https://github.com/rocker-org/r-ubuntu" \
org.label-schema.vendor="Rocker Project" \
maintainer="Dirk Eddelbuettel <edd@debian.org>"
## Set a default user. Available via runtime... |
<?php
/**
* @file
* Default simple view template to display a list of rows.
*
* @ingroup views_templates
*/
?>
<?php if (!empty($title)): ?>
<h3><?php print $title; ?></h3>
<?php endif; ?>
<div class="our-works-slider"><?php foreach ($rows as $id => $row): ?>
<div<?php if ($classes_array[$id]) { print ' class=... |
#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/init.h>
#include "pci_hotplug.h"
#include "acpiphp.h"
#define MY_NAME "acpiphp_pci"
static void <API key> (struct pci_dev *dev);
/* allocate mem/pmem/io resource to a new function */
static int init_conf... |
class CreateSellers < ActiveRecord::Migration
def change
create_table :sellers do |t|
t.integer :personId, null:false
t.integer :document, null:false
t.string :username, null:false, :limit =>50
t.string :userLastName, null:false, :limit =>50
t.string :email, null:false, :limit =>50... |
using System;
using System.Windows.Threading;
using PowerPointLabs.PictureSlidesLab.Thread.Interface;
namespace PowerPointLabs.PictureSlidesLab.Thread
{
class ThreadContext : IThreadContext
{
private readonly Dispatcher _dispatcher;
public ThreadContext(Dispatcher dispatcher)
{
... |
#ifdef _WIN32_WCE
#define _INC_TIME /* for wce.h */
#include <windows.h>
#endif
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <osipparser2/osip_port.h>
#ifdef HAVE_CTYPE_H
#include <ctype.h>
#endif
#include <time.h>
#if defined(__VXWORKS_OS__)
#include <selectLib.h>
#elif (!defined(WIN32) && !defi... |
package spiridon.carorder.caritems;
public class AlloyRimsCarItem extends CarItem {
@Override
public double getPrice() {
return 100;
}
@Override
public String getName() {
// TODO Auto-generated method stub
return "Jante Aliaj";
}
} |
; $Id: bs3-bootsector.asm $
;; @file
; Generic bootsector for BS3.
;
; This sets up stack at %fff0 and loads the next sectors from the floppy at
; %10000 (1000:0000 in real mode), then starts executing at cs:ip=1000:0000.
;
;
; Copyright (C) 2007-2016 Oracle Corporation
;
; This file is part of VirtualBox Open Source E... |
package edu.ku.brc.specify.tools.export;
import java.io.File;
import java.io.FileInputStream;
import java.io.<API key>;
import java.io.FileWriter;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import java.util.Locale;
import ... |
#include <math.h>
#include "Alienwah.h"
#include <stdio.h>
Alienwah::Alienwah(double sample_rate, uint32_t <API key>)
{
lfo = new EffectLFO(sample_rate);
Ppreset = 0;
PERIOD = <API key>; // correct for rakarrak, may be adjusted for lv2
fPERIOD = <API key>; // correct for rakarrak, may be adjusted for lv... |
#define DBACC_C
#include "Dbacc.hpp"
#include <AttributeHeader.hpp>
#include <Bitmask.hpp>
#include <signaldata/AccFrag.hpp>
#include <signaldata/AccScan.hpp>
#include <signaldata/NextScan.hpp>
#include <signaldata/AccLock.hpp>
#include <signaldata/EventReport.hpp>
#include <signaldata/FsConf.hpp>
#include <signaldata/... |
<?php
include_once dirname(__FILE__).'/class.wpcf-marketing.php';
/**
* Types Marketing Class
*
* @since Types 1.6.5
* @package Types
* @subpackage Classes
* @version 0.1
* @category Help
* @author marcin <marcin.p@icanlocalize.com>
*/
class <API key> extends <API key>
{
private $state;
public function... |
<!DOCTYPE HTML PUBLIC "-
<!--NewPage
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_23) on Thu Mar 31 17:56:21 CEST 2011 -->
<TITLE>
Colors
</TITLE>
<META NAME="date" CONTENT="2011-03-31">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
f... |
/*!
\class dimeInt16Record dime/records/Int16Record.h
\brief The dimeInt16Record class is a container class for 16-bit integer records.
*/
#include <dime/records/Int16Record.h>
#include <dime/Input.h>
#include <dime/Output.h>
#include <dime/util/MemHandler.h>
/*!
Constructor
*/
dimeInt16Record::dimeInt16Record(co... |
#include <linux/module.h>
#include <linux/video_output.h>
#include <linux/slab.h>
#include <linux/err.h>
#include <linux/ctype.h>
MODULE_DESCRIPTION("Display Output Switcher Lowlevel Control Abstraction");
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Luming Yu <luming.yu@intel.com>");
static ssize_t <API key>(struct device *d... |
#ifndef <API key>
#define <API key>
extern void **dynarr_new();
extern void **dynarr_destroy(void **arr);
extern void **dynarr_set(void **arr, size_t index, void* data);
extern void *dynarr_get(void **arr, size_t index);
#endif //<API key> |
<?php
namespace Album\Model;
/**
*
* @author Rogerio Lamarques
*
*/
use Zend\Db\TableGateway\TableGateway;
class AlbumTable
{
protected $tableGateway;
public function __construct(TableGateway $tableGateway)
{
$this->tableGateway = $tableGateway;
}
public function fetchAll()
{
... |
# -*- coding: utf-8 -*-
"""sdist tests"""
import os
import shutil
import sys
import tempfile
import unittest
import urllib
import unicodedata
import posixpath
from StringIO import StringIO
from setuptools.command.sdist import sdist
from setuptools.command.egg_info import manifest_maker
from setuptools.dist import Distr... |
<?php
/**
* This file has been @generated by a phing task by {@link <API key>}.
* See [README.md](README.md#generating-data) for more information.
*
* Pull requests changing data in these files will not be accepted. See the
* [FAQ in the README](README.md#<API key>] on how to make
* metadata changes.
*
* Do not... |
class <API key> < ActiveRecord::Migration
def change
rename_table :order_lines, :order_details
end
end |
<?php
/* core/themes/classy/templates/navigation/breadcrumb.html.twig */
class <API key> extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->parent = false;
$this->blocks = array(
);
}
protected function doDisplay... |
package jimmLangFileTool;
import java.util.Vector;
public class LGFileSubset extends Vector
{
private static final long serialVersionUID = 1L;
String id;
boolean removed;
public LGFileSubset(String _id)
{
super();
id = _id;
removed = false;
}
public LGFileSubset()
... |
<!DOCTYPE html>
<html xmlns:MadCap="http:
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<li... |
#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<vector>
#include<queue>
#include<map>
#include<set>
#include<ctime>
using namespace std;
typedef long long ll;
#define INF 0x3f3f3f3f
#define maxn 1111
char c[] = {'A', 'H', 'I', 'M', 'O', 'T', 'U', 'V', 'W', 'X', 'Y'}, s... |
package server.expeditions;
/**
*
* @author SharpAceX(Alan)
*/
public enum MapleExpeditionType {
BALROG_EASY(3, 30, 50, 255, 5),
BALROG_NORMAL(6, 30, 50, 255, 5),
SCARGA(6, 30, 100, 255, 5),
SHOWA(3, 30, 100, 255, 5),
ZAKUM(6, 30, 50, 255, 5),
HORNTAIL(6, 30, 100, 255, 5),
CHAOS_ZAKUM(6, 30,... |
package com.byhealth.wechat.mysdk.process.in.executor;
import com.byhealth.wechat.base.admin.entity.RespMsgActionEntity;
import com.byhealth.wechat.config.<API key>;
import com.byhealth.wechat.mysdk.constants.<API key>;
import com.byhealth.wechat.mysdk.context.WechatContext;
import com.byhealth.wechat.mysdk.process.ext... |
!function ($) {
"use strict";
var MultiSelect = function (element, options) {
this.options = options;
this.$element = $(element);
this.$container = $('<div/>', { 'class': "ms-container" });
this.$selectableContainer = $('<div/>', { 'class': 'ms-selectable' });
this.$selectionContainer = $('<div/... |
#include "person.h"
Person::Person()
{
hunger=0;
toilet=0;
WaitForDo=0;
}
void Person::AddToDo(Deal todo, float time)
{
ToDoList.append(qMakePair(todo,time));
if (WaitForDo==0) WaitForDo=time;
}
void Person::CheckDeal()
{
WaitForDo-=1;
if (WaitForDo<0)
{
if (!ToDoList.isEmpty())
... |
<?php
// We are adding thumbnail support for forums
add_action('init', '<API key>');
function <API key>() {
<API key>( 'forum', 'thumbnail' );
}
// We are adding bbpress support for theme special systems
add_action('<API key>', '<API key>');
function <API key>($array) {
$array[] = "forum";
$array[] = "topic... |
#ifndef LINUX_MMC_CARD_H
#define LINUX_MMC_CARD_H
#include <linux/device.h>
#include <linux/mmc/core.h>
#include <linux/mod_devicetable.h>
struct mmc_cid {
unsigned int manfid;
char prod_name[8];
unsigned char prv;
unsigned int serial;
unsigned short oemid;
... |
#include <linux/spinlock.h>
#include <linux/rcupdate.h>
#include <linux/gfp.h>
#include <linux/ip.h>
#include <linux/ipv6.h>
#include <net/sock.h>
#include <net/netlabel.h>
#include <net/ip.h>
#include <net/ipv6.h>
#include "objsec.h"
#include "security.h"
#include "netlabel.h"
/**
* <API key> - Cache a SID lookup
* ... |
<?php
return array(
'auth_url' => 'https://auth.selcdn.ru',
'auth_user' => '20531_test0',
'auth_key' => 'RP0crKEwNw',
'container_name' => 'test0',
'container_url' => 'https://71015.selcdn.ru/test0',
'<API key>' => '<API key>',
); |
<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
require_once( JPATH_COMPONENT.DS.'controller.php' );
// Require specific controller if requested
if($controller = JRequest::getWord('controller')) {
$path = JPATH_COMPONENT.DS.'controllers'.DS.$controller.'.php';
if (file_exists($path)) {
require_... |
#include <linux/module.h>
#include <linux/timex.h>
#include <linux/capability.h>
#include <linux/clocksource.h>
#include <linux/errno.h>
#include <linux/syscalls.h>
#include <linux/security.h>
#include <linux/fs.h>
#include <linux/math64.h>
#include <linux/ptrace.h>
#include <asm/uaccess.h>
#include <asm/unistd.h>
#inc... |
<!doctype html public "-
<html>
<head>
<title>PHPXRef 0.7.1 : Unnamed Project : Detail view of <API key>.svg</title>
<link rel="stylesheet" href="../../../sample.css" type="text/css">
<link rel="stylesheet" href="../../../sample-print.css" type="text/css" media="print">
<style id="hilight" type="text/cs... |
<iframe id="<API key>" name="<API key>" style="border: 0; width: 100%;height: 40px;overflow: auto">
</iframe>
<form class="normosa-ui-form" target="<API key>" method="post" action="<?php echo CONTEXT_PATH ?>/backend/plantation-city/users?action=update-password">
<div class="row">
<label class="label" for="p... |
// MPExtended is free software: you can redistribute it and/or modify
// (at your option) any later version.
// MPExtended is distributed in the hope that it will be useful,
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
usin... |
#include "openbios/config.h"
#include "openbios/bindings.h"
#include "asm/types.h"
/* program counter */
extern ucell PC;
extern unsigned char *dict;
extern cell dicthead;
extern ucell *last;
struct eregs {
uint32_t eax, ecx, edx, ebx, esp, ebp, esi, edi;
uint32_t vector;
... |
#include "AGESA.h"
#include <northbridge/amd/agesa/BiosCallOuts.h>
#include <northbridge/amd/agesa/state_machine.h>
#include "FchPlatform.h"
#include "cbfs.h"
#include "imc.h"
#include <stdlib.h>
const BIOS_CALLOUT_STRUCT BiosCallouts[] =
{
{AGESA_DO_RESET, agesa_Reset },
{AGESA_READ_SPD, ... |
/*!
* @file adv7180.c
*
* @brief Analog Device ADV7180 video decoder functions
*
* @ingroup Camera
*/
#include <linux/module.h>
#include <linux/init.h>
#include <linux/types.h>
#include <linux/delay.h>
#include <linux/device.h>
#include <linux/i2c.h>
#include <linux/videodev2.h>
#include <linux/regulator/consumer... |
<?php
/**
* Elgg users
* Functions to manage multiple or single users in an Elgg install
*
* @package Elgg.Core
* @subpackage DataModel.User
*/
Map a username to a cached GUID
global $<API key>;
$<API key> = array();
Map a user code to a cached GUID
global $<API key>;
$<API key> = array();
/**
* Return the user ... |
#include <linux/export.h>
#include "gigaset.h"
void gigaset_skb_sent(struct bc_state *bcs, struct sk_buff *skb)
{
}
EXPORT_SYMBOL_GPL(gigaset_skb_sent);
void gigaset_skb_rcvd(struct bc_state *bcs, struct sk_buff *skb)
{
}
EXPORT_SYMBOL_GPL(gigaset_skb_rcvd);
void <API key>(struct bc_state *bcs)
{
}
EXPORT_SYMBOL_GPL(<A... |
*******************************************************************//**
*//**
*/
// JC: Simplified Analysis:
// In pasting in a clip we choose to preserve the envelope so that the loudness of the
// parts is unchanged.
// 1) This may introduce a discontnuity in the envelope at a boundary between the
// old and NEW c... |
#include "fd.h"
float step_length_est_ac(struct waveAC *waveAC, struct waveAC_PML *waveAC_PML, struct matAC *matAC, struct fwiPSV *fwiPSV, struct mpiPSV *mpiPSV,
struct seisPSV *seisPSV, struct seisPSVfwi *seisPSVfwi, struct acq *acq, float *hc, int iter, int nsrc, int ns, int ntr, int ntr_glob, float * epst1,... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body{
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
background-color: #EEE;
}
#wide{
border-top: 15px solid #853B45;
padding: 15px;
padding-top:... |
#pragma once
#include <stdarg.h>
#include "android/utils/compiler.h"
<API key>
/* These are always defined, so you can write your own macros that
* call them, independently of the value of ACONFIG_USE_ASSERT
*/
/* Used internally by the macros to register the current source location */
void _android_assert_loc(const... |
/* 2 column liquid layout */
#wpwrap {
height: auto;
min-height: 100%;
width: 100%;
position: relative;
}
#wpcontent {
height: 100%;
}
#wpcontent,
#wpfooter {
margin-left: 165px;
}
.folded #wpcontent,
.folded #wpfooter {
margin-left: 52px;
}
#wpbody-content {
padding-bottom: 65px;
fl... |
<?php
defined('_JEXEC') or die;
use Joomla\CMS\Component\ComponentHelper;
use Joomla\CMS\Factory;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Object\CMSObject;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Session\Session;
use Joomla\Component\Fields\Administrator\Helper\FieldsHelper;
/**
* Editor Fields button
*
... |
<?php
$t_document_file = dirname(__FILE__).'/<API key>.html';
if(defined('DIR_FS_CATALOG'))
{
include $t_document_file;
}
else
{
?>
<!DOCTYPE html>
<html>
<head>
<title>Protected Shops</title>
<style>
body { font: 0.8em sans-serif; }
</style>
</head>
<body>
<?php include $t_document_file; ?>
</b... |
namespace Trados2007.UnitTests
{
using System.Globalization;
using Rhino.Mocks.Interfaces;
using Sdl.LanguagePlatform.Core;
using Sdl.Community.Trados2007;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using Sdl.LanguagePlatform.TranslationMemory;
using Rhino.Mocks;
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace YouWalk.Portal.Controllers
{
public class IndexController : Controller
{
public ActionResult Index()
{
return View();
}
}
} |
#include "renderer.h"
#include "controller.h"
#include "renderableobject.h"
#include <QtQuick/qquickwindow.h>
#include <QtGui/<API key>>
#include <QtGui/QOpenGLContext>
#include <QGLFormat>
#include <QOpenGLContext>
#include <iostream>
#include <cmath>
#include <<API key>>
using namespace std;
namespace CompPhys {
void... |
#ifndef <API key>
#define <API key>
#include "svnjobbase.h"
#include <QVariant>
#include <kurl.h>
#include <vcs/vcsrevision.h>
#include <vcs/vcsevent.h>
class SvnInternalLogJob;
class SvnLogJob : public SvnJobBase
{
Q_OBJECT
public:
SvnLogJob( KDevSvnPlugin* parent );
QVariant fetchResults();
void start... |
#ifndef VOLUME_RENDERER_H
#define VOLUME_RENDERER_H
#include "GL/glew.h"
#include "<API key>.h"
#include <QWidget>
class <API key>;
class VolumeRenderWidget;
class QSlider;
class <API key> VolumeRenderer : public QWidget
{
Q_OBJECT
public:
VolumeRenderer();
~VolumeRenderer();
void SetData(int* sizes_t, ... |
// This program is free software; you can redistribute it and/or
// as published by the Free Software Foundation; either version 2
// This program is distributed in the hope that it will be useful,
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// DESCRIPTION:
// Mission begin melt/wipe screen spec... |
package loci.visbio;
import java.awt.Color;
import java.io.IOException;
import java.lang.reflect.Constructor;
import java.lang.reflect.<API key>;
import java.lang.reflect.Method;
import loci.visbio.util.InstanceServer;
import loci.visbio.util.SplashScreen;
/**
* VisBio is a biological visualization tool designed for e... |
<?php
if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' );
global $<API key>,$mosConfig_live_site;
if( !class_exists( 'jconfig' )) {
$global_lang = $GLOBALS['mosConfig_lang'];
@include( dirname( __FILE__ ).'/../../../configuration.php' );
$GLOBALS['mos... |
<HTML><HEAD><TITLE>Hex27PV_f90</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</HEAD><FRAMESET COLS="100%%,*" ROWS="100%%,*"><FRAME SRC="../2433.html"></FRAMESET></HTML> |
<?php
defined( 'ABSPATH' ) or die( 'You cannot access this script directly' );
// Hook importer into admin init
add_action( 'admin_init', 'hb_importer' );
function hb_importer() {
global $wpdb;
if ( current_user_can( 'manage_options' ) && isset( $_GET['import_content_data'] ) ) {
if ( !defined('WP_LOAD_... |
package org.adempierelbr.model;
import java.sql.ResultSet;
import java.util.Properties;
public class <API key> extends <API key>
{
/**
* Serial Version
*/
private static final long serialVersionUID = 1L;
/**************************************************************************
* Defaul... |
/** \file sonar_maxbotix.h
*
* simple driver to deal with one maxbotix sensor
*/
#ifndef <API key>
#define <API key>
#include "std.h"
#include "mcu_periph/adc.h"
extern uint16_t sonar_meas;
extern uint16_t sonar_thresh;
extern uint16_t v1;
extern uint16_t v2;
extern uint16_t v3;
extern bool_t <API key>;
extern void ... |
c4lmw14
====
Code{4}Lib MidWest 2014 slides |
package ca.mbabic.headphonecontroller.statemachine;
import java.lang.Thread.State;
import java.util.concurrent.Semaphore;
import android.util.Log;
import ca.mbabic.headphonecontroller.services.<API key>;
public class HCStateMachine {
/**
* Reference to <API key> such that after command execution
* we can ... |
#include "ObjectMgr.h"
#include "ScriptMgr.h"
#include "ScriptedCreature.h"
#include "SpellScript.h"
#include "Spell.h"
#include "SpellAuraEffects.h"
#include "PassiveAI.h"
// Emerald Dragon NPCs and IDs (kept here for reference)
enum EmeraldDragonNPC
{
NPC_DREAM_FOG = 15224,
DRAGON_YSONDRE ... |
package com.oracle.graal.hotspot.stubs;
import static com.oracle.graal.hotspot.<API key>.INJECTED_VMCONFIG;
import static com.oracle.graal.hotspot.replacements.<API key>.<API key>;
import static com.oracle.graal.hotspot.replacements.<API key>.<API key>;
import static com.oracle.graal.hotspot.replacements.<API key>.<API... |
// NEXELL INFORMS THAT THIS CODE AND INFORMATION IS PROVIDED "AS IS" BASE
// BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS
// FOR A PARTICULAR PURPOSE.
// Module : TIMER
// File : nx_timer.c
// Description :
// Author : Goofy
// History ... |
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http:
<channel>
<title>Introduction to New Media - satellites</title>
<link>http://machines.plannedobsolescence.net.51-2007/taxonomy/term/114/0</link>
<description></description>
<language>en</language>
<item>
<title>Google Earth, yay...?</title>
... |
"""
Stateful module base class and interface description.
All stateful Python modules
- Get Skype4Py Skype instance on init - have full control over Skype and
thus are not limited to !command handlers
- Reside in the some modules/ folder as UNIX script modules
- Have .py extension and be valid... |
<?php
function set_allowedposttags($content){
global $allowedposttags;
$allowedposttags['dl'] = array(
'class' => array(),
'id' => array()
);
$allowedposttags['dt'] = array(
'class' => array(),
'id' => array()
);
$allowedposttags['dd'] = array(
'class' => array(),
'id' => array()
)... |
<?php
/**
* Template Name: WDM Search Page
*/
include(WP_PLUGIN_DIR.'/wdm-search/wdm-query.php');
global $wp_query, $product_page_width, $product_sidebar, $<API key>;
$product_sidebar = false;
if (prima_get_option('themelayout') == 'boxed') {
$product_page_width = 665;
}
else {
$product_page_width = 720;
}
$img_w... |
#include <config.h>
#include "GameView.hpp"
#include "gui/TextureManager.hpp"
#include "gui/Painter.hpp"
#include "gui/Rect2D.hpp"
#include "gui/Color.hpp"
#include "gui/ComponentFactory.hpp"
#include "gui/XmlReader.hpp"
#include "gui/Event.hpp"
#include "PhysfsStream/PhysfsSDL.hpp"
#include "gui/Paragraph.hpp"
#includ... |
// own
#include "videopage.h"
// JoschyCore
#include <joschycore/manager.h>
#include <joschycore/plugininfo.h>
#include <joschycore/abstractprovider.h>
// KDE
#include <kmessagebox.h>
#include <kdebug.h>
#include <QtCore/QFile>
VideoPage::VideoPage(QWidget *parent)
: QWizardPage(parent), m_provider(0)
{
setupUi... |
@extends('OutGoingMessages.Emails.masterEmail')
@section('emailContent')
<h3>Hello {{{ $name }}},</h3>
<p>
Below are links that depending where you are located will send you to the correct update screen. There are two because one address is for use within the SUNY Orange network, the other for use at a personal/hom... |
using System;
using System.Text.RegularExpressions;
using SelfMediaDatabase.Core.Operations.Prune;
using System.Collections.Generic;
namespace SelfMediaDatabase.Core.Operations
{
public static class FileFilterProvider
{
private static readonly Regex _tagFileRegex;
private static readonly Regex <... |
package org.owasp.benchmark.testcode;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet("/BenchmarkTest12371")
publ... |
#ifndef BLENDERWINDOW_H_
#define BLENDERWINDOW_H_
#include "<API key>.h"
class blenderWindow: public <API key> {
public:
blenderWindow();
virtual ~blenderWindow();
void setup();
void update();
void draw();
virtual void reset();
int offView; //offset for 3D Viewport
// see windowState dia... |
<html>
<head>
<title>MHonArc Resources: IDXPREFIX</title>
<link rel="stylesheet" type="text/css" href="../docstyles.css">
</head>
<body>
<!--x-rc-nav
<table border=0><tr valign="top">
<td align="left" width="50%">[Prev: <a href="idxpgssmarkup.html">IDXPGSSMARKUP</a>]</td><td><nobr>[<a href="../resources.html#idxpr... |
using UnityEngine;
public static class <API key> {
public static AnimationCurve Clamp(this AnimationCurve curve, float minTime, float maxTime, float minValue, float maxValue) {
for (int i = 0; i < curve.keys.Length; i++) {
Keyframe key = curve.keys[i];
if (key.time < minTime || key.t... |
<div class="cover-page">
<header>
<h1>Book title</h1>
<h2>Book subtitle</h2>
</header>
</div>
<nav class="mw-book-toc">
<h1>Table of Contents</h1>
<ul>
<li class="mw-book-tocitem <API key> level-2">
<a href="#Section_1" <API key>="1">Section 1</a>
</li>
<li class=... |
<?php
//DRY don't repeat yourself
$tipo_usuario = array('Adm','FBA','Lab');
require_once '../validarSesion.php';
require_once '../../model/resultado_interface.php';
require_once '../../model/<API key>.php';
$parametro_template = 'abm/resultado.html';
$parametro_columnas = Array('ID_RESULTADO','COMENTARIO','FECHA ANALIS... |
package layout;
import java.awt.BorderLayout;
import java.awt.GridLayout;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import swing.Sample;
@SuppressWarnings("serial")
public class SignUpPanel e... |
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.Win32;
using Sdl.Community.XLIFF.Manager.Common;
using Sdl.Community.XLIFF.Manager.Interfaces;
namespace Sdl.Community.XLIFF.Manager.Service
{
public class DialogService : IDialogService
{
public List<string> ShowFileD... |
<?php
require 'config.php';
// $_user_ = 'test';
// $_password_ = 'test';
session_start();
$url_action = (empty($_REQUEST['action'])) ? 'logIn' : $_REQUEST['action'];
$auth_realm = (isset($auth_realm)) ? $auth_realm : '';
if (isset($url_action)) {
if (is_callable($url_action)) {
call_user_func($url_action);... |
<!DOCTYPE HTML PUBLIC "-
<!--NewPage
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_18) on Tue Nov 02 13:16:53 CET 2010 -->
<TITLE>
com.redhat.rhn.frontend.html.test Class Hierarchy
</TITLE>
<META NAME="date" CONTENT="2010-11-02">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TIT... |
<!doctype html>
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]-->
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<!... |
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import (
scoped_session,
sessionmaker,
)
from zope.sqlalchemy import <API key>
import tornado.web
from handlers.index import IndexHandler
from handlers.sensors import SensorsHandler
import logging
logging.getLogger().setLevel(loggin... |
# This code is free software; you can redistribute it and/or modify it
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# This code is distributed in the hope that it will be useful, but WITHOUT
# accompanied this code).
# 2 along... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.