code stringlengths 4 1.01M | language stringclasses 2
values |
|---|---|
# sets the last write time to now
# usage: ls -Recursion | .\touch
$now = Get-Date
foreach ($i in $input) {
$i.LastWriteTime = $now
echo $i.Name
} | Java |
---
layout: page
title: Advocacy
date: 2013-01-08 22:41:31.000000000 -06:00
type: page
published: true
status: publish
categories: []
tags: []
header: true
---
The **Open Austin Policy Team** works with local governments and public agencies, in support of open government and civic technologies.
* TOC
{:toc}
---
## ... | Java |
const fs = require('fs');
const electron = require('electron');
const cl = require('node-opencl');
const RUN_GAMELOOP_SYNC = true;
const GAMETICK_CL = true;
const INIT_OPENGL = false;
let canvas; // canvas dom element
let gl; // opengl context
let clCtx; // opencl context
let glProgram; // opengl shader prog... | Java |
package net.yottabyte.game;
import java.awt.*;
/**
* @author Jason Fagan
*/
public class BouncyBall {
private int x;
private int y;
private int vx;
private int vy;
private int radius;
private int drag;
private int mass;
public BouncyBall(int x, int y, int vx, int vy, int radius, in... | Java |
//
// UITextView+PinchZoom.h
//
// Created by 余洪江 on 16/03/01.
// Copyright © MRJ. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UITextView (PinchZoom)
@property (nonatomic) CGFloat maxFontSize, minFontSize;
@property (nonatomic, getter = iszoomEnabled) BOOL zoomEnabled;
@end
| Java |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>OpenJPEG: invert.c File Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.3.2 -->
<div class="qin... | Java |
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel.DataAnnotations.Schema;
using System.Security.Claims;
using System.Threading.Tasks;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
namespace ProjetoModelo.Infra.CrossCut... | Java |
from sqlalchemy import create_engine, Column, Integer, String, ForeignKey, Table
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker, relationship
# demo many to many relationship
# http://docs.sqlalchemy.org/en/rel_0_9/orm/basic_relationships.html#many-to-many
engine = cre... | Java |
/**************************************************************************
* Copyright 2016 Observational Health Data Sciences and Informatics (OHDSI)
*
* 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 Li... | Java |
/*
@author Zakai Hamilton
@component CoreJson
*/
screens.core.json = function CoreJson(me, { core, storage }) {
me.init = function () {
if (me.platform === "server") {
me.request = require("request");
}
};
me.loadComponent = async function (path, useCache = true) {
... | Java |
exports = module.exports = addShims;
function addShims() {
Function.prototype.extend = function(parent) {
var child = this;
var args = Array.prototype.slice.call(arguments, 0);
child.prototype = parent;
child.prototype = new (Function.prototype.bind.apply(parent, args))();
child.prototype.constr... | Java |
#!/usr/bin/env bash
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$CURRENT_DIR/helpers.sh"
print_battery_percentage() {
# percentage displayed in the 2nd field of the 2nd row
if command_exists "pmset"; then
pmset -g batt | grep -o "[0-9]\{1,3\}%"
elif command_exists "upower"; then
lo... | Java |
package audits
import scala.concurrent.Future
/** Dao for storing and retrieving events */
trait EventDao {
/** Write a new Event to the system */
def write(description: String): Future[Unit]
}
| Java |
body {
text-align: center; }
.clearer {
clear: both; }
.modal {
text-align: left; }
h1 {
margin-bottom: 1.3em; }
.alert {
width: 50%;
margin: auto; }
#rules {
margin-top: 1em; }
.rule {
margin: 1px 10px;
padding: 10px 0;
position: relative;
clear: both;
text-align: left;
border: 1px soli... | Java |
<?php
if(empty($_POST['tipname'])||empty($_POST['tipid'])) exit;
include("../theme/language/en/language.php");
echo $_POST['tipid']."<!-|||->";
switch ($_POST['tipname'])
{
case 'select_mode_free': echo $lang['tip_free'];
break;
case 'select_mode_host': echo $lang['tip_host'];
break;
case 'select_mode_local': ec... | Java |
// stdafx.cpp : source file that includes just the standard includes
// GetFolderTime.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
| Java |
//
// UIImage+IL_ContentWithColor.h
// ILDiligence
//
// Created by XueFeng Chen on 2017/5/14.
// Copyright © 2017年 XueFeng Chen. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface UIImage (IL_ContentWithColor)
- (UIImage *)il_imageContentWithColor:(UIColor *)color;
@end
| Java |
public class RandomColoringDiv2 {
public int getCount(int maxR, int maxG, int maxB, int startR, int startG, int startB, int d1,
int d2) {
int colors = 0;
int minR = Math.max(0, startR - d2);
int minG = Math.max(0, startG - d2);
int minB = Math.max(0, startB - d2);
... | Java |
import os
# Application constants
APP_NAME = 'job_offers'
INSTALL_DIR = os.path.dirname(os.path.abspath(__file__))
LOG_FORMAT = '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
LOG_NAME = os.path.join(INSTALL_DIR, 'job_offers.log')
# Testing fixtures
JOB_OFFER_FIXTURES = os.path.join(INSTALL_DIR, "fixtures/job_... | Java |
package hr.element.etb.lift.http
import net.liftweb.http.js._
import net.liftweb.util.Helpers._
package object js {
case class Prompt(text: String, default: String = "") extends JsExp {
def toJsCmd = "prompt(" + text.encJs + "," + default.encJs + ")"
}
case object ReloadPage extends JsCmd {
def toJsCmd... | Java |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><HEAD>
<TITLE>Web Gallery - Bonaire 2007-05-10 16-37-06</TITLE>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<LINK href="ass... | Java |
require 'exception_notification/rails'
require 'exception_notification/sidekiq'
ExceptionNotification.configure do |config|
# Ignore additional exception types.
# ActiveRecord::RecordNotFound, AbstractController::ActionNotFound and ActionController::RoutingError are already added.
# config.ignored_exceptions += ... | Java |
/*globals document, setTimeout, clearTimeout, Audio, navigator */
var MallardMayhem = MallardMayhem || {};
(function () {
"use strict";
MallardMayhem.Duck = function (options) {
var self = this;
this.currentTimeout = null;
this.domElement = document.createElement('span');
th... | Java |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
namespace GestionInmobiliaria.RESTServices
{
using GestionInmobiliaria.BusinessEntity;
using GestionInmobiliaria.BusinessLogic;
using System.ServiceModel.Web... | Java |
<?php
namespace SKE\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Compo... | Java |
// Copyright (c) Microsoft Corporation. All rights reserved.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
using System.Text.RegularExpressions;
using System.Xml;
using Diagnostics.Tracing;
using Diagnostics.Tracing.Parsers;
using FastSerialization;
using Ut... | Java |
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>assets/css/pages/datatables.css">
<link href="<?php echo base_url(); ?>assets/vendors/bootstrapvalidator/css/bootstrapValidator.min.css" rel="stylesheet">
<script type="text/javascript" src="<?php echo base_url(); ?>assets/vendors/bootstrapvalidator/... | Java |
package br.com.tosin.ssd.utils;
/**
* Created by roger on 11/03/17.
*/
public class CONSTANTS_DIRECTIONS {
public static final String NORTH = "N";
public static final String SOUTH = "S";
public static final String WEST = "W";
public static final String EAST = "E";
p... | Java |
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
using IFSExplorer.Properties;
namespace IFSExplorer
{
public partial class MainForm : Form
{
private static readonly Dictionary<int,... | Java |
#!/usr/bin/env node
var http = require('http');
var moment = require('moment');
var server = undefined;
var threshold = undefined;
var units = undefined;
if (!isValid(process.argv)) {
console.error('invalid arguments, expected hostname threshold and units');
process.exit(-1);
}
var request = http.request('http://... | Java |
/*******************************************************************************
Add to .git/hooks/pre-commit (and chmod +x) to enable auto-linting/uglifying:
#!/bin/sh
grunt build
if [ $? -ne 0 ]; then
exit 1
fi
git add deflector.min.js
exit 0
*********************************************************************... | Java |
using System;
using System.Reactive;
using System.Reactive.Concurrency;
using System.Reactive.Subjects;
using System.Threading;
using System.Threading.Tasks;
using BFF.DataVirtualizingCollection.PageStorage;
using MrMeeseeks.Reactive.Extensions;
namespace BFF.DataVirtualizingCollection.DataVirtualizingCollection
{
... | Java |
<!DOCTYPE html>
<html lang="en-US">
<head>
<base href="http://localhost/wordpress" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wrigley-1981 The population history of England, 1541-1871: a re | Communicating with Prisoners</title>
<link rel='stylesheet' id... | Java |
#! /bin/bash
## Test of SIMPLI provisionning module
source ../../../../test/test_common.sh "webstorm module provisionning - manual"
## load simpli which will do apt-get update
export SIMPLI_SKIP_APT_UPDATE=1
export SIMPLI_SKIP_APT_UPGRADE=1
source "${SIMPLI_DIR}/bin/index.sh"
OSL_EXIT_abort_execution_if_bad_retcode ... | Java |
#!/usr/bin/python
# uart-eg01.py
#
# to run on the other end of the UART
# screen /dev/ttyUSB1 115200
import serial
def readlineCR(uart):
line = b''
while True:
byte = uart.read()
line += byte
if byte == b'\r':
return line
uart = serial.Serial('/dev/ttyUSB0', baudrate=115200, timeout=1)
while True:
uart... | Java |
#include "serverBase.h"
int main(int argc, char** argv)
{
unsigned portNumber = 12943;
if(argc >= 2)
{
portNumber = atoi(argv[1]);
}
try
{
asio::io_service io_service;
asio::ip::tcp::endpoint endpoint(asio::ip::tcp::v4(), portNumber);
TCPServer server(io_service, endpoint);
... | Java |
/*
* NOTE: This copyright does *not* cover user programs that use HQ
* program services by normal system calls through the application
* program interfaces provided as part of the Hyperic Plug-in Development
* Kit or the Hyperic Client Development Kit - this is merely considered
* normal use of the program, and do... | Java |
from rec import CourseRecord
from score import RoomScore
from evaluation import ScheduleEvaluation
FULL_HOURS = 8 # 8:00AM - 4:00PM utilization
PARTIAL_HOURS = FULL_HOURS * 0.75 #75%
HALF_HOURS = FULL_HOURS * 0.50 #50%
SPARSE_HOURS = FULL_HOURS * 0.25 #25%
class LocationScore:
def __init__(self, evals=No... | Java |
package es.com.blogspot.elblogdepicodev.activiti;
import java.text.MessageFormat;
import java.util.HashMap;
import java.util.Map;
import org.activiti.engine.ProcessEngine;
import org.activiti.engine.ProcessEngineConfiguration;
import org.activiti.engine.ProcessEngines;
import org.activiti.engine.RepositoryService;
im... | Java |
package ua.clinic.tests.integration;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfi... | Java |
@"%~dp0edit.bat" %*
| Java |
require 'google_tts/connector'
require 'google_tts/query_builder'
require 'google_tts/parser'
require 'google_tts/mp3writer'
module GoogleTts
VERSION = "0.1.0"
class Client
include GoogleTts
def initialize(connector = Connector.new,
query_builder = QueryBuilder.new,
... | Java |
Imports System.Collections.Generic
Public Enum DutyType
Undefined
Lekarska
Pielęgniarska
Other
End Enum
Public Class Duty
' Formating:
' f_ - form value
' d_ data base value
' other
'Public id_ As UInteger
Public d_id_ As Integer
Public f_id_ As Integer
Public f_... | Java |
"""redblue_project URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.9/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
C... | Java |
using UnityEngine;
using UnityEngine.SceneManagement;
public class ShowModeA : MonoBehaviour {
public Texture AModeTexture;
public Texture BModeTexture;
private PlayerControllerBMode playerControllerBMode;
private GameController gameController;
void Start () {
InitPlayerController();
... | Java |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MergeType - FAKE - F# Make</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull">
<... | Java |
//
// Author: Wolfgang Spraul
//
// This is free and unencumbered software released into the public domain.
// For details see the UNLICENSE file at the root of the source tree.
//
#include "model.h"
#include "control.h"
// for slx9 and slx9
#define NUM_ROWS 4
#define FRAMES_DATA_START 0
//#define FRAMES_DATA_LEN ... | Java |
// Implements http://rosettacode.org/wiki/Loops/For
// not_tested
use std::iter;
fn main() {
for i in iter::range_inclusive(1u, 5) {
for _ in iter::range_inclusive(1u, i) {
print!("*")
}
println!("")
}
}
| Java |
# Xcode Snippets
## CLI Build
```bash
xcodebuild -list -project Project.xcodeproj
xcodebuild -scheme iOS build
```
## CLI Test
```bash
xcodebuild test -project Project.xcodeproj -scheme Tests -destination 'platform=iOS Simulator,name=iPad Air 2,OS=10.0'
```
## CLI xcrun
```bash
xcrun -sdk iphoneos swiftc -target ... | Java |
/*
* Copyright 2002-2008 the original author or authors.
*
* 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 requi... | Java |
# belfast-cares-app
### Prerequisites
- NPM installed : https://nodejs.org/en/download/
- Git installed : https://git-scm.com/download/win
- Java 8 JDK : http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
- Android SDK : https://developer.android.com/studio/index.html
### Setting up ... | Java |
#define LOG_MODULE PacketLogModuleIgmpLayer
#include "IgmpLayer.h"
#include "PacketUtils.h"
#include "Logger.h"
#include <string.h>
#include "EndianPortable.h"
namespace pcpp
{
/*************
* IgmpLayer
*************/
IgmpLayer::IgmpLayer(IgmpType type, const IPv4Address& groupAddr, uint8_t maxRes... | Java |
#include "line_modification.hh"
#include "buffer.hh"
#include "unit_tests.hh"
namespace Kakoune
{
static LineModification make_line_modif(const Buffer::Change& change)
{
LineCount num_added = 0, num_removed = 0;
if (change.type == Buffer::Change::Insert)
{
num_added = change.end.line - change.beg... | Java |
// -*- Mode: objc -*-
@import Cocoa;
#import "CoreConfigurationModel.h"
@interface KarabinerKitConfigurationManager : NSObject
@property(readonly) KarabinerKitCoreConfigurationModel* coreConfigurationModel;
+ (KarabinerKitConfigurationManager*)sharedManager;
- (void)save;
@end
| Java |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="Author" content="Made by 'tree'">
<meta name="GENERATOR" content="$Version: $ tree v1.6.0 (c) 1996 - 2011 by Steve Baker, Thomas Moo... | Java |
#ifndef __NETWORKBALANCER_HPP
#define __NETWORKBALANCER_HPP
#include <stdlib.h>
namespace Network
{
class NetworkBalancer
{
public:
/**
* @brief NetworkBalancer Class constructor
*/
NetworkBalancer();
/**
* @brief sendTroughBalancer Sends a buffer throu... | Java |
from djangosanetesting.cases import HttpTestCase
from django.conf import settings
from django.core.urlresolvers import reverse
from django.core import mail
from accounts.tests import testdata
class TestResetPassword(HttpTestCase):
def __init__(self, *args, **kwargs):
super(self.__class__, self).__init__(*a... | Java |
/**
* This is a demo class
*
* @author Ravi
*/
public class Demo
{
/**
* This is the main method
*
* @param args
*/
public static void main(String[] args)
{
System.out.println("This is a demo.");
}
}
| Java |
# 00Text
[3ds Homebrew] Open Source text editor with an old mobile phone like keyboard. To use it just take the 00Text folder and put it with your other homebrews (3ds folder in your sd).
# Instructions
Use the different buttons to select the letters
| BUTTON | USE |
|---|---|
| UP | A B C |
| RIGHT | D E F |
| DOWN... | Java |
package com.github.alkedr.matchers.reporting.reporters;
import org.junit.Test;
import static com.github.alkedr.matchers.reporting.reporters.Reporters.noOpSafeTreeReporter;
import static com.github.alkedr.matchers.reporting.reporters.Reporters.noOpSimpleTreeReporter;
public class NoOpReportersTest {
@Test
pub... | Java |
energies = dict()
energies[81] = -3.17 # Ammoniadimer.xyz
energies[82] = -5.02 # Waterdimer.xyz
energies[83] = -1.50 # BenzeneMethanecomplex.xyz
energies[84] = -18.61 # Formicaciddimer.xyz
energies[85] = -15.96 # Formamidedimer.xyz
energies[86] = -20.65 # Uracildimerhbonded.xyz
energies[87] ... | Java |
// --------------------------------------------------------------------------
// Citadel: CfgFiles.h
//
// For figuring out how to configure ourselves.
#ifdef MAIN
char *citfiles[] =
{
"GRPDATA.CIT", "EXTERNAL.CIT", "CONFIG.CIT",
"CRON.CIT", "ROUTE.CIT", "HARDWARE.CIT",
"NODES.CIT... | Java |
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<link href="layout.css" charset="utf-8" type="text/css" rel="stylesheet"></link>
<TITLE>SDL_CreateWindow</TITLE>
</HEAD>
<BODY>
<script src="menu.js"></script>
<div id=pagecontent>
<h1>SDL_CreateWindow</h1>
<p>Use this function to create a... | Java |
<!DOCTYPE html>
<html lang="en-US">
<head>
<base href="http://localhost/wordpress" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bulfinch-1827 Report of Charles Bulfinch on the Subject of Penitentiaries, | Communicating with Prisoners</title>
<link rel='st... | Java |
export class InvalidTimeValueError extends Error {
constructor(unit: string, providedValue: number) {
super(`Cannot create a valid time with provided ${unit} value: ${providedValue}`);
}
}
| Java |
avatar = function(x){
this.x = x;
this.y = 0;
this.prevY = 0;
this.velocity_x = 0;
this.velocity_y = 0;
this.img = loadImage("stickman.png");
this.crouch = loadImage("crouch.png");
this.width = 16;
this.standingHeight=64;
this.crouchHeight=44;
this.height = this.standingHeight;
this.collisionCheck = [];
};... | Java |
/* * * * * * * * * * * * * * * * * * * * * * * * * * *
* SYSTEM/FS/FAT.H *
* * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef FAT_H_INCLUDED
#define FAT_H_INCLUDED
#include <FORMATTING.H>
typedef struct _FAT121632_BPB {
uint8_t OEMName[8];
uint16_t BytesPerSector;
uint8_t SectorsPe... | Java |
#include "Union.h"
bool Union::contains(const Vector2D& point) const
{
for (auto&& figure : figures)
if (figure->contains(point))
return true;
return false;
}
Figure* Union::createCopy() const {
return new Union(*this);
}
std::ostream &operator<<(std::ostream& os, const Union* un)
{
... | Java |
---
title: Contact
layout: blank
---
<p>Contact me at <a href="mailto:mssurajkaiga@gmail.com">mssurajkaiga@gmail.com</a> or <a href="http://www.github.com/mssurajkaiga">www.github.com/mssurajkaiga</a></p> | Java |
from bitmovin.utils import Serializable
class AutoRestartConfiguration(Serializable):
def __init__(self, segments_written_timeout: float = None, bytes_written_timeout: float = None,
frames_written_timeout: float = None, hls_manifests_update_timeout: float = None,
dash_manifests_u... | Java |
#include "com_object.hpp"
#include <Windows.h>
namespace pw
{
com_object::com_object()
{
CoInitializeEx(nullptr, COINIT_MULTITHREADED);
}
com_object::~com_object()
{
CoUninitialize();
}
}
| Java |
package crashreporter.api;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Registry for API provider objects.
*
* @author Richard
*/
public class Registry {
private static final Map<String, Pasteb... | Java |
package gui.dragndrop;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.input.*;
import javafx.scene.layout.*;
import javafx.scene.paint.Color;
import javafx.stage.Stage;
public class DragAndDrop extends Application
{
public void start(Stage stag... | Java |
var leaderboard2 = function(data) {
return data.data.sort(function(a,b){return b.points-a.points;});
};
function liCreate(name,points) {
var li = $('<li>'+name+'</li>');
li.append('<span>'+points+'</span>');
}
$(document).ready(function() {
// var sorted = leaderboard2(data);
// for (var i=0; i<sorted.leng... | Java |
package lcd2usb
import (
"errors"
"fmt"
"github.com/schleibinger/sio"
)
type cmd byte
const (
cmdPrefix cmd = 0xfe
cmdBacklightOn = 0x42
cmdBacklightOff = 0x46
cmdBrightnes = 0x99 // brightnes
cmdContrast = 0x50 // contrast
cmdAutoscrollOn = 0x51
cmdAutoscroll... | Java |
public class Student {
private String namn;
private int födelseår, status, id;
public Student(){}
public String getNamn() {
return namn;
}
public void setNamn(String nyNamn) {
namn=nyNamn;
}
public int getId() {
return id;
}
public void setId(int nyId) {
id=nyId;
}
public int getStatus() {
ret... | Java |
package com.jerry.controller;
import com.jerry.model.TBanquet;
import com.jerry.service.BanquetService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web... | Java |
---
title: Multicluster
test: n/a
---
Multicluster is a deployment model that consists of a
[mesh](/docs/reference/glossary/#service-mesh) with multiple
[clusters](/docs/reference/glossary/#cluster).
| Java |
/*!
* Ext JS Library 3.4.0
* Copyright(c) 2006-2011 Sencha Inc.
* licensing@sencha.com
* http://www.sencha.com/license
*/
/**
* @class Ext.dd.DragTracker
* @extends Ext.util.Observable
* A DragTracker listens for drag events on an Element and fires events at the start and end of the drag,
* as well a... | Java |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="SHORTCUT ICON" href="../../../../../img/clover.ico" />
<link rel="stylesheet" href="../../../../../aui/css/aui.min.css" media... | Java |
<?php
/**
* @link https://www.humhub.org/
* @copyright Copyright (c) 2015 HumHub GmbH & Co. KG
* @license https://www.humhub.com/licences
*/
namespace humhub\modules\content\widgets;
/**
* Delete Link for Wall Entries
*
* This widget will attached to the WallEntryControlsWidget and displays
* the "Delete" Li... | Java |
/*
* 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"); you may ... | Java |
using IronFoundry.Warden.Containers;
using Xunit;
namespace IronFoundry.Warden.Test
{
using System;
public class ContainerHandleTests
{
[Theory]
[InlineData(1, "idq1ypm7dyb")]
[InlineData(2, "1of9dl2qia1")]
public void GeneratesIdFromRandomGenerator(int input, string expec... | Java |
Pindrop {#pindrop_index}
=======
[Pindrop][] is an audio engine designed with the needs of games in mind. It's
not just an audio mixer, it also manages the prioritization, adjusts gain based
distance, manages buses, and more. It is largely data-driven. The library user
needs only to load a handful of configurati... | Java |
/**
* Copyright 2014 TangoMe 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.0
*
* Unless required by applicable law or ag... | Java |
/*
* 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"); you may ... | Java |
package org.renjin.primitives;
import org.renjin.eval.Context;
import org.renjin.eval.EvalException;
import org.renjin.primitives.annotations.processor.ArgumentException;
import org.renjin.primitives.annotations.processor.ArgumentIterator;
import org.renjin.primitives.annotations.processor.WrapperRuntime;
import org.... | Java |
/*******************************************************************************
* Copyright 2012 EMBL-EBI, Hinxton outstation
*
* 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
*
* h... | Java |
<p>
This example shows how Telerik DatePicker for ASP.NET MVC is being validated through the built-in server-side validation capabilities of ASP.NET MVC.
</p>
<pre class="prettyprint">
<%= Html.ValidationSummary() %>
<% using (Html.BeginForm("Action", "Controller")) { %>
<%= Html.Telerik().DatePick... | Java |
package com.baicai.util.help;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.beetl.core.Configuration;
import org.beetl.core.GroupTemplate;
import org.beetl.core.Template;
import org.beetl.core.resource.FileReso... | Java |
using System.Diagnostics;
namespace Lucene.Net.Index
{
using Lucene.Net.Util;
/*
* 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.
... | Java |
package files
import (
"bytes"
"io"
"io/ioutil"
"strings"
"github.com/golang/protobuf/proto"
"github.com/octavore/nagax/util/errors"
uuid "github.com/satori/go.uuid"
"github.com/willnorris/imageproxy"
"github.com/ketchuphq/ketchup/proto/ketchup/models"
)
func (m *Module) Upload(filename string, wr io.Reade... | Java |
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [SystemInfo](./puppeteer.protocol.systeminfo.md) > [GPUInfo](./puppeteer.protocol.systeminfo.gpuinfo.md) > [videoEncoding](./puppete... | Java |
sap.ui.define(['sap/ui/webc/common/thirdparty/base/asset-registries/Icons'], function (Icons) { 'use strict';
const name = "status-completed";
const pathData = "M256 0q53 0 99.5 20T437 75t55 81.5 20 99.5-20 99.5-55 81.5-81.5 55-99.5 20-99.5-20T75 437t-55-81.5T0 256t20-99.5T75 75t81.5-55T256 0zM128 256q-14 0-23 9t-9 ... | Java |
package com.yueny.demo.downlatch.holder;
import java.util.List;
import java.util.Vector;
import org.apache.commons.collections4.CollectionUtils;
import com.yueny.demo.downlatch.bo.RecoverResult;
/**
* @author yueny09 <deep_blue_yang@163.com>
*
* @DATE 2016年3月22日 下午1:15:25
*
*/
public class Trans... | Java |
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Web.Http;
using Divergent.Sales.Data.Context;
namespace Divergent.Sales.API.Controllers
{
[RoutePrefix("api/orders")]
public class OrdersController : ApiController
{
private readonly ISalesContext _context;... | Java |
from google.appengine.ext import db
class Stuff (db.Model):
owner = db.UserProperty(required=True, auto_current_user=True)
pulp = db.BlobProperty()
class Greeting(db.Model):
author = db.UserProperty()
content = db.StringProperty(multiline=True)
avatar = db.BlobProperty()
date = db.DateTimeProp... | Java |
package io.github.mayunfei.simple;
/**
* Created by mayunfei on 17-9-7.
*/
public class OrientationUtils {
}
| Java |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using LCL.Domain.Model;
using LCL.Domain.Specifications;
namespace LCL.Domain.Repositories.Specifications
{
public class SalesOrderIDEqualsSpecification : Specification<SalesOrder>
{
private readonly G... | Java |
/*
* Swift Parallel Scripting Language (http://swift-lang.org)
* Code from Java CoG Kit Project (see notice below) with modifications.
*
* Copyright 2005-2014 University of Chicago
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the Licens... | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.