text stringlengths 4 6.14k |
|---|
/*******************************************ÉêÃ÷***************************************
±¾Ç¶Èëʽ²Ù×÷ϵͳδ¾ÊÚȨ£¬½ûÖ¹Ó¦ÓÃÓÚÈκÎÉÌÒµÓÃ;
°æÈ¨ËùÓУ¬ÇÖȨ±Ø¾¿
http://www.trtos.com/
**************************************************************************************/
/************************************************... |
/*
** server.c -- a stream socket server demo
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <sys/wait.h>
#include <signal.h>
#define PORT "20... |
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
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 a... |
/* Copyright 2013-present Barefoot Networks, 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 la... |
/*
* Copyright 2008-2015 Arsen Chaloyan
*
* 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... |
#define _CRT_SECURE_NO_DEPRECATE
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "./func.h"
int main(int argc, char ** argv) {
char userbuffer[2048] = { 0 };
puts("Please, enter some string:\n");
gets(userbuffer);
char* replaced = replace(userbuffer, "=", "****");
printf("Replac... |
/*=========================================================================
*
* Copyright Insight Software Consortium
*
* 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... |
/*
* resturant.c
* simulate the cook and tablewaitor and customer in a resturant with producer
* and consumer model and threading tools---lock and condition.
* thread Cook will cook meals when there is a need
* thread Tablewaitor will deliver the meal when meal is ready
* thread consumer will enjoy the meal when... |
/*
* Copyright 2010-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "lice... |
// Copyright 2022 Google LLC
//
// 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... |
#pragma once
class MyCamera
{
public:
}; |
//===--- Visibility.h - Visibility macros for runtime exports ---*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/L... |
/**
* @copyright Copyright 2016 The J-PET Framework Authors. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may find a copy of the License in the LICENCE file.
*
* Unless required by applicable la... |
//
// SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
//
// SPDX-License-Identifier: BSL-1.0
//
#pragma once
#include "openssl_stub.hpp"
|
///////////////////////////////////////////////////////////////////////////
// C++ code generated with wxFormBuilder (version Jun 17 2015)
// http://www.wxformbuilder.org/
//
// PLEASE DO "NOT" EDIT THIS FILE!
///////////////////////////////////////////////////////////////////////////
#ifndef __GUI_H__
#define __GUI_H... |
#ifndef X_RAY_SPECTRUM_ANALYZER_XRAYTRANSITION_H
#define X_RAY_SPECTRUM_ANALYZER_XRAYTRANSITION_H
/**
* @file
*
* @brief Atomic x-ray transition data.
*
* @author Hendrix Demers <hendrix.demers@mail.mcgill.ca>
* @since 1.0
*/
// Copyright 2016 Hendrix Demers
//
// Licensed under the Apache License, Version 2... |
// ======================================================================== //
// Copyright 2009-2017 Intel Corporation //
// //
// Licensed under the Apache License, Version 2.0 (the "License"); //
// y... |
float p (int a, int b)
{ int i;
float t=1;
for(i=0;i<b;i++)
t*=a;
for(i=0; i>b; i--)
t/=a;
return t;
}
void main ()
{
int n=0,o=0, m=1;
float x=1;
char a;
getid (a);
//n+=a-'0';
//printid (n);
if (a == '-')
{
x=-1;
getid (a);
}
if (( a <= '9' )&&(a>='0'))
... |
// messages
#define SERVMESSGREETING @"^3*** ^1this server is run by ^7GSC ^1for Mac OSX! (^7www.p-edge.nl/gsc^1) ^3***"
#define CONFIG_HEADER1 @"// Created by Game Server Configulator (Call of Duty) | (c) 2003-2006 P-Edge media\n"
#define CONFIG_HEADER2 @"// For more info visit www.p-edge.nl/gsc\n\n"
// OSX... |
//
// RRGridChart.h
// Cocoa-Charts
//
// Created by wenliang on 16/1/5.
// Copyright © 2016年 renrencaopan. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "RRBaseChartView.h"
@protocol CCSChartDelegate <NSObject>
@optional
- (void)CCSChartBeTouchedOn:(CGPoint)point indexAt:(CCUInt) index;
- (void)CCSChar... |
#pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Enum2778772662.h"
#include "mscorlib_System_Runtime_Serialization_StreamingCon2964666472.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang di... |
/*
* Copyright (c) 1987, 1993, 1994
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above... |
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
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 a... |
/*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... |
#ifndef F_ROUTINES_H
#define F_ROUTINES_H
#include "FC.h"
// missing prototypes of FORTRAN functions to be called from C++
extern "C"
{
void FC_GLOBAL(froutine, FROUTINE)();
}
#endif
|
//
// AlertView.h
// Meep
//
// Created by Alex Jarvis on 19/02/2011.
// Copyright 2011 Alex Jarvis. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface AlertView : NSObject <UIAlertViewDelegate> {
}
+ (void)showSimpleAlertMessage:(NSString *)message withTitle:(NSString *)title andDelegate:(id)... |
#pragma once
#include <memory>
#include <string>
#include <unordered_map>
#include "common/common/assert.h"
#include "common/common/empty_string.h"
#include "common/http/header_map_impl.h"
#include "extensions/filters/network/dubbo_proxy/message.h"
#include "absl/types/optional.h"
namespace Envoy {
namespace Exten... |
//
// CHCZhunTi_classes_list.h
// 吃货美食
//
// Created by eric on 16/5/15.
// Copyright © 2016年 赵天. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface CHCZhunTi_classes_list : NSObject
@property(nonatomic,copy)NSString *myid;
@property(nonatomic,copy)NSString *title;
@property(nonatomic,copy)NSStr... |
#ifndef __HOOK_IMPL_H_INCLUDED__
#define __HOOK_IMPL_H_INCLUDED__
BOOL WINAPI HookHotPatch(void **pTarget, const void *pDetour);
BOOL WINAPI HookTrampoline(void **pTarget, const void *pDetour);
LONG WINAPI CallAPI(FARPROC func, UINT paramCnt, ...);
#endif // __HOOK_IMPL_H_INCLUDED__
|
//
// YCDownloadSession.h
// YCDownloadSession
//
// Created by wz on 17/3/14.
// Copyright © 2017年 onezen.cc. All rights reserved.
// Github: https://github.com/onezens/YCDownloadSession
//
#import <UIKit/UIKit.h>
#import "YCDownloadTask.h"
/**当前下载session中所有的任务下载完成的通知。 不包括失败、暂停的任务*/
static NSString * const kDow... |
#include <libopticon/hash.h>
static uint32_t IHASH = 0;
/** Generic hash-function nicked from grace.
* \param str The string to hash
* \return A 32 bit hashed guaranteed not 0.
*/
uint32_t hash_token (const char *str) {
uint32_t hash = 0;
uint32_t i = 0;
uint32_t s = 0;
int sdf;
/... |
#pragma once
#include "../Motion.h"
#include "../SkeletonAnimated.h"
class CLevelBackground {
public:
CLevelBackground();
~CLevelBackground();
void Update();
void renderable_Render();
void MoveToCam();
IRender_Visual* Visual () const {
return m_animations;
}
private:
IRender_Visual* m_animations... |
/*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... |
//
// PODTabBarViewController.h
// POD
//
// Created by Wcg on 16/1/23.
// Copyright © 2016年 吴朝刚. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface PODTabBarViewController : UITabBarController
@end
|
/**
@file FaBoHumidity_HTS221.h
@brief This is a library for the FaBo Humidity I2C Brick.
http://fabo.io/208.html
Released under APACHE LICENSE, VERSION 2.0
http://www.apache.org/licenses/
@author FaBo<info@fabo.io>
*/
#ifndef FABOHUMIDITY_HTS221_H
#define FABOHUMIDITY_HTS221_H
#include <Arduino.h>
#i... |
#pragma once
#include <MessageIdentifiers.h>
namespace network
{
enum BB_CONSOLE_MESSAGE_TYPES
{
BB_CONSOLE_MESSAGE_TEXT_LOG = ID_USER_PACKET_ENUM + 1,
};
#pragma pack(push, 1)
struct ConsoleMessageTextLog
{
__int64 dateSend;
short foregroundR;
short foregroundG;
short foregroundB;
short foreground... |
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0... |
/*
* The MIT License (MIT)
*
* Copyright (c) 2019 Ha Thach (tinyusb.org),
* Additions Copyright (c) 2020, Espressif Systems (Shanghai) PTE LTD
*
* 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... |
/*
* Copyright (C) 2015 University of Oregon
*
* You may distribute under the terms of either the GNU General Public
* License or the Apache License, as specified in the LICENSE file.
*
* For more information, see the LICENSE file.
*/
/*
*/
#include <stdio.h>
#include <sys/stat.h>
#include <pwd.h>
#include <... |
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
#include <vespa/vespalib/stllike/string.h>
#include <vespa/fastlib/text/unicodeutil.h>
#include <vector>
namespace search {
/// Type of general unsigned 8 bit data.
typedef unsigned char byte;
/// A ... |
//
// WWTopic.h
// BuDeJie
//
// Created by 文伟 on 16/6/3.
// Copyright © 2016年 Wayne. All rights reserved.
//
#import <Foundation/Foundation.h>
typedef NS_ENUM(NSInteger, WWTopicType) {
/** 全部 */
WWTopicTypeAll = 1,
/** 图片 */
WWTopicTypePicture = 10,
/** 文字 */
WWTopicTypeWord = 29,
/**... |
/**
* RadarFoodTruck APSHTTPClient Library
* Copyright (c) 2009-2015 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*
* WARNING: This is generated code. Modify at your own risk and without su... |
// Copyright 2012 Felipe Cypriano
//
// 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 applicabl... |
//
// MANaviAnnotation.h
// OfficialDemo3D
//
// Created by yi chen on 1/7/15.
// Copyright (c) 2015 songjian. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <MAMapKit/MAMapKit.h>
typedef NS_ENUM(NSInteger, MANaviType)
{
MANaviType_Drive = 1,
MANaviType_Walking = 2,
MANaviType_Bus =... |
//
// Copyright (c) 2014 Limit Point Systems, 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... |
/*
* Copyright (C) 2012 BMW Car IT GmbH
*
* 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 a... |
/*
Copyright 2005-2006 The Apache Software Foundation or its licensors, as applicable
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... |
/* -------------------------------------------------------------------- */
/* ACCORDS PLATFORM */
/* (C) 2011 by Iain James Marshall (Prologue) <ijm667@hotmail.com> */
/* -------------------------------------------------------------------- */
/* Licensed under th... |
/**
* Copyright 2020 Google ML Kit team
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... |
/*******************************************************************************
* Copyright 2016 Tourmaline Labs, Inc. All rights reserved.
* Confidential & Proprietary - Tourmaline Labs, Inc. ("TLI")
*
* The party receiving this software directly from TLI (the "Recipient")
* may use this software as reasonably n... |
//
// WBHomeMenuButton.h
// WeiBo
//
// Created by wbs on 17/3/8.
// Copyright © 2017年 xiaomaolv. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface WBHomeMenuButton : UIButton
@end
|
//
// PPChatInputView.h
// PPChat
//
// Created by jiaguanglei on 15/9/15.
// Copyright (c) 2015年 roseonly. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface PPChatInputView : UIView
/**
* 添加文件
*/
@property (weak, nonatomic) IBOutlet UIButton *addBtn;
/**
* 输入框
*/
@property (weak, nonatomic) IBOu... |
//
// AppDelegate.h
// YJGuideView
//
// Created by YJHou on 2016/12/16.
// Copyright © 2016年 YJHou. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
|
/*
Copyright 1987, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in support... |
#include "test.h"
static enum TestResult test_available(void)
{
// Use a random non-zero request, so that qemu doesn't complain about
// an unsupported ioctl.
if (linux_ioctl(0, linux_TIOCGPGRP, 0, 0) == linux_ENOSYS)
return TEST_NOT_SUPPORTED;
return TEST_SUCCESS;
}
BEGIN_TEST()
DO_TEST(test_available, "Sysc... |
/* Copyright 2019 IBM Corp.
*
* 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 writi... |
/*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... |
#include "syscall.h"
#include "stdio.h"
#include "stdlib.h"
/* Tests Proj2 Task 3 that includes the functionality of exit(), join(), and
* exec(). */
int main() {
char* fileEcho, fileNotExist;
int argc;
char* execString;
char* joinString;
char* argv1[2];
char* argv2[2];
int pid1, pid2, pid3, ... |
// Copyright 2017 Per Grön. All Rights Reserved.
//
// 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 l... |
// Copyright 2022 Google LLC
//
// 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in... |
/**
* Appcelerator Titanium Mobile
* Copyright (c) 2009-2015 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*
* WARNING: This is generated code. Modify at your own risk and without support.
... |
/**
* @file console_device.h
*
*/
/* PowerOS, Copyright (C) 2014. All rights reserved. */
#include "types.h"
#include "devices.h"
#include "interrupts.h"
#include "exec_interface.h"
#define DUB_STOPPED (1<<0)
#define DUB_IS_SERVICE (1<<7)
#define MAX_CMD CMD_NONSTD
#define HIGH_KEYCODE 0x7F
#define RESET_CODE ... |
/*
* Copyright 2014-2016 Nippon Telegraph and Telephone Corporation.
*
* 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... |
//-----------------------------------------------------------------------------
// USER IMPLEMENTATION
// This file contains compile-time options for ImGui.
// Other options (memory allocation overrides, callbacks, etc.) can be set at
// runtime via the ImGuiIO structure - ImGui::GetIO().
//----------------------------... |
//
// MGSSyntaxParserClient.h
// Fragaria
//
// Created by Daniele Cattaneo on 30/10/2018.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/** Syntax groups are tags for identifying tokens in the text that must be
* coloured. Some syntax group tags are pre-defined by Fragaria, but parsers can make... |
/* Exit Games Photon - C++ Client Lib
* Copyright (C) 2004-2016 by Exit Games GmbH. All rights reserved.
* http://www.photonengine.com
* mailto:developer@photonengine.com
*/
#pragma once
#include "Photon-cpp/inc/OperationResponse.h"
#include "Photon-cpp/inc/EventData.h"
namespace ExitGames
{
namespace Photon
{... |
//
// TFAppDelegate.h
// TFIpodPlayer
//
// Created by Hyacinth on 14/10/29.
// Copyright (c) 2014年 Hyacinth.TaskTinkle. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface TFAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/rekognition/Rekognition_EXPORTS.h>
#include <aws/rekognition/RekognitionRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/rekognition/model/DatasetCh... |
/*
* Copyright (C) 2012 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions ... |
//
// BMKSearchVersion.h
// SearchComponent
//
// Created by wzy on 15/9/9.
// Copyright © 2015年 baidu. All rights reserved.
//
#ifndef BMKSearchVersion_h
#define BMKSearchVersion_h
#import <UIKit/UIKit.h>
/**
*重要:
*base组件的版本和search组件的版本必须一致,否则不能正常使用
*/
/**
*获取当前地图API search组件 的版本号
*当前search组件版本 : 3.4.2
*... |
/**
* Copyright (c) 2014, Oculus VR, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/... |
//
// ZMDownloadManager.h
// ZMDownloadManager
//
// Created by ZM on 16/5/20.
// Copyright © 2016年 TD. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ZMSessionModel.h"
#import "UpDownHeader.h"
@interface ZMDownloadManager : NSObject
{
}
/** 保存所有任务(注:可以用下载地址md5后作为key) */
@property (nonato... |
#include "flow.h"
#include "dp-packet.h"
#include "pcap-file.h"
#include "odp-util.h"
int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
struct dp_packet packet;
uint8_t *copy = malloc(size);
memcpy(copy, data, size);
dp_packet_use_const(&packet, copy, size);
while (dp_packet_size(&pack... |
// 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... |
//===----------------------------------------------------------------------===//
//
// Peloton
//
// analyze_statement.h
//
// Identification: src/include/parser/analyze_statement.h
//
// Copyright (c) 2015-17, Carnegie Mellon University Database Group
//
//===-----------------------------------... |
//
// Copyright (c) 2016 Google 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 agre... |
/*
* @brief LPC540XX 32-bit Timer/PWM driver
*
* @note
* Copyright(C) NXP Semiconductors, 2014
* All rights reserved.
*
* @par
* Software that is described herein is for illustrative purposes only
* which provides customers with programming information regarding the
* LPC products. This software is supplied ... |
//
// ASIAuthenticationDialog.h
// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
//
// Created by Ben Copsey on 21/08/2009.
// Copyright 2009 All-Seeing Interactive. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@class MCMASIHTTPRequest;
typedef enum _ASIAuthe... |
//
// Generated by the J2ObjC translator. DO NOT EDIT!
// source: /Users/tball/tmp/j2objc/testing/mockito/build_result/java/org/mockito/internal/verification/api/VerificationData.java
//
#ifndef _OrgMockitoInternalVerificationApiVerificationData_H_
#define _OrgMockitoInternalVerificationApiVerificationData_H_
@cla... |
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.24 06/05/06 */
/* */
/* ... |
/**
* Appcelerator Titanium Mobile
* Copyright (c) 2009-2012 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*
* WARNING: This is generated code. Modify at your own risk and without support.
... |
//
// Tile.h
// TicTacToePilot
//
// Created by DEVFLOATER14-XL on 2014-08-05.
// Copyright (c) 2014 Jean Bernard Yung Hing Hin. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface Tile : UICollectionViewCell
// ReadOnly Property
@property (nonatomic, assign, readonly)BOOL checked;
- (void)reset;
- (void... |
//
// BSAppDelegate.h
// BeaconSender
//
// Created by suwa_yuki on 2013/10/01.
// Copyright (c) 2013年 suwa.yuki. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface BSAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
|
#pragma once
#include "SLAMSystem.h"
#include "SparseMap.h"
#include <okvis/VioParametersReader.hpp>
#include <okvis/ThreadedKFVio.hpp>
#include <thread>
#include <opencv2/core/eigen.hpp>
#include "SingleConsumerPriorityQueue.h"
#include <atomic>
#include <brisk/brisk.h>
#include <vector>
#include <memory>
namespace ... |
// OdessaEngineV2Project.h
#include <stdint.h> // for int64_t
enum OdessaReturnCodes
{
Success = 0,
AlreadyScanning = -1,
NotAuthorized = -2,
ErrorOpeningFile = -3,
ErrorFindingStreamInformation = -4,
ErrorFindingVideoStream = -5,
UnsupportedCodec = -6,
ErrorOpeningCodec = -7,
ErrorAllocatedFrameStructure = ... |
/******************************************************************************
* Copyright 2017 The Apollo Authors. All Rights Reserved.
*
* 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
... |
// Copyright 2013 Peter Wallström
//
// 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,... |
/**
* i2c tilt sensor
*
* @author Matthias L. Jugel
*
* == LICENSE ==
* Copyright 2015 ubirch GmbH (http://www.ubirch.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* ... |
#ifndef LOG_H_GUARD_dffd9fds9kkdmvfsf888888h5f857
#define LOG_H_GUARD_dffd9fds9kkdmvfsf888888h5f857
#include <iostream>
#include <string>
// TODO use a variadic macro that outputs line, function and forwards __VA_ARGS__ to logging functions
namespace tk {
namespace log {
std::string nativeErrorString();
templa... |
/*
* Copyright (c) 2017,2021 Daichi GOTO
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this lis... |
/*
Copyright (c) 2015, Andreas Fett
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions a... |
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Materials/MaterialExpression.h"
#include "MaterialExpressionConstant4Vector.generated.h"
UCLASS(collapsecategories, hidecategories=Object, MinimalAPI)
class UMaterialExpressionConstant4Vector : public UMaterialExpression
{
GENERATED... |
// @file: include/pcore/list.h
// Copyright (c) 2013 Korepwx. All rights reserved.
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Contributors:
// Korepwx <public@korepwx.com> 2013-07-06
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Use of thi... |
/*
* papi_counters.h
*/
#ifndef __PAPI_COUNTERS_H__
#define __PAPI_COUNTERS_H__
#pragma once
#if __cplusplus
extern "C" {
#endif
enum { dr_static_max_papi_events = 10 };
typedef struct dr_papi_gdata dr_papi_gdata_t;
typedef struct dr_papi_tdata dr_papi_tdata_t;
struct dr_papi_gdata {
int initialized;
... |
//=================================================================================================
/*!
// \file blaze/math/constraints/VecSerialExpr.h
// \brief Constraint on the data type
//
// Copyright (C) 2012-2017 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze library. You can redi... |
/*
* Copyright (c) 1999-2004 Apple Computer, Inc. All rights reserved.
*
* @APPLE_LICENSE_HEADER_START@
*
* Portions Copyright (c) 1999-2004 Apple Computer, Inc. All Rights
* Reserved. This file contains Original Code and/or Modifications of
* Original Code as defined in and that are subject to the Apple Publ... |
#ifndef CTF_MEMORY_USAGE_H
#define CTF_MEMORY_USAGE_H
#include <sys/types.h>
#define _CTF_MEMORY_USAGE_PROTO(FUNCTION_NAME, OBJECT_TYPE) \
size_t \
FUNCTION_NAME (OBJECT_TYPE object);
#endif
|
// 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 and
// proprietary rights in and to this software and related documen... |
/* Copyright (c) 2013 Xingxing Ke <yykxx@hotmail.com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this... |
//
// Copyright © 2017 Daniel Farrelly
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice, this list
// of conditions and the following disc... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.