content
stringlengths
10
4.9M
// taskstats reads netlink process metrics. func taskstats() { for { nlMsg := make([]byte, 1024) n, _, err := syscall.Recvfrom(h.gd, nlMsg, 0) if err != nil { errorChan <- core.Error("recvfrom", err) return } msgs, _ := syscall.ParseNetlinkMessage(nlMsg[:n]) for _, m := range msgs { if m.Header.Ty...
Partial irradiation of the lung. Many factors like fractionation, overall treatment time, and patient specific aspects are important when studying and quantifying the effects of partial lung irradiation. The local reactions of lung tissue to irradiation are described with regard to the dose-volume effect. Different mo...
David Miranda, the partner of a journalist at the heart of the Edward Snowden NSA surveillance firestorm, handed over to British intelligence the crypto passwords for digital files they seized from him when he stopped over in the UK en route from a meeting with a US film-maker who was also involved with the Snowden dis...
A panel led by former Hillary Clinton Hillary Diane Rodham ClintonREAD: Cohen testimony alleges Trump knew Stone talked with WikiLeaks about DNC emails County GOP in Minnesota shares image comparing Sanders to Hitler Holder: 'Time to make the Electoral College a vestige of the past' MORE and Mitt Romney campaign offici...
def arcsec2phys_lens(self, arcsec): return arcsec * const.arcsec * self.D_d
/********************************************************************* ** Program Filename: CombatRunner.hpp ** Author: <NAME>-Middleton ** Date: 10/28/15 ** Description: Contains the CombatRunner class definition and ** member declarations. The CombatRunner class provides ** a means to run r...
"""Correlations between variables.""" import warnings from typing import Dict, List, Optional, Sized import numpy as np import pandas as pd from multimethod import multimethod from pandas.core.base import DataError from pandas_profiling.config import Settings class Correlation: @staticmethod def compute(con...
/** * Created by ymcvalu on 2017/5/9. */ public class StringUtil { public static String ignoreSpace(String str){ if(isEmptyString(str)) return null; return str.trim(); } public static boolean isEmptyString(String str){ if(str==null||str.equals("")||str.isEmpty()) ...
def rate(track_id, rating): event_id = str(uuid.uuid4()) timestamp = int(time.time()) if track_id.startswith('T'): track = {'metajamCompactKey': track_id} else: track = {'lockerId': track_id} return { 'createdTimestampMillis': timestamp, 'details': { 'rating': { 'context': {}, 'ratin...
def gui_func(to_return="result", note=None, on_stopped="error"): def wrapper(func): def wrapped(*args, **kwargs): return call_in_gui_thread(func,args,kwargs,to_return=to_return,note=note,on_stopped=on_stopped) return wrapped return wrapper
<gh_stars>100-1000 import csv import os import re from .chat_processor import ChatProcessor from .default.processor import DefaultProcessor PATTERN = re.compile(r"(.*)\(([0-9]+)\)$") fmt_headers = ['datetime', 'elapsed', 'authorName', 'message', 'superchatAmount', 'authorType', 'authorChannel'] class ...
/** * This is where, the schema gets instantiated from the template. */ public Set instantiate (TemplateWizard wizard) throws IOException { FileObject dir = Templates.getTargetFolder( wizard ); DataFolder df = DataFolder.findFolder( dir ); FileObject template = Template...
/** * Utility method for decoding an LZW-compressed image strip. * Adapted from the TIFF 6.0 Specification: * http://partners.adobe.com/asn/developer/pdfs/tn/TIFF6.pdf (page 61) * Author: Curtis Rueden (ctrueden at wisc.edu) */ public byte[] lzwUncompress(byte[] input) { if (input==null || input.length==0) r...
Story highlights James Doohan played Scotty in the original "Star Trek" television series His ashes are among those of 320 people in orbit on a rocket The rocket eventually will burn up when it falls back into Earth's atmosphere Some of Mercury 7 astronaut Gordon Cooper's ashes also are on board In the end, it was ...
<filename>core/src/main/java/com/codepoetics/magicbeans/morphisms/Isomorphisms.java<gh_stars>0 package com.codepoetics.magicbeans.morphisms; import com.codepoetics.magicbeans.lenses.Lens; import com.google.common.base.Function; public class Isomorphisms { public static <F, G> Isomorphism<F, G> fromFunctions(fina...
// This file is part of Bit.Country. // Copyright (C) 2020-2021 Bit.Country. // SPDX-License-Identifier: Apache-2.0 // 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...
/** * This is an action method that should be called by a button in the JSF * page to add a newly created persistent bean to persistent storage. * * A more detailed description of this action method can be found in the * class description. * * @post (getInstance() == null) * ? 'ret...
<filename>crypter.go /*- * Copyright 2014 Square 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 applic...
def error_email_body_content(doi, jats_content, error_messages): content = "" if error_messages: content += str(error_messages) content += ( "\n\nMore details about the error may be found in the worker.log file\n\n" ) if doi: content += "Article DOI: %s\n\n" % doi...
<reponame>tanish-g/Pytorch_Fanatics import numpy as np import torch from tqdm import tqdm from torch.autograd import Variable from matplotlib import pyplot as plt class LRFinder: def __init__(self,model,train_dataloader,optimizer,device,initial_lr=1e-8,final_lr=10,beta=0.98): self.model=model self....
× Dog missing nearly a year found one day after owner renewed post on Craigslist ARVADA, Colo. — A Wesminster man was reunited with his best friend this week, nearly a year after the dog disappeared. “Last April, Humberto’s best friend Buddy was taken from his yard in Westminster,” the Arvada Police Department said o...
A new coworking space called Ironfire is under construction in Long Beach and is seeking the support of the community to help with some of the startup costs. To be located near the Long Beach Airport and Long Beach City College, Ironfire will be a space where freelancers, entrepreneurs, small business owners and more ...
from __future__ import absolute_import from django.http import HttpRequest from rest_framework.exceptions import AuthenticationFailed from sentry.api.authentication import ClientIdSecretAuthentication from sentry.mediators.sentry_apps import Creator from sentry.testutils import TestCase class TestClientIdSecretAuth...
/** * @author Jeeva Kandasamy (jkandasa) * @since 0.0.3 */ @Data @ToString public abstract class RuleDefinitionAbstract { protected static final String GET_CONDITION_STRING_EXCEPTION = "oops! exception occurred! possible cases: resource might not be available! Exception: "; private Integer id; ...
import styled from 'styled-components'; import Advertise from '../Advertise'; import Step from './Step'; import Footer from '../Footer'; const ADArea = styled.div` height: 13.02vh; `; const FooterArea = styled.div` height: 6.25vh; `; const StepArea = styled.div` height: 80.73vh; `; const PaymentPage = () => {...
/** * An Orc source code text editor. * * @author jthywiss */ public class OrcEditor extends TextEditor { private OrcContentOutlinePage contentOutlinePage; /** * Constructs an object of class OrcEditor. */ public OrcEditor() { super(); setDocumentProvider(new OrcDocumentProvi...
/** * Allows executing this server as a standalone application. No * verifications of command line arguments are performed. * * <p> * * <b>WARNING!</b> This is only meant to be used for debugging. * * @param args Command line arguments. */ public static void main(final Strin...
Endophytic Colonization of Onions Induces Resistance Against Viruliferous Thrips and Virus Replication In agricultural ecosystems, insect pests, pathogens, weather patterns, and reduced soil fertility pose major challenges to crop productivity and are responsible for significant yield losses worldwide. Iris yellow spo...
class ScopeType: """Standard ASGI event type strings.""" HTTP = 'http' WS = 'websocket' LIFESPAN = 'lifespan'
// NewMBC0 creates a new memory bank controller of type 0 func NewMBC0(data []byte) MemoryBankController { return &mbc0{ memory: data, } }
export enum UserSearchMode { UID = 'UID', EMAIL = 'EMAIL', CHARACTER = 'CHARACTER' }
package com.liuyi.toutiao.configuration; import com.liuyi.toutiao.Interceptor.LoginRequiredInterceptor; import com.liuyi.toutiao.Interceptor.PassportInterceptor; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import org.springframework.web.servlet.config...
// postSignup handles request for a new account creation. func (a *Api) postSignup(w http.ResponseWriter, r *http.Request) { var m postSignupRequestModel if err := json.NewDecoder(r.Body).Decode(&m); err != nil { w.WriteHeader(http.StatusBadRequest) return } acc, err := a.AccountUseCases.LoggerCreateAccount(a.A...
import { Component, ElementRef, EventEmitter, Input, Output, OnDestroy, Renderer2, OnInit } from '@angular/core'; @Component({ selector: 'app-dialog', templateUrl: './dialog.component.html', styleUrls: ['./dialog.component.scss'] }) export class DialogComponent implements OnDestroy, OnInit { @Input() autoWi...
n=int(input()) from collections import Counter s=[] for i in range(n): read=list(input()) read.sort() s.append("".join(read)) ans=0 dic=Counter(s) for i in dic: ans=ans+dic[i]*(dic[i]-1)//2 print(ans)
/* eslint-disable react/prop-types */ import React from 'react'; import { Drawer } from 'antd'; import { bindActionCreators, Dispatch } from 'redux'; import { connect } from 'react-redux'; import * as Actions from '../../../state/actions'; import ChatList from './ChatList'; import ChatMessages from './ChatMessages'; ...
# Copyright (C) 2015-2023 by the RBniCS authors # # This file is part of RBniCS. # # SPDX-License-Identifier: LGPL-3.0-or-later from rbnics.reduction_methods.nonlinear_parabolic.nonlinear_parabolic_pod_galerkin_reduction import ( NonlinearParabolicPODGalerkinReduction) # from rbnics.reduction_methods.nonlinear_par...
/** * Interface for launching a URL in a browser, which uses reflection. * * <p>Subclass must set browseObject and browseMethod appropriately. */ private abstract static class ReflectiveLauncher implements Launcher { protected Object browseObject; protected Method browseMethod; @Override p...
def authored_during_period(self, start, end, restrict_to_instruments=None): results = [] for qnr in self.qnrs: if qnr.authored < start: continue if qnr.authored >= end: return results if (restrict_to_instruments and ...
// New constructs a new Auth instance with supplied options. func New(auth *Auth, o Options) error { if o.RefreshTokenValidTime <= 0 { o.RefreshTokenValidTime = defaultRefreshTokenValidTime } if o.AuthTokenValidTime <= 0 { o.AuthTokenValidTime = defaultAuthTokenValidTime } if o.BearerTokens { if o.AuthTokenN...
<filename>client/imports/app/shared/rsvp.pipe.ts import { Pipe, PipeTransform } from '@angular/core'; import { Party } from "../../../../both/models/party.model"; import { Parties } from "../../../../both/collections/parties.collection"; @Pipe({ name: 'rsvp' }) export class RsvpPipe implements PipeTransform { ...
<filename>client/src/components/TaskForm.tsx import React from 'react'; import { useForm } from '../hooks/useForm'; import { Form, Button } from 'semantic-ui-react'; import { start, createTaskSuccess, toggleForm, failure, } from '../store/tasks/taskSlice'; import { useAppDispatch, useAppSelector } from '../hook...
/** * Created by chenchongze on 16/11/3. */ public class PublishPolicyLoader { private static PublishPolicy publishPolicy = ExtensionLoader.getExtension(PublishPolicy.class); private static final Logger logger = LoggerLoader.getLogger(PublishPolicyLoader.class); static { if (publishPolicy == null...
t=int(input()) for _ in range(t): n=int(input()) p=[];c=[] for i in range(n): p_i,c_i=map(int,input().split()) p.append(p_i) c.append(c_i) dp=p[0];dc=c[0] if dp-dc<0: print("NO") else: for i in range(1,n): ...
/** * Business logic for workflow step Define Basis * * @author Michael Kraxner, Markus Hamm */ @Stateful @ConversationScoped public class DefineBasis extends AbstractWorkflowStep { private static final long serialVersionUID = -2269973220973705568L; public DefineBasis() { this.requiredPlanState = ...
<gh_stars>10-100 package org.poly2tri.triangulation.delaunay.sweep; public class AdvancingFrontIndex<A> { double _min,_max; IndexNode<A> _root; public AdvancingFrontIndex( double min, double max, int depth ) { if( depth > 5 ) depth = 5; _root = createIndex( depth ); ...
/** * A stateful {@linkl DoFn} that emits new available {@link TopicPartition} regularly. * * <p>Please refer to * https://docs.google.com/document/d/1FU3GxVRetHPLVizP3Mdv6mP5tpjZ3fd99qNjUI5DT5k/edit# for more * details. */ @SuppressWarnings({"nullness"}) @Experimental class WatchKafkaTopicPartitionDoFn extends D...
package service // EndpointService represents a simple bootable object being able to serve // network resources. type EndpointService interface { // Boot initializes and starts the whole server like booting a machine. // Listening to a socket should be done here internally. The call to Boot // blocks forever. Boot...
<reponame>griffithlab/civic-v2<filename>client/src/app/forms/assertion-revise/assertion-revise.module.ts import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { AssertionReviseForm } from './assertion-revise.form'; import { RouterModule } from '@angular/router'; import { React...
Get the biggest weekly stories by email Subscribe Thank you for subscribing See our privacy notice Could not subscribe, try again later Invalid Email After almost 40 years in business, Nervous Records has long been one of Hinckley’s most beloved indie shops. Tucked away in The Lawns, music lovers from across the area...
/* This project uses automatic dependency resolution feature of Maven to resolve Aspose.Email for Java API reference when the project is build. Please check https://maven.apache.org/what-is-maven.html for more information. If you do not wish to use Maven, you can manually download Aspose.Email for Java API from http://...
My friend Phil Attey asks why Obama keeps mentioning gays and lesbians in his speeches – speeches he makes to the public at large, not just gay audiences – and Hillary never does. Phil writes: Last month, a gay Philadelphian LGBT publisher raised the issue that Senator Obama, though often addressing LGBT issues and in...
<filename>SkankySDK.framework/Headers/QCTextView.h<gh_stars>1-10 @interface QCTextView : NSTextView + (id)sharedInstance; - (void)_windowDidResignKeyNotification:(NSNotification*)notification; - (void)keyDown:(NSEvent*)event; - (BOOL)validateMenuItem:(NSMenuItem*)menuItem; - (BOOL)performKeyEquivalent:(NSEvent*)key; @e...
import { createAnnotationService, ICreateAnnoOptions } from "../src/create"; import { annotationServiceDefinition } from "../src/layer-definition"; import { annoSearchResponse, emptyAnnoSearchResponse } from "./mocks/ago_search"; import { portalResponse } from "./mocks/portal"; import { UserSession } from "@esri/ar...
BANGKOK (Reuters) - Thailand is putting the finishing touches this month to a lavish five-day funeral ceremony in a final goodbye to its late King Bhumibol Adulyadej, who helped shape the Southeast Asian nation for decades after World War Two. Many of the hundreds of thousands of black-clad mourners are expected to ca...
/** * Draws a string that is aligned by one anchor point and rotated about * another anchor point. * * @param text * the text. * @param canvas * the graphics device. * @param x * the location of the text anchor. * @param y * ...
<filename>src/app/admin/master/accounts/accounts.module.ts import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { NgbModule } from '@ng-bootstrap/ng-bootstrap'; import { CommonModule } from '@angular...
/// Create a new joint target. pub fn joints(joints: impl Into<msg::EgmJoints>, time: impl Into<msg::EgmClock>) -> Self { Self { time: Some(time.into()), joints: Some(joints.into()), cartesian: None, external_joints: None, } }
<gh_stars>0 #![cfg(feature = "leveldb")] use futures01::{Future, Sink}; use prost::Message; use tempfile::tempdir; use tracing::trace; use vector::event; use vector::test_util::{self, next_addr}; use vector::topology::{self, config}; use vector::{buffers::BufferConfig, runtime, sinks}; mod support; fn terminate_grac...
/** * Retrieves an organization unit from the customer's domain. * * @param customerId * @param orgUnitPath the path of the unit to be retrieved for e.g /corp * @return a GenericEntry instance. * @throws AppsForYourDomainException * @throws MalformedURLException * @throws IOException * @thro...
/** * Creates and exposes a TilesContainer for this web application, * delegating to the TilesInitializer. * @throws TilesException in case of setup failure */ public void afterPropertiesSet() throws TilesException { SpringWildcardServletTilesApplicationContext preliminaryContext = new SpringWildcardServl...
def convert(self): graph_def, input_tensors, output_tensors = self._load_saved_model( self.saved_model_dir, self._saved_model_tags) if self.saved_model_dir is None or not self.experimental_new_converter: graph_def, _, _, _ = _freeze_saved_model( self.saved_model_dir, None, None, None, se...
<filename>generate/generate.go<gh_stars>10-100 package generate import ( "io" "log" "time" "github.com/aaasen/kapok/parse" ) func Generate(in io.Reader, nodes io.Writer, rels io.Writer, maxPages int) { nodes.Write([]byte("i:id\ttitle\tl:label\n")) rels.Write([]byte("start\tend\ttype\n")) gen := NewCSVGenera...
<gh_stars>0 import { Component, Host, Prop, Listen, h } from '@stencil/core'; import { RouterHistory } from '@stencil/router'; import '@stencil/router'; @Component({ tag: 'bb-connector', styleUrl: 'bb-connector.css', shadow: true }) export class BbConnector { /** * The path of the component you want to dis...
<filename>src/com/hackerrank/easy/CompareTriplets.java package com.hackerrank.easy; import java.util.Arrays; import java.util.List; public class CompareTriplets { static List<Integer> compareTriplets(List<Integer> a, List<Integer> b) { int totalA = 0, totalB = 0; for (int i = 0; i < a.size(); i++) { ...
def fixup_path(path): result = path if path is not None: result = path.replace('\\', '/') if result.endswith('/'): result = result[:-1] return result
import { XButtonModule } from '@ng-nest/ui/button'; import { ComponentFixture, TestBed, __core_private_testing_placeholder__ } from '@angular/core/testing'; import { XRateComponent } from './rate.component'; import { Component, DebugElement } from '@angular/core'; import { By } from '@angular/platform-browser'; import...
<filename>externals/binaryen/test/emscripten/system/lib/libc/musl/src/env/__init_tls.c<gh_stars>10-100 #include <elf.h> #include <limits.h> #include <sys/mman.h> #include <string.h> #include "pthread_impl.h" #include "libc.h" #include "atomic.h" #ifndef SHARED struct tls_image { void *image; size_t len, size, align...
/** * On Run we want to invoke the dispatch method to contact the RMI server. */ public void run() { try { dispatch(); } catch (RemoteException e) { e.printStackTrace(); } catch (MalformedURLException e) { e.printStackTrace(); } catch (NotBoundException e) { e.printStackTrace(); } }
import Koa from "koa"; import koaBody from "koa-body"; import helmet from "koa-helmet"; import serve from "koa-static"; import bodyClean from "koa-body-clean"; import koaValidator from "koa-async-validator"; import views from "koa-views"; import winston from "winston"; import "reflect-metadata"; import { createConnect...
package logging import ( "io" "os" ) type Settings struct { Level Level Caller Caller Color Color Prefix string Writer io.Writer // PreProcess sets a pre processing function to act as a middleware // on the line before it is written to stdout, allowing it to get modified // depending on custom logic. This...
export interface WeatherResponse { city: string; temp: string; }
def _create_db_columns_def_(self): columns = {} first_dict = self.new_data[0] for key, value in first_dict.items(): columns.update({key: None}) for key, value in first_dict.items(): if key == 'IpAddress': columns[key] = 'TEXT PRIMARY KEY' ...
Development of an optimal measuring device selection system using neural networks An optimal measuring device selection system using neural networks is proposed. There are two major steps. First, the measuring information such as curvature, normal, type of surface, edge and facet approximation is extracted from the co...
def density_flux_task(a, kernel, i_pad, j_pad): m, n, _ = a.shape k = kernel.shape[0] out = np.zeros((m, n, 1), np.float32) for i in range(i_pad, m - i_pad): for j in range(j_pad, n - j_pad): out[i, j, 0] += a[i, j, 0] if a[i, j, 2] == 0 or a[i, j, 0] == 0: ...
def read_yaml(self, yaml_file): if not os.path.isfile(yaml_file): err = 'Path not found for {}' raise AutoProcessorError(err.format(yaml_file)) doc = XnatUtils.read_yaml(yaml_file) self._check_default_keys(yaml_file, doc) self.attrs = doc.get('attrs') self...
Commuters walk around the Paul Sarbanes Transportation Center in Silver Spring. The center, which was supposed to bring various modes of transportation together, now forces commuters to walk long loops around the chain-link fenced facility from buses to Metro trains. May 2, 2013 Commuters walk around the Paul Sarbanes...
/** * Created by trindade on 1/22/17. */ public class AnimationUtil { public static LayoutAnimationController getFadeInAnimation() { AnimationSet animationSet = new AnimationSet(true); Animation animation = new AlphaAnimation(0.0f, 1.0f); animation.setDuration(50); animationSet.ad...
package response import ( "bufio" "bytes" "context" "fmt" "io" "io/ioutil" "net/http" "net/http/httputil" "net/url" "os" "os/exec" "regexp" "strconv" "strings" "time" "unicode" ) // Response is an HTTP response. type Response struct { Item string URL string Error error Duration time.Du...
<gh_stars>0 package native import ( "bytes" "encoding/json" "io" "net/http" "time" "github.com/pkg/errors" ) // MaxIdleConnections is the maximum number of idle web client // connections to maintain. var MaxIdleConnections = 20 // RequestTimeout describes the maximum amount of time to wait // for a response t...
<reponame>miguelramos/ng-lab export interface HomeModel { title: string; description: string; packages: any; }
#include<bits/stdc++.h> using namespace std; int main(){ int N; cin>>N; vector<int64_t>A(N); for(int i=0;i<N;i++){ cin>>A.at(i); }sort(A.begin(),A.end()); reverse(A.begin(),A.end()); int64_t a=0; int64_t b=0; int sum=-1; for(int i=0;i<N-3;i++){ if(A.at(i)==A.at(i+1)){ a=A.at(i); sum=i+2;break; ...
<filename>mturk/gen_csv_verify.py """Create HITs for sentence-verifying task.""" import argparse import cgi import collections import json import sys import unicodecsv as csv OPTS = None def parse_args(): parser = argparse.ArgumentParser('Create HITs for sentence-verifying task.') parser.add_argument('squad_file'...
<filename>src/web.ts import type { PermissionState } from '@capacitor/core'; import { WebPlugin } from '@capacitor/core'; import type { EnabledResult, ListChannelsResult, LocalNotificationSchema, LocalNotificationsPlugin, PendingResult, PermissionStatus, ScheduleOptions, ScheduleResult, } from './defin...
#include<stdio.h> #include<math.h> int main(){ int x,h; for(;scanf("%d%d",&x,&h)&&(x||h);){ printf("%lf\n",x*x+sqrt(pow(x/2.0,2)+pow(h,2))*(2.0*x)); } return 0; }
def parse_ast(node, tokens, code=None): if isinstance(node, ast.Module): result = { "type": "Program", "start": 0, "end": len(code), "body": parse_ast(node.body, tokens) } return result if isinstance(node, list): result = [] ...
<reponame>YoshikiLee/Monaca_OnsenUI_Angular2<gh_stars>0 import {Component, ViewChild} from '@angular/core'; import {OnsSplitterContent, OnsSplitterSide} from 'ngx-onsenui'; import {Page} from './page'; @Component({ selector: 'app', template: require('./app.html'), styles: [require('./app.css')] }) export class ...
//===- Endian.h - Utilities for IO with endian specific data ----*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
from paddlenlp.transformers import PretrainedTokenizer from paddlenlp.datasets import MapDataset from paddlenlp.data import Stack, Tuple, Pad from paddle import nn from dotmap import DotMap from functools import partial from utils.utils import create_data_loader, load_label_vocab import numpy as np import paddle import...
/* Code decompiled incorrectly, please refer to instructions dump. */ public void onActivityResult(int r13, int r14, android.content.Intent r15) { /* r12 = this; super.onActivityResult(r13, r14, r15) b.k.b.a.e.b r0 = r12.f7195i r1 = -1 r2 = 0 ...
//----------------------------------------------------------------------------- // <Driver::SendMsg> // Queue a message to be sent to the Z-Wave PC Interface //----------------------------------------------------------------------------- void Driver::SendMsg ( Msg* _msg, MsgQueue const _queue ) { MsgQueueItem item...
<gh_stars>10-100 /* The MIT License (MIT) Copyright (c) 2016-2017 <NAME> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,...
Developers submitted five proposals for a second Emerson School of Hospitality. While Buffalo school officials did not disclose the locations or names of the developers, four of the five have made their proposals public. Proposed sites include: 505 Ellicott St.: Uniland Development Co. and Rocco Termini's Signature ...
/** * Plays a slide show on an {@link ImagePanel}. * * <p>The slide show can be stepped through * via the <code>show()</code> and <code>next()</code> methods or * run automatically via the <code>start()</code> methods. * * <p>Class <code>Slideshow</code> "controls" the slide show, i.e. * if a <code>Slidesho...
Remind me again why we have to keep relying on the United Nations for all of this? Part of the widely criticized deal that Barack Obama struck with Iran over their nuclear weapons program stipulates that inspections need to be performed by the International Atomic Energy Agency (IAEA). That’s normal, of course, becaus...
<filename>physx/samples/sampleframework/renderer/src/d3d9/D3D9Renderer.h // This code contains NVIDIA Confidential Information and is disclosed to you // under a form of NVIDIA software license agreement provided separately to you. // // Notice // NVIDIA Corporation and its licensors retain all intellectual property an...
(Gateway Pundit) – The Republican Party released a brokered convention video today with Sean Cairncross, RNC Chief Operating Officer. Cairncross tries to persuade viewers that the convention rules need to change this year and that they necessarily change from convention to convention. But maybe you still don’t unders...
This transcript has been automatically generated and may not be 100% accurate. I ... the the ... politics is the second to school ... some pundits ... that he has been looking ... baby ... daddy on story ... ok ... the Potter policy you may all think sounds funny ... they actually have ten said the support the Simpson...
package com.ss.editor.ui.component.split.pane; import com.ss.editor.config.EditorConfig; import com.ss.editor.ui.component.tab.GlobalToolComponent; import org.jetbrains.annotations.NotNull; import javafx.scene.Scene; import javafx.scene.control.SplitPane; /** * The implementation of the {@link SplitPane} for the {...
def restGET(self, uri, endpoint=None, headers=None, **kwargs): if endpoint == None: endpoint = self.repoEndpoint uri = endpoint + uri if headers is None: headers = self._generateSignedHeaders(uri) response = requests.get(uri, headers=headers, **kwargs) ...