max_stars_count
int64
301
224k
text
stringlengths
6
1.05M
token_count
int64
3
727k
5,169
{ "name": "BottomPopup", "version": "0.4.1", "summary": "BottomPopup provides a popup-like presentation style to any view controller", "homepage": "https://github.com/ergunemr/BottomPopup", "screenshots": [ "https://media.giphy.com/media/MRWZQ2PUS0NSeCytPx/giphy.gif", "https://media.giphy.com/media/3bzmRH74e9wL6XKNnG/giphy.gif" ], "license": { "type": "MIT", "file": "LICENSE" }, "authors": { "Emre": "<EMAIL>" }, "platforms": { "ios": "10.0" }, "source": { "git": "https://github.com/ergunemr/BottomPopup.git", "tag": "0.4.1" }, "source_files": "BottomPopup/BottomPopupController/*.{swift}", "frameworks": "UIKit", "swift_version": "3.0", "requires_arc": true }
332
3,690
<reponame>corkiwang1122/LeetCode #include "solution.h" #include <iostream> using namespace std; int main() { Solution s; vector<std::vector<char>> board = { {'5','3','.','.','7','.','.','.','.'}, {'6','.','.','1','9','5','.','.','.'}, {'.','9','8','.','.','.','.','6','.'}, {'8','.','.','.','6','.','.','.','3'}, {'4','.','.','8','.','3','.','.','1'}, {'7','.','.','.','2','.','.','.','6'}, {'.','6','.','.','.','.','2','8','.'}, {'.','.','.','4','1','9','.','.','5'}, {'.','.','.','.','8','.','.','7','9'} }; s.solveSudoku(board); for (const auto &v : board) { for (auto c : v) std::cout << c << " "; cout << std::endl; } return 0; }
424
373
/* * #%L * ACS AEM Commons Bundle * %% * Copyright (C) 2020 Adobe * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ package com.adobe.acs.commons.indesign.dynamicdeckdynamo.constants; /** * This class will be used to store Indesign Server Specific Constants */ public class DynamicDeckDynamoIDSConstants { /** * Private Constructor will prevent the instantiation of this class directly */ private DynamicDeckDynamoIDSConstants() { } public static final String IDS_EXTENDSCRIPT_JOB = "dam/proxy/ids/job"; public static final String IDS_JOB_PAYLOAD = "ids.job.payload"; public static final String IDS_JOB_SCRIPT = "ids.job.script"; /** * Job parameter for created InDesign Snippet name prefix */ public static final String IDS_TEMPLATE_PATH = "idTemplatePath"; public static final String IDS_ADD_SOAP_ARGS = "idsprint.addtlSoapArgs"; public static final String IDS_EXPORTED = "idsExported"; public static final String IDS_ARGS_TAG_XML = "tagXmlPath"; public static final String IDS_ARGS_IMAGE_LIST = "imageList"; public static final String IDS_ARGS_FORMATS = "formats"; public static final String IDS_SCRIPT_ROOT_PATH = "dam/indesign/scripts/"; public static final String IDS_ASSET_NAME = "asset_name"; public static final String IDS_ARGS_TYPE = "type"; public static final String INPUT_PAYLOAD = "offloading.input.payload"; public static final String OUTPUT_PAYLOAD = "offloading.output.payload"; }
660
535
/* * 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 not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /* Computed positions: -k'1-2,5,$' */ #if !( \ (' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) && ('%' == 37) && \ ('&' == 38) && ('\'' == 39) && ('(' == 40) && (')' == 41) && \ ('*' == 42) && ('+' == 43) && (',' == 44) && ('-' == 45) && ('.' == 46) && \ ('/' == 47) && ('0' == 48) && ('1' == 49) && ('2' == 50) && ('3' == 51) && \ ('4' == 52) && ('5' == 53) && ('6' == 54) && ('7' == 55) && ('8' == 56) && \ ('9' == 57) && (':' == 58) && (';' == 59) && ('<' == 60) && ('=' == 61) && \ ('>' == 62) && ('?' == 63) && ('A' == 65) && ('B' == 66) && ('C' == 67) && \ ('D' == 68) && ('E' == 69) && ('F' == 70) && ('G' == 71) && ('H' == 72) && \ ('I' == 73) && ('J' == 74) && ('K' == 75) && ('L' == 76) && ('M' == 77) && \ ('N' == 78) && ('O' == 79) && ('P' == 80) && ('Q' == 81) && ('R' == 82) && \ ('S' == 83) && ('T' == 84) && ('U' == 85) && ('V' == 86) && ('W' == 87) && \ ('X' == 88) && ('Y' == 89) && ('Z' == 90) && ('[' == 91) && \ ('\\' == 92) && (']' == 93) && ('^' == 94) && ('_' == 95) && \ ('a' == 97) && ('b' == 98) && ('c' == 99) && ('d' == 100) && \ ('e' == 101) && ('f' == 102) && ('g' == 103) && ('h' == 104) && \ ('i' == 105) && ('j' == 106) && ('k' == 107) && ('l' == 108) && \ ('m' == 109) && ('n' == 110) && ('o' == 111) && ('p' == 112) && \ ('q' == 113) && ('r' == 114) && ('s' == 115) && ('t' == 116) && \ ('u' == 117) && ('v' == 118) && ('w' == 119) && ('x' == 120) && \ ('y' == 121) && ('z' == 122) && ('{' == 123) && ('|' == 124) && \ ('}' == 125) && ('~' == 126)) /* The character set is not based on ISO-646. */ #error \ "gperf generated tables don't work with this execution character set. Please report a bug to <<EMAIL>>." #endif #line 1 "htmlparse/html_agent.gperf" // html_agent.cc is automatically generated from html_agent.gperf. #include "net/instaweb/htmlparse/public/html_agent.h" #include "base/logging.h" #include "net/instaweb/util/public/string_util.h" namespace net_instaweb { #include <string.h> #define TOTAL_KEYWORDS 248 #define MIN_WORD_LENGTH 3 #define MAX_WORD_LENGTH 61 #define MIN_HASH_VALUE 23 #define MAX_HASH_VALUE 400 /* maximum key range = 378, duplicates = 0 */ class RobotDetect { private: static inline unsigned int hash(const char* str, unsigned int len); public: static const char* Lookup(const char* str, unsigned int len); }; inline unsigned int RobotDetect::hash(register const char* str, register unsigned int len) { static const unsigned short asso_values[] = { 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 180, 10, 401, 401, 401, 401, 401, 4, 401, 44, 401, 401, 401, 147, 27, 401, 78, 14, 47, 72, 401, 401, 401, 401, 401, 401, 401, 4, 401, 401, 401, 401, 55, 90, 124, 21, 75, 133, 133, 122, 83, 49, 90, 43, 130, 36, 65, 132, 32, 401, 157, 42, 61, 39, 141, 10, 10, 205, 401, 401, 401, 401, 401, 401, 401, 7, 66, 56, 130, 5, 61, 68, 43, 4, 14, 41, 44, 16, 29, 10, 4, 401, 5, 25, 4, 23, 73, 141, 4, 167, 33, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 15, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401}; register int hval = len; switch (hval) { default: hval += asso_values[(unsigned char)str[4]]; /*FALLTHROUGH*/ case 4: case 3: case 2: hval += asso_values[(unsigned char)str[1]]; /*FALLTHROUGH*/ case 1: hval += asso_values[(unsigned char)str[0]]; break; } return hval + asso_values[(unsigned char)str[len - 1]]; } static const char* const wordlist[] = { "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "root", "", "", "appie", "", "", "tarspider", "", "", "ia_archiver", "WebLinker", "WebReaper", "WebBandit", "WebWalker", "WebCatcher", "WebMoose", "moget", "", "arks", "psbot", "WWWWanderer", "image.kapsi.net", "WWWC", "esther", "mouse.house", "none", "spiderline", "WebQuest", "<EMAIL>", "aWapClient", "Pioneer", "<EMAIL>", "Poppi", "uptimebot", "suke", "Magpie", "", "MediaFox", "Motor", "Monster", "", "SpiderBot", "", "SimBot", "PortalBSpider", "<EMAIL>", "Cusco", "Katipo", "Confuzzledbot", "Solbot", "WebWatch", "PerlCrawler", "<EMAIL>", "explorersearch", "MindCrawler", "legs", "fido", "PortalJuice.com", "CMC", "MuscatFerret", "", "", "CrawlPaper", "Wget", "Snooper", "Senrigan", "SpiderMan", "elfinbot", "havIndex", "sharp-info-agent", "esculapio", "ParaSite", "Digger", "Informant", "MerzScope", "gammaSpider", "Slurp", "suntek", "gestaltIconoclast", "jumpstation", "DragonBot", "PlumtreeWebAccessor", "DesertRealm.com;", "about.ask.com", "cosmos", "<EMAIL>", "newscan-online", "NetCarta CyberPilot Pro", "ia_archiver-web.archive.org", "gazz", "Tarantula", "JoBo", "urlck", "Araneo", "Checkbot", "Digimarc CGIReader", "ArchitextSpider", "JoeBot", "DWCP", "ChristCrawler.com", "Muninn", "searchprocess", "phpdig", "SiteTech-Rover", "Infoseek Sidewinder", "TitIn", "H\303\244m\303\244h\303\244kki", "Nederland.zoek", "JubiiRobot", "NorthStar", "W3M2", "Duppies", "IsraeliSearch", "<EMAIL>", "DoCoMo", "NetScoop", "gcreep", "bbot", "Gromit", "NetMechanic", "vision-search", "DIIbot", "ssearcher100", "iajaBot", "bingbot", "Templeton", "BaySpider", "logo.gif", "grabber", "BoxSeaBot", "Linkidator", "Peregrinator-Mathematics", "Calif", "InfoSpiders", "NDSpider", "Arachnophilia", "LinkWalker", "DNAbot", "", "Gulliver", "GulperBot", "fouineur.9bit.qc.ca)", "Atomz", "CoolBot", "Verticrawlbot", "<EMAIL>", "Golem", "Victoria", "GetterroboPlus", "AraybOt", "NHSEWalker", "Anthill", "LWP", "", "FastCrawler", "WOLP", "ATN_Worldwide", "Robot", "RixBot", "Robbie", "cIeNcIaFiCcIoN.nEt", "Roverbot", "Lockon", "MOMspider", "weblayers", "htdig", "Googlebot", "<EMAIL>", "inspectorwww", "dlw3robot", "SLCrawler", "Orbsearch", "AITCSRobot", "Googlebot-Image", "XGET", "ESIRover", "WebCopy", "KO_Yappo_Robot", "webwalk", "SpiderView", "Gigabot", "Iron33", "VWbot_K", "PiltdownMan", "PackRat", "TLSpider", "CyberSpyder", "ESISmartSpider", "WebFetcher ", "CydralSpider", "LinkScan", "w@pSpider", "webvac", "Robozilla", "Deweb", "OntoSpider", "libwww-perl-5.41", "AURESYS", "", "JBot", "<EMAIL>", "UCSD-Crawler", "Occam", "UdmSearch", "HTMLgobble", "w3mir", "Shai'Hulud", "YandexBot", "Voyager", "SG-Scout", "JavaBee", "MwdSearch", "borg-bot", "EbiNess", "YodaoBot", "Yahoo!", "Robofox", "Patric ", "RoboCrawl", "void-bot", "", "INGRID", "TITAN", "whatUseek_winona", "Freecrawl", "Raven-v2", "", "AlkalineBOT", "Baiduspider+(+http://www.baidu.com/search/spider.htm)", "FunnelWeb-1.0", "", "Emacs-w3", "NEC-MeshExplorer", "LabelGrab", "", "TechBOT", "", "Die Blinde Kuh", "", "URL Spider Pro", "", "IncyWincy", "JCrawler", "", "", "KDD-Explorer", "RuLeS", "", "IAGENT", "", "", "ASpider", "", "", "MSNBOT", "", "", "CACTVS Chemistry Spider", "KIT-Fireball", "", "FelixIDE", "", "", "RHCS", "", "", "", "", "", "", "PGP-KA", "", "", "", "", "", "GetURL.rexx", "wired-digital-newsbot", "", "", "", "", "Fish-Search-Robot", "", "", "BSpider", "", "ObjectsSearch", "", "", "", "", "", "", "", "", "", "Bjaaland", "", "", "", "", "", "", "", "Valkyrie", "", "", "", "", "", "", "", "", "PageBoy", "", "EIT-Link-Verifier-Robot", "Nomad", "", "", "", "", "", "", "", "", "", "", "", "Lycos", "dienstspider ", "w3index", "", "", "", "", "", "BlackWidow", "BackRub", "", "", "", "", "", "", "", "", "", "", "", "", "", "griffon ", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "IBM_Planetwide "}; const char* RobotDetect::Lookup(register const char* str, register unsigned int len) { if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH) { register int key = hash(str, len); if (key <= MAX_HASH_VALUE && key >= 0) { register const char* s = wordlist[key]; if (*str == *s && !strncmp(str + 1, s + 1, len - 1) && s[len] == '\0') return s; } } return 0; } #line 271 "htmlparse/html_agent.gperf" // TODO:(fangfei) check other cases bool HtmlAgent::Lookup(const char* usr_agent) { StringPiece url(usr_agent); // check whether the whole string is in database if (RobotDetect::Lookup(url.data(), url.size()) != NULL) { return true; } char separator[] = " /_;"; std::vector<StringPiece> names; names.clear(); SplitStringPieceToVector(url, separator, &names, true); for (int i = 0, n = names.size(); i < n; ++i) { LOG(ERROR) << names[i]; if (RobotDetect::Lookup(names[i].data(), names[i].size()) != NULL) { return true; } } return false; } } // namespace net_instaweb
6,164
750
<reponame>0scarB/piccolo<filename>tests/columns/test_uuid.py<gh_stars>100-1000 import uuid from unittest import TestCase from piccolo.columns.column_types import UUID from piccolo.table import Table class MyTable(Table): uuid = UUID() class TestUUID(TestCase): def setUp(self): MyTable.create_table().run_sync() def tearDown(self): MyTable.alter().drop_table().run_sync() def test_return_type(self): row = MyTable() row.save().run_sync() self.assertIsInstance(row.uuid, uuid.UUID)
224
400
<gh_stars>100-1000 #include "asm_utils.h" #include "interrupt.h" #include "stdio.h" #include "program.h" #include "thread.h" // 屏幕IO处理器 STDIO stdio; // 中断管理器 InterruptManager interruptManager; // 程序管理器 ProgramManager programManager; void third_thread(void *arg) { printf("pid %d name \"%s\": Hello World!\n", programManager.running->pid, programManager.running->name); while(1) { } } void second_thread(void *arg) { printf("pid %d name \"%s\": Hello World!\n", programManager.running->pid, programManager.running->name); } void first_thread(void *arg) { // 第1个线程不可以返回 printf("pid %d name \"%s\": Hello World!\n", programManager.running->pid, programManager.running->name); if (!programManager.running->pid) { //programManager.executeThread(second_thread, nullptr, "second thread", 1); //programManager.executeThread(third_thread, nullptr, "third thread", 1); } asm_halt(); } extern "C" void setup_kernel() { // 中断管理器 interruptManager.initialize(); interruptManager.enableTimeInterrupt(); interruptManager.setTimeInterrupt((void *)asm_time_interrupt_handler); // 输出管理器 stdio.initialize(); // 进程/线程管理器 programManager.initialize(); // 创建第一个线程 int pid = programManager.executeThread(first_thread, nullptr, "first thread", 1); if (pid == -1) { printf("can not execute thread\n"); asm_halt(); } ListItem *item = programManager.readyPrograms.front(); PCB *firstThread = ListItem2PCB(item, tagInGeneralList); firstThread->status = RUNNING; programManager.readyPrograms.pop_front(); programManager.running = firstThread; asm_switch_thread(0, firstThread); asm_halt(); }
737
1,350
<reponame>Shashi-rk/azure-sdk-for-java // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.resourcemanager.batchai.fluent; import com.azure.core.annotation.ReturnType; import com.azure.core.annotation.ServiceMethod; import com.azure.core.http.rest.PagedIterable; import com.azure.core.http.rest.Response; import com.azure.core.management.polling.PollResult; import com.azure.core.util.Context; import com.azure.core.util.polling.SyncPoller; import com.azure.resourcemanager.batchai.fluent.models.WorkspaceInner; import com.azure.resourcemanager.batchai.models.WorkspaceCreateParameters; import com.azure.resourcemanager.batchai.models.WorkspaceUpdateParameters; /** An instance of this class provides access to all the operations defined in WorkspacesClient. */ public interface WorkspacesClient { /** * Gets a list of Workspaces associated with the given subscription. * * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a list of Workspaces associated with the given subscription. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable<WorkspaceInner> list(); /** * Gets a list of Workspaces associated with the given subscription. * * @param maxResults The maximum number of items to return in the response. A maximum of 1000 files can be returned. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a list of Workspaces associated with the given subscription. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable<WorkspaceInner> list(Integer maxResults, Context context); /** * Gets a list of Workspaces within the specified resource group. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a list of Workspaces within the specified resource group. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable<WorkspaceInner> listByResourceGroup(String resourceGroupName); /** * Gets a list of Workspaces within the specified resource group. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param maxResults The maximum number of items to return in the response. A maximum of 1000 files can be returned. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return a list of Workspaces within the specified resource group. */ @ServiceMethod(returns = ReturnType.COLLECTION) PagedIterable<WorkspaceInner> listByResourceGroup(String resourceGroupName, Integer maxResults, Context context); /** * Creates a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @param parameters Workspace creation parameters. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return batch AI Workspace information. */ @ServiceMethod(returns = ReturnType.SINGLE) SyncPoller<PollResult<WorkspaceInner>, WorkspaceInner> beginCreate( String resourceGroupName, String workspaceName, WorkspaceCreateParameters parameters); /** * Creates a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @param parameters Workspace creation parameters. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return batch AI Workspace information. */ @ServiceMethod(returns = ReturnType.SINGLE) SyncPoller<PollResult<WorkspaceInner>, WorkspaceInner> beginCreate( String resourceGroupName, String workspaceName, WorkspaceCreateParameters parameters, Context context); /** * Creates a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @param parameters Workspace creation parameters. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return batch AI Workspace information. */ @ServiceMethod(returns = ReturnType.SINGLE) WorkspaceInner create(String resourceGroupName, String workspaceName, WorkspaceCreateParameters parameters); /** * Creates a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @param parameters Workspace creation parameters. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return batch AI Workspace information. */ @ServiceMethod(returns = ReturnType.SINGLE) WorkspaceInner create( String resourceGroupName, String workspaceName, WorkspaceCreateParameters parameters, Context context); /** * Updates properties of a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @param parameters Additional parameters for workspace update. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return batch AI Workspace information. */ @ServiceMethod(returns = ReturnType.SINGLE) WorkspaceInner update(String resourceGroupName, String workspaceName, WorkspaceUpdateParameters parameters); /** * Updates properties of a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @param parameters Additional parameters for workspace update. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return batch AI Workspace information. */ @ServiceMethod(returns = ReturnType.SINGLE) Response<WorkspaceInner> updateWithResponse( String resourceGroupName, String workspaceName, WorkspaceUpdateParameters parameters, Context context); /** * Deletes a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return the completion. */ @ServiceMethod(returns = ReturnType.SINGLE) SyncPoller<PollResult<Void>, Void> beginDelete(String resourceGroupName, String workspaceName); /** * Deletes a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return the completion. */ @ServiceMethod(returns = ReturnType.SINGLE) SyncPoller<PollResult<Void>, Void> beginDelete(String resourceGroupName, String workspaceName, Context context); /** * Deletes a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. */ @ServiceMethod(returns = ReturnType.SINGLE) void delete(String resourceGroupName, String workspaceName); /** * Deletes a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. */ @ServiceMethod(returns = ReturnType.SINGLE) void delete(String resourceGroupName, String workspaceName, Context context); /** * Gets information about a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return information about a Workspace. */ @ServiceMethod(returns = ReturnType.SINGLE) WorkspaceInner getByResourceGroup(String resourceGroupName, String workspaceName); /** * Gets information about a Workspace. * * @param resourceGroupName Name of the resource group to which the resource belongs. * @param workspaceName The name of the workspace. Workspace names can only contain a combination of alphanumeric * characters along with dash (-) and underscore (_). The name must be from 1 through 64 characters long. * @param context The context to associate with this operation. * @throws IllegalArgumentException thrown if parameters fail the validation. * @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server. * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent. * @return information about a Workspace. */ @ServiceMethod(returns = ReturnType.SINGLE) Response<WorkspaceInner> getByResourceGroupWithResponse( String resourceGroupName, String workspaceName, Context context); }
4,234
528
<filename>tests/scripts/test_generators.py<gh_stars>100-1000 """Testing generators.""" import networkx as nx from cdt.data import AcyclicGraphGenerator, CausalPairGenerator from cdt.data.causal_mechanisms import gmm_cause, gaussian_cause import pandas as pd import os mechanisms = ['linear', 'polynomial', 'sigmoid_add', 'sigmoid_mix', 'gp_add', 'gp_mix', 'nn'] def test_acyclic_generators(): for mechanism in mechanisms: g = AcyclicGraphGenerator(mechanism, npoints=200, nodes=10, parents_max=3) data, agg = g.generate() g.to_csv('test') # cleanup os.remove('test_data.csv') os.remove('test_target.csv') assert type(agg) == nx.DiGraph assert nx.is_directed_acyclic_graph(agg) def test_error(): g = AcyclicGraphGenerator('linear', npoints=200, nodes=10, parents_max=3) try: g.to_csv('test') except ValueError: pass def test_causal_pairs(): for mechanism in mechanisms: data, labels = CausalPairGenerator(mechanism).generate(10, npoints=200) assert type(data) == pd.DataFrame def test_acyclic_generators_bigg(): for mechanism in mechanisms: data, agg = AcyclicGraphGenerator(mechanism, npoints=500, nodes=100, parents_max=6).generate() assert type(agg) == nx.DiGraph assert nx.is_directed_acyclic_graph(agg) # def test_cyclic_generators(): # for mechanism in mechanisms: # cgg, data = CyclicGraphGenerator(mechanism, points=200, nodes=10, parents_max=3).generate(nb_steps=5, averaging=2) # assert type(cgg) == nx.DiGraph # assert not nx.is_directed_acyclic_graph(cgg) def test_causes(): for cause in [gmm_cause, gaussian_cause]: data, agg = AcyclicGraphGenerator("linear", npoints=200, nodes=10, parents_max=3, initial_variable_generator=cause).generate() assert type(agg) == nx.DiGraph assert nx.is_directed_acyclic_graph(agg) def test_noises(): for noise in ['gaussian', 'uniform']: data, agg = AcyclicGraphGenerator("linear", npoints=200, nodes=10, parents_max=3, noise=noise).generate() assert type(agg) == nx.DiGraph assert nx.is_directed_acyclic_graph(agg) if __name__ == "__main__": test_acyclic_generators() test_causal_pairs() test_causes() test_noises()
1,015
1,768
/******************************************************************************* * Copyright (c) 2021 Microsoft Research. All rights reserved. * * The MIT License (MIT) * * 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, modify, merge, publish, distribute, sublicense, and/or sell copies * of the Software, and to permit persons to whom the Software is furnished to do * so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * Contributors: * <NAME> - initial API and implementation ******************************************************************************/ package tla2sany; import org.junit.Before; import util.ToolIO; public abstract class SANYTest { @Before public void setup() { // Make tool capture the output written to ToolIO.out. Otherwise, // ToolIO#getAllMessages returns an empty array. ToolIO.setMode(ToolIO.TOOL); // Reset ToolIO for each test case. Otherwise, a test case sees the output of // the previous tests. ToolIO.reset(); } }
473
713
<gh_stars>100-1000 package org.infinispan.server.router.configuration.builder; /** * Router configuration builder. * * @author <NAME> */ public interface ConfigurationBuilderParent { /** * Returns builder for Routing Table. */ RoutingBuilder routing(); /** * Returns builder for Hot Rod. */ HotRodRouterBuilder hotrod(); /** * Returns builder for REST. */ RestRouterBuilder rest(); /** * Returns builder for Single Port. */ SinglePortRouterBuilder singlePort(); }
191
410
from dygie.predictors.dygie import DyGIEPredictor
17
488
<filename>src/frontend/SageIII/omp_lib_kinds.h<gh_stars>100-1000 c from OpenMP 3.0 D.2 p 304: Interface Declaration integer omp_lock_kind parameter ( omp_lock_kind = 8 ) integer omp_nest_lock_kind parameter ( omp_nest_lock_kind = 8 ) integer omp_sched_kind parameter ( omp_sched_kind = 4) integer ( omp_sched_kind ) omp_sched_static parameter ( omp_sched_static = 1 ) integer ( omp_sched_kind ) omp_sched_dynamic parameter ( omp_sched_dynamic = 2 ) integer ( omp_sched_kind ) omp_sched_guided parameter ( omp_sched_guided = 3 ) integer ( omp_sched_kind ) omp_sched_auto parameter ( omp_sched_auto = 4 )
332
5,166
{ "InstanceName": "aws-doc-example-instance-name", "InstanceID": "aws-doc-example-instance-id", "AlarmName": "aws-doc-example-alarm-name" }
56
678
/** * This header is generated by class-dump-z 0.2b. * * Source: /System/Library/PrivateFrameworks/WebCore.framework/WebCore */ #import <WebCore/DOMCSSRule.h> @class DOMCSSStyleDeclaration, NSString; __attribute__((visibility("hidden"))) @interface DOMWebKitCSSKeyframeRule : DOMCSSRule { } @property(readonly, retain) DOMCSSStyleDeclaration *style; // G=0x352cf5; @property(copy) NSString *keyText; // G=0x352a29; S=0x352b85; // declared property getter: - (id)keyText; // 0x352a29 // declared property setter: - (void)setKeyText:(id)text; // 0x352b85 // declared property getter: - (id)style; // 0x352cf5 @end
227
4,071
<reponame>Ru-Xiang/x-deeplearning /* Copyright (C) 2016-2018 Alibaba Group Holding Limited Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "seastar_server_lib.h" #include "cpu_pool.h" #include "server_func_manager.h" namespace ps { namespace service { namespace seastar { SeastarServerLib::SeastarServerLib(int port, int core_num) : server_context_(1, 1, core_num, 1) , port_(port) , core_num_(core_num) { } bool SeastarServerLib::Start() { if (!CPUPool::GetInstance()->Allocate(core_num_, &core_ids_)) { std::cerr << "allocate core[" << core_num_ << "] failed!" << std::endl; return false; } int argc; char** argv; ToCmdOptions(&argc, &argv); server_thread_.reset(new std::thread([this, argc, argv] { server_context_(argc, argv); })); return true; } void SeastarServerLib::ToCmdOptions(int* argc, char*** argv) { std::string is_poll_mode = ps::NetUtils::GetEnv("POLL_MODE"); if (is_poll_mode == "1") { *argc = 8; } else { *argc = 7; } *argv = new char*[8]; (*argv)[0] = new char[1000]; (*argv)[1] = new char[1000]; (*argv)[2] = new char[1000]; (*argv)[3] = new char[1000]; (*argv)[4] = new char[1000]; (*argv)[5] = new char[1000]; (*argv)[6] = new char[1000]; (*argv)[7] = new char[1000]; snprintf((*argv)[0], 1000, "--smp=%d", core_num_); snprintf((*argv)[1], 1000, "--cpuset=%s", core_ids_.c_str()); snprintf((*argv)[2], 1000, "--port=%d", port_); strcpy((*argv)[3], "--tcp_nodelay_on=1"); strcpy((*argv)[4], "--tcp_keep_alive_idle=300"); strcpy((*argv)[5], "--tcp_keep_alive_cnt=6"); strcpy((*argv)[6], "--tcp_keep_alive_interval=10"); strcpy((*argv)[7], "--poll-mode"); } void SeastarServerLib::Stop() { server_thread_->join(); } bool SeastarServerLib::RegisterServerFunc(size_t id, const ServerFunc& server_func) { return ServerFuncManager::GetInstance()->RegisterServerFunc( id, server_func) == 0; } } // namespace seastar } // namespace service } // namespace ps
1,040
369
<filename>FreeRTOSv10.4.1/FreeRTOS/Demo/ColdFire_MCF52259_CodeWarrior/Freescale_Headers/MCF52259_SCM.h<gh_stars>100-1000 /* Coldfire C Header File * Copyright Freescale Semiconductor Inc * All rights reserved. * * 2008/04/17 Revision: 0.2 * * (c) Copyright UNIS, spol. s r.o. 1997-2008 * UNIS, spol. s r.o. * Jundrovska 33 * 624 00 Brno * Czech Republic * http : www.processorexpert.com * mail : <EMAIL> */ #ifndef __MCF52259_SCM_H__ #define __MCF52259_SCM_H__ /********************************************************************* * * System Control Module (SCM) * *********************************************************************/ /* Register read/write macros */ #define MCF_SCM_RAMBAR (*(vuint32*)(&__IPSBAR[0x8])) #define MCF_SCM_PPMRH (*(vuint32*)(&__IPSBAR[0xC])) #define MCF_SCM_CRSR (*(vuint8 *)(&__IPSBAR[0x10])) #define MCF_SCM_CWCR (*(vuint8 *)(&__IPSBAR[0x11])) #define MCF_SCM_CWSR (*(vuint8 *)(&__IPSBAR[0x13])) #define MCF_SCM_DMAREQC (*(vuint32*)(&__IPSBAR[0x14])) #define MCF_SCM_PPMRL (*(vuint32*)(&__IPSBAR[0x18])) #define MCF_SCM_MPARK (*(vuint32*)(&__IPSBAR[0x1C])) #define MCF_SCM_MPR (*(vuint8 *)(&__IPSBAR[0x20])) #define MCF_SCM_PPMRS (*(vuint8 *)(&__IPSBAR[0x21])) #define MCF_SCM_PPMRC (*(vuint8 *)(&__IPSBAR[0x22])) #define MCF_SCM_IPSBMT (*(vuint8 *)(&__IPSBAR[0x23])) #define MCF_SCM_PACR0 (*(vuint8 *)(&__IPSBAR[0x24])) #define MCF_SCM_PACR1 (*(vuint8 *)(&__IPSBAR[0x25])) #define MCF_SCM_PACR2 (*(vuint8 *)(&__IPSBAR[0x26])) #define MCF_SCM_PACR3 (*(vuint8 *)(&__IPSBAR[0x27])) #define MCF_SCM_PACR4 (*(vuint8 *)(&__IPSBAR[0x28])) #define MCF_SCM_PACR5 (*(vuint8 *)(&__IPSBAR[0x29])) #define MCF_SCM_PACR6 (*(vuint8 *)(&__IPSBAR[0x2A])) #define MCF_SCM_PACR7 (*(vuint8 *)(&__IPSBAR[0x2B])) #define MCF_SCM_PACR8 (*(vuint8 *)(&__IPSBAR[0x2C])) #define MCF_SCM_PACR10 (*(vuint8 *)(&__IPSBAR[0x2E])) #define MCF_SCM_GPACR0 (*(vuint8 *)(&__IPSBAR[0x30])) #define MCF_SCM_GPACR1 (*(vuint8 *)(&__IPSBAR[0x31])) #define MCF_SCM_PACR(x) (*(vuint8 *)(&__IPSBAR[0x24 + ((x)*0x1)])) #define MCF_SCM_GPACR(x) (*(vuint8 *)(&__IPSBAR[0x30 + ((x)*0x1)])) /* Other macros */ #define MCF_SCM_IPSBAR (*(vuint32*)(&__IPSBAR[0x0])) #define MCF_SCM_IPSBAR_V (0x1) #define MCF_SCM_IPSBAR_BA(x) ((x)&0xC0000000) /* Bit definitions and macros for MCF_SCM_RAMBAR */ #define MCF_SCM_RAMBAR_BDE (0x200) #define MCF_SCM_RAMBAR_BA(x) ((x)&0xFFFF0000) /* Bit definitions and macros for MCF_SCM_PPMRH */ #define MCF_SCM_PPMRH_CDGPIO (0x1) #define MCF_SCM_PPMRH_CDEPORT (0x2) #define MCF_SCM_PPMRH_CDPIT0 (0x8) #define MCF_SCM_PPMRH_CDPIT1 (0x10) #define MCF_SCM_PPMRH_CDADC (0x80) #define MCF_SCM_PPMRH_CDGPT (0x100) #define MCF_SCM_PPMRH_CDPWM (0x200) #define MCF_SCM_PPMRH_CDCFM (0x800) #define MCF_SCM_PPMRH_CDUSB (0x1000) /* Bit definitions and macros for MCF_SCM_CRSR */ #define MCF_SCM_CRSR_EXT (0x80) /* Bit definitions and macros for MCF_SCM_CWCR */ #define MCF_SCM_CWCR_CWTIF (0x1) #define MCF_SCM_CWCR_CWTAVAL (0x2) #define MCF_SCM_CWCR_CWTA (0x4) #define MCF_SCM_CWCR_CWT(x) (((x)&0x7)<<0x3) #define MCF_SCM_CWCR_CWT_2_9 (0) #define MCF_SCM_CWCR_CWT_2_11 (0x8) #define MCF_SCM_CWCR_CWT_2_13 (0x10) #define MCF_SCM_CWCR_CWT_2_15 (0x18) #define MCF_SCM_CWCR_CWT_2_19 (0x20) #define MCF_SCM_CWCR_CWT_2_23 (0x28) #define MCF_SCM_CWCR_CWT_2_27 (0x30) #define MCF_SCM_CWCR_CWT_2_31 (0x38) #define MCF_SCM_CWCR_CWRI (0x40) #define MCF_SCM_CWCR_CWE (0x80) /* Bit definitions and macros for MCF_SCM_CWSR */ #define MCF_SCM_CWSR_CWSR(x) (((x)&0xFF)<<0) /* Bit definitions and macros for MCF_SCM_DMAREQC */ #define MCF_SCM_DMAREQC_DMAC0(x) (((x)&0xF)<<0) #define MCF_SCM_DMAREQC_DMAC1(x) (((x)&0xF)<<0x4) #define MCF_SCM_DMAREQC_DMAC2(x) (((x)&0xF)<<0x8) #define MCF_SCM_DMAREQC_DMAC3(x) (((x)&0xF)<<0xC) /* Bit definitions and macros for MCF_SCM_PPMRL */ #define MCF_SCM_PPMRL_CDG (0x2) #define MCF_SCM_PPMRL_CDMINIBUS (0x8) #define MCF_SCM_PPMRL_CDDMA (0x10) #define MCF_SCM_PPMRL_CDUART0 (0x20) #define MCF_SCM_PPMRL_CDUART1 (0x40) #define MCF_SCM_PPMRL_CDUART2 (0x80) #define MCF_SCM_PPMRL_CDI2C0 (0x200) #define MCF_SCM_PPMRL_CDQSPI (0x400) #define MCF_SCM_PPMRL_CDI2C1 (0x800) #define MCF_SCM_PPMRL_CDDTIM0 (0x2000) #define MCF_SCM_PPMRL_CDDTIM1 (0x4000) #define MCF_SCM_PPMRL_CDDTIM2 (0x8000) #define MCF_SCM_PPMRL_CDDTIM3 (0x10000) #define MCF_SCM_PPMRL_CDINTC0 (0x20000) #define MCF_SCM_PPMRL_CDINTC1 (0x40000) #define MCF_SCM_PPMRL_CDFEC (0x200000) /* Bit definitions and macros for MCF_SCM_MPARK */ #define MCF_SCM_MPARK_LCKOUT_TIME(x) (((x)&0xF)<<0x8) #define MCF_SCM_MPARK_PRKLAST (0x1000) #define MCF_SCM_MPARK_TIMEOUT (0x2000) #define MCF_SCM_MPARK_FIXED (0x4000) #define MCF_SCM_MPARK_M1_PRTY(x) (((x)&0x3)<<0x10) #define MCF_SCM_MPARK_M0_PRTY(x) (((x)&0x3)<<0x12) #define MCF_SCM_MPARK_M2_PRTY(x) (((x)&0x3)<<0x14) #define MCF_SCM_MPARK_M3_PRTY(x) (((x)&0x3)<<0x16) #define MCF_SCM_MPARK_BCR24BIT (0x1000000) #define MCF_SCM_MPARK_M2_P_EN (0x2000000) /* Bit definitions and macros for MCF_SCM_MPR */ #define MCF_SCM_MPR_MPR(x) (((x)&0xF)<<0) /* Bit definitions and macros for MCF_SCM_PPMRS */ #define MCF_SCM_PPMRS_PPMRS(x) (((x)&0x7F)<<0) #define MCF_SCM_PPMRS_DISABLE_ALL (0x40) #define MCF_SCM_PPMRS_DISABLE_CFM (0x2B) #define MCF_SCM_PPMRS_DISABLE_CAN (0x2A) #define MCF_SCM_PPMRS_DISABLE_PWM (0x29) #define MCF_SCM_PPMRS_DISABLE_GPT (0x28) #define MCF_SCM_PPMRS_DISABLE_ADC (0x27) #define MCF_SCM_PPMRS_DISABLE_PIT1 (0x24) #define MCF_SCM_PPMRS_DISABLE_PIT0 (0x23) #define MCF_SCM_PPMRS_DISABLE_EPORT (0x21) #define MCF_SCM_PPMRS_DISABLE_PORTS (0x20) #define MCF_SCM_PPMRS_DISABLE_INTC (0x11) #define MCF_SCM_PPMRS_DISABLE_DTIM3 (0x10) #define MCF_SCM_PPMRS_DISABLE_DTIM2 (0xF) #define MCF_SCM_PPMRS_DISABLE_DTIM1 (0xE) #define MCF_SCM_PPMRS_DISABLE_DTIM0 (0xD) #define MCF_SCM_PPMRS_DISABLE_QSPI (0xA) #define MCF_SCM_PPMRS_DISABLE_I2C (0x9) #define MCF_SCM_PPMRS_DISABLE_UART2 (0x7) #define MCF_SCM_PPMRS_DISABLE_UART1 (0x6) #define MCF_SCM_PPMRS_DISABLE_UART0 (0x5) #define MCF_SCM_PPMRS_DISABLE_DMA (0x4) #define MCF_SCM_PPMRS_SET_CDG (0x1) /* Bit definitions and macros for MCF_SCM_PPMRC */ #define MCF_SCM_PPMRC_PPMRC(x) (((x)&0x7F)<<0) #define MCF_SCM_PPMRC_ENABLE_ALL (0x40) #define MCF_SCM_PPMRC_ENABLE_CFM (0x2B) #define MCF_SCM_PPMRC_ENABLE_CAN (0x2A) #define MCF_SCM_PPMRC_ENABLE_PWM (0x29) #define MCF_SCM_PPMRC_ENABLE_GPT (0x28) #define MCF_SCM_PPMRC_ENABLE_ADC (0x27) #define MCF_SCM_PPMRC_ENABLE_PIT1 (0x24) #define MCF_SCM_PPMRC_ENABLE_PIT0 (0x23) #define MCF_SCM_PPMRC_ENABLE_EPORT (0x21) #define MCF_SCM_PPMRC_ENABLE_PORTS (0x20) #define MCF_SCM_PPMRC_ENABLE_INTC (0x11) #define MCF_SCM_PPMRC_ENABLE_DTIM3 (0x10) #define MCF_SCM_PPMRC_ENABLE_DTIM2 (0xF) #define MCF_SCM_PPMRC_ENABLE_DTIM1 (0xE) #define MCF_SCM_PPMRC_ENABLE_DTIM0 (0xD) #define MCF_SCM_PPMRC_ENABLE_QSPI (0xA) #define MCF_SCM_PPMRC_ENABLE_I2C (0x9) #define MCF_SCM_PPMRC_ENABLE_UART2 (0x7) #define MCF_SCM_PPMRC_ENABLE_UART1 (0x6) #define MCF_SCM_PPMRC_ENABLE_UART0 (0x5) #define MCF_SCM_PPMRC_ENABLE_DMA (0x4) #define MCF_SCM_PPMRC_CLEAR_CDG (0x1) /* Bit definitions and macros for MCF_SCM_IPSBMT */ #define MCF_SCM_IPSBMT_BMT(x) (((x)&0x7)<<0) #define MCF_SCM_IPSBMT_BMT_CYCLES_1024 (0) #define MCF_SCM_IPSBMT_BMT_CYCLES_512 (0x1) #define MCF_SCM_IPSBMT_BMT_CYCLES_256 (0x2) #define MCF_SCM_IPSBMT_BMT_CYCLES_128 (0x3) #define MCF_SCM_IPSBMT_BMT_CYCLES_64 (0x4) #define MCF_SCM_IPSBMT_BMT_CYCLES_32 (0x5) #define MCF_SCM_IPSBMT_BMT_CYCLES_16 (0x6) #define MCF_SCM_IPSBMT_BMT_CYCLES_8 (0x7) #define MCF_SCM_IPSBMT_BME (0x8) /* Bit definitions and macros for MCF_SCM_PACR */ #define MCF_SCM_PACR_ACCESS_CTRL0(x) (((x)&0x7)<<0) #define MCF_SCM_PACR_LOCK0 (0x8) #define MCF_SCM_PACR_ACCESS_CTRL1(x) (((x)&0x7)<<0x4) #define MCF_SCM_PACR_LOCK1 (0x80) /* Bit definitions and macros for MCF_SCM_PACR10 */ #define MCF_SCM_PACR10_ACCESS_CTRL0(x) (((x)&0x7)<<0) #define MCF_SCM_PACR10_LOCK0 (0x8) #define MCF_SCM_PACR10_ACCESS_CTRL1(x) (((x)&0x7)<<0x4) #define MCF_SCM_PACR10_LOCK1 (0x80) /* Bit definitions and macros for MCF_SCM_GPACR */ #define MCF_SCM_GPACR_ACCESS_CTRL(x) (((x)&0xF)<<0) #define MCF_SCM_GPACR_LOCK (0x80) #endif /* __MCF52259_SCM_H__ */
6,678
532
<reponame>vinaym815/opensim-core<filename>OpenSim/Common/IMUDataReader.cpp #include "IMUDataReader.h" namespace OpenSim { const std::string IMUDataReader::Orientations{ "orientations" }; // name of table for orientation data const std::string IMUDataReader::LinearAccelerations{ "linear_accelerations" }; // name of table for acceleration data const std::string IMUDataReader::MagneticHeading{ "magnetic_heading" }; // name of table for data from Magnetometer (Magnetic Heading) const std::string IMUDataReader::AngularVelocity{ "angular_velocity" }; // name of table for gyro data (AngularVelocity) DataAdapter::OutputTables IMUDataReader::createTablesFromMatrices(double dataRate, const std::vector<std::string>& labels, const std::vector<double>& times, const SimTK::Matrix_<SimTK::Quaternion>& rotationsData, const SimTK::Matrix_<SimTK::Vec3>& linearAccelerationData, const SimTK::Matrix_<SimTK::Vec3>& magneticHeadingData, const SimTK::Matrix_<SimTK::Vec3>& angularVelocityData) const { DataAdapter::OutputTables tables{}; auto orientationTable = std::make_shared<TimeSeriesTableQuaternion>(times, rotationsData, labels); orientationTable->updTableMetaData() .setValueForKey("DataRate", std::to_string(dataRate)); tables.emplace(Orientations, orientationTable); std::vector<double> emptyTimes; bool foundLinearAccelerationData = linearAccelerationData.nrow()>0; auto accelerationTable = (foundLinearAccelerationData ? std::make_shared<TimeSeriesTableVec3>(times, linearAccelerationData, labels) : std::make_shared<TimeSeriesTableVec3>(emptyTimes, linearAccelerationData, labels)); accelerationTable->updTableMetaData() .setValueForKey("DataRate", std::to_string(dataRate)); tables.emplace(LinearAccelerations, accelerationTable); bool foundMagneticHeadingData = magneticHeadingData.nrow()>0; auto magneticHeadingTable = (foundMagneticHeadingData ? std::make_shared<TimeSeriesTableVec3>(times, magneticHeadingData, labels) : std::make_shared<TimeSeriesTableVec3>(emptyTimes, magneticHeadingData, labels)); magneticHeadingTable->updTableMetaData() .setValueForKey("DataRate", std::to_string(dataRate)); tables.emplace(MagneticHeading, magneticHeadingTable); bool foundAngularVelocityData = angularVelocityData.nrow()>0; auto angularVelocityTable = (foundAngularVelocityData ? std::make_shared<TimeSeriesTableVec3>(times, angularVelocityData, labels) : std::make_shared<TimeSeriesTableVec3>(emptyTimes, angularVelocityData, labels)); angularVelocityTable->updTableMetaData() .setValueForKey("DataRate", std::to_string(dataRate)); tables.emplace(AngularVelocity, angularVelocityTable); return tables; } }
1,111
1,268
<reponame>pru-sunny/UberSignature<filename>Sources/ObjC/UBSignatureDrawingViewController.h /** Copyright (c) 2017 Uber Technologies, Inc. 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, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #import <UIKit/UIKit.h> @class UBSignatureDrawingViewController; NS_ASSUME_NONNULL_BEGIN @protocol UBSignatureDrawingViewControllerDelegate <NSObject> @optional /// Callback when @c isEmpty changes, due to user drawing or reset being called. - (void)signatureDrawingViewController:(UBSignatureDrawingViewController *)signatureDrawingViewController isEmptyDidChange:(BOOL)isEmpty; @end /** A view controller that allows the user to draw a signature and provides additional functionality. */ @interface UBSignatureDrawingViewController : UIViewController /** Init @param image An optional starting image for the signature. @return An instance */ - (instancetype)initWithImage:(nullable UIImage *)image NS_DESIGNATED_INITIALIZER; /// Resets the signature - (void)reset; /// Returns a @c UIImage of the signature (with a transparent background). - (UIImage *)fullSignatureImage; /** Whether the signature drawing is empty or not. This changes when the user draws or the view is reset. @note Defaults to @c NO if there's a starting image. */ @property (nonatomic, readonly) BOOL isEmpty; /** The color of the signature. Defaults to black. */ @property (nonatomic) UIColor *signatureColor; /** Delegate to receive view controller callbacks. */ @property (nullable, nonatomic, weak) id<UBSignatureDrawingViewControllerDelegate> delegate; #pragma mark - Unavailable - (instancetype)initWithNibName:(nullable NSString *)nibNameOrNil bundle:(nullable NSBundle *)nibBundleOrNil NS_UNAVAILABLE; - (nullable instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE; @end NS_ASSUME_NONNULL_END
800
358
<reponame>michael-k/awacs # Copyright (c) 2012-2021, <NAME> <<EMAIL>> # All rights reserved. # # See LICENSE file for full license. from .aws import Action as BaseAction from .aws import BaseARN service_name = "AWS CloudFormation" prefix = "cloudformation" class Action(BaseAction): def __init__(self, action: str = None) -> None: super().__init__(prefix, action) class ARN(BaseARN): def __init__(self, resource: str = "", region: str = "", account: str = "") -> None: super().__init__( service=prefix, resource=resource, region=region, account=account ) ActivateType = Action("ActivateType") BatchDescribeTypeConfigurations = Action("BatchDescribeTypeConfigurations") CancelResourceRequest = Action("CancelResourceRequest") CancelUpdateStack = Action("CancelUpdateStack") ContinueUpdateRollback = Action("ContinueUpdateRollback") CreateChangeSet = Action("CreateChangeSet") CreateResource = Action("CreateResource") CreateStack = Action("CreateStack") CreateStackInstances = Action("CreateStackInstances") CreateStackSet = Action("CreateStackSet") CreateUploadBucket = Action("CreateUploadBucket") DeactivateType = Action("DeactivateType") DeleteChangeSet = Action("DeleteChangeSet") DeleteResource = Action("DeleteResource") DeleteStack = Action("DeleteStack") DeleteStackInstances = Action("DeleteStackInstances") DeleteStackSet = Action("DeleteStackSet") DeregisterType = Action("DeregisterType") DescribeAccountLimits = Action("DescribeAccountLimits") DescribeChangeSet = Action("DescribeChangeSet") DescribePublisher = Action("DescribePublisher") DescribeStackDriftDetectionStatus = Action("DescribeStackDriftDetectionStatus") DescribeStackEvents = Action("DescribeStackEvents") DescribeStackInstance = Action("DescribeStackInstance") DescribeStackResource = Action("DescribeStackResource") DescribeStackResourceDrifts = Action("DescribeStackResourceDrifts") DescribeStackResources = Action("DescribeStackResources") DescribeStackSet = Action("DescribeStackSet") DescribeStackSetOperation = Action("DescribeStackSetOperation") DescribeStacks = Action("DescribeStacks") DescribeType = Action("DescribeType") DescribeTypeRegistration = Action("DescribeTypeRegistration") DetectStackDrift = Action("DetectStackDrift") DetectStackResourceDrift = Action("DetectStackResourceDrift") DetectStackSetDrift = Action("DetectStackSetDrift") EstimateTemplateCost = Action("EstimateTemplateCost") ExecuteChangeSet = Action("ExecuteChangeSet") GetResource = Action("GetResource") GetResourceRequestStatus = Action("GetResourceRequestStatus") GetStackPolicy = Action("GetStackPolicy") GetTemplate = Action("GetTemplate") GetTemplateSummary = Action("GetTemplateSummary") ImportStacksToStackSet = Action("ImportStacksToStackSet") ListChangeSets = Action("ListChangeSets") ListExports = Action("ListExports") ListImports = Action("ListImports") ListResourceRequests = Action("ListResourceRequests") ListResources = Action("ListResources") ListStackInstances = Action("ListStackInstances") ListStackResources = Action("ListStackResources") ListStackSetOperationResults = Action("ListStackSetOperationResults") ListStackSetOperations = Action("ListStackSetOperations") ListStackSets = Action("ListStackSets") ListStacks = Action("ListStacks") ListTypeRegistrations = Action("ListTypeRegistrations") ListTypeVersions = Action("ListTypeVersions") ListTypes = Action("ListTypes") PreviewStackUpdate = Action("PreviewStackUpdate") PublishType = Action("PublishType") RecordHandlerProgress = Action("RecordHandlerProgress") RegisterPublisher = Action("RegisterPublisher") RegisterType = Action("RegisterType") SetStackPolicy = Action("SetStackPolicy") SetTypeConfiguration = Action("SetTypeConfiguration") SetTypeDefaultVersion = Action("SetTypeDefaultVersion") SignalResource = Action("SignalResource") StopStackSetOperation = Action("StopStackSetOperation") TagResource = Action("TagResource") TestType = Action("TestType") UntagResource = Action("UntagResource") UpdateResource = Action("UpdateResource") UpdateStack = Action("UpdateStack") UpdateStackInstances = Action("UpdateStackInstances") UpdateStackSet = Action("UpdateStackSet") UpdateTerminationProtection = Action("UpdateTerminationProtection") ValidateTemplate = Action("ValidateTemplate")
1,150
335
<gh_stars>100-1000 { "word": "Eulogy", "definitions": [ "expression of praise, often on the occasion of someone's death" ], "parts-of-speech": "noun" }
76
721
package crazypants.enderio.base.handler.darksteel; import javax.annotation.Nonnull; import com.enderio.core.common.util.NNList; import com.enderio.core.common.util.NNList.Callback; import crazypants.enderio.api.upgrades.IDarkSteelItem; import crazypants.enderio.api.upgrades.IDarkSteelUpgrade; import crazypants.enderio.api.upgrades.IHasPlayerRenderer; import crazypants.enderio.base.integration.baubles.BaublesUtil; import net.minecraft.client.entity.AbstractClientPlayer; import net.minecraft.client.renderer.entity.RenderPlayer; import net.minecraft.client.renderer.entity.layers.LayerRenderer; import net.minecraft.inventory.EntityEquipmentSlot; import net.minecraft.inventory.IInventory; import net.minecraft.item.ItemStack; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; @SideOnly(Side.CLIENT) public class UpgradeRenderDispatcher implements LayerRenderer<AbstractClientPlayer> { private final @Nonnull RenderPlayer renderPlayer; UpgradeRenderDispatcher(@Nonnull RenderPlayer renderPlayer) { this.renderPlayer = renderPlayer; } @Override public void doRenderLayer(@Nonnull AbstractClientPlayer player, float limbSwing, float limbSwingAmount, float partialTicks, float ageInTicks, float netHeadYaw, float headPitch, float scale) { NNList.of(EntityEquipmentSlot.class).apply(new Callback<EntityEquipmentSlot>() { @Override public void apply(@Nonnull EntityEquipmentSlot slot) { ItemStack item = player.getItemStackFromSlot(slot); if (item.getItem() instanceof IDarkSteelItem) { for (IDarkSteelUpgrade upgrade : UpgradeRegistry.getUpgrades()) { if (upgrade instanceof IHasPlayerRenderer && upgrade.hasUpgrade(item)) { ((IHasPlayerRenderer) upgrade).getRender(player).doRenderLayer(renderPlayer, slot, item, player, limbSwing, limbSwingAmount, partialTicks, ageInTicks, netHeadYaw, headPitch, scale); } } } if (item.getItem() instanceof IHasPlayerRenderer) { ((IHasPlayerRenderer) item.getItem()).getRender(player).doRenderLayer(renderPlayer, slot, item, player, limbSwing, limbSwingAmount, partialTicks, ageInTicks, netHeadYaw, headPitch, scale); } } }); IInventory baubles = BaublesUtil.instance().getBaubles(player); if (baubles != null) { for (int i = 0; i < baubles.getSizeInventory(); i++) { ItemStack piece = baubles.getStackInSlot(i); if (piece.getItem() instanceof IHasPlayerRenderer) { ((IHasPlayerRenderer) piece.getItem()).getRender(player).doRenderLayer(renderPlayer, null, piece, player, limbSwing, limbSwingAmount, partialTicks, ageInTicks, netHeadYaw, headPitch, scale); } } } } @Override public boolean shouldCombineTextures() { return true; } }
1,115
307
/* * Copyright (C) Volition, Inc. 1999. All rights reserved. * * All source code herein is the property of Volition, Inc. You may not sell * or otherwise commercially exploit the source or things you created based on the * source. * */ #include <cstdio> #include <cstring> #include <csetjmp> #include "globalincs/pstypes.h" #include "jpgutils/jpgutils.h" #include "cfile/cfile.h" #include "bmpman/bmpman.h" #include "graphics/2d.h" #undef LOCAL // fix for the jpeg header, pstypes.h has defined these macros // fix a warning where jpeg and SDL headers collide #ifdef HAVE_STDDEF_H #undef HAVE_STDDEF_H #endif #ifdef HAVE_STDLIB_H #undef HAVE_STDLIB_H #endif #include "jpeglib.h" // forward declarations void jpeg_cfile_src(j_decompress_ptr cinfo, CFILE *cfp); // structs typedef struct { struct jpeg_source_mgr pub; // public fields CFILE *infile; // source stream JOCTET *buffer; // start of buffer boolean start_of_file; // have we gotten any data yet? } cfile_source_mgr; typedef cfile_source_mgr *cfile_src_ptr; struct jpeg_decompress_struct jpeg_info; struct jpeg_error_mgr jpeg_err; #define INPUT_BUF_SIZE 4096 // choose an efficiently read'able size static int jpeg_error_code; // set current error #define Jpeg_Set_Error(x) { jpeg_error_code = x; } // error handler stuff, rather than the default, which will screw us // jmp_buf FSJpegError; // error (exit) handler void jpg_error_exit(j_common_ptr cinfo) { // give an error message that isn't just generic (*cinfo->err->output_message) (cinfo); // do cleanup since we won't get the chance otherwise jpeg_destroy(cinfo); // set the error code, pretty much always going to be a read error Jpeg_Set_Error(JPEG_ERROR_READING); // bail longjmp(FSJpegError, 1); } // message handler for errors void jpg_output_message(j_common_ptr cinfo) { // JMSG_LENGTH_MAX should be 200, DO NOT change from this define so // that we don't risk overruns from the jpeg lib char buffer[JMSG_LENGTH_MAX]; // Create the message (*cinfo->err->format_message) (cinfo, buffer); // don't actually output anything unless we are a debug build, let bmpman // give any errors instead for release builds #ifndef NDEBUG Warning(LOCATION, "%s %s", "JPEG Error:", buffer); #endif } // Reads header information from the JPEG file into the bitmap pointer // // filename - name of the JPEG bitmap file // w - (output) width of the bitmap // h - (output) height of the bitmap // bpp - (output) bits per pixel of the bitmap // // returns - JPEG_ERROR_NONE if successful, otherwise error code // int jpeg_read_header(const char *real_filename, CFILE *img_cfp, int *w, int *h, int *bpp, ubyte * /*palette*/) { CFILE *jpeg_file = NULL; char filename[MAX_FILENAME_LEN]; if (img_cfp == NULL) { strcpy_s( filename, real_filename ); char *p = strchr( filename, '.' ); if ( p ) *p = 0; strcat_s( filename, ".jpg" ); jpeg_file = cfopen( filename , "rb" ); if ( !jpeg_file ) { return JPEG_ERROR_READING; } } else { jpeg_file = img_cfp; } // set the basic/default error code Jpeg_Set_Error(JPEG_ERROR_NONE); // initialize error message handler and decompression struct jpeg_info.err = jpeg_std_error(&jpeg_err); jpeg_err.error_exit = jpg_error_exit; jpeg_err.output_message = jpg_output_message; jpeg_create_decompress(&jpeg_info); // setup to read data via CFILE jpeg_cfile_src(&jpeg_info, jpeg_file); jpeg_read_header(&jpeg_info, TRUE); // send the info back out if (w) *w = jpeg_info.image_width; if (h) *h = jpeg_info.image_height; if (bpp) *bpp = (jpeg_info.num_components * 8); // cleanup jpeg_destroy_decompress(&jpeg_info); if (img_cfp == NULL) { cfclose(jpeg_file); jpeg_file = NULL; } return jpeg_error_code; } // Loads a JPEG image // // filename - name of the targa file to load // image_data - allocated storage for the bitmap // // returns - true if succesful, false otherwise // int jpeg_read_bitmap(const char *real_filename, ubyte *image_data, ubyte * /*palette*/, int dest_size, int cf_type) { char filename[MAX_FILENAME_LEN]; CFILE *img_cfp = NULL; JSAMPARRAY buffer = NULL; strcpy_s( filename, real_filename ); char *p = strchr( filename, '.' ); if ( p ) *p = 0; strcat_s( filename, ".jpg" ); img_cfp = cfopen(filename, "rb", CFILE_NORMAL, cf_type); if (img_cfp == NULL) return JPEG_ERROR_READING; // set the basic error code Jpeg_Set_Error(JPEG_ERROR_NONE); // initialize error message handler jpeg_info.err = jpeg_std_error(&jpeg_err); jpeg_err.error_exit = jpg_error_exit; jpeg_err.output_message = jpg_output_message; // SPECIAL NOTE: we've already allocated memory on the basis of original height, width and bpp // of the image from the header. DO NOT change any settings that affect output variables here // or we risk needed more memory than we have available in "image_data". The only exception is // bpp since 'dest_size' should already indicate what we want to end up with. if ( setjmp( FSJpegError ) == 0) { // initialize decompression struct jpeg_create_decompress(&jpeg_info); // setup to read data via CFILE jpeg_cfile_src(&jpeg_info, img_cfp); jpeg_read_header(&jpeg_info, TRUE); // memory for the storage of each scanline jpeg_calc_output_dimensions(&jpeg_info); // set the output components to be 'dest_size' (so we can support 16/24/32-bit images with this one function) // NOTE: only 24-bit is actually supported right now, we don't currently up/down sample at all jpeg_info.output_components = dest_size; jpeg_info.out_color_components = dest_size; // may need/have to match above // Actually check the precondition specified in the comment above Assertion(dest_size == 3, "JPEG decompression currently only support 24-bit bitmap locking!"); // multiplying by rec_outbuf_height isn't required but is more efficient int size = jpeg_info.output_width * jpeg_info.output_components * jpeg_info.rec_outbuf_height; // a standard malloc doesn't appear to work properly here (debug vm_malloc??), crashes in lib buffer = (*jpeg_info.mem->alloc_sarray)((j_common_ptr) &jpeg_info, JPOOL_IMAGE, size, 1); // DON'T free() THIS! jpeg lib does it // begin decompression process -- jpeg_start_decompress(&jpeg_info); // read each scanline and output to previously allocated 'image_data' while (jpeg_info.output_scanline < jpeg_info.output_height) { jpeg_read_scanlines(&jpeg_info, buffer, 1); // niffiwan: swap some bytes (FSO uses BGR, not RGB) so that libjpeg // code is used in its original state // NOTE: assumes only one scanline is being read at a time. If // multiple lines are read this needs updating // also note that this doesn't deal with jpegs that are greyscale JSAMPLE tmp; for (int k = 2; k < size; k += 3) { tmp = buffer[0][k - 2]; buffer[0][k - 2] = buffer[0][k]; buffer[0][k] = tmp; } memcpy(image_data, *buffer, size); image_data += size; } // -- done with decompression process jpeg_finish_decompress(&jpeg_info); // cleanup jpeg_destroy_decompress(&jpeg_info); } cfclose(img_cfp); return jpeg_error_code; } // --------------------- handlers for reading of files ------------------------- // ---- basic copy of source from jdatasrc.c, originally: // Copyright (C) 1994-1996, <NAME>. void jpeg_cf_init_source(j_decompress_ptr cinfo) { cfile_src_ptr src = (cfile_src_ptr) cinfo->src; // We reset the empty-input-file flag for each image, // but we don't clear the input buffer. // This is correct behavior for reading a series of images from one source. src->start_of_file = TRUE; } boolean jpeg_cf_fill_input_buffer(j_decompress_ptr cinfo) { cfile_src_ptr src = (cfile_src_ptr) cinfo->src; size_t nbytes; nbytes = cfread(src->buffer, 1, INPUT_BUF_SIZE, src->infile); if (nbytes <= 0) { if (src->start_of_file) { // Treat empty input file as fatal error Jpeg_Set_Error(JPEG_ERROR_READING); } // Insert a fake EOI marker src->buffer[0] = (JOCTET) 0xFF; src->buffer[1] = (JOCTET) JPEG_EOI; nbytes = 2; return FALSE; } src->pub.next_input_byte = src->buffer; src->pub.bytes_in_buffer = nbytes; src->start_of_file = FALSE; return TRUE; } void jpeg_cf_skip_input_data(j_decompress_ptr cinfo, long num_bytes) { cfile_src_ptr src = (cfile_src_ptr) cinfo->src; if (num_bytes > 0) { while (num_bytes > (long) src->pub.bytes_in_buffer) { num_bytes -= (long) src->pub.bytes_in_buffer; if (!jpeg_cf_fill_input_buffer(cinfo)) return; } src->pub.next_input_byte += (size_t) num_bytes; src->pub.bytes_in_buffer -= (size_t) num_bytes; } } void jpeg_cf_term_source(j_decompress_ptr /*cinfo*/) { // no work necessary here } void jpeg_cfile_src(j_decompress_ptr cinfo, CFILE *cfp) { cfile_src_ptr src; if (cinfo->src == NULL) { // first time for this JPEG object? cinfo->src = (struct jpeg_source_mgr *) (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT, sizeof(cfile_source_mgr)); src = (cfile_src_ptr) cinfo->src; src->buffer = (JOCTET *) (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT, INPUT_BUF_SIZE * sizeof(JOCTET)); } src = (cfile_src_ptr) cinfo->src; src->pub.init_source = jpeg_cf_init_source; src->pub.fill_input_buffer = jpeg_cf_fill_input_buffer; src->pub.skip_input_data = jpeg_cf_skip_input_data; src->pub.resync_to_restart = jpeg_resync_to_restart; // use default method src->pub.term_source = jpeg_cf_term_source; src->infile = cfp; src->pub.bytes_in_buffer = 0; // forces fill_input_buffer on first read src->pub.next_input_byte = NULL; // until buffer loaded }
3,597
1,545
/* * 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 not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.bookkeeper.tests.shaded; import static org.junit.Assert.assertSame; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.anyInt; import static org.mockito.ArgumentMatchers.same; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import dlshade.org.apache.bookkeeper.common.util.ReflectionUtils; import dlshade.org.apache.bookkeeper.conf.AbstractConfiguration; import dlshade.org.apache.bookkeeper.conf.ServerConfiguration; import dlshade.org.apache.bookkeeper.meta.AbstractZkLedgerManagerFactory; import dlshade.org.apache.bookkeeper.meta.HierarchicalLedgerManagerFactory; import dlshade.org.apache.bookkeeper.meta.LayoutManager; import dlshade.org.apache.bookkeeper.meta.LedgerLayout; import dlshade.org.apache.bookkeeper.meta.LedgerManagerFactory; import java.io.IOException; import org.junit.Test; import org.junit.runner.RunWith; import org.powermock.api.mockito.PowerMockito; import org.powermock.core.classloader.annotations.PrepareForTest; import org.powermock.modules.junit4.PowerMockRunner; /** * Test whether the distributedlog-core-shaded jar is generated correctly. */ @RunWith(PowerMockRunner.class) @PrepareForTest({ AbstractZkLedgerManagerFactory.class, ReflectionUtils.class }) public class DistributedLogCoreShadedJarTest { @Test(expected = ClassNotFoundException.class) public void testProtobufIsShaded() throws Exception { Class.forName("com.google.protobuf.Message"); } @Test public void testProtobufShadedPath() throws Exception { Class.forName("dlshade.com.google.protobuf.Message"); } @Test(expected = ClassNotFoundException.class) public void testGuavaIsShaded() throws Exception { Class.forName("com.google.common.cache.Cache"); } @Test public void testGuavaShadedPath() throws Exception { Class.forName("dlshade.com.google.common.cache.Cache"); assertTrue(true); } @Test(expected = ClassNotFoundException.class) public void testZooKeeperIsShaded() throws Exception { Class.forName("org.apache.zookeeper.ZooKeeper"); } @Test public void testZooKeeperShadedPath() throws Exception { Class.forName("dlshade.org.apache.zookeeper.ZooKeeper"); } @Test(expected = ClassNotFoundException.class) public void testBookKeeperCommon() throws Exception { Class.forName("org.apache.bookkeeper.common.util.OrderedExecutor"); assertTrue(true); } @Test public void testBookKeeperCommonShade() throws Exception { Class.forName("dlshade.org.apache.bookkeeper.common.util.OrderedExecutor"); assertTrue(true); } @Test(expected = ClassNotFoundException.class) public void testBookKeeperProto() throws Exception { Class.forName("org.apache.bookkeeper.proto.BookkeeperProtocol"); } @Test public void testBookKeeperProtoShade() throws Exception { Class.forName("dlshade.org.apache.bookkeeper.proto.BookkeeperProtocol"); assertTrue(true); } @Test(expected = ClassNotFoundException.class) public void testCirceChecksum() throws Exception { Class.forName("com.scurrilous.circe.checksum.Crc32cIntChecksum"); } @Test public void testCirceChecksumShade() throws Exception { Class.forName("dlshade.com.scurrilous.circe.checksum.Crc32cIntChecksum"); assertTrue(true); } @Test public void testDistributedLogCommon() throws Exception { Class.forName("dlshade.org.apache.distributedlog.common.concurrent.AsyncSemaphore"); assertTrue(true); } @Test public void testDistributedLogProto() throws Exception { Class.forName("dlshade.org.apache.distributedlog.DLSN"); assertTrue(true); } @Test public void testDistributedLogCore() throws Exception { Class.forName("dlshade.org.apache.distributedlog.api.AsyncLogReader"); assertTrue(true); } @Test public void testShadeLedgerManagerFactoryWithoutConfiguredLedgerManagerClass() throws Exception { testShadeLedgerManagerFactoryAllowed( null, true); } @Test public void testShadeLedgerManagerFactoryWithConfiguredLedgerManagerClass() throws Exception { testShadeLedgerManagerFactoryAllowed( "org.apache.bookkeeper.meta.HirerchicalLedgerManagerFactory", true); } @Test public void testShadeLedgerManagerFactoryDisallowedWithoutConfiguredLedgerManagerClass() throws Exception { testShadeLedgerManagerFactoryAllowed( null, false); } @Test public void testShadeLedgerManagerFactoryDisallowedWithConfiguredLedgerManagerClass() throws Exception { testShadeLedgerManagerFactoryAllowed( "org.apache.bookkeeper.meta.HirerchicalLedgerManagerFactory", false); } @SuppressWarnings("unchecked") private void testShadeLedgerManagerFactoryAllowed(String factoryClassName, boolean allowShaded) throws Exception { ServerConfiguration conf = new ServerConfiguration(); conf.setAllowShadedLedgerManagerFactoryClass(allowShaded); conf.setLedgerManagerFactoryClassName(factoryClassName); LayoutManager manager = mock(LayoutManager.class); LedgerLayout layout = new LedgerLayout( "org.apache.bookkeeper.meta.HierarchicalLedgerManagerFactory", HierarchicalLedgerManagerFactory.CUR_VERSION); when(manager.readLedgerLayout()).thenReturn(layout); LedgerManagerFactory factory = mock(LedgerManagerFactory.class); when(factory.initialize(any(AbstractConfiguration.class), same(manager), anyInt())) .thenReturn(factory); PowerMockito.mockStatic(ReflectionUtils.class); when(ReflectionUtils.newInstance(any(Class.class))) .thenReturn(factory); try { LedgerManagerFactory result = AbstractZkLedgerManagerFactory.newLedgerManagerFactory( conf, manager); if (allowShaded) { assertSame(factory, result); verify(factory, times(1)) .initialize(any(AbstractConfiguration.class), same(manager), anyInt()); } else { fail("Should fail to instantiate ledger manager factory if allowShaded is false"); } } catch (IOException ioe) { if (allowShaded) { fail("Should not fail to instantiate ledger manager factory is allowShaded is true"); } else { assertTrue(ioe.getCause() instanceof ClassNotFoundException); } } } }
2,878
326
/*BEGIN_LEGAL Intel Open Source License Copyright (c) 2002-2017 Intel Corporation. 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 and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INTEL OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. END_LEGAL */ #include <iostream> #if !defined(__USE_GNU) # define __USE_GNU #endif #include <sys/ucontext.h> #include "insfault-intel64.h" // Check that the fault context contains the expected register values // after running a test. // // ctxt Fault context. // // returns TRUE if the context has expected values. // bool CheckUContextRegisters(void *ctxt) { ucontext_t *uctxt = static_cast<ucontext_t *>(ctxt); bool ok = true; greg_t pc = uctxt->uc_mcontext.gregs[REG_RIP]; if (pc != ExpectedPC) { std::cout << " *** Unexpected fault PC 0x" << std::hex << pc << "\n"; ok = false; } greg_t r8 = uctxt->uc_mcontext.gregs[REG_R8]; if (r8 != ExpectedR8) { std::cout << " *** Unexpected R8 value 0x" << std::hex << r8 << "\n"; ok = false; } greg_t r9 = uctxt->uc_mcontext.gregs[REG_R9]; if (r9 != ExpectedR9) { std::cout << " *** Unexpected R9 value 0x" << std::hex << r9 << "\n"; ok = false; } greg_t r10 = uctxt->uc_mcontext.gregs[REG_R10]; if (r10 != ExpectedR10) { std::cout << " *** Unexpected R10 value 0x" << std::hex << r10 << "\n"; ok = false; } greg_t r11 = uctxt->uc_mcontext.gregs[REG_R11]; if (r11 != ExpectedR11) { std::cout << " *** Unexpected R11 value 0x" << std::hex << r11 << "\n"; ok = false; } greg_t r12 = uctxt->uc_mcontext.gregs[REG_R12]; if (r12 != ExpectedR12) { std::cout << " *** Unexpected R12 value 0x" << std::hex << r12 << "\n"; ok = false; } greg_t r13 = uctxt->uc_mcontext.gregs[REG_R13]; if (r13 != ExpectedR13) { std::cout << " *** Unexpected R13 value 0x" << std::hex << r13 << "\n"; ok = false; } greg_t r14 = uctxt->uc_mcontext.gregs[REG_R14]; if (r14 != ExpectedR14) { std::cout << " *** Unexpected R14 value 0x" << std::hex << r14 << "\n"; ok = false; } greg_t r15 = uctxt->uc_mcontext.gregs[REG_R15]; if (r15 != ExpectedR15) { std::cout << " *** Unexpected R15 value 0x" << std::hex << r15 << "\n"; ok = false; } greg_t rdi = uctxt->uc_mcontext.gregs[REG_RDI]; if (rdi != ExpectedRDI) { std::cout << " *** Unexpected RDI value 0x" << std::hex << rdi << "\n"; ok = false; } greg_t rsi = uctxt->uc_mcontext.gregs[REG_RSI]; if (rsi != ExpectedRSI) { std::cout << " *** Unexpected RSI value 0x" << std::hex << rsi << "\n"; ok = false; } greg_t rbp = uctxt->uc_mcontext.gregs[REG_RBP]; if (rbp != ExpectedRBP) { std::cout << " *** Unexpected RBP value 0x" << std::hex << rbp << "\n"; ok = false; } greg_t rbx = uctxt->uc_mcontext.gregs[REG_RBX]; if (rbx != ExpectedRBX) { std::cout << " *** Unexpected RBX value 0x" << std::hex << rbx << "\n"; ok = false; } greg_t rdx = uctxt->uc_mcontext.gregs[REG_RDX]; if (rdx != ExpectedRDX) { std::cout << " *** Unexpected RDX value 0x" << std::hex << rdx << "\n"; ok = false; } greg_t rax = uctxt->uc_mcontext.gregs[REG_RAX]; if (rax != ExpectedRAX) { std::cout << " *** Unexpected RAX value 0x" << std::hex << rax << "\n"; ok = false; } greg_t rcx = uctxt->uc_mcontext.gregs[REG_RCX]; if (rcx != ExpectedRCX) { std::cout << " *** Unexpected RCX value 0x" << std::hex << rcx << "\n"; ok = false; } greg_t rsp = uctxt->uc_mcontext.gregs[REG_RSP]; if (rsp != ExpectedRSP) { std::cout << " *** Unexpected RSP value 0x" << std::hex << rsp << "\n"; ok = false; } greg_t efl = uctxt->uc_mcontext.gregs[REG_EFL]; efl &= EFLAGS_MASK; if (efl != ExpectedEFLAGS) { std::cout << " *** Unexpected EFL value 0x" << std::hex << efl << "\n"; ok = false; } return ok; }
2,380
335
<gh_stars>100-1000 { "word": "Envoy", "definitions": [ "A messenger or representative, especially one on a diplomatic mission.", "A minister plenipotentiary, ranking below ambassador and above charg\u00e9 d'affaires." ], "parts-of-speech": "Noun" }
106
1,690
<reponame>sg3510/WebWhatsapp-Wrapper<filename>sample/log_all.py import os, sys, time, json, datetime from webwhatsapi import WhatsAPIDriver from webwhatsapi.objects.message import Message, MediaMessage # EXAMPLE OF LOGGER BOT # ===================== # Logs everything that passes through the phone, and saves media content too. # Perfect companion for those who hate the ones who use to "erase message". # The bot interacts with a remote phone, called "master". # This phone can send simple commands and receives periodic notifications # in order to know the bot is still running # Global Const # cc = country code, e.g. for UK '44' # ppp = mobile prefix # nnnnnnn = mobile number masters_number = "ccpppnnnnnnn" # Global Vars pinger = -1 now = datetime.datetime.now() start_time = datetime.datetime.now() # Procs and Funcs def print_and_log(text): print(text) f = open("generallog.log", "a+", encoding="utf-8") f.write( "[{timestamp}] : {txt}\n".format(timestamp=datetime.datetime.now(), txt=text) ) f.close() def send_message_to_master(message): phone_safe = masters_number # Phone number with country code phone_whatsapp = <EMAIL>".format(phone_safe) # WhatsApp Chat ID driver.send_message_to_id(phone_whatsapp, message) def process_command(command): print_and_log("Processing command: {cmd}".format(cmd=command)) if command.lower() == "status": send_message_to_master("I am still alive") elif command.lower() == "quit": quit() elif command.lower() == "ping": send_message_to_master("The counter is now {ping}".format(ping=pinger)) elif command.lower() == "uptime": uptime = datetime.datetime.now() - start_time send_message_to_master( "Up since {start}, hence for a total time of {upt} by now".format( start=start_time, upt=uptime ) ) else: send_message_to_master( "I am sorry but I can't understand '{cmd}'".format(cmd=command) ) # Main driver = WhatsAPIDriver() print("Waiting for QR") driver.wait_for_login() print("Bot started") start_time = datetime.datetime.now() try: while True: time.sleep(3) # Checks for new messages every 3 secs. pinger = pinger + 1 if (pinger % 600) == 0: # Notification every 30 min. (600 * 3 sec = 1800 sec) pinger = 0 send_message_to_master( "Resetting counter to {pingcount}. Driver status is '{status}'".format( pingcount=pinger, status=driver.get_status() ) ) print( "Checking for more messages, status. Pinger={pingcount}".format( pingcount=pinger ), driver.get_status(), ) for contact in driver.get_unread(include_me=True, include_notifications=True): for message in contact.messages: print(json.dumps(message.get_js_obj(), indent=4)) # Log full JSON to general log f = open("generallog.log", "a+", encoding="utf-8") f.write( "\n\n==========================================================================\nMessage received at {timestamp}\n".format( timestamp=str(datetime.datetime.now()) ) ) try: f.write(json.dumps(message.get_js_obj(), indent=4)) except: f.write("ERROR!! Unprintable JSON!") send_message_to_master("Unprintable JSON! Please check!") f.write("\n") f.close() print("class", message.__class__.__name__) print("message", message) print("id", message.id) print("type", message.type) print("timestamp", message.timestamp) print("chat_id", message.chat_id) print("sender", message.sender) # Notifications don't seem to have sender.id neither sender.getsafename() try: sender_id = message.sender.id except: sender_id = "NONE" print("sender.id", sender_id) try: sender_safe_name = message.sender.get_safe_name() except: sender_safe_name = "NONE" print("sender.safe_name", sender_safe_name) if message.type == "chat": print("-- Chat") print("safe_content", message.safe_content) try: print("content", message.content) except: print( "content is unsafe! Printing safe_content instead", message.safe_content, ) send_message_to_master( "Unprintable MESSAGE CONTENT! Please check!" ) f = open( "chat_" + message.chat_id["_serialized"] + ".chat.log", "a+", encoding="utf-8", ) f.write( "[ {sender} | {timestamp} ] ".format( sender=message.sender.get_safe_name(), timestamp=message.timestamp, ) ) try: f.write(message.content) except: f.write( "(safecontent) {content}".format( content=message.safe_content ) ) f.write("\n") f.close() f = open( "safechat_" + message.chat_id["_serialized"] + ".chat.log", "a+" ) f.write( "[ {sender} | {timestamp} ] {content}\n".format( sender=message.sender.get_safe_name(), timestamp=message.timestamp, content=message.safe_content, ) ) f.close() if message.sender.id["user"] == masters_number: print_and_log( "Message from master: '{cmd}'.".format(cmd=message.content) ) process_command(message.content) elif ( message.type == "image" or message.type == "video" or message.type == "document" or message.type == "audio" ): print("-- Media") print("filename", message.filename) print("size", message.size) print("mime", message.mime) msg_caption = "" if hasattr(message, "caption"): msg_caption = message.caption print("caption", message.caption) print("client_url", message.client_url) f = open( "chat_" + message.chat_id["_serialized"] + ".chat.log", "a+" ) f.write( "[ {sender} | {timestamp} ] sent media chat_{id}\{filename} with caption '{caption}'\n".format( sender=message.sender.get_safe_name(), timestamp=message.timestamp, id=message.chat_id["_serialized"], filename=message.filename, caption=msg_caption, ) ) f.close() f = open( "safechat_" + message.chat_id["_serialized"] + ".chat.log", "a+" ) f.write( "[ {sender} | {timestamp} ] sent media chat_{id}\{filename} with caption '{caption}'\n".format( sender=message.sender.get_safe_name(), timestamp=message.timestamp, id=message.chat_id["_serialized"], filename=message.filename, caption=msg_caption, ) ) f.close() if not os.path.exists( "chat_{id}".format(id=message.chat_id["_serialized"]) ): os.makedirs( "chat_{id}".format(id=message.chat_id["_serialized"]) ) message.save_media( "chat_{id}".format(id=message.chat_id["_serialized"]) ) else: print("-- Other") except Exception as e: print("EXCEPTION:", e) send_message_to_master("I am dying! HELP!\n") send_message_to_master("Exception was: {exc}\n".format(exc=e)) f = open("generallog.log", "a+", encoding="utf-8") f.write("\n\nEXCEPTION: {exc}\n".format(exc=e)) f.close raise
5,320
2,742
/* * Copyright 2008-2019 by <NAME> * * This file is part of Java Melody. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package net.bull.javamelody.internal.model; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.math.BigInteger; import java.util.ArrayList; import java.util.Arrays; import org.junit.Test; import net.bull.javamelody.internal.model.SamplingProfiler.SampledMethod; /** * Test unitaire de la classe SamplingProfiler. * @author <NAME> */ public class TestSamplingProfiler { private static final int NB_ROWS = 100; /** * Test. */ @Test public void test1() { final SamplingProfiler samplingProfiler = new SamplingProfiler(); assertEmptyHotspots(samplingProfiler); samplingProfiler.update(); } /** * Test. */ @Test public void test2() { final SamplingProfiler samplingProfiler = new SamplingProfiler(new ArrayList<String>(), null); assertEmptyHotspots(samplingProfiler); samplingProfiler.update(); samplingProfiler.clear(); assertEmptyHotspots(samplingProfiler); // Start some threads, and wait until they are done doSomeWorkAndTakeSample(samplingProfiler); // We should now have some samples assertNotEmptyHotspots(samplingProfiler); samplingProfiler.clear(); assertEmptyHotspots(samplingProfiler); } /** * Test that classes from packages are included. */ @Test public void testClassesInInclude() { final SamplingProfiler samplingProfiler = new SamplingProfiler(null, Arrays.asList("net.bull", "java")); assertEmptyHotspots(samplingProfiler); samplingProfiler.update(); samplingProfiler.clear(); assertEmptyHotspots(samplingProfiler); doSomeWorkAndTakeSample(samplingProfiler); assertNotEmptyHotspots(samplingProfiler); samplingProfiler.clear(); assertEmptyHotspots(samplingProfiler); } /** * Test that classes from packages are included, where include pattern does not match any packages. */ @Test public void testClassesInIncludeNoneMatching() { final SamplingProfiler samplingProfiler = new SamplingProfiler(null, Arrays.asList("not.matching.package,also.not.matching")); assertEmptyHotspots(samplingProfiler); samplingProfiler.update(); assertEmptyHotspots(samplingProfiler); doSomeWorkAndTakeSample(samplingProfiler); assertEmptyHotspots(samplingProfiler); samplingProfiler.clear(); assertEmptyHotspots(samplingProfiler); } /** * Test. */ @Test public void testConstructor() { final SamplingProfiler samplingProfiler = new SamplingProfiler( Arrays.asList("java", "javax."), null); assertEmptyHotspots(samplingProfiler); } /** * Test include packages. */ @Test public void testConstructorInclude() { final SamplingProfiler samplingProfiler = new SamplingProfiler(null, Arrays.asList("net.bull")); assertEmptyHotspots(samplingProfiler); } /** * Test. */ @SuppressWarnings("unused") @Test(expected = Exception.class) public void testConstructor2() { new SamplingProfiler(Arrays.asList(" "), null); } /** * Test. */ @Test public void testConstructor3() { final SamplingProfiler samplingProfiler = new SamplingProfiler("java,javax.", null); assertEmptyHotspots(samplingProfiler); } /** * Test. * @throws IOException e * @throws ClassNotFoundException e */ @Test public void testSampledMethod() throws IOException, ClassNotFoundException { final SampledMethod sampledMethod = new SampledMethod("class1", "method1"); final SampledMethod sampledMethod1 = new SampledMethod("class1", "method1"); assertEquals("getClassName", "class1", sampledMethod.getClassName()); assertEquals("getMethodName", "method1", sampledMethod.getMethodName()); assertEquals("getCount", 0, sampledMethod.getCount()); assertEquals("equals", sampledMethod, sampledMethod); assertEquals("equals", sampledMethod, sampledMethod1); assertFalse("equals", sampledMethod.equals(new SampledMethod("class1", "method2"))); assertFalse("equals", sampledMethod.equals(new SampledMethod("class2", "method2"))); assertFalse("equals", sampledMethod.equals(new Object())); final Object object = null; assertFalse("equals", sampledMethod.equals(object)); assertEquals("hashCode", sampledMethod.hashCode(), sampledMethod1.hashCode()); assertEquals("toString", sampledMethod.toString(), sampledMethod1.toString()); assertEquals("compareTo", 0, sampledMethod.compareTo(sampledMethod1)); sampledMethod.incrementCount(); assertEquals("getCount", 1, sampledMethod.getCount()); sampledMethod.setCount(2); assertEquals("getCount", 2, sampledMethod.getCount()); assertEquals("compareTo", -1, sampledMethod.compareTo(sampledMethod1)); sampledMethod1.setCount(3); assertEquals("compareTo", +1, sampledMethod.compareTo(sampledMethod1)); // test readResolve final ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); final ObjectOutputStream objectOutputStream = new ObjectOutputStream(byteArrayOutputStream); objectOutputStream.writeObject(sampledMethod); objectOutputStream.close(); final ObjectInputStream objectInputStream = new ObjectInputStream( new ByteArrayInputStream(byteArrayOutputStream.toByteArray())); final Object sampledMethodNew = objectInputStream.readObject(); assertEquals("readResolve", sampledMethod, sampledMethodNew); assertEquals("readResolve", sampledMethod.hashCode(), sampledMethodNew.hashCode()); } private static void assertEmptyHotspots(SamplingProfiler samplingProfiler) { assertTrue("empty hotspots", samplingProfiler.getHotspots(NB_ROWS).isEmpty()); } private static void assertNotEmptyHotspots(final SamplingProfiler samplingProfiler) { assertFalse("not empty hotspots", samplingProfiler.getHotspots(NB_ROWS).isEmpty()); } private static void doSomeWorkAndTakeSample(SamplingProfiler samplingProfiler) { final Thread thread = new Thread(new DummyTask()); thread.start(); samplingProfiler.update(); } static class DummyTask implements Runnable { @Override public void run() { new Pi().calcPiDigits(1000); } } /** * Compute PI just to have something to do. * from http://rosettacode.org/wiki/Pi#Java */ static class Pi { private static final BigInteger TWO = BigInteger.valueOf(2); private static final BigInteger THREE = BigInteger.valueOf(3); private static final BigInteger FOUR = BigInteger.valueOf(4); private static final BigInteger SEVEN = BigInteger.valueOf(7); private BigInteger q = BigInteger.ONE; private BigInteger r = BigInteger.ZERO; private BigInteger t = BigInteger.ONE; private BigInteger k = BigInteger.ONE; private BigInteger n = BigInteger.valueOf(3); private BigInteger l = BigInteger.valueOf(3); /** * Start. * @param limit Number of digits */ public void calcPiDigits(int limit) { BigInteger nn; BigInteger nr; boolean first = true; int count = 0; while (true) { if (FOUR.multiply(q).add(r).subtract(t).compareTo(n.multiply(t)) == -1) { System.out.print(n); // NOPMD count++; if (count >= limit) { return; } if (first) { System.out.print("."); // NOPMD first = false; } nr = BigInteger.TEN.multiply(r.subtract(n.multiply(t))); n = BigInteger.TEN.multiply(THREE.multiply(q).add(r)).divide(t) .subtract(BigInteger.TEN.multiply(n)); q = q.multiply(BigInteger.TEN); r = nr; System.out.flush(); } else { nr = TWO.multiply(q).add(r).multiply(l); nn = q.multiply(SEVEN.multiply(k)).add(TWO).add(r.multiply(l)) .divide(t.multiply(l)); q = q.multiply(k); t = t.multiply(l); l = l.add(TWO); k = k.add(BigInteger.ONE); n = nn; r = nr; } } } } }
3,214
380
<filename>Server/src/main/java/org/gluu/oxauth/model/ldap/TokenType.java /* * oxAuth is available under the MIT License (2008). See http://opensource.org/licenses/MIT for full text. * * Copyright (c) 2014, Gluu */ package org.gluu.oxauth.model.ldap; import org.apache.commons.lang.StringUtils; /** * @author <NAME> * @version 0.9, 08/01/2013 */ public enum TokenType { ID_TOKEN("id_token"), ACCESS_TOKEN("access_token"), LONG_LIVED_ACCESS_TOKEN("access_token"), REFRESH_TOKEN("refresh_token"), AUTHORIZATION_CODE("authorization_code"); private final String value; TokenType(String name) { value = name; } public String getValue() { return value; } public static TokenType fromValue(String value) { if (StringUtils.isNotBlank(value)) { for (TokenType t : values()) { if (t.getValue().endsWith(value)) { return t; } } } return null; } }
449
2,151
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/browser/media/midi_host.h" #include <stddef.h> #include <stdint.h> #include "base/macros.h" #include "base/memory/weak_ptr.h" #include "base/message_loop/message_loop.h" #include "base/run_loop.h" #include "base/strings/stringprintf.h" #include "content/common/media/midi_messages.h" #include "content/public/test/test_browser_thread.h" #include "media/midi/midi_manager.h" #include "media/midi/midi_service.h" #include "testing/gtest/include/gtest/gtest.h" namespace content { namespace { using midi::mojom::PortState; const uint8_t kNoteOn[] = {0x90, 0x3c, 0x7f}; const int kRenderProcessId = 0; enum MidiEventType { DISPATCH_SEND_MIDI_DATA, }; struct MidiEvent { MidiEvent(MidiEventType in_type, uint32_t in_port_index, const std::vector<uint8_t>& in_data, base::TimeTicks in_timestamp) : type(in_type), port_index(in_port_index), data(in_data), timestamp(in_timestamp) {} MidiEventType type; uint32_t port_index; std::vector<uint8_t> data; base::TimeTicks timestamp; }; class FakeMidiManager : public midi::MidiManager { public: explicit FakeMidiManager(midi::MidiService* service) : MidiManager(service), weak_factory_(this) {} ~FakeMidiManager() override = default; base::WeakPtr<FakeMidiManager> GetWeakPtr() { return weak_factory_.GetWeakPtr(); } void DispatchSendMidiData(midi::MidiManagerClient* client, uint32_t port_index, const std::vector<uint8_t>& data, base::TimeTicks timestamp) override { events_.push_back(MidiEvent(DISPATCH_SEND_MIDI_DATA, port_index, data, timestamp)); } std::vector<MidiEvent> events_; base::WeakPtrFactory<FakeMidiManager> weak_factory_; DISALLOW_COPY_AND_ASSIGN(FakeMidiManager); }; class FakeMidiManagerFactory : public midi::MidiService::ManagerFactory { public: FakeMidiManagerFactory() : weak_factory_(this) {} ~FakeMidiManagerFactory() override = default; std::unique_ptr<midi::MidiManager> Create( midi::MidiService* service) override { std::unique_ptr<FakeMidiManager> manager = std::make_unique<FakeMidiManager>(service); manager_ = manager->GetWeakPtr(); return manager; } base::WeakPtr<FakeMidiManagerFactory> GetWeakPtr() { return weak_factory_.GetWeakPtr(); } base::WeakPtr<FakeMidiManager> GetCreatedManager() { return manager_; } private: base::WeakPtr<FakeMidiManager> manager_; base::WeakPtrFactory<FakeMidiManagerFactory> weak_factory_; DISALLOW_COPY_AND_ASSIGN(FakeMidiManagerFactory); }; class MidiHostForTesting : public MidiHost { public: MidiHostForTesting(int renderer_process_id, midi::MidiService* midi_service) : MidiHost(renderer_process_id, midi_service) {} private: ~MidiHostForTesting() override {} // BrowserMessageFilter implementation. // Override ShutdownForBadMessage() to do nothing since the original // implementation to kill a malicious renderer process causes a check failure // in unit tests. void ShutdownForBadMessage() override {} DISALLOW_COPY_AND_ASSIGN(MidiHostForTesting); }; class MidiHostTest : public testing::Test { public: MidiHostTest() : io_browser_thread_(BrowserThread::IO, &message_loop_), data_(kNoteOn, kNoteOn + arraysize(kNoteOn)), port_id_(0) { std::unique_ptr<FakeMidiManagerFactory> factory = std::make_unique<FakeMidiManagerFactory>(); factory_ = factory->GetWeakPtr(); service_ = std::make_unique<midi::MidiService>(std::move(factory)); host_ = new MidiHostForTesting(kRenderProcessId, service_.get()); host_->OnStartSession(); } ~MidiHostTest() override { host_->OnEndSession(); service_->Shutdown(); RunLoopUntilIdle(); } protected: void AddOutputPort() { const std::string id = base::StringPrintf("i-can-%d", port_id_++); const std::string manufacturer("yukatan"); const std::string name("doki-doki-pi-pine"); const std::string version("3.14159265359"); PortState state = PortState::CONNECTED; midi::MidiPortInfo info(id, manufacturer, name, version, state); host_->AddOutputPort(info); } void OnSendData(uint32_t port) { std::unique_ptr<IPC::Message> message( new MidiHostMsg_SendData(port, data_, base::TimeTicks())); host_->OnMessageReceived(*message.get()); } size_t GetEventSize() const { if (!factory_->GetCreatedManager()) return 0U; return factory_->GetCreatedManager()->events_.size(); } void CheckSendEventAt(size_t at, uint32_t port) { base::WeakPtr<FakeMidiManager> manager = factory_->GetCreatedManager(); ASSERT_TRUE(manager); EXPECT_EQ(DISPATCH_SEND_MIDI_DATA, manager->events_[at].type); EXPECT_EQ(port, manager->events_[at].port_index); EXPECT_EQ(data_, manager->events_[at].data); EXPECT_EQ(base::TimeTicks(), manager->events_[at].timestamp); } void RunLoopUntilIdle() { base::RunLoop run_loop; run_loop.RunUntilIdle(); } private: base::MessageLoop message_loop_; TestBrowserThread io_browser_thread_; std::vector<uint8_t> data_; int32_t port_id_; base::WeakPtr<FakeMidiManagerFactory> factory_; std::unique_ptr<midi::MidiService> service_; scoped_refptr<MidiHostForTesting> host_; DISALLOW_COPY_AND_ASSIGN(MidiHostTest); }; } // namespace // Test if sending data to out of range port is ignored. TEST_F(MidiHostTest, OutputPortCheck) { // Only one output port is available. AddOutputPort(); // Sending data to port 0 should be delivered. uint32_t port0 = 0; OnSendData(port0); RunLoopUntilIdle(); EXPECT_EQ(1U, GetEventSize()); CheckSendEventAt(0, port0); // Sending data to port 1 should not be delivered. uint32_t port1 = 1; OnSendData(port1); RunLoopUntilIdle(); EXPECT_EQ(1U, GetEventSize()); // Two output ports are available from now on. AddOutputPort(); // Sending data to port 0 and 1 should be delivered now. OnSendData(port0); OnSendData(port1); RunLoopUntilIdle(); EXPECT_EQ(3U, GetEventSize()); CheckSendEventAt(1, port0); CheckSendEventAt(2, port1); } } // namespace conent
2,498
903
/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (<EMAIL>) ** ** This file is part of the QtGui module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU General ** Public License version 3.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of this ** file. Please review the following information to ensure the GNU General ** Public License version 3.0 requirements will be met: ** http://www.gnu.org/copyleft/gpl.html. ** ** Other Usage ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QGLYPHRUN_H #define QGLYPHRUN_H #include <QtCore/qsharedpointer.h> #include <QtCore/qvector.h> #include <QtCore/qpoint.h> #include <QtGui/qrawfont.h> #if !defined(QT_NO_RAWFONT) QT_BEGIN_HEADER QT_BEGIN_NAMESPACE QT_MODULE(Gui) class QGlyphRunPrivate; class Q_GUI_EXPORT QGlyphRun { public: QGlyphRun(); QGlyphRun(const QGlyphRun &other); ~QGlyphRun(); QRawFont rawFont() const; void setRawFont(const QRawFont &rawFont); void setRawData(const quint32 *glyphIndexArray, const QPointF *glyphPositionArray, int size); QVector<quint32> glyphIndexes() const; void setGlyphIndexes(const QVector<quint32> &glyphIndexes); QVector<QPointF> positions() const; void setPositions(const QVector<QPointF> &positions); void clear(); QGlyphRun &operator=(const QGlyphRun &other); bool operator==(const QGlyphRun &other) const; inline bool operator!=(const QGlyphRun &other) const { return !operator==(other); } void setOverline(bool overline); bool overline() const; void setUnderline(bool underline); bool underline() const; void setStrikeOut(bool strikeOut); bool strikeOut() const; private: friend class QGlyphRunPrivate; friend class QTextLine; QGlyphRun operator+(const QGlyphRun &other) const; QGlyphRun &operator+=(const QGlyphRun &other); void detach(); QExplicitlySharedDataPointer<QGlyphRunPrivate> d; }; QT_END_NAMESPACE QT_END_HEADER #endif // QT_NO_RAWFONT #endif // QGLYPHS_H
1,213
1,059
#pragma once #include <cudf/types.hpp> #include <cudf/scalar/scalar.hpp> namespace strings { std::unique_ptr<cudf::scalar> str_to_timestamp_scalar( std::string const& str, cudf::data_type timestamp_type, std::string const& format ); } // namespace strings
211
2,077
<reponame>njzhangyifei/xcbuild<gh_stars>1000+ /** Copyright (c) 2015-present, Facebook, 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. */ #ifndef __plist_Format_ABPRecordType_h #define __plist_Format_ABPRecordType_h #include <cstdio> #include <cstdint> typedef enum _ABPRecordType { kABPRecordTypeInvalid = -1, kABPRecordTypeNull = 0, kABPRecordTypeBoolTrue, kABPRecordTypeBoolFalse, kABPRecordTypeFill, kABPRecordTypeDate, kABPRecordTypeInteger, kABPRecordTypeReal, kABPRecordTypeData, kABPRecordTypeStringASCII, kABPRecordTypeStringUnicode, kABPRecordTypeUid, kABPRecordTypeArray, kABPRecordTypeDictionary } ABPRecordType; static inline ABPRecordType __ABPByteToRecordType(uint8_t byte) { if ((byte & 0xf0) == 0 || byte == 0x33) { switch (byte) { case 0x00: /* 0000 0000: null */ return kABPRecordTypeNull; case 0x08: /* 0000 1000: false */ return kABPRecordTypeBoolFalse; case 0x09: /* 0000 1001: true */ return kABPRecordTypeBoolTrue; case 0x0f: /* 0000 1111: fill byte */ return kABPRecordTypeFill; case 0x33: /* 0011 0011: date (double be) */ return kABPRecordTypeDate; default: return kABPRecordTypeInvalid; } } else { switch (byte >> 4) { case 0x1: /* 0001 nnnn: int */ return kABPRecordTypeInteger; case 0x2: /* 0010 nnnn: real */ return kABPRecordTypeReal; case 0x4: /* 0100 nnnn: data */ return kABPRecordTypeData; case 0x5: /* 0101 nnnn: ascii string */ return kABPRecordTypeStringASCII; case 0x6: /* 0110 nnnn: unicode string */ return kABPRecordTypeStringUnicode; case 0x8: /* 1000 nnnn: uid */ return kABPRecordTypeUid; case 0xa: /* 1010 nnnn: array */ return kABPRecordTypeArray; case 0xd: /* 1101 nnnn: dictionary */ return kABPRecordTypeDictionary; default: return kABPRecordTypeInvalid; } } } static inline int __ABPRecordTypeToByte(ABPRecordType type, size_t size) { switch (type) { case kABPRecordTypeNull: return 0x00; /* 0000 0000: null */ case kABPRecordTypeBoolFalse: return 0x08; /* 0000 1000: false */ case kABPRecordTypeBoolTrue: return 0x09; /* 0000 1001: true */ case kABPRecordTypeFill: return 0x0f; /* 0000 1111: fill byte */ case kABPRecordTypeDate: return 0x33; /* 0011 0011: date (double be) */ case kABPRecordTypeInteger: return 0x10 | (size & 0xf); /* 0001 nnnn: int */ case kABPRecordTypeReal: return 0x20 | (size & 0xf); /* 0010 nnnn: real */ case kABPRecordTypeData: if (size > 15) size = 0xf; return 0x40 | (size & 0xf); /* 0100 nnnn: data */ case kABPRecordTypeStringASCII: if (size > 15) size = 0xf; return 0x50 | (size & 0xf); /* 0101 nnnn: ascii string */ case kABPRecordTypeStringUnicode: if (size > 15) size = 0xf; return 0x60 | (size & 0xf); /* 0110 nnnn: unicode string */ case kABPRecordTypeUid: if (size > 16) size = 0xf; else size--; return 0x80 | (size & 0xf); /* 1000 nnnn: uid */ case kABPRecordTypeArray: if (size > 15) size = 0xf; return 0xa0 | (size & 0xf); /* 1010 nnnn: array */ case kABPRecordTypeDictionary: if (size > 15) size = 0xf; return 0xd0 | (size & 0xf); /* 1101 nnnn: dictionary */ default: return EOF; } } #endif /* !__plist_Format_ABPRecordType_h */
2,040
2,112
/** * Autogenerated by Thrift * * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING * @generated */ package test.fixtures.adapter; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.util.HashMap; import java.util.Set; import java.util.HashSet; import java.util.Collections; import java.util.BitSet; import java.util.Arrays; import com.facebook.thrift.*; import com.facebook.thrift.annotations.*; import com.facebook.thrift.async.*; import com.facebook.thrift.meta_data.*; import com.facebook.thrift.server.*; import com.facebook.thrift.transport.*; import com.facebook.thrift.protocol.*; @SuppressWarnings({ "unused", "serial", "unchecked" }) public class Baz extends TUnion<Baz> implements Comparable<Baz> { private static final TStruct STRUCT_DESC = new TStruct("Baz"); private static final TField INT_FIELD_FIELD_DESC = new TField("intField", TType.I32, (short)1); private static final TField SET_FIELD_FIELD_DESC = new TField("setField", TType.SET, (short)4); private static final TField MAP_FIELD_FIELD_DESC = new TField("mapField", TType.MAP, (short)6); private static final TField BINARY_FIELD_FIELD_DESC = new TField("binaryField", TType.STRING, (short)8); public static final int INTFIELD = 1; public static final int SETFIELD = 4; public static final int MAPFIELD = 6; public static final int BINARYFIELD = 8; public static final Map<Integer, FieldMetaData> metaDataMap; static { Map<Integer, FieldMetaData> tmpMetaDataMap = new HashMap<Integer, FieldMetaData>(); tmpMetaDataMap.put(INTFIELD, new FieldMetaData("intField", TFieldRequirementType.DEFAULT, new FieldValueMetaData(TType.I32))); tmpMetaDataMap.put(SETFIELD, new FieldMetaData("setField", TFieldRequirementType.DEFAULT, new SetMetaData(TType.SET, new FieldValueMetaData(TType.STRING)))); tmpMetaDataMap.put(MAPFIELD, new FieldMetaData("mapField", TFieldRequirementType.DEFAULT, new MapMetaData(TType.MAP, new FieldValueMetaData(TType.STRING), new ListMetaData(TType.LIST, new FieldValueMetaData(TType.STRING))))); tmpMetaDataMap.put(BINARYFIELD, new FieldMetaData("binaryField", TFieldRequirementType.DEFAULT, new FieldValueMetaData(TType.STRING))); metaDataMap = Collections.unmodifiableMap(tmpMetaDataMap); } public Baz() { super(); } public Baz(int setField, Object __value) { super(setField, __value); } public Baz(Baz other) { super(other); } public Baz deepCopy() { return new Baz(this); } public static Baz intField(int __value) { Baz x = new Baz(); x.setIntField(__value); return x; } public static Baz setField(Set<String> __value) { Baz x = new Baz(); x.setSetField(__value); return x; } public static Baz mapField(Map<String,List<String>> __value) { Baz x = new Baz(); x.setMapField(__value); return x; } public static Baz binaryField(byte[] __value) { Baz x = new Baz(); x.setBinaryField(__value); return x; } @Override protected void checkType(short setField, Object __value) throws ClassCastException { switch (setField) { case INTFIELD: if (__value instanceof Integer) { break; } throw new ClassCastException("Was expecting value of type Integer for field 'intField', but got " + __value.getClass().getSimpleName()); case SETFIELD: if (__value instanceof Set) { break; } throw new ClassCastException("Was expecting value of type Set<String> for field 'setField', but got " + __value.getClass().getSimpleName()); case MAPFIELD: if (__value instanceof Map) { break; } throw new ClassCastException("Was expecting value of type Map<String,List<String>> for field 'mapField', but got " + __value.getClass().getSimpleName()); case BINARYFIELD: if (__value instanceof byte[]) { break; } throw new ClassCastException("Was expecting value of type byte[] for field 'binaryField', but got " + __value.getClass().getSimpleName()); default: throw new IllegalArgumentException("Unknown field id " + setField); } } @Override public void read(TProtocol iprot) throws TException { setField_ = 0; value_ = null; iprot.readStructBegin(metaDataMap); TField __field = iprot.readFieldBegin(); if (__field.type != TType.STOP) { value_ = readValue(iprot, __field); if (value_ != null) { switch (__field.id) { case INTFIELD: if (__field.type == INT_FIELD_FIELD_DESC.type) { setField_ = __field.id; } break; case SETFIELD: if (__field.type == SET_FIELD_FIELD_DESC.type) { setField_ = __field.id; } break; case MAPFIELD: if (__field.type == MAP_FIELD_FIELD_DESC.type) { setField_ = __field.id; } break; case BINARYFIELD: if (__field.type == BINARY_FIELD_FIELD_DESC.type) { setField_ = __field.id; } break; } } iprot.readFieldEnd(); TField __stopField = iprot.readFieldBegin(); if (__stopField.type != TType.STOP) { throw new TProtocolException(TProtocolException.INVALID_DATA, "Union 'Baz' is missing a STOP byte"); } } iprot.readStructEnd(); } @Override protected Object readValue(TProtocol iprot, TField __field) throws TException { switch (__field.id) { case INTFIELD: if (__field.type == INT_FIELD_FIELD_DESC.type) { Integer intField; intField = iprot.readI32(); return intField; } break; case SETFIELD: if (__field.type == SET_FIELD_FIELD_DESC.type) { Set<String> setField; { TSet _set26 = iprot.readSetBegin(); setField = new HashSet<String>(Math.max(0, 2*_set26.size)); for (int _i27 = 0; (_set26.size < 0) ? iprot.peekSet() : (_i27 < _set26.size); ++_i27) { String _elem28; _elem28 = iprot.readString(); setField.add(_elem28); } iprot.readSetEnd(); } return setField; } break; case MAPFIELD: if (__field.type == MAP_FIELD_FIELD_DESC.type) { Map<String,List<String>> mapField; { TMap _map29 = iprot.readMapBegin(); mapField = new HashMap<String,List<String>>(Math.max(0, 2*_map29.size)); for (int _i30 = 0; (_map29.size < 0) ? iprot.peekMap() : (_i30 < _map29.size); ++_i30) { String _key31; List<String> _val32; _key31 = iprot.readString(); { TList _list33 = iprot.readListBegin(); _val32 = new ArrayList<String>(Math.max(0, _list33.size)); for (int _i34 = 0; (_list33.size < 0) ? iprot.peekList() : (_i34 < _list33.size); ++_i34) { String _elem35; _elem35 = iprot.readString(); _val32.add(_elem35); } iprot.readListEnd(); } mapField.put(_key31, _val32); } iprot.readMapEnd(); } return mapField; } break; case BINARYFIELD: if (__field.type == BINARY_FIELD_FIELD_DESC.type) { byte[] binaryField; binaryField = iprot.readBinary(); return binaryField; } break; } TProtocolUtil.skip(iprot, __field.type); return null; } @Override protected void writeValue(TProtocol oprot, short setField, Object __value) throws TException { switch (setField) { case INTFIELD: Integer intField = (Integer)getFieldValue(); oprot.writeI32(intField); return; case SETFIELD: Set<String> setField = (Set<String>)getFieldValue(); { oprot.writeSetBegin(new TSet(TType.STRING, setField.size())); for (String _iter36 : setField) { oprot.writeString(_iter36); } oprot.writeSetEnd(); } return; case MAPFIELD: Map<String,List<String>> mapField = (Map<String,List<String>>)getFieldValue(); { oprot.writeMapBegin(new TMap(TType.STRING, TType.LIST, mapField.size())); for (Map.Entry<String, List<String>> _iter37 : mapField.entrySet()) { oprot.writeString(_iter37.getKey()); { oprot.writeListBegin(new TList(TType.STRING, _iter37.getValue().size())); for (String _iter38 : _iter37.getValue()) { oprot.writeString(_iter38); } oprot.writeListEnd(); } } oprot.writeMapEnd(); } return; case BINARYFIELD: byte[] binaryField = (byte[])getFieldValue(); oprot.writeBinary(binaryField); return; default: throw new IllegalStateException("Cannot write union with unknown field " + setField); } } @Override protected TField getFieldDesc(int setField) { switch (setField) { case INTFIELD: return INT_FIELD_FIELD_DESC; case SETFIELD: return SET_FIELD_FIELD_DESC; case MAPFIELD: return MAP_FIELD_FIELD_DESC; case BINARYFIELD: return BINARY_FIELD_FIELD_DESC; default: throw new IllegalArgumentException("Unknown field id " + setField); } } @Override protected TStruct getStructDesc() { return STRUCT_DESC; } @Override protected Map<Integer, FieldMetaData> getMetaDataMap() { return metaDataMap; } private Object __getValue(int expectedFieldId) { if (getSetField() == expectedFieldId) { return getFieldValue(); } else { throw new RuntimeException("Cannot get field '" + getFieldDesc(expectedFieldId).name + "' because union is currently set to " + getFieldDesc(getSetField()).name); } } private void __setValue(int fieldId, Object __value) { if (__value == null) throw new NullPointerException(); setField_ = fieldId; value_ = __value; } public int getIntField() { return (Integer) __getValue(INTFIELD); } public void setIntField(int __value) { setField_ = INTFIELD; value_ = __value; } public Set<String> getSetField() { return (Set<String>) __getValue(SETFIELD); } public void setSetField(Set<String> __value) { __setValue(SETFIELD, __value); } public Map<String,List<String>> getMapField() { return (Map<String,List<String>>) __getValue(MAPFIELD); } public void setMapField(Map<String,List<String>> __value) { __setValue(MAPFIELD, __value); } public byte[] getBinaryField() { return (byte[]) __getValue(BINARYFIELD); } public void setBinaryField(byte[] __value) { __setValue(BINARYFIELD, __value); } public boolean equals(Object other) { if (other instanceof Baz) { return equals((Baz)other); } else { return false; } } public boolean equals(Baz other) { return equalsSlowImpl(other); } @Override public int compareTo(Baz other) { return compareToImpl(other); } @Override public int hashCode() { return Arrays.deepHashCode(new Object[] {getSetField(), getFieldValue()}); } }
5,211
2,151
<reponame>zipated/src // Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "gpu/ipc/service/gpu_init.h" #include "base/command_line.h" #include "base/metrics/histogram_macros.h" #include "base/strings/string_number_conversions.h" #include "base/threading/thread_restrictions.h" #include "base/trace_event/trace_event.h" #include "build/build_config.h" #include "gpu/command_buffer/service/gpu_switches.h" #include "gpu/command_buffer/service/service_utils.h" #include "gpu/config/gpu_driver_bug_list.h" #include "gpu/config/gpu_info_collector.h" #include "gpu/config/gpu_switches.h" #include "gpu/config/gpu_switching.h" #include "gpu/config/gpu_util.h" #include "gpu/ipc/service/gpu_watchdog_thread.h" #include "ui/base/ui_base_features.h" #include "ui/gfx/switches.h" #include "ui/gl/gl_features.h" #include "ui/gl/gl_implementation.h" #include "ui/gl/gl_switches.h" #include "ui/gl/gl_utils.h" #include "ui/gl/init/gl_factory.h" #if defined(USE_OZONE) #include "ui/ozone/public/ozone_platform.h" #include "ui/ozone/public/ozone_switches.h" #endif #if defined(OS_WIN) #include "gpu/ipc/service/direct_composition_surface_win.h" #include "ui/gl/gl_surface_egl.h" #endif namespace gpu { namespace { #if !defined(OS_MACOSX) bool CollectGraphicsInfo(GPUInfo* gpu_info) { DCHECK(gpu_info); TRACE_EVENT0("gpu,startup", "Collect Graphics Info"); base::TimeTicks before_collect_context_graphics_info = base::TimeTicks::Now(); bool success = CollectContextGraphicsInfo(gpu_info); if (!success) LOG(ERROR) << "gpu::CollectGraphicsInfo failed."; #if defined(OS_WIN) if (gl::GetGLImplementation() == gl::kGLImplementationEGLGLES2 && gl::GLSurfaceEGL::IsDirectCompositionSupported()) { gpu_info->direct_composition = true; } if (gl::GetGLImplementation() == gl::kGLImplementationEGLGLES2 && DirectCompositionSurfaceWin::AreOverlaysSupported()) { gpu_info->supports_overlays = true; } #endif // defined(OS_WIN) if (success) { base::TimeDelta collect_context_time = base::TimeTicks::Now() - before_collect_context_graphics_info; UMA_HISTOGRAM_TIMES("GPU.CollectContextGraphicsInfo", collect_context_time); } return success; } #endif // defined(OS_MACOSX) #if defined(OS_LINUX) && !defined(OS_CHROMEOS) && !defined(IS_CHROMECAST) bool CanAccessNvidiaDeviceFile() { bool res = true; base::AssertBlockingAllowed(); if (access("/dev/nvidiactl", R_OK) != 0) { DVLOG(1) << "NVIDIA device file /dev/nvidiactl access denied"; res = false; } return res; } #endif // OS_LINUX && !OS_CHROMEOS && !IS_CHROMECAST } // namespace GpuInit::GpuInit() = default; GpuInit::~GpuInit() { gpu::StopForceDiscreteGPU(); } bool GpuInit::InitializeAndStartSandbox(base::CommandLine* command_line, const GpuPreferences& gpu_preferences) { gpu_preferences_ = gpu_preferences; // Blacklist decisions based on basic GPUInfo may not be final. It might // need more context based GPUInfo. In such situations, switching to // SwiftShader needs to wait until creating a context. bool needs_more_info = false; #if !defined(OS_ANDROID) && !defined(IS_CHROMECAST) if (!PopGPUInfoCache(&gpu_info_)) { CollectBasicGraphicsInfo(command_line, &gpu_info_); } // Set keys for crash logging based on preliminary gpu info, in case we // crash during feature collection. gpu::SetKeysForCrashLogging(gpu_info_); #if defined(OS_LINUX) && !defined(OS_CHROMEOS) if (gpu_info_.gpu.vendor_id == 0x10de && // NVIDIA gpu_info_.gpu.driver_vendor == "NVIDIA" && !CanAccessNvidiaDeviceFile()) return false; #endif if (!PopGpuFeatureInfoCache(&gpu_feature_info_)) { // Compute blacklist and driver bug workaround decisions based on basic GPU // info. gpu_feature_info_ = gpu::ComputeGpuFeatureInfo( gpu_info_, gpu_preferences.ignore_gpu_blacklist, gpu_preferences.disable_gpu_driver_bug_workarounds, gpu_preferences.log_gpu_control_list_decisions, command_line, &needs_more_info); } #endif // !OS_ANDROID && !IS_CHROMECAST gpu_info_.in_process_gpu = false; bool use_swiftshader = false; // GL bindings may have already been initialized, specifically on MacOSX. bool gl_initialized = gl::GetGLImplementation() != gl::kGLImplementationNone; if (!gl_initialized) { // If GL has already been initialized, then it's too late to select GPU. if (gpu::SwitchableGPUsSupported(gpu_info_, *command_line)) { gpu::InitializeSwitchableGPUs( gpu_feature_info_.enabled_gpu_driver_bug_workarounds); } } else if (gl::GetGLImplementation() == gl::kGLImplementationSwiftShaderGL && command_line->GetSwitchValueASCII(switches::kUseGL) != gl::kGLImplementationSwiftShaderName) { use_swiftshader = true; } bool enable_watchdog = !gpu_preferences.disable_gpu_watchdog && !command_line->HasSwitch(switches::kHeadless); // Disable the watchdog in debug builds because they tend to only be run by // developers who will not appreciate the watchdog killing the GPU process. #ifndef NDEBUG enable_watchdog = false; #endif bool delayed_watchdog_enable = false; #if defined(OS_CHROMEOS) // Don't start watchdog immediately, to allow developers to switch to VT2 on // startup. delayed_watchdog_enable = true; #endif // Start the GPU watchdog only after anything that is expected to be time // consuming has completed, otherwise the process is liable to be aborted. if (enable_watchdog && !delayed_watchdog_enable) { watchdog_thread_ = gpu::GpuWatchdogThread::Create(); #if defined(OS_WIN) // This is a workaround for an occasional deadlock between watchdog and // current thread. Watchdog hangs at thread initialization in // __acrt_thread_attach() and current thread in std::setlocale(...) // (during InitializeGLOneOff()). Source of the deadlock looks like an old // UCRT bug that was supposed to be fixed in 10.0.10586 release of UCRT, // but we might have come accross a not-yet-covered scenario. // References: // https://bugs.python.org/issue26624 // http://stackoverflow.com/questions/35572792/setlocale-stuck-on-windows auto watchdog_started = watchdog_thread_->WaitUntilThreadStarted(); DCHECK(watchdog_started); #endif // OS_WIN } sandbox_helper_->PreSandboxStartup(); bool attempted_startsandbox = false; #if defined(OS_LINUX) // On Chrome OS ARM Mali, GPU driver userspace creates threads when // initializing a GL context, so start the sandbox early. // TODO(zmo): Need to collect OS version before this. if (gpu_preferences.gpu_sandbox_start_early) { gpu_info_.sandboxed = sandbox_helper_->EnsureSandboxInitialized( watchdog_thread_.get(), &gpu_info_, gpu_preferences_); attempted_startsandbox = true; } #endif // defined(OS_LINUX) base::TimeTicks before_initialize_one_off = base::TimeTicks::Now(); #if defined(USE_OZONE) // Initialize Ozone GPU after the watchdog in case it hangs. The sandbox // may also have started at this point. ui::OzonePlatform::InitParams params; params.single_process = false; params.using_mojo = command_line->HasSwitch(switches::kEnableDrmMojo); ui::OzonePlatform::InitializeForGPU(params); #endif if (!use_swiftshader) { use_swiftshader = ShouldEnableSwiftShader( command_line, gpu_feature_info_, gpu_preferences.disable_software_rasterizer, needs_more_info); } if (gl_initialized && use_swiftshader && gl::GetGLImplementation() != gl::kGLImplementationSwiftShaderGL) { gl::init::ShutdownGL(true); gl_initialized = false; } if (!gl_initialized) gl_initialized = gl::init::InitializeGLNoExtensionsOneOff(); if (!gl_initialized) { VLOG(1) << "gl::init::InitializeGLNoExtensionsOneOff failed"; return false; } bool gl_disabled = gl::GetGLImplementation() == gl::kGLImplementationDisabled; // We need to collect GL strings (VENDOR, RENDERER) for blacklisting purposes. // However, on Mac we don't actually use them. As documented in // crbug.com/222934, due to some driver issues, glGetString could take // multiple seconds to finish, which in turn cause the GPU process to crash. // By skipping the following code on Mac, we don't really lose anything, // because the basic GPU information is passed down from the host process. #if !defined(OS_MACOSX) if (!gl_disabled && !use_swiftshader) { if (!CollectGraphicsInfo(&gpu_info_)) return false; gpu::SetKeysForCrashLogging(gpu_info_); gpu_feature_info_ = gpu::ComputeGpuFeatureInfo( gpu_info_, gpu_preferences.ignore_gpu_blacklist, gpu_preferences.disable_gpu_driver_bug_workarounds, gpu_preferences.log_gpu_control_list_decisions, command_line, nullptr); use_swiftshader = ShouldEnableSwiftShader( command_line, gpu_feature_info_, gpu_preferences.disable_software_rasterizer, false); if (use_swiftshader) { gl::init::ShutdownGL(true); if (!gl::init::InitializeGLNoExtensionsOneOff()) { VLOG(1) << "gl::init::InitializeGLNoExtensionsOneOff with SwiftShader " << "failed"; return false; } } } #endif if (use_swiftshader) { AdjustInfoToSwiftShader(); } else if (gl_disabled) { AdjustInfoToNoGpu(); } if (kGpuFeatureStatusEnabled != gpu_feature_info_ .status_values[GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE]) { gpu_preferences_.disable_accelerated_video_decode = true; } if (!gl_disabled) { if (!gpu_feature_info_.disabled_extensions.empty()) { gl::init::SetDisabledExtensionsPlatform( gpu_feature_info_.disabled_extensions); } if (!gl::init::InitializeExtensionSettingsOneOffPlatform()) { VLOG(1) << "gl::init::InitializeExtensionSettingsOneOffPlatform failed"; return false; } } base::TimeDelta initialize_one_off_time = base::TimeTicks::Now() - before_initialize_one_off; UMA_HISTOGRAM_MEDIUM_TIMES("GPU.InitializeOneOffMediumTime", initialize_one_off_time); // Software GL is expected to run slowly, so disable the watchdog // in that case. // In SwiftShader case, the implementation is actually EGLGLES2. if (!use_swiftshader && command_line->HasSwitch(switches::kUseGL)) { std::string use_gl = command_line->GetSwitchValueASCII(switches::kUseGL); if (use_gl == gl::kGLImplementationSwiftShaderName || use_gl == gl::kGLImplementationSwiftShaderForWebGLName) { use_swiftshader = true; } } if (use_swiftshader || gl::GetGLImplementation() == gl::GetSoftwareGLImplementation()) { gpu_info_.software_rendering = true; if (watchdog_thread_) watchdog_thread_->Stop(); watchdog_thread_ = nullptr; } else if (enable_watchdog && delayed_watchdog_enable) { watchdog_thread_ = gpu::GpuWatchdogThread::Create(); } if (!gpu_info_.sandboxed && !attempted_startsandbox) { gpu_info_.sandboxed = sandbox_helper_->EnsureSandboxInitialized( watchdog_thread_.get(), &gpu_info_, gpu_preferences_); } UMA_HISTOGRAM_BOOLEAN("GPU.Sandbox.InitializedSuccessfully", gpu_info_.sandboxed); gpu_info_.passthrough_cmd_decoder = gles2::UsePassthroughCommandDecoder(command_line) && gles2::PassthroughCommandDecoderSupported(); init_successful_ = true; #if defined(USE_OZONE) ui::OzonePlatform::GetInstance()->AfterSandboxEntry(); #endif return true; } #if defined(OS_ANDROID) void GpuInit::InitializeInProcess(base::CommandLine* command_line, const GpuPreferences& gpu_preferences) { gpu_preferences_ = gpu_preferences; init_successful_ = true; DCHECK(!ShouldEnableSwiftShader(command_line, gpu_feature_info_, gpu_preferences.disable_software_rasterizer, false)); InitializeGLThreadSafe(command_line, gpu_preferences.ignore_gpu_blacklist, gpu_preferences.disable_gpu_driver_bug_workarounds, gpu_preferences.log_gpu_control_list_decisions, &gpu_info_, &gpu_feature_info_); } #else void GpuInit::InitializeInProcess(base::CommandLine* command_line, const GpuPreferences& gpu_preferences) { gpu_preferences_ = gpu_preferences; init_successful_ = true; #if defined(USE_OZONE) ui::OzonePlatform::InitParams params; params.single_process = true; #if defined(OS_CHROMEOS) params.using_mojo = base::FeatureList::IsEnabled(features::kMash) || command_line->HasSwitch(switches::kEnableDrmMojo); #else params.using_mojo = command_line->HasSwitch(switches::kEnableDrmMojo); #endif ui::OzonePlatform::InitializeForGPU(params); ui::OzonePlatform::GetInstance()->AfterSandboxEntry(); #endif bool needs_more_info = false; #if !defined(IS_CHROMECAST) if (!PopGPUInfoCache(&gpu_info_)) { CollectBasicGraphicsInfo(command_line, &gpu_info_); } if (!PopGpuFeatureInfoCache(&gpu_feature_info_)) { gpu_feature_info_ = ComputeGpuFeatureInfo( gpu_info_, gpu_preferences.ignore_gpu_blacklist, gpu_preferences.disable_gpu_driver_bug_workarounds, gpu_preferences.log_gpu_control_list_decisions, command_line, &needs_more_info); } if (SwitchableGPUsSupported(gpu_info_, *command_line)) { InitializeSwitchableGPUs( gpu_feature_info_.enabled_gpu_driver_bug_workarounds); } #endif // !IS_CHROMECAST bool use_swiftshader = ShouldEnableSwiftShader( command_line, gpu_feature_info_, gpu_preferences.disable_software_rasterizer, needs_more_info); if (!gl::init::InitializeGLNoExtensionsOneOff()) { VLOG(1) << "gl::init::InitializeGLNoExtensionsOneOff failed"; return; } bool gl_disabled = gl::GetGLImplementation() == gl::kGLImplementationDisabled; if (!gl_disabled && !use_swiftshader) { CollectContextGraphicsInfo(&gpu_info_); gpu_feature_info_ = ComputeGpuFeatureInfo( gpu_info_, gpu_preferences.ignore_gpu_blacklist, gpu_preferences.disable_gpu_driver_bug_workarounds, gpu_preferences.log_gpu_control_list_decisions, command_line, nullptr); use_swiftshader = ShouldEnableSwiftShader( command_line, gpu_feature_info_, gpu_preferences.disable_software_rasterizer, false); if (use_swiftshader) { gl::init::ShutdownGL(true); if (!gl::init::InitializeGLNoExtensionsOneOff()) { VLOG(1) << "gl::init::InitializeGLNoExtensionsOneOff failed " << "with SwiftShader"; return; } } } if (use_swiftshader) { AdjustInfoToSwiftShader(); } else if (gl_disabled) { AdjustInfoToNoGpu(); } if (!gl_disabled) { if (!gpu_feature_info_.disabled_extensions.empty()) { gl::init::SetDisabledExtensionsPlatform( gpu_feature_info_.disabled_extensions); } if (!gl::init::InitializeExtensionSettingsOneOffPlatform()) { VLOG(1) << "gl::init::InitializeExtensionSettingsOneOffPlatform failed"; } } } #endif // OS_ANDROID void GpuInit::AdjustInfoToSwiftShader() { gpu_info_for_hardware_gpu_ = gpu_info_; gpu_feature_info_for_hardware_gpu_ = gpu_feature_info_; gpu_feature_info_ = ComputeGpuFeatureInfoForSwiftShader(); gpu_info_.gl_vendor = "Google Inc."; gpu_info_.gl_renderer = "Google SwiftShader"; gpu_info_.gl_version = "OpenGL ES 2.0 SwiftShader"; } void GpuInit::AdjustInfoToNoGpu() { gpu_info_for_hardware_gpu_ = gpu_info_; gpu_feature_info_for_hardware_gpu_ = gpu_feature_info_; gpu_feature_info_ = ComputeGpuFeatureInfoWithNoGpu(); gpu_info_.gl_vendor = "Disabled"; gpu_info_.gl_renderer = "Disabled"; gpu_info_.gl_version = "Disabled"; } } // namespace gpu
6,194
634
<gh_stars>100-1000 /* * Copyright 2000-2014 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.vcs.log.graph.impl.permanent; import consulo.logging.Logger; import com.intellij.openapi.progress.ProcessCanceledException; import com.intellij.util.containers.ContainerUtil; import com.intellij.vcs.log.graph.api.LinearGraph; import com.intellij.vcs.log.graph.utils.DfsUtil; import javax.annotation.Nonnull; import java.util.ArrayList; import java.util.Comparator; import java.util.List; import static com.intellij.vcs.log.graph.utils.LinearGraphUtils.getDownNodes; import static com.intellij.vcs.log.graph.utils.LinearGraphUtils.getUpNodes; public class GraphLayoutBuilder { private static final Logger LOG = Logger.getInstance(GraphLayoutBuilder.class); @Nonnull public static GraphLayoutImpl build(@Nonnull LinearGraph graph, @Nonnull Comparator<Integer> headNodeIndexComparator) { List<Integer> heads = new ArrayList<>(); for (int i = 0; i < graph.nodesCount(); i++) { if (getUpNodes(graph, i).size() == 0) { heads.add(i); } } try { heads = ContainerUtil.sorted(heads, headNodeIndexComparator); } catch (ProcessCanceledException pce) { throw pce; } catch (Exception e) { // protection against possible comparator flaws LOG.error(e); } GraphLayoutBuilder builder = new GraphLayoutBuilder(graph, heads); return builder.build(); } @Nonnull private final LinearGraph myGraph; @Nonnull private final int[] myLayoutIndex; @Nonnull private final List<Integer> myHeadNodeIndex; @Nonnull private final int[] myStartLayoutIndexForHead; @Nonnull private final DfsUtil myDfsUtil = new DfsUtil(); private int currentLayoutIndex = 1; private GraphLayoutBuilder(@Nonnull LinearGraph graph, @Nonnull List<Integer> headNodeIndex) { myGraph = graph; myLayoutIndex = new int[graph.nodesCount()]; myHeadNodeIndex = headNodeIndex; myStartLayoutIndexForHead = new int[headNodeIndex.size()]; } private void dfs(int nodeIndex) { myDfsUtil.nodeDfsIterator(nodeIndex, currentNode -> { boolean firstVisit = myLayoutIndex[currentNode] == 0; if (firstVisit) myLayoutIndex[currentNode] = currentLayoutIndex; int childWithoutLayoutIndex = -1; for (int childNodeIndex : getDownNodes(myGraph, currentNode)) { if (myLayoutIndex[childNodeIndex] == 0) { childWithoutLayoutIndex = childNodeIndex; break; } } if (childWithoutLayoutIndex == -1) { if (firstVisit) currentLayoutIndex++; return DfsUtil.NextNode.NODE_NOT_FOUND; } else { return childWithoutLayoutIndex; } }); } @Nonnull private GraphLayoutImpl build() { for (int i = 0; i < myHeadNodeIndex.size(); i++) { int headNodeIndex = myHeadNodeIndex.get(i); myStartLayoutIndexForHead[i] = currentLayoutIndex; dfs(headNodeIndex); } return new GraphLayoutImpl(myLayoutIndex, myHeadNodeIndex, myStartLayoutIndexForHead); } }
1,267
482
<gh_stars>100-1000 package io.cattle.platform.iaas.api.volume; import io.cattle.platform.api.action.ActionHandler; import io.cattle.platform.core.constants.SnapshotConstants; import io.cattle.platform.core.constants.VolumeConstants; import io.cattle.platform.core.model.Snapshot; import io.cattle.platform.core.model.Volume; import io.cattle.platform.object.ObjectManager; import io.cattle.platform.object.process.ObjectProcessManager; import io.cattle.platform.object.process.StandardProcess; import io.cattle.platform.object.util.DataAccessor; import io.github.ibuildthecloud.gdapi.request.ApiRequest; import javax.inject.Inject; import org.apache.commons.lang3.StringUtils; public class VolumeSnapshotActionHandler implements ActionHandler { @Inject ObjectManager objectManager; @Inject ObjectProcessManager processManager; @Override public String getName() { return VolumeConstants.PROCESS_SNAPSHOT; } @Override public Object perform(String name, Object obj, ApiRequest request) { if (!(obj instanceof Volume)) { return null; } Volume volume = (Volume)obj; Snapshot snapshot = objectManager.newRecord(Snapshot.class); snapshot.setKind(SnapshotConstants.TYPE); snapshot.setAccountId(volume.getAccountId()); snapshot.setVolumeId(volume.getId()); String snapshotName = DataAccessor.fromMap(request.getRequestObject()).withKey("name").as(String.class); if (StringUtils.isNotBlank(snapshotName)) { snapshot.setName(snapshotName); } snapshot = objectManager.create(snapshot); processManager.scheduleStandardProcess(StandardProcess.CREATE, snapshot, null); return objectManager.reload(snapshot); } }
637
984
/* * Copyright DataStax, 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 agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.datastax.oss.driver.internal.core.loadbalancing.nodeset; import com.datastax.oss.driver.api.core.metadata.Node; import edu.umd.cs.findbugs.annotations.NonNull; import edu.umd.cs.findbugs.annotations.Nullable; import java.util.Collections; import java.util.Set; import java.util.concurrent.CopyOnWriteArraySet; import net.jcip.annotations.ThreadSafe; @ThreadSafe public class DcAgnosticNodeSet implements NodeSet { private final Set<Node> nodes = new CopyOnWriteArraySet<>(); @Override public boolean add(@NonNull Node node) { return nodes.add(node); } @Override public boolean remove(@NonNull Node node) { return nodes.remove(node); } @Override @NonNull public Set<Node> dc(@Nullable String dc) { return nodes; } @Override public Set<String> dcs() { return Collections.emptySet(); } }
444
1,045
/*************************************************************************************************** Tencent is pleased to support the open source community by making RapidView available. Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved. Licensed under the MITLicense (the "License"); you may not use this file except in compliance withthe License. You mayobtain a copy of the License at http://opensource.org/licenses/MIT Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ***************************************************************************************************/ package com.tencent.rapidview.server; import com.tencent.rapidview.framework.RapidConfig; import com.tencent.rapidview.utils.XLog; /** * @Class RapidRuntimeEngine * @Desc 实时视图请求 * * @author arlozhang * @date 2016.02.17 */ public class RapidRuntimeEngine { private IListener mListener = null; public interface IListener{ void onfinish(boolean succeed, String md5, String url, int limitLevel); } public synchronized int sendRequest(String rapidID, IListener listener){ return -1; } protected void onRequestFailed(final int seq, final int errorCode) { XLog.d(RapidConfig.RAPID_ERROR_TAG, "实时视图数据协议请求失败,errorcode:" + Integer.toString(errorCode)); if( mListener == null ){ return; } mListener.onfinish(false, null, null, -1); } protected synchronized void onRequestSuccessed(int seq, Object resp) { XLog.d(RapidConfig.RAPID_NORMAL_TAG, "实时视图数据协议请求成功"); if( mListener == null ){ return; } //mListener.onfinish(true, resp.zipMd5, resp.zipUrl, resp.limitLevel); } }
671
511
/* SysmonForLinux Copyright (c) Microsoft Corporation All rights reserved. MIT License 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, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ //==================================================================== // // sysmon_defs.h // // Defines and types needed by Sysmon for Linux. // //==================================================================== #ifndef SYSMON_DEFS_H #define SYSMON_DEFS_H #include <linux/limits.h> #include "linuxTypes.h" #include "sysmonmsgop.h" #include "ioctlcmd.h" #define SYSMON_UMASK 077 #define SYSMON_INSTALL_DIR "/opt/sysmon" #define SYSMON_EULA_FILE SYSMON_INSTALL_DIR "/eula_accepted" #define EVENTID_FILE SYSMON_INSTALL_DIR "/eventId" #define SYSMON_CONFIG_FILE SYSMON_INSTALL_DIR "/config.xml" #define SYSMON_RULES_FILE SYSMON_INSTALL_DIR "/rules.bin" #define SYSMON_ARGC_FILE SYSMON_INSTALL_DIR "/argc" #define SYSMON_ARGV_FILE SYSMON_INSTALL_DIR "/argv" #define SYSMON_FIELDSIZES_FILE SYSMON_INSTALL_DIR "/fieldSizes" #define SYSMON_EBPF_DIR "sysinternalsEBPF" #define PROC_EXE_PATH "/proc/self/exe" #define PROC_STAT_PATH "/proc/self/stat" #define PROC_EXE_PATH_FMT "/proc/%d/exe" #define SYSMON_BINARY "sysmon" #define EBPFLIB "libsysinternalsEBPF.so" #define MEM_DUMP_OBJ "sysinternalsEBPFmemDump.o" #define RAW_SOCK_OBJ "sysinternalsEBPFrawSock.o" #define KERN_4_15_OBJ "sysmonEBPFkern4.15.o" #define KERN_4_16_OBJ "sysmonEBPFkern4.16.o" #define KERN_4_17_5_1_OBJ "sysmonEBPFkern4.17-5.1.o" #define KERN_5_2_OBJ "sysmonEBPFkern5.2.o" #define KERN_5_3_5_5_OBJ "sysmonEBPFkern5.3-5.5.o" #define KERN_5_6__OBJ "sysmonEBPFkern5.6-.o" #define SYSMONLOGVIEW_BINARY "sysmonLogView" #define SYSTEMD_DIR "/etc/systemd/system" #define SYSTEMD_SERVICE "sysmon.service" #define SYSTEMD_RELOAD_CMD "systemctl daemon-reload" #define SYSTEMD_START_CMD "systemctl start" #define SYSTEMD_STOP_CMD "systemctl stop" #define SYSTEMD_ENABLE_CMD "systemctl enable" #define SYSTEMD_DISABLE_CMD "systemctl disable" #define INITD_DIR "/etc/init.d" #define INITD_SERVICE "sysmon" #define INITD_DIR_FMT "/etc/rc%d.d" #define INITD_START_ID "S99" #define INITD_KILL_ID "K99" #define UDP_REPORT_INTERVAL (30L * 60 * 1000 * 1000 * 10) // 30 minutes in 100ns intervals #define UDP_HASH_SIZE (128 * 1024) #define UDP_HASH_RPP 0.1 // rapid purge proportion - volume of observations to remove #define UDP_PIDFD_HASH 0 #define UDP_ADDRS_HASH 1 #define PACKET_SIZE 128 #define PACKET_MASK (PACKET_SIZE - 1) #define PROTO_IPV4 0x0800 #define PROTO_IPV6 0x86DD #define PROTO_UDP 0x11 // return values #define READ_OKAY 0 #define UPDATE_OKAY 0 typedef struct { bool IPv4; BYTE srcAddr[16]; unsigned short srcPort; BYTE dstAddr[16]; unsigned short dstPort; } packetAddrs; #endif
1,887
861
<reponame>Kondr11/LABA7 # Copyright (c) 2014, <NAME> # All rights reserved. import os import re def get(ios_version): dev_dir = re.sub(r'\.', '_', ios_version) dev_dir = 'IOS_{}_DEVELOPER_DIR'.format(dev_dir) return os.getenv(dev_dir)
106
789
<filename>qbit/core/src/test/java/io/advantageous/qbit/boon/spi/ProtocolParserVersion1Test.java /* * Copyright (c) 2015. <NAME>, <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * QBit - The Microservice lib for Java : JSON, WebSocket, REST. Be The Web! */ package io.advantageous.qbit.boon.spi; import io.advantageous.boon.core.Lists; import io.advantageous.boon.core.Str; import io.advantageous.qbit.message.MethodCall; import io.advantageous.qbit.message.MethodCallBuilder; import io.advantageous.qbit.message.Response; import io.advantageous.qbit.message.impl.ResponseImpl; import io.advantageous.qbit.spi.ProtocolParser; import io.advantageous.qbit.util.MultiMap; import io.advantageous.qbit.util.MultiMapImpl; import junit.framework.Assert; import org.junit.Before; import org.junit.Test; import java.util.ArrayList; import java.util.List; import static io.advantageous.boon.core.IO.puts; /** * created by Richard on 9/26/14. */ public class ProtocolParserVersion1Test { boolean ok; MethodCall<Object> methodCall; @Before public void setup() { methodCall = new MethodCallBuilder().setId(99L).setAddress("addr_").setReturnAddress("return_").setObjectName("oname_").setName("mname_").setTimestamp(0L).setBody("args_").build(); } @Test public void testEncodeParseResponse() { BoonProtocolEncoder encoder = new BoonProtocolEncoder(); ResponseImpl<Object> response = new ResponseImpl<>(1L, 2L, "addr", "Raddr", null, "body", null, false); final String s = encoder.encodeResponses("Raddr", Lists.list(response)); ProtocolParser parser = new BoonProtocolParser(); final Response<Object> objectResponse = parser.parseResponses("", s).get(0); Assert.assertEquals(response.id(), objectResponse.id()); Assert.assertEquals(response.timestamp(), objectResponse.timestamp()); Assert.assertEquals(response.address(), objectResponse.address()); Assert.assertEquals(response.body(), objectResponse.body().toString()); Assert.assertEquals(response.returnAddress(), objectResponse.returnAddress()); } @Test public void testEncodeDecodeMap() { MultiMap<String, String> multiMap = new MultiMapImpl<>(ArrayList.class); multiMap.add("fruit", "apple"); multiMap.add("fruit", "pair"); multiMap.add("fruit", "watermelon"); multiMap.put("veggies", "yuck"); MethodCall<Object> method = new MethodCallBuilder().setName("foo").setBody("bar").setAddress("somebody").setParams(multiMap).build(); BoonProtocolEncoder encoder = new BoonProtocolEncoder(); final String s = encoder.encodeMethodCalls("", Lists.list(method)); puts(s); ProtocolParser parser = new BoonProtocolParser(); final MethodCall<Object> parse = parser.parseMethodCalls("", s).get(0); final List<String> fruit = (List<String>) parse.params().getAll("fruit"); Assert.assertEquals(Lists.list("apple", "pair", "watermelon"), fruit); Assert.assertEquals("yuck", parse.params().get("veggies")); } @Test public void testEncodeDecode() { BoonProtocolEncoder encoder = new BoonProtocolEncoder(); final String s = encoder.encodeMethodCalls("return_", Lists.list(methodCall)); puts(s); BoonProtocolParser parserVersion1 = new BoonProtocolParser(); final MethodCall<Object> methodCallParsed = parserVersion1.parseMethodCalls("return_", s).get(0); puts(methodCall); Str.equalsOrDie(methodCall.name(), methodCallParsed.name()); Str.equalsOrDie(methodCall.address(), methodCallParsed.address()); Str.equalsOrDie(methodCall.objectName(), methodCallParsed.objectName()); puts(methodCallParsed.body(), methodCall.body()); Assert.assertEquals(methodCall.returnAddress(), methodCallParsed.returnAddress()); // Str.equalsOrDie(methodCall.returnAddress(), methodCallParsed.returnAddress()); // Boon.equalsOrDie("\"" + methodCall.body() + "\"", methodCallParsed.body()); puts(methodCallParsed.body()); } }
1,666
515
<filename>stella-nfe/src/main/java/br/com/caelum/stella/nfe/ws/sp/recepcao/NfeRecepcao2Soap12.java package br.com.caelum.stella.nfe.ws.sp.recepcao; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; import javax.jws.soap.SOAPBinding; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.ws.Holder; /** * This class was generated by the JAX-WS RI. * JAX-WS RI 2.1.6 in JDK 6 * Generated source version: 2.1 * */ @WebService(name = "NfeRecepcao2Soap12", targetNamespace = "http://www.portalfiscal.inf.br/nfe/wsdl/NfeRecepcao2") @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE) @XmlSeeAlso({ ObjectFactory.class }) public interface NfeRecepcao2Soap12 { /** * Transmissão de Lote de NF-e * * @param nfeCabecMsg * @param nfeDadosMsg * @return * returns br.com.caelum.stella.nfe.ws.sp.recepcao.NfeRecepcaoLote2Result */ @WebMethod(action = "http://www.portalfiscal.inf.br/nfe/wsdl/NfeRecepcao2/nfeRecepcaoLote2") @WebResult(name = "nfeRecepcaoLote2Result", targetNamespace = "http://www.portalfiscal.inf.br/nfe/wsdl/NfeRecepcao2", partName = "nfeRecepcaoLote2Result") public NfeRecepcaoLote2Result nfeRecepcaoLote2( @WebParam(name = "nfeDadosMsg", targetNamespace = "http://www.portalfiscal.inf.br/nfe/wsdl/NfeRecepcao2", partName = "nfeDadosMsg") NfeDadosMsg nfeDadosMsg, @WebParam(name = "nfeCabecMsg", targetNamespace = "http://www.portalfiscal.inf.br/nfe/wsdl/NfeRecepcao2", header = true, mode = WebParam.Mode.INOUT, partName = "nfeCabecMsg") Holder<NfeCabecMsg> nfeCabecMsg); }
762
375
package io.lumify.opennlpDictionary.model; import com.altamiracorp.bigtable.model.Row; import com.altamiracorp.bigtable.model.RowKey; import io.lumify.core.model.properties.LumifyProperties; import org.json.JSONObject; public class DictionaryEntry extends Row<DictionaryEntryRowKey> { public static final String TABLE_NAME = "lumify_dictionaryEntry"; public DictionaryEntry(DictionaryEntryRowKey rowKey) { super(TABLE_NAME, rowKey); } public DictionaryEntry(RowKey rowKey) { super(TABLE_NAME, new DictionaryEntryRowKey(rowKey.toString())); } public DictionaryEntryMetadata getMetadata() { DictionaryEntryMetadata metadata = get(DictionaryEntryMetadata.NAME); if (metadata == null) { addColumnFamily(new DictionaryEntryMetadata()); } return get(DictionaryEntryMetadata.NAME); } @Override public JSONObject toJson() { JSONObject json = new JSONObject(); json.put("rowKey", getRowKey().toString()); json.put("concept", getMetadata().getConcept()); json.put("tokens", getMetadata().getTokens()); if (getMetadata().getResolvedName() != null) { json.put("resolvedName", getMetadata().getResolvedName()); } return json; } }
492
15,577
<gh_stars>1000+ #pragma once #include <Core/Block.h> #include <DataTypes/DataTypesNumber.h> #include <Parsers/ASTExpressionList.h> #include <Parsers/ASTFunction.h> #include <Parsers/ASTSelectQuery.h> #include <Storages/MergeTree/KeyCondition.h> #include <Storages/SelectQueryInfo.h> #include <Common/typeid_cast.h> namespace DB { /// Builds reverse polish notation template <typename RPNElement> class RPNBuilder : WithContext { public: using RPN = std::vector<RPNElement>; using AtomFromASTFunc = std::function< bool(const ASTPtr & node, ContextPtr context, Block & block_with_constants, RPNElement & out)>; RPNBuilder(const SelectQueryInfo & query_info, ContextPtr context_, const AtomFromASTFunc & atomFromAST_) : WithContext(context_), atomFromAST(atomFromAST_) { /** Evaluation of expressions that depend only on constants. * For the index to be used, if it is written, for example `WHERE Date = toDate(now())`. */ block_with_constants = KeyCondition::getBlockWithConstants(query_info.query, query_info.syntax_analyzer_result, getContext()); /// Transform WHERE section to Reverse Polish notation const ASTSelectQuery & select = typeid_cast<const ASTSelectQuery &>(*query_info.query); if (select.where()) { traverseAST(select.where()); if (select.prewhere()) { traverseAST(select.prewhere()); rpn.emplace_back(RPNElement::FUNCTION_AND); } } else if (select.prewhere()) { traverseAST(select.prewhere()); } else { rpn.emplace_back(RPNElement::FUNCTION_UNKNOWN); } } RPN && extractRPN() { return std::move(rpn); } private: void traverseAST(const ASTPtr & node) { RPNElement element; if (ASTFunction * func = typeid_cast<ASTFunction *>(&*node)) { if (operatorFromAST(func, element)) { auto & args = typeid_cast<ASTExpressionList &>(*func->arguments).children; for (size_t i = 0, size = args.size(); i < size; ++i) { traverseAST(args[i]); /** The first part of the condition is for the correct support of `and` and `or` functions of arbitrary arity * - in this case `n - 1` elements are added (where `n` is the number of arguments). */ if (i != 0 || element.function == RPNElement::FUNCTION_NOT) rpn.emplace_back(std::move(element)); } return; } } if (!atomFromAST(node, getContext(), block_with_constants, element)) { element.function = RPNElement::FUNCTION_UNKNOWN; } rpn.emplace_back(std::move(element)); } bool operatorFromAST(const ASTFunction * func, RPNElement & out) { /// Functions AND, OR, NOT. /// Also a special function `indexHint` - works as if instead of calling a function there are just parentheses /// (or, the same thing - calling the function `and` from one argument). const ASTs & args = typeid_cast<const ASTExpressionList &>(*func->arguments).children; if (func->name == "not") { if (args.size() != 1) return false; out.function = RPNElement::FUNCTION_NOT; } else { if (func->name == "and" || func->name == "indexHint") out.function = RPNElement::FUNCTION_AND; else if (func->name == "or") out.function = RPNElement::FUNCTION_OR; else return false; } return true; } const AtomFromASTFunc & atomFromAST; Block block_with_constants; RPN rpn; }; };
1,796
416
<filename>Headers/CoreImage/CIVector.h /* CoreImage - CIVector.h Copyright (c) 2015 Apple, Inc. All rights reserved. */ #import <CoreImage/CoreImageDefines.h> #import <Foundation/Foundation.h> NS_ASSUME_NONNULL_BEGIN NS_CLASS_AVAILABLE(10_4, 5_0) @interface CIVector : NSObject <NSCopying, NSSecureCoding> { size_t _count; union { CGFloat vec[4]; CGFloat *ptr; } _u; } /* Create a new vector object. */ + (instancetype)vectorWithValues:(const CGFloat *)values count:(size_t)count; + (instancetype)vectorWithX:(CGFloat)x; + (instancetype)vectorWithX:(CGFloat)x Y:(CGFloat)y; + (instancetype)vectorWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z; + (instancetype)vectorWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z W:(CGFloat)w; /* the CGPoint x and y values are stored in the first X and Y values of the CIVector. */ + (instancetype)vectorWithCGPoint:(CGPoint)p NS_AVAILABLE(10_9, 5_0); /* the CGRect x, y, width, height values are stored in the first X, Y, Z, W values of the CIVector. */ + (instancetype)vectorWithCGRect:(CGRect)r NS_AVAILABLE(10_9, 5_0); /* the CGAffineTransform's six values are stored in the first six values of the CIVector. */ + (instancetype)vectorWithCGAffineTransform:(CGAffineTransform)t NS_AVAILABLE(10_9, 5_0); + (instancetype)vectorWithString:(NSString *)representation; /* Initializers. */ - (instancetype)initWithValues:(const CGFloat *)values count:(size_t)count NS_DESIGNATED_INITIALIZER; - (instancetype)initWithX:(CGFloat)x; - (instancetype)initWithX:(CGFloat)x Y:(CGFloat)y; - (instancetype)initWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z; - (instancetype)initWithX:(CGFloat)x Y:(CGFloat)y Z:(CGFloat)z W:(CGFloat)w; - (instancetype)initWithCGPoint:(CGPoint)p NS_AVAILABLE(10_9, 5_0); - (instancetype)initWithCGRect:(CGRect)r NS_AVAILABLE(10_9, 5_0); - (instancetype)initWithCGAffineTransform:(CGAffineTransform)r NS_AVAILABLE(10_9, 5_0); - (instancetype)initWithString:(NSString *)representation; /* Return the value from the vector at position 'index' (zero-based). * Any 'index' value is valid, if the component would otherwise be * undefined, zero is returned. */ - (CGFloat)valueAtIndex:(size_t)index; /* Return the number of values stored in the vector. */ @property (readonly) size_t count; /* Properties. */ @property (readonly) CGFloat X; @property (readonly) CGFloat Y; @property (readonly) CGFloat Z; @property (readonly) CGFloat W; @property (readonly) CGPoint CGPointValue NS_AVAILABLE(10_9, 5_0); @property (readonly) CGRect CGRectValue NS_AVAILABLE(10_9, 5_0); @property (readonly) CGAffineTransform CGAffineTransformValue NS_AVAILABLE(10_9, 5_0); /* Returns a formatted string with the components of the vector. * The string is suitable for passing to [CIVector vectorWithString:]. * This property is not KVO-safe because it returns a new NSString each time. * The value of the NSString will be the same each time it is called. */ @property (readonly) NSString *stringRepresentation; @end NS_ASSUME_NONNULL_END
1,203
3,366
//! //! @author @<NAME> @shbling //! //! Exercise 10.24: //! Use bind and check_size to find the first element in a vector of ints that //! has a value greater //! than the length of a specified string value. //! // Discussion over this exercise on StackOverflow // http://stackoverflow.com/questions/20539406/what-type-does-stdfind-if-not-return //! #include <iostream> #include <string> #include <vector> #include <algorithm> #include <functional> using std::cout; using std::endl; using std::string; using std::vector; using std::find_if; using std::bind; inline bool check_size(const string& s, string::size_type sz) { return s.size() < sz; } inline vector<int>::const_iterator find_first_bigger(const vector<int>& v, const string& s) { return find_if(v.cbegin(), v.cend(), bind(check_size, s, std::placeholders::_1)); } int main() { vector<int> v{1, 2, 3, 4, 5, 6, 7}; string s("test"); cout << *find_first_bigger(v, s) << endl; return 0; } //! output; //! // 5
452
2,293
/* * Copyright (C) 2010-2021 Arm Limited or its affiliates. All rights reserved. * * 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 * * www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* ---------------------------------------------------------------------- * Project: CMSIS NN Library * Title: arm_depthwise_separable_conv_HWC_q7_nonsquare.c * Description: Q7 depthwise separable convolution function (non-square shape) * * $Date: July 20, 2021 * $Revision: V.1.1.2 * * Target Processor: Cortex-M cores * * -------------------------------------------------------------------- */ #include "arm_nnfunctions.h" #include "arm_nnsupportfunctions.h" /** * @ingroup groupNN */ /** * @addtogroup NNConv * @{ */ /** * @brief Q7 depthwise separable convolution function (non-square shape) * @param[in] Im_in pointer to input tensor * @param[in] dim_im_in_x input tensor dimension x * @param[in] dim_im_in_y input tensor dimension y * @param[in] ch_im_in number of input tensor channels * @param[in] wt pointer to kernel weights * @param[in] ch_im_out number of filters, i.e., output tensor channels * @param[in] dim_kernel_x filter kernel size x * @param[in] dim_kernel_y filter kernel size y * @param[in] padding_x padding sizes x * @param[in] padding_y padding sizes y * @param[in] stride_x convolution stride x * @param[in] stride_y convolution stride y * @param[in] bias pointer to bias * @param[in] bias_shift amount of left-shift for bias * @param[in] out_shift amount of right-shift for output * @param[in,out] Im_out pointer to output tensor * @param[in] dim_im_out_x output tensor dimension x * @param[in] dim_im_out_y output tensor dimension y * @param[in,out] bufferA pointer to buffer space for input * @param[in,out] bufferB pointer to buffer space for output * @return The function returns either * <code>ARM_MATH_SIZE_MISMATCH</code> or <code>ARM_MATH_SUCCESS</code> based on the outcome of size checking. * * This function is the version with full list of optimization tricks, but with * some constraints: * ch_im_in is equal to ch_im_out * */ arm_status arm_depthwise_separable_conv_HWC_q7_nonsquare(const q7_t *Im_in, const uint16_t dim_im_in_x, const uint16_t dim_im_in_y, const uint16_t ch_im_in, const q7_t *wt, const uint16_t ch_im_out, const uint16_t dim_kernel_x, const uint16_t dim_kernel_y, const uint16_t padding_x, const uint16_t padding_y, const uint16_t stride_x, const uint16_t stride_y, const q7_t *bias, const uint16_t bias_shift, const uint16_t out_shift, q7_t *Im_out, const uint16_t dim_im_out_x, const uint16_t dim_im_out_y, q15_t *bufferA, q7_t *bufferB) { (void)bufferB; #if defined(ARM_MATH_DSP) && !defined(ARM_MATH_MVEI) /* Run the following code for Cortex-M4 and Cortex-M7 */ /* * Implementation: * There are 3 nested loop here: * Inner loop: calculate each output value with MAC instruction over an accumulator * Mid loop: loop over different output channel * Outer loop: loop over different output (x, y) * */ int16_t i_out_y, i_out_x; int16_t i_ker_y, i_ker_x; q7_t *colBuffer = (q7_t *)bufferA; q7_t *pBuffer = colBuffer; const q7_t *pBias = bias; q7_t *pOut = Im_out; uint16_t rowCnt; uint16_t row_shift; /* do some checking here, basically ch_im_in == ch_im_out */ if (ch_im_in != ch_im_out) { return ARM_MATH_SIZE_MISMATCH; } for (i_out_y = 0; i_out_y < dim_im_out_y; i_out_y++) { for (i_out_x = 0; i_out_x < dim_im_out_x; i_out_x++) { /* we first do im2col here */ for (i_ker_y = i_out_y * stride_y - padding_y; i_ker_y < i_out_y * stride_y - padding_y + dim_kernel_y; i_ker_y++) { for (i_ker_x = i_out_x * stride_x - padding_x; i_ker_x < i_out_x * stride_x - padding_x + dim_kernel_x; i_ker_x++) { if (i_ker_y < 0 || i_ker_y >= dim_im_in_y || i_ker_x < 0 || i_ker_x >= dim_im_in_x) { /* arm_fill_q7(0, pBuffer, ch_im_in); */ memset(pBuffer, 0, ch_im_in); } else { /* arm_copy_q7((q7_t *) Im_in + (i_ker_y * dim_im_in_x + i_ker_x) * ch_im_in, pBuffer, * ch_im_in); */ memcpy(pBuffer, (q7_t *)Im_in + (i_ker_y * dim_im_in_x + i_ker_x) * ch_im_in, ch_im_in); } pBuffer += ch_im_in; } } /* we will do the computation here for each channel */ rowCnt = ch_im_out >> 2; row_shift = 0; pBias = bias; while (rowCnt) { q31_t sum = ((q31_t)(*pBias++) << bias_shift) + NN_ROUND(out_shift); q31_t sum2 = ((q31_t)(*pBias++) << bias_shift) + NN_ROUND(out_shift); q31_t sum3 = ((q31_t)(*pBias++) << bias_shift) + NN_ROUND(out_shift); q31_t sum4 = ((q31_t)(*pBias++) << bias_shift) + NN_ROUND(out_shift); uint16_t colCnt = (dim_kernel_x * dim_kernel_y) >> 1; q7_t *pB = colBuffer + row_shift; const q7_t *pA = wt + row_shift; row_shift += 4; #ifdef USE_INTRINSIC #ifndef ARM_MATH_BIG_ENDIAN while (colCnt) { q31_t inA1, inA2, inB1, inB2, opA, opB; inB1 = arm_nn_read_q7x4(pB); pB += ch_im_in; opB = arm_nn_read_q7x4(pB); pB += ch_im_in; inB2 = __PKHTB(opB, inB1, 16); inB1 = __PKHBT(inB1, opB, 16); inA1 = arm_nn_read_q7x4(pA); pA += ch_im_in; opB = arm_nn_read_q7x4(pA); pA += ch_im_in; inA2 = __PKHTB(opB, inA1, 16); inA1 = __PKHBT(inA1, opB, 16); opA = __SXTB16(inA1); opB = __SXTB16(inB1); sum = __SMLAD(opA, opB, sum); opA = __SXTB16(__ROR(inA1, 8)); opB = __SXTB16(__ROR(inB1, 8)); sum2 = __SMLAD(opA, opB, sum2); opA = __SXTB16(inA2); opB = __SXTB16(inB2); sum3 = __SMLAD(opA, opB, sum3); opA = __SXTB16(__ROR(inA2, 8)); opB = __SXTB16(__ROR(inB2, 8)); sum4 = __SMLAD(opA, opB, sum4); colCnt--; } #else while (colCnt) { q31_t inA1, inA2, inB1, inB2, opA, opB; inB1 = arm_nn_read_q7x4(pB); pB += ch_im_in; opB = arm_nn_read_q7x4(pB); pB += ch_im_in; inB2 = __PKHBT(opB, inB1, 16); inB1 = __PKHTB(inB1, opB, 16); inA1 = arm_nn_read_q7x4(pA); pA += ch_im_in; opB = arm_nn_read_q7x4(pA); pA += ch_im_in; inA2 = __PKHBT(opB, inA1, 16); inA1 = __PKHTB(inA1, opB, 16); opA = __SXTB16(inA1); opB = __SXTB16(inB1); sum2 = __SMLAD(opA, opB, sum2); opA = __SXTB16(__ROR(inA1, 8)); opB = __SXTB16(__ROR(inB1, 8)); sum = __SMLAD(opA, opB, sum); opA = __SXTB16(inA2); opB = __SXTB16(inB2); sum4 = __SMLAD(opA, opB, sum4); opA = __SXTB16(__ROR(inA2, 8)); opB = __SXTB16(__ROR(inB2, 8)); sum3 = __SMLAD(opA, opB, sum3); colCnt--; } #endif /* ARM_MATH_BIG_ENDIAN */ #else #ifndef ARM_MATH_BIG_ENDIAN // r0 r1 r2 r3 r4 r5 // inA1, inA2, inB1, inB2, opA, opB asm volatile("COL_LOOP:\n" "ldr.w r2, [%[pB], #0]\n" "add.w %[pB], %[pB], %[ch_im_in]\n" "ldr.w r5, [%[pB], #0]\n" "add.w %[pB], %[pB], %[ch_im_in]\n" "pkhtb r3, r5, r2, ASR #16\n" "pkhbt r2, r2, r5, LSL #16\n" "ldr.w r0, [%[pA], #0]\n" "add.w %[pA], %[pA], %[ch_im_in]\n" "ldr.w r5, [%[pA], #0]\n" "add.w %[pA], %[pA], %[ch_im_in]\n" "pkhtb r1, r5, r0, ASR #16\n" "pkhbt r0, r0, r5, LSL #16\n" "sxtb16 r4, r0\n" "sxtb16 r5, r2\n" "smlad %[sum], r4, r5, %[sum]\n" "mov.w r4, r0, ror #8\n" "mov.w r5, r2, ror #8\n" "sxtb16 r4, r4\n" "sxtb16 r5, r5\n" "smlad %[sum2], r4, r5, %[sum2]\n" "sxtb16 r4, r1\n" "sxtb16 r5, r3\n" "smlad %[sum3], r4, r5, %[sum3]\n" "mov.w r4, r1, ror #8\n" "mov.w r5, r3, ror #8\n" "sxtb16 r4, r4\n" "sxtb16 r5, r5\n" "smlad %[sum4], r4, r5, %[sum4]\n" "subs %[colCnt], #1\n" "bne COL_LOOP\n" : [ sum ] "+r"(sum), [ sum2 ] "+r"(sum2), [ sum3 ] "+r"(sum3), [ sum4 ] "+r"(sum4), [ pB ] "+r"(pB), [ pA ] "+r"(pA) : [ colCnt ] "r"(colCnt), [ ch_im_in ] "r"(ch_im_in) : "r0", "r1", "r2", "r3", "r4", "r5"); #else // r0 r1 r2 r3 r4 r5 // inA1, inA2, inB1, inB2, opA, opB asm volatile("COL_LOOP:\n" "ldr.w r2, [%[pB], #0]\n" "add.w %[pB], %[pB], %[ch_im_in]\n" "ldr.w r5, [%[pB], #0]\n" "add.w %[pB], %[pB], %[ch_im_in]\n" "pkhbt r3, r5, r2, LSL #16\n" "pkhtb r2, r2, r5, ASR #16\n" "ldr.w r0, [%[pA], #0]\n" "add.w %[pA], %[pA], %[ch_im_in]\n" "ldr.w r5, [%[pA], #0]\n" "add.w %[pA], %[pA], %[ch_im_in]\n" "pkhbt r1, r5, r0, LSL #16\n" "pkhtb r0, r0, r5, ASR #16\n" "sxtb16 r4, r0\n" "sxtb16 r5, r2\n" "smlad %[sum2], r4, r5, %[sum2]\n" "mov.w r4, r0, ror #8\n" "mov.w r5, r2, ror #8\n" "sxtb16 r4, r4\n" "sxtb16 r5, r5\n" "smlad %[sum], r4, r5, %[sum]\n" "sxtb16 r4, r1\n" "sxtb16 r5, r3\n" "smlad %[sum4], r4, r5, %[sum4]\n" "mov.w r4, r1, ror #8\n" "mov.w r5, r3, ror #8\n" "sxtb16 r4, r4\n" "sxtb16 r5, r5\n" "smlad %[sum3], r4, r5, %[sum3]\n" "subs %[colCnt], #1\n" "bne COL_LOOP\n" : [ sum ] "+r"(sum), [ sum2 ] "+r"(sum2), [ sum3 ] "+r"(sum3), [ sum4 ] "+r"(sum4), [ pB ] "+r"(pB), [ pA ] "+r"(pA) : [ colCnt ] "r"(colCnt), [ ch_im_in ] "r"(ch_im_in) : "r0", "r1", "r2", "r3", "r4", "r5"); #endif /*ARM_MATH_BIG_ENDIAN */ #endif /* USE_INTRINSIC */ colCnt = (dim_kernel_x * dim_kernel_y) & 0x1; while (colCnt) { union arm_nnword inA, inB; inA.word = arm_nn_read_q7x4(pA); pA += ch_im_in; inB.word = arm_nn_read_q7x4(pB); pB += ch_im_in; sum += inA.bytes[0] * inB.bytes[0]; sum2 += inA.bytes[1] * inB.bytes[1]; sum3 += inA.bytes[2] * inB.bytes[2]; sum4 += inA.bytes[3] * inB.bytes[3]; colCnt--; } *pOut++ = (q7_t)__SSAT((sum >> out_shift), 8); *pOut++ = (q7_t)__SSAT((sum2 >> out_shift), 8); *pOut++ = (q7_t)__SSAT((sum3 >> out_shift), 8); *pOut++ = (q7_t)__SSAT((sum4 >> out_shift), 8); rowCnt--; } rowCnt = ch_im_out & 0x3; while (rowCnt) { q7_t *pB = colBuffer + row_shift; const q7_t *pA = wt + row_shift; q31_t sum = ((q31_t)(*pBias++) << bias_shift) + NN_ROUND(out_shift); uint16_t colCnt = (dim_kernel_x * dim_kernel_y); row_shift += 1; while (colCnt) { q7_t A1 = *pA; q7_t B1 = *pB; pA += ch_im_in; pB += ch_im_in; sum += A1 * B1; colCnt--; } *pOut++ = (q7_t)__SSAT((sum >> out_shift), 8); rowCnt--; } // clear counter and pointers pBuffer = colBuffer; } } #else (void)bufferA; /* Run the following code as reference implementation for Cortex-M0 and Cortex-M3 */ int i_out_y, i_out_x, i_ch_out; int i_ker_y, i_ker_x; /* do some checking here, basically ch_im_in == ch_im_out */ if (ch_im_in != ch_im_out) { return ARM_MATH_SIZE_MISMATCH; } for (i_out_y = 0; i_out_y < dim_im_out_y; i_out_y++) { for (i_out_x = 0; i_out_x < dim_im_out_x; i_out_x++) { for (i_ch_out = 0; i_ch_out < ch_im_out; i_ch_out++) { // for each output int conv_out = ((q31_t)(bias[i_ch_out]) << bias_shift) + NN_ROUND(out_shift); for (i_ker_y = 0; i_ker_y < dim_kernel_y; i_ker_y++) { for (i_ker_x = 0; i_ker_x < dim_kernel_x; i_ker_x++) { int in_row = stride_y * i_out_y + i_ker_y - padding_y; int in_col = stride_x * i_out_x + i_ker_x - padding_x; if (in_row >= 0 && in_col >= 0 && in_row < dim_im_in_y && in_col < dim_im_in_x) { conv_out += Im_in[(in_row * dim_im_in_x + in_col) * ch_im_in + i_ch_out] * wt[(i_ker_y * dim_kernel_x + i_ker_x) * ch_im_out + i_ch_out]; } } } Im_out[(i_out_y * dim_im_out_x + i_out_x) * ch_im_out + i_ch_out] = (q7_t)__SSAT((conv_out >> out_shift), 8); } } } #endif /* ARM_MATH_DSP */ /* Return to application */ return ARM_MATH_SUCCESS; } /** * @} end of NNConv group */
11,983
615
<filename>src/test/pythonFiles/autocomp/imp.py<gh_stars>100-1000 from os import * fsta
33
781
//------------------------------------------------------------------------------------------------------- // Copyright (C) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. //------------------------------------------------------------------------------------------------------- package Windows.UI.Xaml.Controls; //import android.support.v7.app.ActionBar; //import android.support.v7.app.ActionBarActivity; import android.content.Context; import android.view.View; import android.view.ViewGroup; import run.ace.*; // This derived from android.widget.Toolbar, but (a) that's not needed // and (b) Toolbar is only for Lollipop or later public class CommandBar extends android.widget.LinearLayout implements IHaveProperties { ObservableCollection _primaryCommands; ObservableCollection _secondaryCommands; public CommandBar(Context context) { super(context); } public void setTitle(String title, android.app.Activity activity) { //if (!(activity instanceof ActionBarActivity)) { android.app.ActionBar actionBar = activity.getActionBar(); if (actionBar == null) { throw new RuntimeException( "Cannot set title on the main page in Android unless you set <preference name=\"ShowTitle\" value=\"true\"/> in config.xml."); } actionBar.setTitle(title); //} //else { // ActionBar actionBar = ((ActionBarActivity)activity).getSupportActionBar(); // if (actionBar != null) { // actionBar.setTitle(title); // } //} } public void onMenuItemClicked(int index) { OutgoingMessages.raiseEvent("click", _primaryCommands.get(index), null); } public void show(android.app.Activity activity, android.view.Menu menu) { //if (!(activity instanceof ActionBarActivity)) { android.app.ActionBar mainActionBar = activity.getActionBar(); if (mainActionBar != null) { mainActionBar.show(); if (_primaryCommands != null) { for (int i = 0; i < _primaryCommands.size(); i++) { menu.add(0, i, 0, ((AppBarButton)_primaryCommands.get(i)).label); menu.getItem(i).setShowAsAction(android.view.MenuItem.SHOW_AS_ACTION_ALWAYS); } } return; } throw new RuntimeException( "Cannot use TabBar on the main page in Android unless you set <preference name=\"ShowTitle\" value=\"true\"/> in config.xml."); //} //else { // ActionBar actionBar = ((ActionBarActivity)activity).getSupportActionBar(); // if (actionBar != null) { // actionBar.show(); // for (int i = 0; i < _primaryCommands.size(); i++) { // menu.add(0, i, 0, ((AppBarButton)_primaryCommands.get(i)).label); // menu.getItem(i).setShowAsAction(android.view.MenuItem.SHOW_AS_ACTION_ALWAYS); // } // return; // } // throw new RuntimeException( // "Unable to get the action bar from the current activity."); //} } public static void remove(android.app.Activity activity, android.view.Menu menu) { //if (!(activity instanceof ActionBarActivity)) { android.app.ActionBar mainActionBar = activity.getActionBar(); if (mainActionBar != null) { mainActionBar.hide(); mainActionBar.setTitle(null); menu.clear(); return; } //} //else { // ActionBar actionBar = ((ActionBarActivity)activity).getSupportActionBar(); // if (actionBar != null) { // actionBar.hide(); // actionBar.setTitle(null); // menu.clear(); // return; // } //} } /* public void onTabSelected(ActionBar.Tab tab, android.support.v4.app.FragmentTransaction fragmentTransaction) { } public void onTabUnselected(ActionBar.Tab tab, android.support.v4.app.FragmentTransaction fragmentTransaction) { } public void onTabReselected(ActionBar.Tab tab, android.support.v4.app.FragmentTransaction fragmentTransaction) { } */ // IHaveProperties.setProperty public void setProperty(String propertyName, Object propertyValue) { if (propertyName.endsWith(".PrimaryCommands")) { _primaryCommands = (ObservableCollection)propertyValue; } else if (propertyName.endsWith(".SecondaryCommands")) { _secondaryCommands = (ObservableCollection)propertyValue; } else if (!ViewGroupHelper.setProperty(this, propertyName, propertyValue)) { throw new RuntimeException("Unhandled property for " + this.getClass().getSimpleName() + ": " + propertyName); } } }
2,022
364
// AUTOGENERATED CODE. DO NOT MODIFY DIRECTLY! Instead, please modify the transformer/ConstantResultTransformationX.ftl file. // See the README in the module's src/template directory for details. package com.linkedin.dagli.transformer; import com.linkedin.dagli.annotation.equality.ValueEquality; import com.linkedin.dagli.preparer.PreparerContext; import com.linkedin.dagli.preparer.TrivialPreparer5; import com.linkedin.dagli.preparer.Preparer5; import com.linkedin.dagli.producer.Producer; import java.util.Objects; /** * A trivial implementation of a preparable transformer that ignores its inputs and provides a constant result. * * @param <A> the type of the first input * @param <B> the type of the second input * @param <C> the type of the third input * @param <D> the type of the fourth input * @param <E> the type of the fifth input * * @param <R> the type of the constant result that will be returned by the prepared transformer. */ @ValueEquality public final class ConstantResultTransformation5<A, B, C, D, E, R> extends AbstractPreparableTransformer5<A, B, C, D, E, R, ConstantResultTransformation5.Prepared<A, B, C, D, E, R>, ConstantResultTransformation5<A, B, C, D, E, R>> implements ConstantResultTransformation<R, ConstantResultTransformation5<A, B, C, D, E, R>> { private static final long serialVersionUID = 1; // the object instance that will be the constant result of this transformer private R _resultForNewData = null; private R _resultForPreparationData = null; /** * Creates a new constant result preparable transformer that will ignore its inputs and will always has a null result. */ public ConstantResultTransformation5() { } @Override protected boolean hasAlwaysConstantResult() { return true; } @Override protected boolean hasIdempotentPreparer() { return true; } /** * Returns a copy of this transformer that will always have the specified constant result object for both new and * preparation data. Note that this exact object will be returned every time the transformer is applied (and not a * clone). * * @param result the result that will always be returned by this transformer * @return a copy of this transformer that will always have the specified constant result */ public ConstantResultTransformation5<A, B, C, D, E, R> withResult(R result) { return clone(c -> { c._resultForNewData = result; c._resultForPreparationData = result; }); } /** * Returns a copy of this transformer that will always have the specified constant result object for preparation data. * Note that this exact object will be returned every time the transformer is applied (and not a clone). * * @param result the result that will always be returned by this transformer for preparation data * @return a copy of this transformer that will always have the specified constant result */ public ConstantResultTransformation5<A, B, C, D, E, R> withResultForPreparationData(R result) { return clone(c -> { c._resultForPreparationData = result; }); } /** * Returns a copy of this transformer that will always have the specified constant result object for new data. * Note that this exact object will be returned every time the transformer is applied (and not a clone). * * @param result the result that will always be returned by this transformer for new data * @return a copy of this transformer that will always have the specified constant result */ public ConstantResultTransformation5<A, B, C, D, E, R> withResultForNewData(R result) { return clone(c -> { c._resultForNewData = result; }); } /** * @return the object instance that will be produced by this transformer for all new examples. */ public R getResultForNewData() { return _resultForNewData; } /** * @return the object instance that will be produced by this transformer for all preparation examples. */ public R getResultForPreparationData() { return _resultForPreparationData; } @Override protected Preparer5<A, B, C, D, E, R, ConstantResultTransformation5.Prepared<A, B, C, D, E, R>> getPreparer( PreparerContext context) { ConstantResultTransformation5.Prepared<A, B, C, D, E, R> resultForPrepData = new ConstantResultTransformation5.Prepared<A, B, C, D, E, R>(_resultForPreparationData); return _resultForPreparationData == _resultForNewData ? new TrivialPreparer5<>(resultForPrepData) : new TrivialPreparer5<>(resultForPrepData, new ConstantResultTransformation5.Prepared<A, B, C, D, E, R>( _resultForNewData)); } @Override public ConstantResultTransformation5<A, B, C, D, E, R> withInput1(Producer<? extends A> inputA) { return super.withInput1(inputA); } @Override public ConstantResultTransformation5<A, B, C, D, E, R> withInput2(Producer<? extends B> inputB) { return super.withInput2(inputB); } @Override public ConstantResultTransformation5<A, B, C, D, E, R> withInput3(Producer<? extends C> inputC) { return super.withInput3(inputC); } @Override public ConstantResultTransformation5<A, B, C, D, E, R> withInput4(Producer<? extends D> inputD) { return super.withInput4(inputD); } @Override public ConstantResultTransformation5<A, B, C, D, E, R> withInput5(Producer<? extends E> inputE) { return super.withInput5(inputE); } @Override public String getName() { return "ConstantResultTransformation5(" + (Objects.equals(_resultForNewData, _resultForPreparationData) ? _resultForNewData : ("prep = " + _resultForPreparationData + ", new = " + _resultForNewData)) + ")"; } /** * A trivial implementation of a prepared transformer that ignores its inputs and provides a constant result. * * @param <A> the type of the first input * @param <B> the type of the second input * @param <C> the type of the third input * @param <D> the type of the fourth input * @param <E> the type of the fifth input * @param <R> the type of the constant result that will be returned by the transformer. */ @ValueEquality public static final class Prepared<A, B, C, D, E, R> extends AbstractPreparedTransformer5<A, B, C, D, E, R, ConstantResultTransformation5.Prepared<A, B, C, D, E, R>> implements ConstantResultTransformation.Prepared<R, ConstantResultTransformation5.Prepared<A, B, C, D, E, R>> { private static final long serialVersionUID = 1; // the object instance that will be the constant result of this transformer private R _result = null; @Override protected boolean hasAlwaysConstantResult() { return true; } /** * Creates a new trivial prepared transformer that will ignore its inputs and always have a null result. */ public Prepared() { } /** * Creates a new trivial prepared transformer that will ignore its inputs and always have the given result. * * @param result the result to be "produced" */ public Prepared(R result) { _result = result; } /** * Returns a copy of this transformer that will always have the specified constant result object. Note that this * exact result object will be returned every time the transformer is applied (and not a clone). * * @param result the result that will always be returned when applying the transformer * @return a copy of this transformer that will always have the specified constant result */ public ConstantResultTransformation5.Prepared<A, B, C, D, E, R> withResult(R result) { return clone(c -> c._result = result); } /** * Gets the object instance that will be produced by this transformer for all inputs. * * @return the object instance that will be produced by this transformer for all inputs. */ public R getResult() { return _result; } @Override public R apply(A value1, B value2, C value3, D value4, E value5) { return _result; } @Override public ConstantResultTransformation5.Prepared<A, B, C, D, E, R> withInput1(Producer<? extends A> inputA) { return super.withInput1(inputA); } @Override public ConstantResultTransformation5.Prepared<A, B, C, D, E, R> withInput2(Producer<? extends B> inputB) { return super.withInput2(inputB); } @Override public ConstantResultTransformation5.Prepared<A, B, C, D, E, R> withInput3(Producer<? extends C> inputC) { return super.withInput3(inputC); } @Override public ConstantResultTransformation5.Prepared<A, B, C, D, E, R> withInput4(Producer<? extends D> inputD) { return super.withInput4(inputD); } @Override public ConstantResultTransformation5.Prepared<A, B, C, D, E, R> withInput5(Producer<? extends E> inputE) { return super.withInput5(inputE); } @Override public String getName() { return "ConstantResultTransformation5.Prepared(" + _result + ")"; } } }
2,924
471
DELETE_HEADER = "Delete(Y/N)"
15
1,674
from .glitch_this import ImageGlitcher
11
677
<filename>Core/inspector/inspector_css_agent.h #ifndef LYNX_INSPECTOR_INSPECTOR_CSS_AGENT_H_ #define LYNX_INSPECTOR_INSPECTOR_CSS_AGENT_H_ #include "inspector/inspector_agent_base.h" #include <unordered_map> #include "render/render_object.h" namespace jscore { class Runtime; } namespace debug { class InspectorCSSAgent : public InspectorAgentBase { public: InspectorCSSAgent(jscore::Runtime* runtime); virtual ~InspectorCSSAgent(); virtual Json::Value CallMethod(Json::Value& content); private: typedef Json::Value (InspectorCSSAgent::*CSSAgentMethod)( const Json::Value& params); Json::Value GetMatchedStylesForNode(const Json::Value& params); Json::Value GetComputedStyleForNode(const Json::Value& params); Json::Value GetInlineStylesForNode(const Json::Value& params); jscore::Runtime* runtime_; std::map<std::string, CSSAgentMethod> functions_map_; }; } // namespace debug #endif
333
852
#ifndef MTDALIGNMENTERROREXTENDEDRCD_H #define MTDALIGNMENTERROREXTENDEDRCD_H #include "FWCore/Framework/interface/EventSetupRecordImplementation.h" class MTDAlignmentErrorExtendedRcd : public edm::eventsetup::EventSetupRecordImplementation<MTDAlignmentErrorExtendedRcd> {}; #endif
100
575
<gh_stars>100-1000 // Copyright 2018 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chromeos/services/secure_channel/ble_initiator_operation.h" #include "base/bind.h" #include "base/macros.h" #include "base/memory/ptr_util.h" #include "chromeos/services/secure_channel/authenticated_channel.h" #include "chromeos/services/secure_channel/ble_connection_manager.h" namespace chromeos { namespace secure_channel { // static BleInitiatorOperation::Factory* BleInitiatorOperation::Factory::test_factory_ = nullptr; // static std::unique_ptr<ConnectToDeviceOperation<BleInitiatorFailureType>> BleInitiatorOperation::Factory::Create( BleConnectionManager* ble_connection_manager, ConnectToDeviceOperation<BleInitiatorFailureType>::ConnectionSuccessCallback success_callback, const ConnectToDeviceOperation< BleInitiatorFailureType>::ConnectionFailedCallback& failure_callback, const DeviceIdPair& device_id_pair, ConnectionPriority connection_priority, scoped_refptr<base::TaskRunner> task_runner) { if (test_factory_) { return test_factory_->CreateInstance( ble_connection_manager, std::move(success_callback), std::move(failure_callback), device_id_pair, connection_priority, std::move(task_runner)); } return base::WrapUnique(new BleInitiatorOperation( ble_connection_manager, std::move(success_callback), std::move(failure_callback), device_id_pair, connection_priority, std::move(task_runner))); } // static void BleInitiatorOperation::Factory::SetFactoryForTesting( Factory* test_factory) { test_factory_ = test_factory; } BleInitiatorOperation::Factory::~Factory() = default; BleInitiatorOperation::BleInitiatorOperation( BleConnectionManager* ble_connection_manager, ConnectToDeviceOperation<BleInitiatorFailureType>::ConnectionSuccessCallback success_callback, const ConnectToDeviceOperation< BleInitiatorFailureType>::ConnectionFailedCallback& failure_callback, const DeviceIdPair& device_id_pair, ConnectionPriority connection_priority, scoped_refptr<base::TaskRunner> task_runner) : ConnectToDeviceOperationBase<BleInitiatorFailureType>( std::move(success_callback), std::move(failure_callback), device_id_pair, connection_priority, task_runner), ble_connection_manager_(ble_connection_manager) {} BleInitiatorOperation::~BleInitiatorOperation() = default; void BleInitiatorOperation::PerformAttemptConnectionToDevice( ConnectionPriority connection_priority) { is_attempt_active_ = true; ble_connection_manager_->AttemptBleInitiatorConnection( device_id_pair(), connection_priority, base::BindOnce(&BleInitiatorOperation::OnSuccessfulConnection, weak_ptr_factory_.GetWeakPtr()), base::BindRepeating(&BleInitiatorOperation::OnConnectionFailure, weak_ptr_factory_.GetWeakPtr())); } void BleInitiatorOperation::PerformCancellation() { is_attempt_active_ = false; ble_connection_manager_->CancelBleInitiatorConnectionAttempt( device_id_pair()); } void BleInitiatorOperation::PerformUpdateConnectionPriority( ConnectionPriority connection_priority) { ble_connection_manager_->UpdateBleInitiatorConnectionPriority( device_id_pair(), connection_priority); } void BleInitiatorOperation::OnSuccessfulConnection( std::unique_ptr<AuthenticatedChannel> authenticated_channel) { is_attempt_active_ = false; OnSuccessfulConnectionAttempt(std::move(authenticated_channel)); } void BleInitiatorOperation::OnConnectionFailure( BleInitiatorFailureType failure_type) { OnFailedConnectionAttempt(failure_type); } } // namespace secure_channel } // namespace chromeos
1,310
589
<filename>inspectit.shared.all/src/main/java/rocks/inspectit/shared/all/instrumentation/config/impl/MethodSensorTypeConfig.java package rocks.inspectit.shared.all.instrumentation.config.impl; import org.apache.commons.collections.MapUtils; import rocks.inspectit.shared.all.instrumentation.config.PriorityEnum; /** * Container for the values of a sensor type configuration. stores all the values defined in a * config file for later access. * * @author <NAME> */ public class MethodSensorTypeConfig extends AbstractSensorTypeConfig { /** * The name of the sensor type. */ private String name; /** * The priority of this sensor type. The default is NORMAL. */ private PriorityEnum priority = PriorityEnum.NORMAL; /** * Returns the unique name of the sensor type. * * @return The name of the sensor type. */ public String getName() { return name; } /** * Sets the unique name of the sensor type. * * @param name * The sensor name. */ public void setName(final String name) { this.name = name; } /** * Returns the priority of this sensor type. Important for time or memory sensors. Can return * one of:<br> * {@link PriorityEnum#MAX}<br> * {@link PriorityEnum#HIGH}<br> * {@link PriorityEnum#NORMAL}<br> * {@link PriorityEnum#LOW}<br> * {@link PriorityEnum#MIN}<br> * * @return The priority of the sensor type. */ public PriorityEnum getPriority() { return priority; } /** * Sets the priority of this sensor type. * * @param priority * The priority. */ public void setPriority(PriorityEnum priority) { this.priority = priority; } /** * {@inheritDoc} */ @Override public String toString() { return getId() + " :: name: " + name + " (" + priority + ")"; } /** * Returns if jRebel property is activated on the sensor. * * @return Returns if jRebel property is activated on the sensor. */ public boolean isJRebelActive() { if (MapUtils.isNotEmpty(getParameters())) { Object jRebelValue = getParameters().get("jRebel"); if ("true".equals(jRebelValue)) { return true; } } return false; } }
744
521
<gh_stars>100-1000 /* $Id: utf-8-case.cpp $ */ /** @file * IPRT - UTF-8 Case Sensitivity and Folding, Part 1. */ /* * Copyright (C) 2006-2017 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) as published by the Free Software * Foundation, in version 2 as it comes in the "COPYING" file of the * VirtualBox OSE distribution. VirtualBox OSE is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. * * The contents of this file may alternatively be used under the terms * of the Common Development and Distribution License Version 1.0 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the * VirtualBox OSE distribution, in which case the provisions of the * CDDL are applicable instead of those of the GPL. * * You may elect to license modified versions of this file under the * terms and conditions of either the GPL or the CDDL or both. */ /********************************************************************************************************************************* * Header Files * *********************************************************************************************************************************/ #include <iprt/string.h> #include "internal/iprt.h" #include <iprt/uni.h> #include <iprt/alloc.h> #include <iprt/assert.h> #include <iprt/err.h> #include "internal/string.h" /** * Performs a case insensitive string compare between two UTF-8 strings. * * This is a simplified compare, as only the simplified lower/upper case folding * specified by the unicode specs are used. It does not consider character pairs * as they are used in some languages, just simple upper & lower case compares. * * The result is the difference between the mismatching codepoints after they * both have been lower cased. * * If the string encoding is invalid the function will assert (strict builds) * and use RTStrCmp for the remainder of the string. * * @returns < 0 if the first string less than the second string. * @returns 0 if the first string identical to the second string. * @returns > 0 if the first string greater than the second string. * @param psz1 First UTF-8 string. Null is allowed. * @param psz2 Second UTF-8 string. Null is allowed. */ RTDECL(int) RTStrICmp(const char *psz1, const char *psz2) { if (psz1 == psz2) return 0; if (!psz1) return -1; if (!psz2) return 1; const char *pszStart1 = psz1; for (;;) { /* Get the codepoints */ RTUNICP uc1; int rc = RTStrGetCpEx(&psz1, &uc1); if (RT_FAILURE(rc)) { AssertRC(rc); psz1--; break; } RTUNICP uc2; rc = RTStrGetCpEx(&psz2, &uc2); if (RT_FAILURE(rc)) { AssertRC(rc); psz2--; psz1 = RTStrPrevCp(pszStart1, psz1); break; } /* compare */ int iDiff = uc1 - uc2; if (iDiff) { iDiff = RTUniCpToUpper(uc1) != RTUniCpToUpper(uc2); if (iDiff) { iDiff = RTUniCpToLower(uc1) - RTUniCpToLower(uc2); /* lower case diff last! */ if (iDiff) return iDiff; } } /* hit the terminator? */ if (!uc1) return 0; } /* Hit some bad encoding, continue in case sensitive mode. */ return RTStrCmp(psz1, psz2); } RT_EXPORT_SYMBOL(RTStrICmp); /** * Performs a case insensitive string compare between two UTF-8 strings, given a * maximum string length. * * This is a simplified compare, as only the simplified lower/upper case folding * specified by the unicode specs are used. It does not consider character pairs * as they are used in some languages, just simple upper & lower case compares. * * The result is the difference between the mismatching codepoints after they * both have been lower cased. * * If the string encoding is invalid the function will assert (strict builds) * and use RTStrCmp for the remainder of the string. * * @returns < 0 if the first string less than the second string. * @returns 0 if the first string identical to the second string. * @returns > 0 if the first string greater than the second string. * @param psz1 First UTF-8 string. Null is allowed. * @param psz2 Second UTF-8 string. Null is allowed. * @param cchMax Maximum string length */ RTDECL(int) RTStrNICmp(const char *psz1, const char *psz2, size_t cchMax) { if (cchMax == 0) return 0; if (psz1 == psz2) return 0; if (!psz1) return -1; if (!psz2) return 1; for (;;) { /* Get the codepoints */ RTUNICP uc1; size_t cchMax2 = cchMax; int rc = RTStrGetCpNEx(&psz1, &cchMax, &uc1); if (RT_FAILURE(rc)) { AssertRC(rc); psz1--; cchMax++; break; } RTUNICP uc2; rc = RTStrGetCpNEx(&psz2, &cchMax2, &uc2); if (RT_FAILURE(rc)) { AssertRC(rc); psz2--; psz1 -= (cchMax - cchMax2 + 1); /* This can't overflow, can it? */ cchMax = cchMax2 + 1; break; } /* compare */ int iDiff = uc1 - uc2; if (iDiff) { iDiff = RTUniCpToUpper(uc1) != RTUniCpToUpper(uc2); if (iDiff) { iDiff = RTUniCpToLower(uc1) - RTUniCpToLower(uc2); /* lower case diff last! */ if (iDiff) return iDiff; } } /* hit the terminator? */ if (!uc1 || cchMax == 0) return 0; } /* Hit some bad encoding, continue in case insensitive mode. */ return RTStrNCmp(psz1, psz2, cchMax); } RT_EXPORT_SYMBOL(RTStrNICmp); RTDECL(char *) RTStrIStr(const char *pszHaystack, const char *pszNeedle) { /* Any NULL strings means NULL return. (In the RTStrCmp tradition.) */ if (!pszHaystack) return NULL; if (!pszNeedle) return NULL; /* The empty string matches everything. */ if (!*pszNeedle) return (char *)pszHaystack; /* * The search strategy is to pick out the first char of the needle, fold it, * and match it against the haystack code point by code point. When encountering * a matching code point we use RTStrNICmp for the remainder (if any) of the needle. */ const char * const pszNeedleStart = pszNeedle; RTUNICP Cp0; RTStrGetCpEx(&pszNeedle, &Cp0); /* pszNeedle is advanced one code point. */ size_t const cchNeedle = strlen(pszNeedle); size_t const cchNeedleCp0= pszNeedle - pszNeedleStart; RTUNICP const Cp0Lower = RTUniCpToLower(Cp0); RTUNICP const Cp0Upper = RTUniCpToUpper(Cp0); if ( Cp0Lower == Cp0Upper && Cp0Lower == Cp0) { /* Cp0 is not a case sensitive char. */ for (;;) { RTUNICP Cp; RTStrGetCpEx(&pszHaystack, &Cp); if (!Cp) break; if ( Cp == Cp0 && !RTStrNICmp(pszHaystack, pszNeedle, cchNeedle)) return (char *)pszHaystack - cchNeedleCp0; } } else if ( Cp0Lower == Cp0 || Cp0Upper != Cp0) { /* Cp0 is case sensitive */ for (;;) { RTUNICP Cp; RTStrGetCpEx(&pszHaystack, &Cp); if (!Cp) break; if ( ( Cp == Cp0Upper || Cp == Cp0Lower) && !RTStrNICmp(pszHaystack, pszNeedle, cchNeedle)) return (char *)pszHaystack - cchNeedleCp0; } } else { /* Cp0 is case sensitive and folds to two difference chars. (paranoia) */ for (;;) { RTUNICP Cp; RTStrGetCpEx(&pszHaystack, &Cp); if (!Cp) break; if ( ( Cp == Cp0 || Cp == Cp0Upper || Cp == Cp0Lower) && !RTStrNICmp(pszHaystack, pszNeedle, cchNeedle)) return (char *)pszHaystack - cchNeedleCp0; } } return NULL; } RT_EXPORT_SYMBOL(RTStrIStr); RTDECL(char *) RTStrToLower(char *psz) { /* * Loop the code points in the string, converting them one by one. * * ASSUMES that the folded code points have an encoding that is equal or * shorter than the original (this is presently correct). */ const char *pszSrc = psz; char *pszDst = psz; RTUNICP uc; do { int rc = RTStrGetCpEx(&pszSrc, &uc); if (RT_SUCCESS(rc)) { RTUNICP uc2 = RTUniCpToLower(uc); if (RT_LIKELY( uc2 == uc || RTUniCpCalcUtf8Len(uc2) == RTUniCpCalcUtf8Len(uc))) pszDst = RTStrPutCp(pszDst, uc2); else pszDst = RTStrPutCp(pszDst, uc); } else { /* bad encoding, just copy it quietly (uc == RTUNICP_INVALID (!= 0)). */ AssertRC(rc); *pszDst++ = pszSrc[-1]; } Assert((uintptr_t)pszDst <= (uintptr_t)pszSrc); } while (uc != 0); return psz; } RT_EXPORT_SYMBOL(RTStrToLower); RTDECL(char *) RTStrToUpper(char *psz) { /* * Loop the code points in the string, converting them one by one. * * ASSUMES that the folded code points have an encoding that is equal or * shorter than the original (this is presently correct). */ const char *pszSrc = psz; char *pszDst = psz; RTUNICP uc; do { int rc = RTStrGetCpEx(&pszSrc, &uc); if (RT_SUCCESS(rc)) { RTUNICP uc2 = RTUniCpToUpper(uc); if (RT_LIKELY( uc2 == uc || RTUniCpCalcUtf8Len(uc2) == RTUniCpCalcUtf8Len(uc))) pszDst = RTStrPutCp(pszDst, uc2); else pszDst = RTStrPutCp(pszDst, uc); } else { /* bad encoding, just copy it quietly (uc == RTUNICP_INVALID (!= 0)). */ AssertRC(rc); *pszDst++ = pszSrc[-1]; } Assert((uintptr_t)pszDst <= (uintptr_t)pszSrc); } while (uc != 0); return psz; } RT_EXPORT_SYMBOL(RTStrToUpper);
5,188
303
<gh_stars>100-1000 {"id":1147,"line-1":"Doha","line-2":"Qatar","attribution":"©2014 Cnes/Spot Image, DigitalGlobe","url":"https://www.google.com/maps/@25.367760,51.557078,16z/data=!3m1!1e3"}
83
652
<reponame>prafullp/cassandra-lucene-index /* * Copyright (C) 2014 Stratio (http://stratio.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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.stratio.cassandra.lucene.builder.index.schema.mapping; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; /** * A {@link Mapper} to map geographical points. * * @author <NAME> {@literal <<EMAIL>>} */ public class GeoPointMapper extends Mapper<GeoPointMapper> { /** The name of the column containing the latitude. */ @JsonProperty("latitude") final String latitude; /** The name of the column containing the longitude. */ @JsonProperty("longitude") final String longitude; /** The maximum number of levels in the geohash search tree. */ @JsonProperty("max_levels") Integer maxLevels; /** * Builds a new {@code GeoPointMapper}. * * @param latitude the name of the column containing the latitude * @param longitude the name of the column containing the longitude */ @JsonCreator public GeoPointMapper(@JsonProperty("latitude") String latitude, @JsonProperty("longitude") String longitude) { this.latitude = latitude; this.longitude = longitude; } /** * Sets the maximum number of levels in the geohash search tree. False positives will be discarded using stored doc * values, so a low value doesn't mean precision lost. High values will produce few false positives to be * post-filtered, at the expense of creating more terms in the search index. * * @param maxLevels the maximum number of levels in the geohash search tree * @return this with the specified max number of levels */ public GeoPointMapper maxLevels(Integer maxLevels) { this.maxLevels = maxLevels; return this; } }
757
462
<gh_stars>100-1000 #!/usr/bin/env python ## # Copyright (c) 2010-2017 Apple Inc. 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 agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ## from __future__ import print_function # Suppress warning that occurs on Linux import sys if sys.platform.startswith("linux"): from Crypto.pct_warnings import PowmInsecureWarning import warnings warnings.simplefilter("ignore", PowmInsecureWarning) """ This tool gets and sets Calendar Server configuration keys """ from getopt import getopt, GetoptError from itertools import chain import os import plistlib import signal import subprocess import xml from plistlib import readPlistFromString, writePlistToString from twistedcaldav.config import config, ConfigDict, ConfigurationError, mergeData from twistedcaldav.stdconfig import DEFAULT_CONFIG_FILE from twisted.python.filepath import FilePath WRITABLE_CONFIG_KEYS = [ "AccountingCategories", "Authentication.Basic.AllowedOverWireUnencrypted", "Authentication.Basic.Enabled", "Authentication.Digest.AllowedOverWireUnencrypted", "Authentication.Digest.Enabled", "Authentication.Kerberos.AllowedOverWireUnencrypted", "Authentication.Kerberos.Enabled", "Authentication.Wiki.Enabled", "BehindTLSProxy", "DefaultLogLevel", "DirectoryAddressBook.params.queryPeopleRecords", "DirectoryAddressBook.params.queryUserRecords", "EnableCalDAV", "EnableCardDAV", "EnableSACLs", "EnableSearchAddressBook", "EnableSSL", "HTTPPort", "LogLevels", "Notifications.Services.APNS.Enabled", "RedirectHTTPToHTTPS", "Scheduling.iMIP.Enabled", "Scheduling.iMIP.Receiving.Port", "Scheduling.iMIP.Receiving.Server", "Scheduling.iMIP.Receiving.Type", "Scheduling.iMIP.Receiving.Username", "Scheduling.iMIP.Receiving.UseSSL", "Scheduling.iMIP.Sending.Address", "Scheduling.iMIP.Sending.Port", "Scheduling.iMIP.Sending.Server", "Scheduling.iMIP.Sending.Username", "Scheduling.iMIP.Sending.UseSSL", "ServerHostName", "SSLAuthorityChain", "SSLCertificate", "SSLPort", "SSLPrivateKey", "SSLKeychainIdentity", ] READONLY_CONFIG_KEYS = [ "ServerRoot", ] ACCOUNTING_CATEGORIES = { "http": ("HTTP",), "itip": ("iTIP", "iTIP-VFREEBUSY",), "implicit": ("Implicit Errors",), "autoscheduling": ("AutoScheduling",), "ischedule": ("iSchedule",), "migration": ("migration",), } LOGGING_CATEGORIES = { "directory": ("twext^who", "txdav^who",), "imip": ("txdav^caldav^datastore^scheduling^imip",), } def usage(e=None): if e: print(e) print("") name = os.path.basename(sys.argv[0]) print("usage: %s [options] config_key" % (name,)) print("") print("Print the value of the given config key.") print("options:") print(" -a --accounting: Specify accounting categories (combinations of http, itip, implicit, autoscheduling, ischedule, migration, or off)") print(" -h --help: print this help and exit") print(" -f --config: Specify caldavd.plist configuration path") print(" -l --logging: Specify logging categories (combinations of directory, imip, or default)") print(" -r --restart: Restart the calendar service") print(" --start: Start the calendar service and agent") print(" --stop: Stop the calendar service and agent") print(" -w --writeconfig: Specify caldavd.plist configuration path for writing") if e: sys.exit(64) else: sys.exit(0) def runAsRootCheck(): """ If we're running in Server.app context and are not running as root, exit. """ if os.path.abspath(__file__).startswith("/Applications/Server.app/"): if os.getuid() != 0: print("Must be run as root") sys.exit(1) def main(): runAsRootCheck() try: (optargs, args) = getopt( sys.argv[1:], "hf:rw:a:l:", [ "help", "config=", "writeconfig=", "restart", "start", "stop", "accounting=", "logging=", ], ) except GetoptError, e: usage(e) configFileName = DEFAULT_CONFIG_FILE writeConfigFileName = "" accountingCategories = None loggingCategories = None doStop = False doStart = False doRestart = False for opt, arg in optargs: if opt in ("-h", "--help"): usage() elif opt in ("-f", "--config"): configFileName = arg elif opt in ("-w", "--writeconfig"): writeConfigFileName = arg elif opt in ("-a", "--accounting"): accountingCategories = arg.split(",") elif opt in ("-l", "--logging"): loggingCategories = arg.split(",") if opt == "--stop": doStop = True if opt == "--start": doStart = True if opt in ("-r", "--restart"): doRestart = True try: config.load(configFileName) except ConfigurationError, e: sys.stdout.write("%s\n" % (e,)) sys.exit(1) if not writeConfigFileName: # If --writeconfig was not passed, use WritableConfigFile from # main plist. If that's an empty string, writes will happen to # the main file. writeConfigFileName = config.WritableConfigFile if not writeConfigFileName: writeConfigFileName = configFileName if doStop: setServiceState("org.calendarserver.agent", "disable") setServiceState("org.calendarserver.calendarserver", "disable") setEnabled(False) if doStart: setServiceState("org.calendarserver.agent", "enable") setServiceState("org.calendarserver.calendarserver", "enable") setEnabled(True) if doStart or doStop: setReverseProxies() sys.exit(0) if doRestart: restartService(config.PIDFile) sys.exit(0) writable = WritableConfig(config, writeConfigFileName) writable.read() # Convert logging categories to actual config key changes if loggingCategories is not None: args = ["LogLevels="] if loggingCategories != ["default"]: for cat in loggingCategories: if cat in LOGGING_CATEGORIES: for moduleName in LOGGING_CATEGORIES[cat]: args.append("LogLevels.{}=debug".format(moduleName)) # Convert accounting categories to actual config key changes if accountingCategories is not None: args = ["AccountingCategories="] if accountingCategories != ["off"]: for cat in accountingCategories: if cat in ACCOUNTING_CATEGORIES: for key in ACCOUNTING_CATEGORIES[cat]: args.append("AccountingCategories.{}=True".format(key)) processArgs(writable, args) def setServiceState(service, state): """ Invoke serverctl to enable/disable a service """ SERVERCTL = "/Applications/Server.app/Contents/ServerRoot/usr/sbin/serverctl" child = subprocess.Popen( args=[SERVERCTL, state, "service={}".format(service)], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, ) _ignore_output, error = child.communicate() if child.returncode: sys.stdout.write( "Error from serverctl: %d, %s" % (child.returncode, error) ) def setEnabled(enabled): command = { "command": "writeConfig", "Values": { "EnableCalDAV": enabled, "EnableCardDAV": enabled, }, } runner = Runner([command], quiet=True) runner.run() def setReverseProxies(): """ Invoke calendarserver_reverse_proxies """ SERVERCTL = "/Applications/Server.app/Contents/ServerRoot/usr/libexec/calendarserver_reverse_proxies" child = subprocess.Popen( args=[SERVERCTL, ], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, ) child.communicate() def processArgs(writable, args, restart=True): """ Perform the read/write operations requested in the command line args. If there are no args, stdin is read, and plist-formatted commands are processed from there. @param writable: the WritableConfig @param args: a list of utf-8 encoded strings @param restart: whether to restart the calendar server after making a config change. """ if args: for configKey in args: # args come in as utf-8 encoded strings configKey = configKey.decode("utf-8") if "=" in configKey: # This is an assignment configKey, stringValue = configKey.split("=") if stringValue: value = writable.convertToValue(stringValue) valueDict = setKeyPath({}, configKey, value) writable.set(valueDict) else: writable.delete(configKey) else: # This is a read c = config for subKey in configKey.split("."): c = c.get(subKey, None) if c is None: sys.stderr.write("No such config key: %s\n" % configKey) break sys.stdout.write("%s=%s\n" % (configKey.encode("utf-8"), c)) writable.save(restart=restart) else: # Read plist commands from stdin rawInput = sys.stdin.read() try: plist = readPlistFromString(rawInput) # Note: values in plist will already be unicode except xml.parsers.expat.ExpatError, e: # @UndefinedVariable respondWithError(str(e)) return # If the plist is an array, each element of the array is a separate # command dictionary. if isinstance(plist, list): commands = plist else: commands = [plist] runner = Runner(commands) runner.run() class Runner(object): """ A class which carries out commands, which are plist strings containing dictionaries with a "command" key, plus command-specific data. """ def __init__(self, commands, quiet=False): """ @param commands: the commands to run @type commands: list of plist strings """ self.commands = commands self.quiet = quiet def validate(self): """ Validate all the commands by making sure this class implements all the command keys. @return: True if all commands are valid, False otherwise """ # Make sure commands are valid for command in self.commands: if 'command' not in command: respondWithError("'command' missing from plist") return False commandName = command['command'] methodName = "command_%s" % (commandName,) if not hasattr(self, methodName): respondWithError("Unknown command '%s'" % (commandName,)) return False return True def run(self): """ Find the appropriate method for each command and call them. """ try: for command in self.commands: commandName = command['command'] methodName = "command_%s" % (commandName,) if hasattr(self, methodName): getattr(self, methodName)(command) else: respondWithError("Unknown command '%s'" % (commandName,)) except Exception, e: respondWithError("Command failed: '%s'" % (str(e),)) raise def command_readConfig(self, command): """ Return current configuration @param command: the dictionary parsed from the plist read from stdin @type command: C{dict} """ result = {} for keyPath in chain(WRITABLE_CONFIG_KEYS, READONLY_CONFIG_KEYS): value = getKeyPath(config, keyPath) if value is not None: # Note: config contains utf-8 encoded strings, but plistlib # wants unicode, so decode here: if isinstance(value, str): value = value.decode("utf-8") setKeyPath(result, keyPath, value) respond(command, result) def command_writeConfig(self, command): """ Write config to secondary, writable plist @param command: the dictionary parsed from the plist read from stdin @type command: C{dict} """ writable = WritableConfig(config, config.WritableConfigFile) writable.read() valuesToWrite = command.get("Values", {}) # Note: values are unicode if they contain non-ascii for keyPath, value in flattenDictionary(valuesToWrite): if keyPath in WRITABLE_CONFIG_KEYS: writable.set(setKeyPath(ConfigDict(), keyPath, value)) try: writable.save(restart=False) except Exception, e: respond(command, {"error": str(e)}) else: config.reload() if not self.quiet: self.command_readConfig(command) def setKeyPath(parent, keyPath, value): """ Allows the setting of arbitrary nested dictionary keys via a single dot-separated string. For example, setKeyPath(parent, "foo.bar.baz", "xyzzy") would create any intermediate missing directories (or whatever class parent is, such as ConfigDict) so that the following structure results: parent = { "foo" : { "bar" : { "baz" : "xyzzy } } } @param parent: the object to modify @type parent: any dict-like object @param keyPath: a dot-delimited string specifying the path of keys to traverse @type keyPath: C{str} @param value: the value to set @type value: c{object} @return: parent """ original = parent # Embedded ^ should be replaced by . # That way, we can still use . as key path separator even though sometimes # a key part wants to have a . in it (such as a LogLevels module). # For example: LogLevels.twext^who, will get converted to a "LogLevels" # dict containing a the key "twext.who" parts = [p.replace("^", ".") for p in keyPath.split(".")] for part in parts[:-1]: child = parent.get(part, None) if child is None: parent[part] = child = parent.__class__() parent = child parent[parts[-1]] = value return original def getKeyPath(parent, keyPath): """ Allows the getting of arbitrary nested dictionary keys via a single dot-separated string. For example, getKeyPath(parent, "foo.bar.baz") would fetch parent["foo"]["bar"]["baz"]. If any of the keys don't exist, None is returned instead. @param parent: the object to traverse @type parent: any dict-like object @param keyPath: a dot-delimited string specifying the path of keys to traverse @type keyPath: C{str} @return: the value at keyPath """ parts = keyPath.split(".") for part in parts[:-1]: child = parent.get(part, None) if child is None: return None parent = child return parent.get(parts[-1], None) def flattenDictionary(dictionary, current=""): """ Returns a generator of (keyPath, value) tuples for the given dictionary, where each keyPath is a dot-separated string representing the complete path to a nested key. @param dictionary: the dict object to traverse @type dictionary: C{dict} @param current: do not use; used internally for recursion @type current: C{str} @return: generator of (keyPath, value) tuples """ for key, value in dictionary.iteritems(): if isinstance(value, dict): for result in flattenDictionary(value, current + key + "."): yield result else: yield (current + key, value) def restartService(pidFilename): """ Given the path to a PID file, sends a HUP signal to the contained pid in order to cause calendar server to restart. @param pidFilename: an absolute path to a PID file @type pidFilename: C{str} """ if os.path.exists(pidFilename): with open(pidFilename, "r") as pidFile: pid = pidFile.read().strip() try: pid = int(pid) except ValueError: return try: os.kill(pid, signal.SIGHUP) except OSError: pass class WritableConfig(object): """ A wrapper around a Config object which allows writing of values. The idea is a deployment could have a master plist which doesn't change, and have it include a plist file which does. This class facilitates writing to that included plist. """ def __init__(self, wrappedConfig, fileName): """ @param wrappedConfig: the Config object to read from @type wrappedConfig: C{Config} @param fileName: the full path to the modifiable plist @type fileName: C{str} """ self.config = wrappedConfig self.fileName = fileName self.changes = None self.currentConfigSubset = ConfigDict() self.dirty = False def set(self, data): """ Merges data into a ConfigDict of changes intended to be saved to disk when save( ) is called. @param data: a dict containing new values @type data: C{dict} """ if not isinstance(data, ConfigDict): data = ConfigDict(mapping=data) mergeData(self.currentConfigSubset, data) self.dirty = True def delete(self, key): """ Deletes the specified key @param key: the key to delete @type key: C{str} """ try: del self.currentConfigSubset[key] self.dirty = True except: pass def read(self): """ Reads in the data contained in the writable plist file. @return: C{ConfigDict} """ if os.path.exists(self.fileName): self.currentConfigSubset = ConfigDict(mapping=plistlib.readPlist(self.fileName)) else: self.currentConfigSubset = ConfigDict() def toString(self): return plistlib.writePlistToString(self.currentConfigSubset) def save(self, restart=False): """ Writes any outstanding changes to the writable plist file. Optionally restart calendar server. @param restart: whether to restart the calendar server. @type restart: C{bool} """ if self.dirty: content = writePlistToString(self.currentConfigSubset) fp = FilePath(self.fileName) fp.setContent(content) self.dirty = False if restart: restartService(self.config.PIDFile) @classmethod def convertToValue(cls, string): """ Inspect string and convert the value into an appropriate Python data type TODO: change this to look at actual types defined within stdconfig """ if "." in string: try: value = float(string) except ValueError: value = string else: try: value = int(string) except ValueError: if string == "True": value = True elif string == "False": value = False else: value = string return value def respond(command, result): sys.stdout.write(writePlistToString({'command': command['command'], 'result': result})) def respondWithError(msg, status=1): sys.stdout.write(writePlistToString({'error': msg, }))
8,757
780
package com.codeborne.selenide; import com.codeborne.selenide.impl.CollectionSource; import org.openqa.selenium.By; import org.openqa.selenium.WebElement; import javax.annotation.CheckReturnValue; import javax.annotation.Nonnull; import javax.annotation.ParametersAreNonnullByDefault; import static java.util.Arrays.asList; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; @ParametersAreNonnullByDefault public class Mocks { @Nonnull @CheckReturnValue public static SelenideElement mockElement(String text) { return mockElement("div", text); } @Nonnull @CheckReturnValue public static SelenideElement mockElement(String tag, String text) { SelenideElement element = mock(SelenideElement.class); when(element.getTagName()).thenReturn(tag); when(element.getText()).thenReturn(text); return element; } @Nonnull @CheckReturnValue public static WebElement elementWithAttribute(String name, String value) { WebElement element = mock(WebElement.class); when(element.getAttribute(name)).thenReturn(value); return element; } @Nonnull @CheckReturnValue public static SelenideElement mockSelect(WebElement... options) { SelenideElement select = mockElement("select", ""); when(select.isSelected()).thenReturn(true); when(select.findElements(By.tagName("option"))).thenReturn(asList(options)); return select; } @Nonnull @CheckReturnValue public static WebElement option(String text) { return option(text, false); } @Nonnull @CheckReturnValue public static WebElement option(String text, boolean selected) { WebElement option = mockElement("option", text); when(option.isSelected()).thenReturn(selected); return option; } @Nonnull @CheckReturnValue public static WebElement mockWebElement(String tag, String text) { WebElement element = mock(WebElement.class); when(element.getTagName()).thenReturn(tag); when(element.getText()).thenReturn(text); when(element.isDisplayed()).thenReturn(true); return element; } @Nonnull @CheckReturnValue public static CollectionSource mockCollection(String description, WebElement... elements) { Driver driver = mock(Driver.class); when(driver.config()).thenReturn(new SelenideConfig()); CollectionSource collection = mock(CollectionSource.class); when(collection.driver()).thenReturn(driver); when(collection.description()).thenReturn(description); when(collection.getElements()).thenReturn(asList(elements)); for (int i = 0; i < elements.length; i++) { when(collection.getElement(i)).thenReturn(elements[i]); } return collection; } }
864
533
<reponame>baajur/Anakin #include "saber/funcs/impl/x86/saber_affine_channel.h" #include "saber/funcs/impl/x86/x86_utils.h" #include <cmath> namespace anakin { namespace saber { /** * @brief formula: Input 0 X (NCHW or NHWC). * where,Input 1 Scale (C) * Input 2 Bias (C) * Output = Scale * X + Bias. * */ template <DataType OpDtype> SaberStatus SaberAffineChannel<X86, OpDtype>::dispatch(\ const std::vector<Tensor<X86> *>& inputs, \ std::vector<Tensor<X86> *>& outputs, \ AffineChannelParam<X86>& param) { outputs[0]->reshape(outputs[0]->valid_shape()); const OpDataType* src = (const OpDataType*)inputs[0]->data(); const OpDataType* scale = (const OpDataType*)param.weight()->data(); const OpDataType* bias = (const OpDataType*)param.bias()->data(); OpDataType* dst = (OpDataType*)outputs[0]->mutable_data(); int channel_idx = inputs[0]->channel_index(); int channel = inputs[0]->channel(); CHECK_EQ(param.weight()->valid_size(), channel) << "affine channel input scale dims are not valid"; CHECK_EQ(param.bias()->valid_size(), channel) << "affine channel input bias dims are not valid"; int outer_num = inputs[0]->count_valid(0, channel_idx); int inner_num = inputs[0]->count_valid(channel_idx+1, inputs[0]->dims()); int id = 0; //for (int i = 0; i < outputs[0]->valid_size(); i++) { // dst[i] = 0.1f; //} for (int i = 0; i < outer_num; i++) { for (int j = 0; j < channel; j++) { for (int k = 0; k < inner_num; k++) { dst[id] = src[id] * scale[j] + bias[j]; id++; //LOG(INFO) << "id" << id << " channel:" << channel << "inner_num: " << inner_num << " j: " << j; } } } return SaberSuccess; } template class SaberAffineChannel<X86, AK_FLOAT>; DEFINE_OP_TEMPLATE(SaberAffineChannel, AffineChannelParam, X86, AK_INT16); DEFINE_OP_TEMPLATE(SaberAffineChannel, AffineChannelParam, X86, AK_INT8); } }
912
2,073
<reponame>felidsche/BigDataBench_V5.0_BigData_ComponentBenchmark<filename>Hadoop/apache-mahout-0.10.2-compile/mr/src/test/java/org/apache/mahout/cf/taste/impl/neighborhood/DummySimilarity.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 not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.mahout.cf.taste.impl.neighborhood; import org.apache.mahout.cf.taste.common.Refreshable; import org.apache.mahout.cf.taste.common.TasteException; import org.apache.mahout.cf.taste.impl.similarity.AbstractItemSimilarity; import org.apache.mahout.cf.taste.model.DataModel; import org.apache.mahout.cf.taste.similarity.PreferenceInferrer; import org.apache.mahout.cf.taste.similarity.UserSimilarity; import java.util.Collection; final class DummySimilarity extends AbstractItemSimilarity implements UserSimilarity { DummySimilarity(DataModel dataModel) { super(dataModel); } @Override public double userSimilarity(long userID1, long userID2) throws TasteException { DataModel dataModel = getDataModel(); return 1.0 / (1.0 + Math.abs(dataModel.getPreferencesFromUser(userID1).get(0).getValue() - dataModel.getPreferencesFromUser(userID2).get(0).getValue())); } @Override public double itemSimilarity(long itemID1, long itemID2) { // Make up something wacky return 1.0 / (1.0 + Math.abs(itemID1 - itemID2)); } @Override public double[] itemSimilarities(long itemID1, long[] itemID2s) { int length = itemID2s.length; double[] result = new double[length]; for (int i = 0; i < length; i++) { result[i] = itemSimilarity(itemID1, itemID2s[i]); } return result; } @Override public void setPreferenceInferrer(PreferenceInferrer inferrer) { throw new UnsupportedOperationException(); } @Override public void refresh(Collection<Refreshable> alreadyRefreshed) { // do nothing } }
874
3,083
// Copyright 2011-2016 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 // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package com.google.security.zynamics.binnavi.disassembly.types; import java.util.List; /** * Represents the result of moving a set of members within a base type. The moved list represents * the set of members whose positions were explicitly changed. The implicitly moved members * represents the set of members that changed positions implicitly due to the move operation. The * deltas indicate the number of positions each member in the sets moves. * * @author jannewger (<NAME>) * */ public final class MemberMoveResult { private final List<TypeMember> implicitlyMoved; private final int implicitlyMovedDelta; public MemberMoveResult(final List<TypeMember> implicitlyMoved, final int implicitlyMovedDelta) { this.implicitlyMoved = implicitlyMoved; this.implicitlyMovedDelta = implicitlyMovedDelta; } public List<TypeMember> getImplicitlyMoved() { return implicitlyMoved; } public int getImplicitlyMovedDelta() { return implicitlyMovedDelta; } }
417
14,668
/* Copyright (C) 1998 <NAME> (<EMAIL>) Copyright (C) 2001 <NAME> (<EMAIL>) Copyright (C) 2002 <NAME> (<EMAIL>) Copyright (C) 2006 <NAME> (<EMAIL>) Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "third_party/blink/renderer/core/loader/resource/image_resource.h" #include <stdint.h> #include <algorithm> #include <memory> #include <utility> #include "base/metrics/histogram_macros.h" #include "base/numerics/safe_conversions.h" #include "third_party/blink/public/common/loader/referrer_utils.h" #include "third_party/blink/public/mojom/fetch/fetch_api_request.mojom-blink.h" #include "third_party/blink/public/platform/platform.h" #include "third_party/blink/renderer/core/loader/resource/image_resource_content.h" #include "third_party/blink/renderer/core/loader/resource/image_resource_info.h" #include "third_party/blink/renderer/platform/instrumentation/instance_counters.h" #include "third_party/blink/renderer/platform/instrumentation/tracing/trace_event.h" #include "third_party/blink/renderer/platform/loader/fetch/fetch_initiator_type_names.h" #include "third_party/blink/renderer/platform/loader/fetch/fetch_parameters.h" #include "third_party/blink/renderer/platform/loader/fetch/memory_cache.h" #include "third_party/blink/renderer/platform/loader/fetch/resource_client.h" #include "third_party/blink/renderer/platform/loader/fetch/resource_fetcher.h" #include "third_party/blink/renderer/platform/loader/fetch/resource_loader.h" #include "third_party/blink/renderer/platform/loader/fetch/resource_loader_options.h" #include "third_party/blink/renderer/platform/loader/fetch/resource_loading_log.h" #include "third_party/blink/renderer/platform/loader/fetch/unique_identifier.h" #include "third_party/blink/renderer/platform/network/http_parsers.h" #include "third_party/blink/renderer/platform/network/network_utils.h" #include "third_party/blink/renderer/platform/weborigin/kurl.h" #include "third_party/blink/renderer/platform/weborigin/reporting_disposition.h" #include "third_party/blink/renderer/platform/wtf/functional.h" #include "third_party/blink/renderer/platform/wtf/shared_buffer.h" #include "third_party/blink/renderer/platform/wtf/std_lib_extras.h" #include "v8/include/v8.h" namespace blink { namespace { // The amount of time to wait before informing the clients that the image has // been updated (in seconds). This effectively throttles invalidations that // result from new data arriving for this image. constexpr auto kFlushDelay = base::Seconds(1); } // namespace class ImageResource::ImageResourceInfoImpl final : public GarbageCollected<ImageResourceInfoImpl>, public ImageResourceInfo { public: explicit ImageResourceInfoImpl(ImageResource* resource) : resource_(resource) { DCHECK(resource_); } void Trace(Visitor* visitor) const override { visitor->Trace(resource_); ImageResourceInfo::Trace(visitor); } private: const KURL& Url() const override { return resource_->Url(); } base::TimeTicks LoadResponseEnd() const override { return resource_->LoadResponseEnd(); } const ResourceResponse& GetResponse() const override { return resource_->GetResponse(); } bool IsCacheValidator() const override { return resource_->IsCacheValidator(); } bool IsAccessAllowed( DoesCurrentFrameHaveSingleSecurityOrigin does_current_frame_has_single_security_origin) const override { return resource_->IsAccessAllowed( does_current_frame_has_single_security_origin); } bool HasCacheControlNoStoreHeader() const override { return resource_->HasCacheControlNoStoreHeader(); } absl::optional<ResourceError> GetResourceError() const override { if (resource_->LoadFailedOrCanceled()) return resource_->GetResourceError(); return absl::nullopt; } void SetDecodedSize(size_t size) override { resource_->SetDecodedSize(size); } void WillAddClientOrObserver() override { resource_->WillAddClientOrObserver(); } void DidRemoveClientOrObserver() override { resource_->DidRemoveClientOrObserver(); } void EmulateLoadStartedForInspector( ResourceFetcher* fetcher, const KURL& url, const AtomicString& initiator_name) override { fetcher->EmulateLoadStartedForInspector( resource_.Get(), url, mojom::blink::RequestContextType::IMAGE, network::mojom::RequestDestination::kImage, initiator_name); } void LoadDeferredImage(ResourceFetcher* fetcher) override { if (resource_->GetType() == ResourceType::kImage && resource_->StillNeedsLoad() && !fetcher->ShouldDeferImageLoad(resource_->Url())) { fetcher->StartLoad(resource_); } } bool IsAdResource() const override { return resource_->GetResourceRequest().IsAdResource(); } const HashSet<String>* GetUnsupportedImageMimeTypes() const override { if (!resource_->Options().unsupported_image_mime_types) return nullptr; return &resource_->Options().unsupported_image_mime_types->data; } const Member<ImageResource> resource_; }; class ImageResource::ImageResourceFactory : public NonTextResourceFactory { STACK_ALLOCATED(); public: explicit ImageResourceFactory() : NonTextResourceFactory(ResourceType::kImage) {} Resource* Create(const ResourceRequest& request, const ResourceLoaderOptions& options) const override { return MakeGarbageCollected<ImageResource>( request, options, ImageResourceContent::CreateNotStarted()); } }; ImageResource* ImageResource::Fetch(FetchParameters& params, ResourceFetcher* fetcher) { if (params.GetResourceRequest().GetRequestContext() == mojom::blink::RequestContextType::UNSPECIFIED) { params.SetRequestContext(mojom::blink::RequestContextType::IMAGE); params.SetRequestDestination(network::mojom::RequestDestination::kImage); } // If the fetch originated from user agent CSS we do not need to check CSP. bool is_user_agent_resource = params.Options().initiator_info.name == fetch_initiator_type_names::kUacss; if (is_user_agent_resource) { params.SetContentSecurityCheck( network::mojom::CSPDisposition::DO_NOT_CHECK); } auto* resource = To<ImageResource>( fetcher->RequestResource(params, ImageResourceFactory(), nullptr)); // If the fetch originated from user agent CSS we should mark it as a user // agent resource. if (is_user_agent_resource) { resource->FlagAsUserAgentResource(); } return resource; } bool ImageResource::CanUseCacheValidator() const { // Disable revalidation while ImageResourceContent is still waiting for // SVG load completion. // TODO(hiroshige): Clean up revalidation-related dependencies. if (!GetContent()->IsLoaded()) return false; return Resource::CanUseCacheValidator(); } ImageResource* ImageResource::Create( const ResourceRequest& request, scoped_refptr<const DOMWrapperWorld> world) { ResourceLoaderOptions options(std::move(world)); return MakeGarbageCollected<ImageResource>( request, options, ImageResourceContent::CreateNotStarted()); } ImageResource* ImageResource::CreateForTest(const KURL& url) { ResourceRequest request(url); request.SetInspectorId(CreateUniqueIdentifier()); // These are needed because some unittests don't go through the usual // request setting path in ResourceFetcher. request.SetRequestorOrigin(SecurityOrigin::CreateUniqueOpaque()); request.SetReferrerPolicy(ReferrerUtils::MojoReferrerPolicyResolveDefault( request.GetReferrerPolicy())); request.SetPriority(WebURLRequest::Priority::kLow); return Create(request, nullptr); } ImageResource::ImageResource(const ResourceRequest& resource_request, const ResourceLoaderOptions& options, ImageResourceContent* content) : Resource(resource_request, ResourceType::kImage, options), content_(content) { DCHECK(GetContent()); RESOURCE_LOADING_DVLOG(1) << "MakeGarbageCollected<ImageResource>(ResourceRequest) " << this; GetContent()->SetImageResourceInfo( MakeGarbageCollected<ImageResourceInfoImpl>(this)); } ImageResource::~ImageResource() { RESOURCE_LOADING_DVLOG(1) << "~ImageResource " << this; if (is_referenced_from_ua_stylesheet_) InstanceCounters::DecrementCounter(InstanceCounters::kUACSSResourceCounter); } void ImageResource::OnMemoryDump(WebMemoryDumpLevelOfDetail level_of_detail, WebProcessMemoryDump* memory_dump) const { Resource::OnMemoryDump(level_of_detail, memory_dump); const String name = GetMemoryDumpName() + "/image_content"; auto* dump = memory_dump->CreateMemoryAllocatorDump(name); if (content_->HasImage() && content_->GetImage()->HasData()) dump->AddScalar("size", "bytes", content_->GetImage()->DataSize()); } void ImageResource::Trace(Visitor* visitor) const { visitor->Trace(multipart_parser_); visitor->Trace(content_); Resource::Trace(visitor); MultipartImageResourceParser::Client::Trace(visitor); } bool ImageResource::HasClientsOrObservers() const { return Resource::HasClientsOrObservers() || GetContent()->HasObservers(); } void ImageResource::DidAddClient(ResourceClient* client) { DCHECK((multipart_parser_ && IsLoading()) || !Data() || GetContent()->HasImage()); Resource::DidAddClient(client); } void ImageResource::DestroyDecodedDataForFailedRevalidation() { // Clears the image, as we must create a new image for the failed // revalidation response. UpdateImage(nullptr, ImageResourceContent::kClearAndUpdateImage, false); SetDecodedSize(0); } void ImageResource::DestroyDecodedDataIfPossible() { GetContent()->DestroyDecodedData(); if (GetContent()->HasImage() && !IsUnusedPreload() && GetContent()->IsRefetchableDataFromDiskCache()) { UMA_HISTOGRAM_MEMORY_KB( "Memory.Renderer.EstimatedDroppableEncodedSize", base::saturated_cast<base::Histogram::Sample>(EncodedSize() / 1024)); } } void ImageResource::AllClientsAndObserversRemoved() { // After ErrorOccurred() is set true in Resource::FinishAsError() before // the subsequent UpdateImage() in ImageResource::FinishAsError(), // HasImage() is true and ErrorOccurred() is true. // |is_during_finish_as_error_| is introduced to allow such cases. // crbug.com/701723 // TODO(hiroshige): Make the CHECK condition cleaner. CHECK(is_during_finish_as_error_ || !GetContent()->HasImage() || !ErrorOccurred()); GetContent()->DoResetAnimation(); if (multipart_parser_) multipart_parser_->Cancel(); Resource::AllClientsAndObserversRemoved(); } scoped_refptr<const SharedBuffer> ImageResource::ResourceBuffer() const { if (Data()) return Data(); return GetContent()->ResourceBuffer(); } void ImageResource::AppendData(const char* data, size_t length) { v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(length); if (multipart_parser_) { multipart_parser_->AppendData(data, SafeCast<wtf_size_t>(length)); } else { Resource::AppendData(data, length); // Update the image immediately if needed. // // ImageLoader is not available when this image is loaded via ImageDocument. // In this case, as the task runner is not available, update the image // immediately. // // TODO(hajimehoshi): updating/flushing image should be throttled when // necessary, so such tasks should be done on a throttleable task runner. if (GetContent()->ShouldUpdateImageImmediately() || !Loader()) { UpdateImage(Data(), ImageResourceContent::kUpdateImage, false); return; } // For other cases, only update at |kFlushDelay| intervals. This // throttles how frequently we update |m_image| and how frequently we // inform the clients which causes an invalidation of this image. In other // words, we only invalidate this image every |kFlushDelay| seconds // while loading. if (!is_pending_flushing_) { scoped_refptr<base::SingleThreadTaskRunner> task_runner = Loader()->GetLoadingTaskRunner(); base::TimeTicks now = base::TimeTicks::Now(); if (last_flush_time_.is_null()) last_flush_time_ = now; DCHECK_LE(last_flush_time_, now); base::TimeDelta flush_delay = std::max(base::TimeDelta(), last_flush_time_ - now + kFlushDelay); task_runner->PostDelayedTask(FROM_HERE, WTF::Bind(&ImageResource::FlushImageIfNeeded, WrapWeakPersistent(this)), flush_delay); is_pending_flushing_ = true; } } } void ImageResource::FlushImageIfNeeded() { // We might have already loaded the image fully, in which case we don't need // to call |updateImage()|. if (IsLoading()) { last_flush_time_ = base::TimeTicks::Now(); UpdateImage(Data(), ImageResourceContent::kUpdateImage, false); } is_pending_flushing_ = false; } void ImageResource::DecodeError(bool all_data_received) { size_t size = EncodedSize(); ClearData(); SetEncodedSize(0); if (!ErrorOccurred()) SetStatus(ResourceStatus::kDecodeError); if (multipart_parser_) multipart_parser_->Cancel(); bool is_multipart = !!multipart_parser_; // Finishes loading if needed, and notifies observers. if (!all_data_received && Loader()) { // Observers are notified via ImageResource::finish(). // TODO(hiroshige): Do not call didFinishLoading() directly. Loader()->AbortResponseBodyLoading(); Loader()->DidFinishLoading(base::TimeTicks::Now(), size, size, size, false); } else { auto result = GetContent()->UpdateImage( nullptr, GetStatus(), ImageResourceContent::kClearImageAndNotifyObservers, all_data_received, is_multipart); DCHECK_EQ(result, ImageResourceContent::UpdateImageResult::kNoDecodeError); } GetMemoryCache()->Remove(this); } void ImageResource::UpdateImageAndClearBuffer() { UpdateImage(Data(), ImageResourceContent::kClearAndUpdateImage, true); ClearData(); } void ImageResource::NotifyStartLoad() { Resource::NotifyStartLoad(); CHECK_EQ(GetStatus(), ResourceStatus::kPending); GetContent()->NotifyStartLoad(); } void ImageResource::Finish(base::TimeTicks load_finish_time, base::SingleThreadTaskRunner* task_runner) { if (multipart_parser_) { if (!ErrorOccurred()) multipart_parser_->Finish(); if (Data()) UpdateImageAndClearBuffer(); } else { UpdateImage(Data(), ImageResourceContent::kUpdateImage, true); // As encoded image data can be created from m_image (see // ImageResource::resourceBuffer(), we don't have to keep m_data. Let's // clear this. As for the lifetimes of m_image and m_data, see this // document: // https://docs.google.com/document/d/1v0yTAZ6wkqX2U_M6BNIGUJpM1s0TIw1VsqpxoL7aciY/edit?usp=sharing ClearData(); } Resource::Finish(load_finish_time, task_runner); } void ImageResource::FinishAsError(const ResourceError& error, base::SingleThreadTaskRunner* task_runner) { if (multipart_parser_) multipart_parser_->Cancel(); // TODO(hiroshige): Move setEncodedSize() call to Resource::error() if it // is really needed, or remove it otherwise. SetEncodedSize(0); is_during_finish_as_error_ = true; Resource::FinishAsError(error, task_runner); is_during_finish_as_error_ = false; UpdateImage(nullptr, ImageResourceContent::kClearImageAndNotifyObservers, true); } void ImageResource::ResponseReceived(const ResourceResponse& response) { DCHECK(!multipart_parser_); if (response.MimeType() == "multipart/x-mixed-replace") { Vector<char> boundary = network_utils::ParseMultipartBoundary( response.HttpHeaderField(http_names::kContentType)); // If there's no boundary, just handle the request normally. if (!boundary.IsEmpty()) { multipart_parser_ = MakeGarbageCollected<MultipartImageResourceParser>( response, boundary, this); } } // Notify the base class that a response has been received. Note that after // this call, |GetResponse()| will represent the full effective // ResourceResponse, while |response| might just be a revalidation response // (e.g. a 304) with a partial set of updated headers that were folded into // the cached response. Resource::ResponseReceived(response); } void ImageResource::OnePartInMultipartReceived( const ResourceResponse& response) { DCHECK(multipart_parser_); if (!GetResponse().IsNull()) { CHECK_EQ(GetResponse().WasFetchedViaServiceWorker(), response.WasFetchedViaServiceWorker()); CHECK_EQ(GetResponse().GetType(), response.GetType()); } SetResponse(response); if (multipart_parsing_state_ == MultipartParsingState::kWaitingForFirstPart) { // We have nothing to do because we don't have any data. multipart_parsing_state_ = MultipartParsingState::kParsingFirstPart; return; } UpdateImageAndClearBuffer(); if (multipart_parsing_state_ == MultipartParsingState::kParsingFirstPart) { multipart_parsing_state_ = MultipartParsingState::kFinishedParsingFirstPart; // Notify finished when the first part ends. if (!ErrorOccurred()) SetStatus(ResourceStatus::kCached); // We notify clients and observers of finish in checkNotify() and // updateImageAndClearBuffer(), respectively, and they will not be // notified again in Resource::finish()/error(). NotifyFinished(); if (Loader()) Loader()->DidFinishLoadingFirstPartInMultipart(); } } void ImageResource::MultipartDataReceived(const char* bytes, size_t size) { DCHECK(multipart_parser_); Resource::AppendData(bytes, size); } bool ImageResource::IsAccessAllowed( ImageResourceInfo::DoesCurrentFrameHaveSingleSecurityOrigin does_current_frame_has_single_security_origin) const { if (does_current_frame_has_single_security_origin != ImageResourceInfo::kHasSingleSecurityOrigin) return false; return GetResponse().IsCorsSameOrigin(); } ImageResourceContent* ImageResource::GetContent() { return content_; } const ImageResourceContent* ImageResource::GetContent() const { return content_; } ResourcePriority ImageResource::PriorityFromObservers() { return GetContent()->PriorityFromObservers(); } void ImageResource::UpdateImage( scoped_refptr<SharedBuffer> shared_buffer, ImageResourceContent::UpdateImageOption update_image_option, bool all_data_received) { bool is_multipart = !!multipart_parser_; auto result = GetContent()->UpdateImage(std::move(shared_buffer), GetStatus(), update_image_option, all_data_received, is_multipart); if (result == ImageResourceContent::UpdateImageResult::kShouldDecodeError) { // In case of decode error, we call imageNotifyFinished() iff we don't // initiate reloading: // [(a): when this is in the middle of loading, or (b): otherwise] // 1. The updateImage() call above doesn't call notifyObservers(). // 2. notifyObservers(ShouldNotifyFinish) is called // (a) via updateImage() called in ImageResource::finish() // called via didFinishLoading() called in decodeError(), or // (b) via updateImage() called in decodeError(). // imageNotifyFinished() is called here iff we will not initiate // reloading in Step 3 due to notifyObservers()'s // schedulingReloadOrShouldReloadBrokenPlaceholder() check. // 3. reloadIfLoFiOrPlaceholderImage() is called via ResourceFetcher // (a) via didFinishLoading() called in decodeError(), or // (b) after returning ImageResource::updateImage(). DecodeError(all_data_received); } } void ImageResource::FlagAsUserAgentResource() { if (is_referenced_from_ua_stylesheet_) return; InstanceCounters::IncrementCounter(InstanceCounters::kUACSSResourceCounter); is_referenced_from_ua_stylesheet_ = true; } } // namespace blink
7,204
1,428
from bokeh.plotting import figure, output_file, show import random import math initial_invesment = 100 y = [] for oo in range(0, 365): if random.randint(0,1) % 2 == 0: initial_invesment = initial_invesment + 0.5 y.append(initial_invesment) else: initial_invesment = initial_invesment - 0.5 y.append(initial_invesment) # output to static HTML file output_file("cointoss.html") # create a new plot with a title and axis labels p = figure(title="Performance", x_axis_label='days', y_axis_label='portfolio') if y[0] < y[364]: color = "green" else: color = "red" p.line(range(0, 365), y, legend="Total Contribution", line_width=1, line_color=color) # show the results show(p)
286
453
# Copyright 2017 Google Inc. 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 agreed to in writing, software # distributed under the License is distributed on an "AS-IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Monitoring metrics for the Exemption system.""" from upvote.gae.utils import monitoring_utils from upvote.monitoring import metrics enforcement_errors = monitoring_utils.Counter(metrics.EXEMPTION.ENFORCEMENT_ERRORS) expired_exemptions = monitoring_utils.Metric( metrics.EXEMPTION.EXPIRED_EXEMPTIONS, long) policy_check_outcomes = monitoring_utils.Counter( metrics.EXEMPTION.POLICY_CHECK_OUTCOMES, fields=[(u'outcome', str)]) processing_errors = monitoring_utils.Counter(metrics.EXEMPTION.PROCESSING_ERRORS) requested_exemptions = monitoring_utils.Metric( metrics.EXEMPTION.REQUESTED_EXEMPTIONS, long) revocation_errors = monitoring_utils.Counter(metrics.EXEMPTION.REVOCATION_ERRORS) state_changes = monitoring_utils.Counter( metrics.EXEMPTION.STATE_CHANGES, fields=[(u'state', str)])
429
634
/**************************************************************** * 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 not use this file except in compliance * * with the License. You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, * * software distributed under the License is distributed on an * * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * * KIND, either express or implied. See the License for the * * specific language governing permissions and limitations * * under the License. * ****************************************************************/ package org.apache.james.data; import java.util.List; import java.util.Optional; import org.apache.commons.configuration2.ex.ConfigurationException; import org.apache.commons.lang3.NotImplementedException; import org.apache.james.server.core.configuration.FileConfigurationProvider; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.google.common.collect.ImmutableList; import com.google.inject.Module; public class UsersRepositoryModuleChooser { public enum Implementation { LDAP, DEFAULT; public static Implementation parse(FileConfigurationProvider configurationProvider) { try { return Optional.ofNullable(configurationProvider.getConfiguration("usersrepository") .getString("[@ldapHost]", null)) .map(anyHost -> Implementation.LDAP) .orElse(Implementation.DEFAULT); } catch (ConfigurationException e) { LOGGER.warn("Error reading usersrepository.xml, defaulting to default implementation", e); return Implementation.DEFAULT; } } } private static final Logger LOGGER = LoggerFactory.getLogger(UsersRepositoryModuleChooser.class); private final Module defaultUsersRepositoryModule; public UsersRepositoryModuleChooser(Module defaultUsersRepositoryModule) { this.defaultUsersRepositoryModule = defaultUsersRepositoryModule; } public List<Module> chooseModules(Implementation implementation) { switch (implementation) { case LDAP: return ImmutableList.of(new LdapUsersRepositoryModule()); case DEFAULT: return ImmutableList.of(defaultUsersRepositoryModule); default: throw new NotImplementedException(implementation + " is not a supported option"); } } }
1,169
1,738
#pragma once /* * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or * its licensors. * * For complete copyright and license terms please see the LICENSE at the root of this * distribution (the "License"). All use of this software is governed by the License, * or, if provided, by the license below or the license accompanying this file. Do not * remove or modify any license notices. This file is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * */ #include <AzCore/RTTI/RTTI.h> #include <SceneAPI/SceneCore/DataTypes/IGraphObject.h> namespace AZ { class Vector2; } namespace AZ { namespace SceneAPI { namespace DataTypes { class IMeshVertexUVData : public IGraphObject { public: AZ_RTTI(IMeshVertexUVData, "{C45B2027-5D0A-400A-9689-88C9A27EFE57}", IGraphObject); virtual ~IMeshVertexUVData() override = default; virtual size_t GetCount() const = 0; virtual const AZ::Vector2& GetUV(size_t index) const = 0; }; } // DataTypes } // SceneAPI } // AZ
489
320
<filename>MoPubSDKTests/MPVASTCompanionAdView+Testing.h // // MPVASTCompanionAdView+Testing.h // // Copyright 2018-2021 Twitter, Inc. // Licensed under the MoPub SDK License Agreement // http://www.mopub.com/legal/sdk-license-agreement/ // #import "MPVASTCompanionAdView.h" @class MRController; @class MPImageLoader; NS_ASSUME_NONNULL_BEGIN @interface MPVASTCompanionAdView (Testing) @property (nonatomic, strong) MPVASTCompanionAd *ad; @property (nonatomic, strong) MRController *mraidController; @property (nonatomic, strong) UIImageView *imageView; @property (nonatomic, strong) MPImageLoader *imageLoader; @property (nonatomic, strong) UITapGestureRecognizer *tapGestureRecognizer; @end NS_ASSUME_NONNULL_END
262
4,812
<reponame>medismailben/llvm-project<gh_stars>1000+ //===- ObjCARCAnalysisUtils.cpp -------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // // This file implements common infrastructure for libLLVMObjCARCOpts.a, which // implements several scalar transformations over the LLVM intermediate // representation, including the C bindings for that library. // //===----------------------------------------------------------------------===// #include "llvm/Analysis/ObjCARCAnalysisUtils.h" #include "llvm/Support/CommandLine.h" using namespace llvm; using namespace llvm::objcarc; /// A handy option to enable/disable all ARC Optimizations. bool llvm::objcarc::EnableARCOpts; static cl::opt<bool, true> EnableARCOptimizations( "enable-objc-arc-opts", cl::desc("enable/disable all ARC Optimizations"), cl::location(EnableARCOpts), cl::init(true), cl::Hidden);
315
10,225
package io.quarkus.cache.runtime; /** * This class is used to allow the storage of {@code null} values in the Quarkus cache while it is forbidden by the underlying * caching provider. */ public class NullValueConverter { private static final class NullValue { public static Object INSTANCE = new NullValue(); } public static Object toCacheValue(Object value) { return value == null ? NullValue.INSTANCE : value; } public static Object fromCacheValue(Object value) { return value == NullValue.INSTANCE ? null : value; } }
179
1,686
// Copyright (c) 2016 <NAME>. 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 and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the name Chromium Embedded // Framework nor the names of its contributors may be used to endorse // or promote products derived from this software without specific prior // written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // --------------------------------------------------------------------------- // // The contents of this file must follow a specific format in order to // support the CEF translator tool. See the translator.README.txt file in the // tools directory for more information. // #ifndef CEF_INCLUDE_CEF_IMAGE_H_ #define CEF_INCLUDE_CEF_IMAGE_H_ #pragma once #include "include/cef_base.h" #include "include/cef_values.h" /// // Container for a single image represented at different scale factors. All // image representations should be the same size in density independent pixel // (DIP) units. For example, if the image at scale factor 1.0 is 100x100 pixels // then the image at scale factor 2.0 should be 200x200 pixels -- both images // will display with a DIP size of 100x100 units. The methods of this class can // be called on any browser process thread. /// /*--cef(source=library)--*/ class CefImage : public virtual CefBaseRefCounted { public: /// // Create a new CefImage. It will initially be empty. Use the Add*() methods // to add representations at different scale factors. /// /*--cef()--*/ static CefRefPtr<CefImage> CreateImage(); /// // Returns true if this Image is empty. /// /*--cef()--*/ virtual bool IsEmpty() = 0; /// // Returns true if this Image and |that| Image share the same underlying // storage. Will also return true if both images are empty. /// /*--cef()--*/ virtual bool IsSame(CefRefPtr<CefImage> that) = 0; /// // Add a bitmap image representation for |scale_factor|. Only 32-bit RGBA/BGRA // formats are supported. |pixel_width| and |pixel_height| are the bitmap // representation size in pixel coordinates. |pixel_data| is the array of // pixel data and should be |pixel_width| x |pixel_height| x 4 bytes in size. // |color_type| and |alpha_type| values specify the pixel format. /// /*--cef()--*/ virtual bool AddBitmap(float scale_factor, int pixel_width, int pixel_height, cef_color_type_t color_type, cef_alpha_type_t alpha_type, const void* pixel_data, size_t pixel_data_size) = 0; /// // Add a PNG image representation for |scale_factor|. |png_data| is the image // data of size |png_data_size|. Any alpha transparency in the PNG data will // be maintained. /// /*--cef()--*/ virtual bool AddPNG(float scale_factor, const void* png_data, size_t png_data_size) = 0; /// // Create a JPEG image representation for |scale_factor|. |jpeg_data| is the // image data of size |jpeg_data_size|. The JPEG format does not support // transparency so the alpha byte will be set to 0xFF for all pixels. /// /*--cef()--*/ virtual bool AddJPEG(float scale_factor, const void* jpeg_data, size_t jpeg_data_size) = 0; /// // Returns the image width in density independent pixel (DIP) units. /// /*--cef()--*/ virtual size_t GetWidth() = 0; /// // Returns the image height in density independent pixel (DIP) units. /// /*--cef()--*/ virtual size_t GetHeight() = 0; /// // Returns true if this image contains a representation for |scale_factor|. /// /*--cef()--*/ virtual bool HasRepresentation(float scale_factor) = 0; /// // Removes the representation for |scale_factor|. Returns true on success. /// /*--cef()--*/ virtual bool RemoveRepresentation(float scale_factor) = 0; /// // Returns information for the representation that most closely matches // |scale_factor|. |actual_scale_factor| is the actual scale factor for the // representation. |pixel_width| and |pixel_height| are the representation // size in pixel coordinates. Returns true on success. /// /*--cef()--*/ virtual bool GetRepresentationInfo(float scale_factor, float& actual_scale_factor, int& pixel_width, int& pixel_height) = 0; /// // Returns the bitmap representation that most closely matches |scale_factor|. // Only 32-bit RGBA/BGRA formats are supported. |color_type| and |alpha_type| // values specify the desired output pixel format. |pixel_width| and // |pixel_height| are the output representation size in pixel coordinates. // Returns a CefBinaryValue containing the pixel data on success or NULL on // failure. /// /*--cef()--*/ virtual CefRefPtr<CefBinaryValue> GetAsBitmap(float scale_factor, cef_color_type_t color_type, cef_alpha_type_t alpha_type, int& pixel_width, int& pixel_height) = 0; /// // Returns the PNG representation that most closely matches |scale_factor|. If // |with_transparency| is true any alpha transparency in the image will be // represented in the resulting PNG data. |pixel_width| and |pixel_height| are // the output representation size in pixel coordinates. Returns a // CefBinaryValue containing the PNG image data on success or NULL on failure. /// /*--cef()--*/ virtual CefRefPtr<CefBinaryValue> GetAsPNG(float scale_factor, bool with_transparency, int& pixel_width, int& pixel_height) = 0; /// // Returns the JPEG representation that most closely matches |scale_factor|. // |quality| determines the compression level with 0 == lowest and 100 == // highest. The JPEG format does not support alpha transparency and the alpha // channel, if any, will be discarded. |pixel_width| and |pixel_height| are // the output representation size in pixel coordinates. Returns a // CefBinaryValue containing the JPEG image data on success or NULL on // failure. /// /*--cef()--*/ virtual CefRefPtr<CefBinaryValue> GetAsJPEG(float scale_factor, int quality, int& pixel_width, int& pixel_height) = 0; }; #endif // CEF_INCLUDE_CEF_IMAGE_H_
2,913
880
/** * Copyright 2019 <NAME> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package ch.qos.logback.core.net.ssl.mock; import java.security.NoSuchAlgorithmException; import java.security.NoSuchProviderException; import java.security.SecureRandom; import ch.qos.logback.core.net.ssl.SecureRandomFactoryBean; /** * A {@link SecureRandomFactoryBean} with test instrumentation. * * @author <NAME> */ public class MockSecureRandomFactoryBean extends SecureRandomFactoryBean { private boolean secureRandomCreated; @Override public SecureRandom createSecureRandom() throws NoSuchProviderException, NoSuchAlgorithmException { secureRandomCreated = true; return super.createSecureRandom(); } public boolean isSecureRandomCreated() { return secureRandomCreated; } }
362
2,453
// // Generated by class-dump 3.5 (64 bit) (Debug version compiled Sep 30 2020 21:18:12). // // Copyright (C) 1997-2019 <NAME>. // #import <objc/NSObject.h> @class MISSING_TYPE; @interface IDEMediaLibraryDetailViewAlternateSection : NSObject { MISSING_TYPE *alternates; MISSING_TYPE *title; MISSING_TYPE *subtitle; } - (void).cxx_destruct; - (id)init; - (id)initWithTitle:(id)arg1 subtitle:(id)arg2 alternates:(id)arg3; @end
178
11,356
// Unit test for boost::any. // // See http://www.boost.org for most recent version, including documentation. // // Copyright <NAME>, 2013-2014. // // Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt). #include <cstdlib> #include <string> #include <utility> #include <boost/any.hpp> #include "test.hpp" #include <boost/move/move.hpp> #ifdef BOOST_NO_CXX11_RVALUE_REFERENCES int main() { return EXIT_SUCCESS; } #else namespace any_tests { typedef test<const char *, void (*)()> test_case; typedef const test_case * test_case_iterator; extern const test_case_iterator begin, end; } int main() { using namespace any_tests; tester<test_case_iterator> test_suite(begin, end); return test_suite() ? EXIT_SUCCESS : EXIT_FAILURE; } namespace any_tests // test suite { void test_move_construction(); void test_move_assignment(); void test_copy_construction(); void test_copy_assignment(); void test_move_construction_from_value(); void test_move_assignment_from_value(); void test_copy_construction_from_value(); void test_copy_assignment_from_value(); void test_construction_from_const_any_rv(); void test_cast_to_rv(); const test_case test_cases[] = { { "move construction of any", test_move_construction }, { "move assignment of any", test_move_assignment }, { "copy construction of any", test_copy_construction }, { "copy assignment of any", test_copy_assignment }, { "move construction from value", test_move_construction_from_value }, { "move assignment from value", test_move_assignment_from_value }, { "copy construction from value", test_copy_construction_from_value }, { "copy assignment from value", test_copy_assignment_from_value }, { "constructing from const any&&", test_construction_from_const_any_rv }, { "casting to rvalue reference", test_cast_to_rv } }; const test_case_iterator begin = test_cases; const test_case_iterator end = test_cases + (sizeof test_cases / sizeof *test_cases); class move_copy_conting_class { public: static unsigned int moves_count; static unsigned int copy_count; move_copy_conting_class(){} move_copy_conting_class(move_copy_conting_class&& /*param*/) { ++ moves_count; } move_copy_conting_class& operator=(move_copy_conting_class&& /*param*/) { ++ moves_count; return *this; } move_copy_conting_class(const move_copy_conting_class&) { ++ copy_count; } move_copy_conting_class& operator=(const move_copy_conting_class& /*param*/) { ++ copy_count; return *this; } }; unsigned int move_copy_conting_class::moves_count = 0; unsigned int move_copy_conting_class::copy_count = 0; } namespace any_tests // test definitions { using namespace boost; void test_move_construction() { any value0 = move_copy_conting_class(); move_copy_conting_class::copy_count = 0; move_copy_conting_class::moves_count = 0; any value(boost::move(value0)); check(value0.empty(), "moved away value is empty"); check_false(value.empty(), "empty"); check_equal(value.type(), typeindex::type_id<move_copy_conting_class>(), "type"); check_non_null(any_cast<move_copy_conting_class>(&value), "any_cast<move_copy_conting_class>"); check_equal( move_copy_conting_class::copy_count, 0u, "checking copy counts"); check_equal( move_copy_conting_class::moves_count, 0u, "checking move counts"); } void test_move_assignment() { any value0 = move_copy_conting_class(); any value = move_copy_conting_class(); move_copy_conting_class::copy_count = 0; move_copy_conting_class::moves_count = 0; value = boost::move(value0); check(value0.empty(), "moved away is empty"); check_false(value.empty(), "empty"); check_equal(value.type(), typeindex::type_id<move_copy_conting_class>(), "type"); check_non_null(any_cast<move_copy_conting_class>(&value), "any_cast<move_copy_conting_class>"); check_equal( move_copy_conting_class::copy_count, 0u, "checking copy counts"); check_equal( move_copy_conting_class::moves_count, 0u, "checking move counts"); } void test_copy_construction() { any value0 = move_copy_conting_class(); move_copy_conting_class::copy_count = 0; move_copy_conting_class::moves_count = 0; any value(value0); check_false(value0.empty(), "copyed value is not empty"); check_false(value.empty(), "empty"); check_equal(value.type(), typeindex::type_id<move_copy_conting_class>(), "type"); check_non_null(any_cast<move_copy_conting_class>(&value), "any_cast<move_copy_conting_class>"); check_equal( move_copy_conting_class::copy_count, 1u, "checking copy counts"); check_equal( move_copy_conting_class::moves_count, 0u, "checking move counts"); } void test_copy_assignment() { any value0 = move_copy_conting_class(); any value = move_copy_conting_class(); move_copy_conting_class::copy_count = 0; move_copy_conting_class::moves_count = 0; value = value0; check_false(value0.empty(), "copyied value is not empty"); check_false(value.empty(), "empty"); check_equal(value.type(), typeindex::type_id<move_copy_conting_class>(), "type"); check_non_null(any_cast<move_copy_conting_class>(&value), "any_cast<move_copy_conting_class>"); check_equal( move_copy_conting_class::copy_count, 1u, "checking copy counts"); check_equal( move_copy_conting_class::moves_count, 0u, "checking move counts"); } void test_move_construction_from_value() { move_copy_conting_class value0; move_copy_conting_class::copy_count = 0; move_copy_conting_class::moves_count = 0; #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION any value(boost::move(value0)); #else any value(value0); #endif check_false(value.empty(), "empty"); check_equal(value.type(), typeindex::type_id<move_copy_conting_class>(), "type"); check_non_null(any_cast<move_copy_conting_class>(&value), "any_cast<move_copy_conting_class>"); #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION check_equal( move_copy_conting_class::copy_count, 0u, "checking copy counts"); check_equal( move_copy_conting_class::moves_count, 1u, "checking move counts"); #endif } void test_move_assignment_from_value() { move_copy_conting_class value0; any value; move_copy_conting_class::copy_count = 0; move_copy_conting_class::moves_count = 0; #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION value = boost::move(value0); #else value = value0; #endif check_false(value.empty(), "empty"); check_equal(value.type(), typeindex::type_id<move_copy_conting_class>(), "type"); check_non_null(any_cast<move_copy_conting_class>(&value), "any_cast<move_copy_conting_class>"); #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION check_equal( move_copy_conting_class::copy_count, 0u, "checking copy counts"); check_equal( move_copy_conting_class::moves_count, 1u, "checking move counts"); #endif } void test_copy_construction_from_value() { move_copy_conting_class value0; move_copy_conting_class::copy_count = 0; move_copy_conting_class::moves_count = 0; any value(value0); check_false(value.empty(), "empty"); check_equal(value.type(), typeindex::type_id<move_copy_conting_class>(), "type"); check_non_null(any_cast<move_copy_conting_class>(&value), "any_cast<move_copy_conting_class>"); check_equal( move_copy_conting_class::copy_count, 1u, "checking copy counts"); check_equal( move_copy_conting_class::moves_count, 0u, "checking move counts"); } void test_copy_assignment_from_value() { move_copy_conting_class value0; any value; move_copy_conting_class::copy_count = 0; move_copy_conting_class::moves_count = 0; value = value0; check_false(value.empty(), "empty"); check_equal(value.type(), typeindex::type_id<move_copy_conting_class>(), "type"); check_non_null(any_cast<move_copy_conting_class>(&value), "any_cast<move_copy_conting_class>"); check_equal( move_copy_conting_class::copy_count, 1u, "checking copy counts"); check_equal( move_copy_conting_class::moves_count, 0u, "checking move counts"); } const any helper_method() { return true; } const bool helper_method1() { return true; } void test_construction_from_const_any_rv() { any values[] = {helper_method(), helper_method1() }; (void)values; } void test_cast_to_rv() { move_copy_conting_class value0; any value; value = value0; move_copy_conting_class::copy_count = 0; move_copy_conting_class::moves_count = 0; move_copy_conting_class value1 = any_cast<move_copy_conting_class&&>(value); check_equal( move_copy_conting_class::copy_count, 0u, "checking copy counts"); check_equal( move_copy_conting_class::moves_count, 1u, "checking move counts"); (void)value1; /* Following code shall fail to compile const any cvalue = value0; move_copy_conting_class::copy_count = 0; move_copy_conting_class::moves_count = 0; move_copy_conting_class value2 = any_cast<move_copy_conting_class&&>(cvalue); check_equal( move_copy_conting_class::copy_count, 1u, "checking copy counts"); check_equal( move_copy_conting_class::moves_count, 0u, "checking move counts"); (void)value2; */ } } #endif
4,863
655
var1 = True def func1(): pass
16
808
<reponame>714627034/Paddle-Lite<gh_stars>100-1000 // Copyright (c) 2019 PaddlePaddle 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 agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include <gflags/gflags.h> #include <gtest/gtest.h> #include <vector> #include "lite/api/paddle_api.h" #include "lite/api/test/lite_api_test_helper.h" #include "lite/api/test/test_helper.h" #include "lite/tests/api/ILSVRC2012_utility.h" DEFINE_string(data_dir, "", "data dir"); DEFINE_int32(iteration, 100, "iteration times to run"); DEFINE_int32(batch, 1, "batch of image"); DEFINE_int32(channel, 3, "image channel"); namespace paddle { namespace lite { TEST(MobileNetV1, test_mobilenet_v1_fp32_v1_8_nnadapter) { std::vector<std::string> nnadapter_device_names; std::string nnadapter_context_properties; std::vector<paddle::lite_api::Place> valid_places; float out_accuracy_threshold = 1.0f; valid_places.push_back( lite_api::Place{TARGET(kNNAdapter), PRECISION(kFloat)}); #if defined(LITE_WITH_ARM) valid_places.push_back(lite_api::Place{TARGET(kARM), PRECISION(kFloat)}); #elif defined(LITE_WITH_X86) valid_places.push_back(lite_api::Place{TARGET(kX86), PRECISION(kFloat)}); #else LOG(INFO) << "Unsupported host arch!"; return; #endif #if defined(LITE_WITH_NNADAPTER) #if defined(NNADAPTER_WITH_HUAWEI_KIRIN_NPU) nnadapter_device_names.emplace_back("huawei_kirin_npu"); out_accuracy_threshold = 0.79f; #elif defined(NNADAPTER_WITH_HUAWEI_ASCEND_NPU) nnadapter_device_names.emplace_back("huawei_ascend_npu"); nnadapter_context_properties = "HUAWEI_ASCEND_NPU_SELECTED_DEVICE_IDS=0"; out_accuracy_threshold = 0.79f; #elif defined(NNADAPTER_WITH_VERISILICON_TIMVX) nnadapter_device_names.emplace_back("verisilicon_timvx"); out_accuracy_threshold = 0.79f; #elif defined(NNADAPTER_WITH_KUNLUNXIN_XTCL) nnadapter_device_names.emplace_back("kunlunxin_xtcl"); out_accuracy_threshold = 0.79f; #elif defined(NNADAPTER_WITH_ANDROID_NNAPI) nnadapter_device_names.emplace_back("android_nnapi"); out_accuracy_threshold = 0.99f; #elif defined(NNADAPTER_WITH_GOOGLE_XNNPACK) nnadapter_device_names.emplace_back("google_xnnpack"); out_accuracy_threshold = 0.99f; #else nnadapter_device_names.emplace_back("builtin_device"); out_accuracy_threshold = 0.79f; #endif #else return; #endif std::shared_ptr<paddle::lite_api::PaddlePredictor> predictor = nullptr; // Use the full api with CxxConfig to generate the optimized model lite_api::CxxConfig cxx_config; cxx_config.set_model_dir(FLAGS_model_dir); cxx_config.set_valid_places(valid_places); cxx_config.set_nnadapter_device_names(nnadapter_device_names); cxx_config.set_nnadapter_context_properties(nnadapter_context_properties); predictor = lite_api::CreatePaddlePredictor(cxx_config); predictor->SaveOptimizedModel(FLAGS_model_dir, paddle::lite_api::LiteModelType::kNaiveBuffer); // Use the light api with MobileConfig to load and run the optimized model paddle::lite_api::MobileConfig mobile_config; mobile_config.set_model_from_file(FLAGS_model_dir + ".nb"); mobile_config.set_threads(FLAGS_threads); mobile_config.set_power_mode( static_cast<lite_api::PowerMode>(FLAGS_power_mode)); mobile_config.set_nnadapter_device_names(nnadapter_device_names); mobile_config.set_nnadapter_context_properties(nnadapter_context_properties); predictor = paddle::lite_api::CreatePaddlePredictor(mobile_config); std::string raw_data_dir = FLAGS_data_dir + std::string("/raw_data"); std::vector<int> input_shape{ FLAGS_batch, FLAGS_channel, FLAGS_im_width, FLAGS_im_height}; auto raw_data = ReadRawData(raw_data_dir, input_shape, FLAGS_iteration); int input_size = 1; for (auto i : input_shape) { input_size *= i; } for (int i = 0; i < FLAGS_warmup; ++i) { auto input_tensor = predictor->GetInput(0); input_tensor->Resize( std::vector<int64_t>(input_shape.begin(), input_shape.end())); auto* data = input_tensor->mutable_data<float>(); for (int j = 0; j < input_size; j++) { data[j] = 0.f; } predictor->Run(); } std::vector<std::vector<float>> out_rets; out_rets.resize(FLAGS_iteration); double cost_time = 0; for (size_t i = 0; i < raw_data.size(); ++i) { auto input_tensor = predictor->GetInput(0); input_tensor->Resize( std::vector<int64_t>(input_shape.begin(), input_shape.end())); auto* data = input_tensor->mutable_data<float>(); memcpy(data, raw_data[i].data(), sizeof(float) * input_size); double start = GetCurrentUS(); predictor->Run(); cost_time += GetCurrentUS() - start; auto output_tensor = predictor->GetOutput(0); auto output_shape = output_tensor->shape(); auto output_data = output_tensor->data<float>(); ASSERT_EQ(output_shape.size(), 2UL); ASSERT_EQ(output_shape[0], 1); ASSERT_EQ(output_shape[1], 1000); int output_size = output_shape[0] * output_shape[1]; out_rets[i].resize(output_size); memcpy(&(out_rets[i].at(0)), output_data, sizeof(float) * output_size); } LOG(INFO) << "================== Speed Report ==================="; LOG(INFO) << "Model: " << FLAGS_model_dir << ", threads num " << FLAGS_threads << ", warmup: " << FLAGS_warmup << ", batch: " << FLAGS_batch << ", iteration: " << FLAGS_iteration << ", spend " << cost_time / FLAGS_iteration / 1000.0 << " ms in average."; std::string labels_dir = FLAGS_data_dir + std::string("/labels.txt"); float out_accuracy = CalOutAccuracy(out_rets, labels_dir); ASSERT_GE(out_accuracy, out_accuracy_threshold); } } // namespace lite } // namespace paddle
2,400
382
<reponame>uin3566/Dota2Helper package com.fangxu.dota2helper.ui.Activity; import android.content.Intent; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentTransaction; import android.support.v4.view.GravityCompat; import android.support.v4.widget.DrawerLayout; import android.support.v7.app.ActionBarDrawerToggle; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.View; import com.fangxu.dota2helper.rxbus.NewsFragmentSelectionEvent; import com.fangxu.dota2helper.rxbus.RxBus; import com.fangxu.dota2helper.ui.adapter.CommonRecyclerAdapter; import com.fangxu.dota2helper.ui.adapter.DrawerAdapter; import com.fangxu.dota2helper.util.NavUtil; import com.fangxu.dota2helper.R; import com.fangxu.dota2helper.ui.Fragment.NewsFragment; import com.fangxu.dota2helper.util.SnackbarUtil; import java.util.HashMap; import java.util.Map; import butterknife.Bind; import butterknife.OnClick; /** * Created by Xuf on 2016/4/3. */ public class MainActivity extends BaseActivity { @Bind(R.id.drawer_layout) DrawerLayout mDrawerLayout; @Bind(R.id.rv_drawer_recycler) RecyclerView mRecyclerView; private int mCurrentDrawerPos = 0; private long firstBackTime = 0; private Map<Integer, String> mFragmentNameMap = new HashMap<>(); @Override public boolean applySystemBarDrawable() { return true; } @Override public int getLayoutResId() { return R.layout.activity_main; } @Override public int getTitleResId() { return NavUtil.categoryList[mCurrentDrawerPos]; } @Override public void init(Bundle savedInstanceState) { ActionBarDrawerToggle actionBarDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout, mToolbar, R.string.drawer_open, R.string.drawer_close) { @Override public void onDrawerOpened(View drawerView) { super.onDrawerOpened(drawerView); mToolbar.setTitle(R.string.app_name); } @Override public void onDrawerClosed(View drawerView) { super.onDrawerClosed(drawerView); mToolbar.setTitle(NavUtil.categoryList[mCurrentDrawerPos]); } }; actionBarDrawerToggle.syncState(); mDrawerLayout.setDrawerListener(actionBarDrawerToggle); LinearLayoutManager layoutManager = new LinearLayoutManager(this); mRecyclerView.setLayoutManager(layoutManager); final DrawerAdapter drawerAdapter = new DrawerAdapter(this); drawerAdapter.setItemClickListener(new CommonRecyclerAdapter.ItemClickListener() { @Override public void onHeaderClick() { } @Override public void onFooterClick() { } @Override public void onItemClick(int position) { drawerAdapter.setCurrentPos(position); mCurrentDrawerPos = position; mDrawerLayout.closeDrawer(GravityCompat.START); String tag = mFragmentNameMap.get(NavUtil.categoryList[position]); Fragment fragment = getFragmentByName(tag); showFragment(fragment, tag); } }); mRecyclerView.setAdapter(drawerAdapter); initFragmentNameMap(); String tag = mFragmentNameMap.get(NavUtil.categoryList[0]); Fragment fragment = getFragmentByName(tag); showFragment(fragment, tag); } @OnClick(R.id.ll_drawer_profile) public void clickProfile(View mineLayout) { Intent intent = new Intent(this, ProfileActivity.class); startActivityForResult(intent, 0); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (resultCode == RESULT_OK) { mDrawerLayout.closeDrawer(GravityCompat.START); } } @Override public void onBackPressed() { long secondBackTime = System.currentTimeMillis(); if (secondBackTime - firstBackTime > 2000) { SnackbarUtil.showSnack(mRecyclerView, R.string.press_again_to_exit); firstBackTime = secondBackTime; } else { finish(); } } private void initFragmentNameMap() { int len = NavUtil.categoryList.length; for (int i = 0; i < len; i++) { mFragmentNameMap.put(NavUtil.categoryList[i], NavUtil.fragmentList[i]); } } private void showFragment(Fragment fragmentToShow, String tag) { FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); for (int i = 0; i < NavUtil.categoryList.length; i++) { String name = mFragmentNameMap.get(NavUtil.categoryList[i]); Fragment fragment = getFragmentByName(name); if (fragment != fragmentToShow && fragment.isAdded()) { transaction.hide(fragment); } } if (fragmentToShow.isAdded()) { transaction.show(fragmentToShow).commit(); } else { transaction.add(R.id.fl_content, fragmentToShow, tag).commit(); } if (fragmentToShow instanceof NewsFragment) { RxBus.getDefault().post(new NewsFragmentSelectionEvent(true)); } else { RxBus.getDefault().post(new NewsFragmentSelectionEvent(false)); } } private Fragment getFragmentByName(String name) { Fragment fragment = getSupportFragmentManager().findFragmentByTag(name); if (fragment != null) { return fragment; } else { try { fragment = (Fragment) Class.forName(name).newInstance(); } catch (Exception e) { fragment = NewsFragment.newInstance(); } } return fragment; } }
2,598
3,402
<filename>core-cube/src/main/java/org/apache/kylin/cube/cuboid/algorithm/AbstractRecommendAlgorithm.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 not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.kylin.cube.cuboid.algorithm; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.List; import java.util.concurrent.atomic.AtomicBoolean; public abstract class AbstractRecommendAlgorithm implements CuboidRecommendAlgorithm { private static final Logger logger = LoggerFactory.getLogger(AbstractRecommendAlgorithm.class); protected final CuboidStats cuboidStats; protected final BenefitPolicy benefitPolicy; private AtomicBoolean cancelRequested = new AtomicBoolean(false); private AtomicBoolean canceled = new AtomicBoolean(false); private long timeoutMillis; public AbstractRecommendAlgorithm(final long timeout, BenefitPolicy benefitPolicy, CuboidStats cuboidStats) { if (timeout <= 0) { this.timeoutMillis = Long.MAX_VALUE; } else { this.timeoutMillis = timeout; } this.cuboidStats = cuboidStats; this.benefitPolicy = benefitPolicy; } @Override public List<Long> recommend(double expansionRate) { double spaceLimit = cuboidStats.getBaseCuboidSize() * expansionRate; return start(spaceLimit); } @Override public void cancel() { cancelRequested.set(true); } /** * Checks whether the algorithm has been canceled or timed out. */ protected boolean shouldCancel() { if (canceled.get()) { return true; } if (cancelRequested.get()) { canceled.set(true); cancelRequested.set(false); logger.warn("Algorithm is canceled."); return true; } final long currentTimeMillis = System.currentTimeMillis(); if (currentTimeMillis > timeoutMillis) { canceled.set(true); logger.warn("Algorithm exceeds time limit."); return true; } return false; } }
969
2,912
<gh_stars>1000+ """ Basic Weld element-wise operations supported in Grizzly. """ import weld.lazy def _unary_apply(op, value): """ Constructs a Weld string to apply a unary function to a scalar. Examples -------- >>> _unary_apply("sqrt", "e") 'sqrt(e)' """ return "{op}({value})".format(op=op, value=value) def _binary_apply(op, leftval, rightval, cast_type, infix=True): """ Applies the binary operator 'op' to 'leftval' and 'rightval'. The operands are cast to the type 'cast_type' first. Examples -------- >>> _binary_apply("add", "a", "b", "i64", infix=False) 'add(i64(a), i64(b))' >>> _binary_apply("+", "a", "b", "i64") '(i64(a) + i64(b))' """ if infix: return "({cast_type}({leftval}) {op} {cast_type}({rightval}))".format( op=op, leftval=leftval, rightval=rightval, cast_type=cast_type) else: return "{op}({cast_type}({leftval}), {cast_type}({rightval}))".format( op=op, leftval=leftval, rightval=rightval, cast_type=cast_type) @weld.lazy.weldfunc def make_struct(*args): """ Constructs a struct with the provided args. Examples -------- >>> make_struct("weldlazy1", "2", "3").code '{weldlazy1, 2, 3}' >>> make_struct("weldlazy1").code '{weldlazy1}' """ assert len(args) > 0 return "{" + ", ".join(args) + "}" @weld.lazy.weldfunc def unary_map(op, ty, value): """ Constructs a Weld string to apply a unary function to a vector. Examples -------- >>> unary_map("sqrt", "i32", "e").code 'map(e, |e: i32| sqrt(e))' """ return "map({value}, |e: {ty}| {unary_apply})".format( value=value, unary_apply=_unary_apply(op, "e"), ty=ty) @weld.lazy.weldfunc def binary_map(op, left_type, right_type, leftval, rightval, cast_type, infix=True, scalararg=False): """ Constructs a Weld string to apply a binary function to two vectors 'leftval' and 'rightval' elementwise. Each element in the loop is cast to 'cast_type' first. Examples -------- >>> binary_map("+", "i32", "i32", "l", "r", "i32").code 'map(zip(l, r), |e: {i32,i32}| (i32(e.$0) + i32(e.$1)))' >>> binary_map("max", "i32", "i16", "l", "r", 'i64', infix=False).code 'map(zip(l, r), |e: {i32,i16}| max(i64(e.$0), i64(e.$1)))' >>> binary_map("+", "i32", "i16", "l", "1L", 'i64', scalararg=True).code 'map(l, |e: i32| (i64(e) + i64(1L)))' """ if scalararg: return "map({leftval}, |e: {left_type}| {binary_apply})".format( leftval=leftval, left_type=left_type, right_type=right_type, binary_apply=_binary_apply(op, "e", rightval, cast_type, infix=infix)) else: return "map(zip({leftval}, {rightval}), |e: {{{left_type},{right_type}}}| {binary_apply})".format( leftval=leftval, rightval=rightval, left_type=left_type, right_type=right_type, binary_apply=_binary_apply(op, "e.$0", "e.$1", cast_type, infix=infix)) @weld.lazy.weldfunc def lookup_expr(collection, key): """ Lookup a value in a Weld vector. This will add a cast for the key to an `I64`. Examples -------- >>> lookup_expr("v", "i64(1.0f)").code 'lookup(v, i64(i64(1.0f)))' >>> lookup_expr("[1,2,3]", "1.0f").code 'lookup([1,2,3], i64(1.0f))' >>> lookup_expr("[1,2,3]", 1).code 'lookup([1,2,3], i64(1))' """ return "lookup({collection}, i64({key}))".format( collection=collection, key=key) @weld.lazy.weldfunc def slice_expr(collection, start, count): """ Lookup a value in a Weld vector. This will add a cast the start and stop to 'I64'. Examples -------- >>> slice_expr("v", 1, 2).code 'slice(v, i64(1), i64(2))' """ return "slice({collection}, i64({start}), i64({count}))".format( collection=collection, start=start, count=count) @weld.lazy.weldfunc def mask(collection, collection_ty, booleans): """ Returns a masking operation that filters values from 'collection' using the bitvector 'booleans'. Examples -------- >>> mask("v", "i64", "mask").code 'map(filter(zip(v, mask), |e: {i64,bool}| e.$1), |e: {i64,bool}| e.$0)' """ struct_ty = "{{{collection_ty},bool}}".format(collection_ty=collection_ty) template = "map(filter(zip({collection}, {mask}), |e: {struct_ty}| e.$1), |e: {struct_ty}| e.$0)" return template.format(collection=collection, mask=booleans, struct_ty=struct_ty)
2,064
1,374
<reponame>YuanYuanDog/Design-Pattern-For-iOS // // HCDproxy.h // 4代理模式 // // Created by yifan on 15/8/12. // Copyright (c) 2015年 黄成都. All rights reserved. // #import <Foundation/Foundation.h> #import "HCDgiveGift.h" @class HCDschoolGirl,HCDpursuit; @interface HCDproxy : NSObject<HCDgiveGift> -(instancetype)initWithSchoolGirl:(HCDschoolGirl *)schoolGirl; @end
160
708
/** * @file target_reset_mimxrt.c * @brief Target reset for the i.MX RT series * * DAPLink Interface Firmware * Copyright (c) 2009-2016, ARM Limited, All Rights Reserved * 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.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "target_reset.h" #include "swd_host.h" #include "info.h" void target_before_init_debug(void) { // This is for the hardware conflict (the EVK are not consider >2 debugger connection // situation) with another external debugger(such as JLINK). Before drag&pull, to force // RESET pin to high state ensure a successfully access. If external debugger not // connected. It's not necessary for doing that. swd_set_target_reset(0); // In some case the CPU will enter "cannot debug" state (low power, SWD pin mux changed, etc.). // Doing a hardware reset will clear those states (probably, depends on app). Also, if the // external flash's data is not a valid bootable image, DAPLink cannot attached to target. A // hardware reset will increase the chance to connect in this situation. target_set_state(RESET_RUN); } void board_init(void) { } uint8_t target_unlock_sequence(void) { return 1; } uint8_t security_bits_set(uint32_t addr, uint8_t *data, uint32_t size) { return 0; } uint8_t target_set_state(TARGET_RESET_STATE state) { return swd_set_target_state_sw(state); }
598
2,504
//********************************************************* // // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the MIT License (MIT). // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. // //********************************************************* #include "pch.h" #include "Scenario6_GetLastVisit.xaml.h" using namespace SDKTemplate; using namespace SDKTemplate::GeolocationCPP; using namespace concurrency; using namespace Platform; using namespace Windows::Devices::Geolocation; using namespace Windows::Foundation; using namespace Windows::Globalization::DateTimeFormatting; using namespace Windows::UI::Core; using namespace Windows::UI::Xaml; using namespace Windows::UI::Xaml::Controls; using namespace Windows::UI::Xaml::Navigation; Scenario6::Scenario6() : rootPage(MainPage::Current) { InitializeComponent(); } /// <summary> /// Invoked when this page is about to be displayed in a Frame. /// </summary> /// <param name="e">Event data that describes how this page was reached. The Parameter /// property is typically used to configure the page.</param> void Scenario6::OnNavigatedTo(NavigationEventArgs^ e) { GetLastVisitButton->IsEnabled = true; } void Scenario6::GetLastVisitButtonClicked(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e) { GetLastVisitButton->IsEnabled = false; LocationDisabledMessage->Visibility = Windows::UI::Xaml::Visibility::Collapsed; // Request permission to access location. create_task(Geolocator::RequestAccessAsync()).then([this](GeolocationAccessStatus accessStatus) { switch (accessStatus) { case GeolocationAccessStatus::Allowed: rootPage->NotifyUser("Waiting for update...", NotifyType::StatusMessage); // Get the last visit report, if any. return create_task(GeovisitMonitor::GetLastReportAsync()).then([this](Geovisit^ visit) { rootPage->NotifyUser("Location updated.", NotifyType::StatusMessage); return visit; }); case GeolocationAccessStatus::Denied: rootPage->NotifyUser("Access to location is denied.", NotifyType::ErrorMessage); LocationDisabledMessage->Visibility = Windows::UI::Xaml::Visibility::Visible; break; case GeolocationAccessStatus::Unspecified: default: rootPage->NotifyUser("Unspecified error!", NotifyType::ErrorMessage); break; } return task_from_result<Geovisit^>(nullptr); }).then([this](Geovisit^ visit) { UpdateLastVisit(visit); GetLastVisitButton->IsEnabled = true; }); } /// <summary> /// Updates the user interface with the Geovisit data provided /// </summary> /// <param name="visit">Geovisit to display its details</param> void Scenario6::UpdateLastVisit(Geovisit^ visit) { if (visit == nullptr) { ScenarioOutput_Latitude->Text = "No data"; ScenarioOutput_Longitude->Text = "No data"; ScenarioOutput_Accuracy->Text = "No data"; ScenarioOutput_Timestamp->Text = "No data"; ScenarioOutput_VisitStateChange->Text = "No data"; } else { // A valid visit is available, extract the state change and Timestamp. ScenarioOutput_VisitStateChange->Text = visit->StateChange.ToString(); DateTimeFormatter^ dateFormatter = ref new DateTimeFormatter("shortdate longtime"); ScenarioOutput_Timestamp->Text = dateFormatter->Format(visit->Timestamp); // If a valid position is available, extract the position information that caused the state change to happen. if (visit->Position == nullptr) { ScenarioOutput_Latitude->Text = "No data"; ScenarioOutput_Longitude->Text = "No data"; ScenarioOutput_Accuracy->Text = "No data"; } else { ScenarioOutput_Latitude->Text = visit->Position->Coordinate->Point->Position.Latitude.ToString(); ScenarioOutput_Longitude->Text = visit->Position->Coordinate->Point->Position.Longitude.ToString(); ScenarioOutput_Accuracy->Text = visit->Position->Coordinate->Accuracy.ToString(); } } }
1,683
521
typedef struct _FB_CONSOLE_CTX { int active, visible; int w, h; unsigned long phys_addr; int scrollWasOff; int forceInpBufferChanged; } FB_CONSOLE_CTX; extern FB_CONSOLE_CTX __fb_con; int fb_ConsoleLocate_BIOS( int row, int col, int cursor ); void fb_ConsoleGetXY_BIOS( int *col, int *row ); unsigned int fb_ConsoleReadXY_BIOS( int col, int row, int colorflag ); void fb_ConsoleScroll_BIOS( int x1, int y1, int x2, int y2, int nrows ); void fb_ConsoleScrollEx( int x1, int y1, int x2, int y2, int nrows ); void fb_ConsoleMultikeyInit( void ); unsigned short fb_hSetCursorPos( int col, int row );
277
2,118
<filename>test/include/cds_test/stat_michael_list_out.h // Copyright (c) 2006-2018 <NAME> // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef CDSTEST_STAT_MICHAEL_LIST_OUT_H #define CDSTEST_STAT_MICHAEL_LIST_OUT_H #include <cds/intrusive/details/michael_list_base.h> namespace cds_test { static inline property_stream& operator <<( property_stream& o, cds::intrusive::michael_list::empty_stat const& /*s*/ ) { return o; } static inline property_stream& operator <<( property_stream& o, cds::intrusive::michael_list::stat<> const& s ) { return o << CDSSTRESS_STAT_OUT( s, m_nInsertSuccess ) << CDSSTRESS_STAT_OUT( s, m_nInsertFailed ) << CDSSTRESS_STAT_OUT( s, m_nInsertRetry ) << CDSSTRESS_STAT_OUT( s, m_nUpdateNew ) << CDSSTRESS_STAT_OUT( s, m_nUpdateExisting ) << CDSSTRESS_STAT_OUT( s, m_nUpdateFailed ) << CDSSTRESS_STAT_OUT( s, m_nUpdateRetry ) << CDSSTRESS_STAT_OUT( s, m_nUpdateMarked ) << CDSSTRESS_STAT_OUT( s, m_nEraseSuccess ) << CDSSTRESS_STAT_OUT( s, m_nEraseFailed ) << CDSSTRESS_STAT_OUT( s, m_nEraseRetry ) << CDSSTRESS_STAT_OUT( s, m_nFindSuccess ) << CDSSTRESS_STAT_OUT( s, m_nFindFailed ) << CDSSTRESS_STAT_OUT( s, m_nHelpingSuccess ) << CDSSTRESS_STAT_OUT( s, m_nHelpingFailed ); } template <typename Stat> static inline property_stream& operator <<( property_stream& o, cds::intrusive::michael_list::wrapped_stat<Stat> const& s ) { return o << s.m_stat; } } // namespace cds_test #endif // #ifndef CDSTEST_STAT_MICHAEL_LIST_OUT_H
846
6,224
<filename>tests/drivers/i2c/i2c_tca954x/src/main.c /* * Copyright (c) 2016 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include <ztest.h> #include <device.h> #include <drivers/i2c.h> #if DT_NODE_HAS_STATUS(DT_ALIAS(i2c_channel_0), okay) #define I2C_0_CTRL_NODE_ID DT_ALIAS(i2c_channel_0) #define I2C_0_CTRL_DEV_NAME DT_LABEL(I2C_0_CTRL_NODE_ID) #else #error "I2C 0 controller device not found" #endif #if DT_NODE_HAS_STATUS(DT_ALIAS(i2c_channel_1), okay) #define I2C_1_CTRL_NODE_ID DT_ALIAS(i2c_channel_1) #define I2C_1_CTRL_DEV_NAME DT_LABEL(I2C_1_CTRL_NODE_ID) #else #error "I2C 1 controller device not found" #endif /** * @brief Test Asserts * * This test verifies various assert macros provided by ztest. * */ static void test_tca954x(void) { uint8_t buff[1]; const struct device *i2c0 = DEVICE_DT_GET(I2C_0_CTRL_NODE_ID); const struct device *i2c1 = DEVICE_DT_GET(I2C_1_CTRL_NODE_ID); zassert_true(device_is_ready(i2c0), "I2C 0 not ready"); zassert_true(device_is_ready(i2c1), "I2C 1 not ready"); i2c_read(i2c0, buff, 1, 0x42); i2c_read(i2c1, buff, 1, 0x42); } void test_main(void) { ztest_test_suite(framework_tests, ztest_unit_test(test_tca954x) ); ztest_run_test_suite(framework_tests); }
611
578
import time import unittest from mock import MagicMock from tests.tools.client.fixtures import describe_groups, list_groups, list_groups_error from kafka.tools.client import Client from kafka.tools.models.broker import Broker from kafka.tools.models.group import Group, GroupMember from kafka.tools.protocol.requests.list_groups_v0 import ListGroupsV0Request def assert_cluster_has_groups(cluster, dg): for dgroup in dg['groups']: assert dgroup['group_id'] in cluster.groups group = cluster.groups[dgroup['group_id']] assert group.name == dgroup['group_id'] assert group.protocol == dgroup['protocol'] assert group.protocol_type == dgroup['protocol_type'] assert len(group.members) == len(dgroup['members']) for i, gmember in enumerate(dgroup['members']): member = group.members[i] assert member.group == group assert member.name == gmember['member_id'] assert member.client_id == gmember['client_id'] assert member.client_host == gmember['client_host'] assert member.metadata == gmember['member_metadata'] assert member.assignment_data == gmember['member_assignment'] class GroupsTests(unittest.TestCase): def setUp(self): # Dummy client for testing - we're not going to connect that bootstrap broker self.client = Client() self.describe_groups = describe_groups() def test_update_groups_from_describe_create(self): self.client._update_groups_from_describe(self.describe_groups) assert_cluster_has_groups(self.client.cluster, self.describe_groups) def test_update_groups_from_describe_assignment(self): self.client._update_groups_from_describe(self.describe_groups) assert_cluster_has_groups(self.client.cluster, self.describe_groups) group = self.client.cluster.groups['testgroup'] assert group.members[0].topics == {'topic1': [0]} assert group.members[1].topics == {'topic1': [1]} def test_update_groups_from_describe_update(self): self.client.cluster.add_group(Group('testgroup')) self.client._update_groups_from_describe(self.describe_groups) assert_cluster_has_groups(self.client.cluster, self.describe_groups) def test_update_groups_from_describe_clear_members(self): self.client.cluster.add_group(Group('testgroup')) self.client.cluster.groups['testgroup'].members = [GroupMember('badmember')] self.client._update_groups_from_describe(self.describe_groups) assert_cluster_has_groups(self.client.cluster, self.describe_groups) def test_maybe_update_groups_list_expired(self): self.client._send_all_brokers = MagicMock() self.client._send_all_brokers.return_value = ['metadata_response'] self.client._update_groups_from_lists = MagicMock() fake_last_time = time.time() - (self.client.configuration.metadata_refresh * 2) self.client._last_group_list = fake_last_time self.client._maybe_update_groups_list() assert self.client._last_group_list > fake_last_time self.client._send_all_brokers.assert_called_once() arg = self.client._send_all_brokers.call_args[0][0] assert isinstance(arg, ListGroupsV0Request) self.client._update_groups_from_lists.assert_called_once_with(['metadata_response']) def test_maybe_update_groups_list_nocache(self): self.client._send_all_brokers = MagicMock() self.client._update_groups_from_lists = MagicMock() fake_last_time = time.time() - 1 self.client._last_group_list = fake_last_time self.client._maybe_update_groups_list(cache=False) assert self.client._last_group_list > fake_last_time def test_maybe_update_groups_list_usecache(self): self.client._send_all_brokers = MagicMock() self.client._update_groups_from_lists = MagicMock() fake_last_time = time.time() - 1 self.client._last_group_list = fake_last_time self.client._maybe_update_groups_list(cache=True) def test_update_groups_from_lists(self): self.client._add_or_update_group = MagicMock() list_group = list_groups() val = self.client._update_groups_from_lists({1: list_group}) assert val == 0 self.client._add_or_update_group.assert_called_once_with(list_group['groups'][0], 1) def test_update_groups_from_lists_error(self): self.client._add_or_update_group = MagicMock() val = self.client._update_groups_from_lists({1: list_groups_error()}) assert val == 1 self.client._add_or_update_group.assert_not_called() def test_update_groups_from_lists_none(self): self.client._add_or_update_group = MagicMock() val = self.client._update_groups_from_lists({1: None}) assert val == 1 self.client._add_or_update_group.assert_not_called() def test_add_or_update_group(self): broker = Broker('host1.example.com', id=1, port=8031) self.client.cluster.add_broker(broker) list_group = list_groups() self.client._add_or_update_group(list_group['groups'][0], 1) assert 'group1' in self.client.cluster.groups assert self.client.cluster.groups['group1'].coordinator == broker assert self.client.cluster.groups['group1'].protocol_type == 'protocol1' def test_add_or_update_group_update(self): broker = Broker('host1.example.com', id=1, port=8031) self.client.cluster.add_broker(broker) group = Group('group1') self.client.cluster.add_group(group) list_group = list_groups() self.client._add_or_update_group(list_group['groups'][0], 1) assert 'group1' in self.client.cluster.groups assert self.client.cluster.groups['group1'].coordinator == broker assert self.client.cluster.groups['group1'].protocol_type == 'protocol1'
2,400
839
<reponame>kimjand/cxf /** * 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 not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.cxf.tools.wsdlto.databinding.jaxb; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.StringReader; import java.io.StringWriter; import java.io.Writer; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.net.URI; import java.net.URL; import java.nio.file.Files; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import java.util.StringTokenizer; import java.util.logging.Level; import java.util.logging.Logger; import javax.xml.XMLConstants; import javax.xml.namespace.QName; import javax.xml.stream.XMLStreamConstants; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamReader; import javax.xml.stream.util.StreamReaderDelegate; import javax.xml.transform.dom.DOMSource; import javax.xml.validation.SchemaFactory; import javax.xml.xpath.XPath; import javax.xml.xpath.XPathConstants; import javax.xml.xpath.XPathExpression; import javax.xml.xpath.XPathFactory; import org.w3c.dom.Attr; import org.w3c.dom.DOMException; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import org.w3c.dom.ls.LSInput; import org.w3c.dom.ls.LSResourceResolver; import org.xml.sax.Attributes; import org.xml.sax.InputSource; import org.xml.sax.Locator; import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; import org.xml.sax.helpers.XMLFilterImpl; import com.sun.codemodel.ClassType; import com.sun.codemodel.CodeWriter; import com.sun.codemodel.JClass; import com.sun.codemodel.JCodeModel; import com.sun.codemodel.JDefinedClass; import com.sun.codemodel.JMethod; import com.sun.codemodel.JType; import com.sun.tools.xjc.BadCommandLineException; import com.sun.tools.xjc.Driver; import com.sun.tools.xjc.ErrorReceiver; import com.sun.tools.xjc.Options; import com.sun.tools.xjc.Plugin; import com.sun.tools.xjc.XJCListener; import com.sun.tools.xjc.api.Mapping; import com.sun.tools.xjc.api.Property; import com.sun.tools.xjc.api.S2JJAXBModel; import com.sun.tools.xjc.api.SchemaCompiler; import com.sun.tools.xjc.api.TypeAndAnnotation; import com.sun.tools.xjc.api.XJC; import com.sun.tools.xjc.reader.internalizer.AbstractReferenceFinderImpl; import com.sun.tools.xjc.reader.internalizer.DOMForest; import com.sun.tools.xjc.reader.internalizer.InternalizationLogic; import com.sun.tools.xjc.reader.xmlschema.parser.LSInputSAXWrapper; import com.sun.tools.xjc.reader.xmlschema.parser.XMLSchemaInternalizationLogic; import org.apache.cxf.Bus; import org.apache.cxf.catalog.OASISCatalogManager; import org.apache.cxf.catalog.OASISCatalogManagerHelper; import org.apache.cxf.common.i18n.Message; import org.apache.cxf.common.logging.LogUtils; import org.apache.cxf.common.util.ReflectionUtil; import org.apache.cxf.common.util.StringUtils; import org.apache.cxf.common.util.URIParserUtil; import org.apache.cxf.common.xmlschema.SchemaCollection; import org.apache.cxf.helpers.CastUtils; import org.apache.cxf.helpers.DOMUtils; import org.apache.cxf.helpers.FileUtils; import org.apache.cxf.resource.URIResolver; import org.apache.cxf.service.model.SchemaInfo; import org.apache.cxf.service.model.ServiceInfo; import org.apache.cxf.staxutils.StaxUtils; import org.apache.cxf.staxutils.W3CNamespaceContext; import org.apache.cxf.tools.common.ToolConstants; import org.apache.cxf.tools.common.ToolContext; import org.apache.cxf.tools.common.ToolException; import org.apache.cxf.tools.common.model.DefaultValueWriter; import org.apache.cxf.tools.util.ClassCollector; import org.apache.cxf.tools.util.JAXBUtils; import org.apache.cxf.tools.util.OutputStreamCreator; import org.apache.cxf.tools.wsdlto.core.DataBindingProfile; import org.apache.cxf.tools.wsdlto.core.DefaultValueProvider; import org.apache.cxf.tools.wsdlto.core.RandomValueProvider; import org.apache.cxf.wsdl.WSDLConstants; import org.apache.ws.commons.schema.XmlSchema; import org.apache.ws.commons.schema.XmlSchemaSerializer; import org.apache.ws.commons.schema.XmlSchemaSerializer.XmlSchemaSerializerException; public class JAXBDataBinding implements DataBindingProfile { static final String XJCVERSION; static { VersionDetectListener listener = new VersionDetectListener(); try { Driver.run(new String[] {"-version"}, listener); } catch (BadCommandLineException e) { // } XJCVERSION = listener.getVersion(); } static final class VersionDetectListener extends XJCListener { private String s = "2.1"; VersionDetectListener() { } public String getVersion() { return s; } public void error(SAXParseException exception) { } public void fatalError(SAXParseException exception) { } public void warning(SAXParseException exception) { } public void info(SAXParseException exception) { } public void message(String msg) { if (msg.contains(" ")) { msg = msg.substring(msg.indexOf(' ')).trim(); } if (!StringUtils.isEmpty(msg)) { s = msg; } } } public static class LocationFilterReader extends StreamReaderDelegate { boolean isImport; boolean isInclude; int locIdx = -1; OASISCatalogManager catalog; LocationFilterReader(XMLStreamReader read, OASISCatalogManager catalog) { super(read); this.catalog = catalog; } public int next() throws XMLStreamException { int i = super.next(); if (i == XMLStreamConstants.START_ELEMENT) { QName qn = super.getName(); isInclude = qn.equals(WSDLConstants.QNAME_SCHEMA_INCLUDE); isImport = qn.equals(WSDLConstants.QNAME_SCHEMA_IMPORT); if (isImport) { findLocation(); } else { locIdx = -1; } } else { isImport = false; locIdx = -1; } return i; } public int nextTag() throws XMLStreamException { int i = super.nextTag(); if (i == XMLStreamConstants.START_ELEMENT) { QName qn = super.getName(); isInclude = qn.equals(WSDLConstants.QNAME_SCHEMA_INCLUDE); isImport = qn.equals(WSDLConstants.QNAME_SCHEMA_IMPORT); if (isImport) { findLocation(); } else { locIdx = -1; } } else { isImport = false; locIdx = -1; } return i; } private void findLocation() { locIdx = -1; for (int x = super.getAttributeCount(); x > 0; --x) { String nm = super.getAttributeLocalName(x - 1); if ("schemaLocation".equals(nm)) { locIdx = x - 1; } } } public int getAttributeCount() { int i = super.getAttributeCount(); if (locIdx != -1) { --i; } return i; } private int mapIdx(int index) { if (locIdx != -1 && index >= locIdx) { ++index; } return index; } private String mapSchemaLocation(String target) { //See http://java.net/jira/browse/JAXB-925 if (this.getLocation().getSystemId().startsWith("jar:") && XJCVERSION.startsWith("2.2")) { return target; } return JAXBDataBinding.mapSchemaLocation(target, this.getLocation().getSystemId(), catalog); } public String getAttributeValue(String namespaceURI, String localName) { if (isInclude && "schemaLocation".equals(localName)) { return mapSchemaLocation(super.getAttributeValue(namespaceURI, localName)); } return super.getAttributeValue(namespaceURI, localName); } public String getAttributeValue(int index) { if (isInclude) { String n = getAttributeLocalName(index); if ("schemaLocation".equals(n)) { return mapSchemaLocation(super.getAttributeValue(index)); } } return super.getAttributeValue(mapIdx(index)); } public QName getAttributeName(int index) { return super.getAttributeName(mapIdx(index)); } public String getAttributePrefix(int index) { return super.getAttributePrefix(mapIdx(index)); } public String getAttributeNamespace(int index) { return super.getAttributeNamespace(mapIdx(index)); } public String getAttributeLocalName(int index) { return super.getAttributeLocalName(mapIdx(index)); } public String getAttributeType(int index) { return super.getAttributeType(mapIdx(index)); } public boolean isAttributeSpecified(int index) { return super.isAttributeSpecified(mapIdx(index)); } } private static final Logger LOG = LogUtils.getL7dLogger(JAXBDataBinding.class); private static final Set<String> DEFAULT_TYPE_MAP = new HashSet<>(); private static final Map<String, String> JLDEFAULT_TYPE_MAP = new HashMap<>(); private S2JJAXBModel rawJaxbModelGenCode; private ToolContext context; private DefaultValueProvider defaultValues; private boolean initialized; private JAXBBindErrorListener listener; static { DEFAULT_TYPE_MAP.add("boolean"); DEFAULT_TYPE_MAP.add("int"); DEFAULT_TYPE_MAP.add("long"); DEFAULT_TYPE_MAP.add("short"); DEFAULT_TYPE_MAP.add("byte"); DEFAULT_TYPE_MAP.add("float"); DEFAULT_TYPE_MAP.add("double"); DEFAULT_TYPE_MAP.add("char"); DEFAULT_TYPE_MAP.add("java.lang.String"); DEFAULT_TYPE_MAP.add("javax.xml.namespace.QName"); DEFAULT_TYPE_MAP.add("java.net.URI"); DEFAULT_TYPE_MAP.add("java.math.BigInteger"); DEFAULT_TYPE_MAP.add("java.math.BigDecimal"); DEFAULT_TYPE_MAP.add("javax.xml.datatype.XMLGregorianCalendar"); DEFAULT_TYPE_MAP.add("javax.xml.datatype.Duration"); JLDEFAULT_TYPE_MAP.put("java.lang.Character", "char"); JLDEFAULT_TYPE_MAP.put("java.lang.Boolean", "boolean"); JLDEFAULT_TYPE_MAP.put("java.lang.Integer", "int"); JLDEFAULT_TYPE_MAP.put("java.lang.Long", "long"); JLDEFAULT_TYPE_MAP.put("java.lang.Short", "short"); JLDEFAULT_TYPE_MAP.put("java.lang.Byte", "byte"); JLDEFAULT_TYPE_MAP.put("java.lang.Float", "float"); JLDEFAULT_TYPE_MAP.put("java.lang.Double", "double"); DEFAULT_TYPE_MAP.addAll(JLDEFAULT_TYPE_MAP.keySet()); } private void checkEncoding(ToolContext c) { String encoding = (String)c.get(ToolConstants.CFG_ENCODING); if (encoding != null) { try { CodeWriter.class.getDeclaredField("encoding"); } catch (Throwable t) { c.remove(ToolConstants.CFG_ENCODING); String fenc = System.getProperty("file.encoding"); if (!encoding.equals(fenc)) { LOG.log(Level.WARNING, "JAXB_NO_ENCODING_SUPPORT", new String[] {Driver.getBuildID(), fenc}); } } } } public void initialize(ToolContext c) throws ToolException { this.context = c; checkEncoding(c); SchemaCompiler schemaCompiler = XJC.createSchemaCompiler(); Bus bus = context.get(Bus.class); OASISCatalogManager catalog = bus.getExtension(OASISCatalogManager.class); Options opts = getOptions(schemaCompiler); hackInNewInternalizationLogic(schemaCompiler, catalog, opts); ClassCollector classCollector = context.get(ClassCollector.class); ClassNameAllocatorImpl allocator = new ClassNameAllocatorImpl(classCollector, c.optionSet(ToolConstants.CFG_AUTORESOLVE)); schemaCompiler.setClassNameAllocator(allocator); listener = new JAXBBindErrorListener(context.isVerbose(), context.getErrorListener()); schemaCompiler.setErrorListener(listener); // Collection<SchemaInfo> schemas = serviceInfo.getSchemas(); List<InputSource> jaxbBindings = context.getJaxbBindingFile(); SchemaCollection schemas = (SchemaCollection) context.get(ToolConstants.XML_SCHEMA_COLLECTION); List<String> args = new ArrayList<>(); if (context.get(ToolConstants.CFG_NO_ADDRESS_BINDING) == null) { //hard code to enable jaxb extensions args.add("-extension"); String name = "/org/apache/cxf/tools/common/jaxb/W3CEPRJaxbBinding.xml"; if (isJAXB22()) { name = "/org/apache/cxf/tools/common/jaxb/W3CEPRJaxbBinding_jaxb22.xml"; } URL bindingFileUrl = getClass().getResource(name); InputSource ins = new InputSource(bindingFileUrl.toString()); opts.addBindFile(ins); } if (context.get(ToolConstants.CFG_XJC_ARGS) != null) { Object o = context.get(ToolConstants.CFG_XJC_ARGS); if (o instanceof String) { o = new String[] {(String)o}; } String[] xjcArgss = (String[])o; for (String xjcArgs : xjcArgss) { StringTokenizer tokenizer = new StringTokenizer(xjcArgs, ",", false); while (tokenizer.hasMoreTokens()) { String arg = tokenizer.nextToken(); args.add(arg); LOG.log(Level.FINE, "xjc arg:" + arg); } } } if (context.get(ToolConstants.CFG_NO_ADDRESS_BINDING) == null || context.get(ToolConstants.CFG_XJC_ARGS) != null) { try { // keep parseArguments happy, supply dummy required command-line // opts opts.addGrammar(new InputSource("null")); opts.parseArguments(args.toArray(new String[0])); } catch (BadCommandLineException e) { StringBuilder msg = new StringBuilder("XJC reported 'BadCommandLineException' for -xjc argument:"); for (String arg : args) { msg.append(arg).append(' '); } LOG.log(Level.FINE, msg.toString(), e); if (opts != null) { String pluginUsage = getPluginUsageString(opts); msg.append(System.getProperty("line.separator")); if (args.contains("-X")) { throw new ToolException(pluginUsage, e); } msg.append(pluginUsage); } throw new ToolException(msg.toString(), e); } } if (context.optionSet(ToolConstants.CFG_MARK_GENERATED)) { // Add the @Generated annotation in the Java files generated. This is done by passing // '-mark-generated' attribute to jaxb xjc. try { opts.parseArgument(new String[] {"-" + ToolConstants.CFG_MARK_GENERATED_OPTION}, 0); } catch (BadCommandLineException e) { LOG.log(Level.SEVERE, e.getMessage()); throw new ToolException(e); } } addSchemas(opts, schemaCompiler, schemas); addBindingFiles(opts, jaxbBindings, schemas); parseSchemas(schemaCompiler); rawJaxbModelGenCode = schemaCompiler.bind(); addedEnumClassToCollector(schemas, allocator); if (context.get(ToolConstants.CFG_DEFAULT_VALUES) != null) { String cname = (String)context.get(ToolConstants.CFG_DEFAULT_VALUES); if (StringUtils.isEmpty(cname)) { defaultValues = new RandomValueProvider(); } else { if (cname.charAt(0) == '=') { cname = cname.substring(1); } try { defaultValues = (DefaultValueProvider)Class.forName(cname).newInstance(); } catch (Exception e) { LOG.log(Level.SEVERE, e.getMessage()); throw new ToolException(e); } } } initialized = true; } private void parseSchemas(SchemaCompiler schemaCompiler) { for (String ns : context.getNamespacePackageMap().keySet()) { schemaCompiler.parseSchema( JAXBUtils.getPackageMappingSchemaBinding(ns, context.mapPackageName(ns))); } if (context.getPackageName() != null) { schemaCompiler.setDefaultPackageName(context.getPackageName()); } } private boolean isJAXB22() { return org.apache.cxf.common.jaxb.JAXBUtils.isJAXB22(); } private static final class ReferenceFinder extends AbstractReferenceFinderImpl { private Locator locator; private OASISCatalogManager catalog; ReferenceFinder(DOMForest parent, OASISCatalogManager cat) { super(parent); catalog = cat; } public void setDocumentLocator(Locator loc) { super.setDocumentLocator(loc); this.locator = loc; } protected String findExternalResource(String nsURI, String localName, Attributes atts) { if (XMLConstants.W3C_XML_SCHEMA_NS_URI.equals(nsURI) && ("import".equals(localName) || "include".equals(localName))) { String s = atts.getValue("schemaLocation"); if (!StringUtils.isEmpty(s)) { //See http://java.net/jira/browse/JAXB-925 if (locator.getSystemId().startsWith("jar:") && XJCVERSION.startsWith("2.2")) { return s; } s = JAXBDataBinding.mapSchemaLocation(s, locator.getSystemId(), catalog); } return s; } return null; } } private void hackInNewInternalizationLogic(SchemaCompiler schemaCompiler, final OASISCatalogManager catalog, Options opts) { try { Field f = schemaCompiler.getClass().getDeclaredField("forest"); ReflectionUtil.setAccessible(f); XMLSchemaInternalizationLogic logic = new XMLSchemaInternalizationLogic() { public XMLFilterImpl createExternalReferenceFinder(DOMForest parent) { return new ReferenceFinder(parent, catalog); } }; DOMForest forest; try { Constructor<DOMForest> c = DOMForest.class.getConstructor(InternalizationLogic.class, Options.class); forest = c.newInstance(logic, opts); } catch (Throwable t) { Constructor<DOMForest> c = DOMForest.class.getConstructor(InternalizationLogic.class); forest = c.newInstance(logic); } forest.setErrorHandler((ErrorReceiver)schemaCompiler); f.set(schemaCompiler, forest); } catch (Throwable ex) { //ignore } } private void addBindingFiles(Options opts, List<InputSource> jaxbBindings, SchemaCollection schemas) { for (InputSource binding : jaxbBindings) { XMLStreamReader r = StaxUtils.createXMLStreamReader(binding); try { StaxUtils.toNextTag(r); String s = r.getAttributeValue(null, "schemaLocation"); if (StringUtils.isEmpty(s)) { Document d = StaxUtils.read(r); XPathFactory xpathFactory = XPathFactory.newInstance(); try { xpathFactory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, Boolean.TRUE); } catch (javax.xml.xpath.XPathFactoryConfigurationException ex) { // ignore } XPath p = xpathFactory.newXPath(); p.setNamespaceContext(new W3CNamespaceContext(d.getDocumentElement())); XPathExpression xpe = p.compile(d.getDocumentElement().getAttribute("node")); for (XmlSchema schema : schemas.getXmlSchemas()) { if (XMLConstants.W3C_XML_SCHEMA_NS_URI.equals(schema.getTargetNamespace())) { continue; } Object src = getSchemaNode(schema, schemas); NodeList nodes = (NodeList)xpe.evaluate(src, XPathConstants.NODESET); if (nodes.getLength() > 0) { String key = schema.getSourceURI(); binding = convertToTmpInputSource(d.getDocumentElement(), key); opts.addBindFile(binding); binding = null; } } } } catch (Exception ex) { //ignore, just pass to jaxb } finally { try { r.close(); } catch (Exception ex) { //ignore } } if (binding != null) { opts.addBindFile(binding); } } } private Object getSchemaNode(XmlSchema schema, SchemaCollection schemaCollection) { XmlSchemaSerializer xser = new XmlSchemaSerializer(); xser.setExtReg(schemaCollection.getExtReg()); Document[] docs; try { docs = xser.serializeSchema(schema, false); } catch (XmlSchemaSerializerException e) { throw new RuntimeException(e); } return docs[0].getDocumentElement(); } private InputSource convertToTmpInputSource(Element ele, String schemaLoc) throws Exception { ele.setAttributeNS(null, "schemaLocation", schemaLoc); File tmpFile = FileUtils.createTempFile("jaxbbinding", ".xml"); tmpFile.deleteOnExit(); try (Writer w = Files.newBufferedWriter(tmpFile.toPath())) { StaxUtils.writeTo(ele, w); } return new InputSource(URIParserUtil.getAbsoluteURI(tmpFile.getAbsolutePath())); } private void addSchemas(Options opts, SchemaCompiler schemaCompiler, SchemaCollection schemaCollection) { Set<String> ids = new HashSet<>(); @SuppressWarnings("unchecked") List<ServiceInfo> serviceList = (List<ServiceInfo>)context.get(ToolConstants.SERVICE_LIST); for (ServiceInfo si : serviceList) { for (SchemaInfo sci : si.getSchemas()) { String key = sci.getSystemId(); if (ids.contains(key)) { continue; } ids.add(key); } } Bus bus = context.get(Bus.class); OASISCatalogManager catalog = bus.getExtension(OASISCatalogManager.class); for (XmlSchema schema : schemaCollection.getXmlSchemas()) { if (XMLConstants.W3C_XML_SCHEMA_NS_URI.equals(schema.getTargetNamespace())) { continue; } String key = schema.getSourceURI(); if (ids.contains(key)) { continue; } if (!key.startsWith("file:") && !key.startsWith("jar:")) { XmlSchemaSerializer xser = new XmlSchemaSerializer(); xser.setExtReg(schemaCollection.getExtReg()); Document[] docs; try { docs = xser.serializeSchema(schema, false); } catch (XmlSchemaSerializerException e) { throw new RuntimeException(e); } Element ele = docs[0].getDocumentElement(); if (context.fullValidateWSDL()) { String uri = null; try { uri = docs[0].getDocumentURI(); } catch (Throwable ex) { //ignore - DOM level 3 } validateSchema(ele, uri, catalog, schemaCollection); } ele = removeImportElement(ele, key, catalog); try { docs[0].setDocumentURI(key); } catch (Throwable t) { //ignore - DOM level 3 } InputSource is = new InputSource((InputStream)null); //key = key.replaceFirst("#types[0-9]+$", ""); is.setSystemId(key); is.setPublicId(key); opts.addGrammar(is); try { schemaCompiler.parseSchema(key, createNoCDATAReader(StaxUtils.createXMLStreamReader(ele, key))); } catch (XMLStreamException e) { throw new ToolException(e); } } } for (XmlSchema schema : schemaCollection.getXmlSchemas()) { if (XMLConstants.W3C_XML_SCHEMA_NS_URI.equals(schema.getTargetNamespace())) { continue; } String key = schema.getSourceURI(); String tns = schema.getTargetNamespace(); String ltns = schema.getLogicalTargetNamespace(); // accepting also a null tns (e.g., reported by apache.ws.xmlschema for no-namespace) if (ids.contains(key) || (tns == null && !StringUtils.isEmpty(ltns))) { continue; } if (key.startsWith("file:") || key.startsWith("jar:")) { InputStream in = null; try { //NOPMD if (key.startsWith("file:")) { in = Files.newInputStream(new File(new URI(key)).toPath()); } else { in = new URL(key).openStream(); } XMLStreamReader reader = StaxUtils.createXMLStreamReader(key, in); reader = createNoCDATAReader(new LocationFilterReader(reader, catalog)); InputSource is = new InputSource(key); opts.addGrammar(is); schemaCompiler.parseSchema(key, reader); reader.close(); } catch (RuntimeException ex) { throw ex; } catch (Exception ex) { throw new RuntimeException(ex); } finally { if (in != null) { try { in.close(); } catch (IOException e) { //ignore } } } } } addSchemasForServiceInfos(catalog, serviceList, opts, schemaCompiler, schemaCollection); } private void addSchemasForServiceInfos(OASISCatalogManager catalog, List<ServiceInfo> serviceList, Options opts, SchemaCompiler schemaCompiler, SchemaCollection schemaCollection) { Set<String> ids = new HashSet<>(); for (ServiceInfo si : serviceList) { for (SchemaInfo sci : si.getSchemas()) { String key = sci.getSystemId(); if (ids.contains(key)) { continue; } ids.add(key); Element ele = sci.getElement(); if (context.fullValidateWSDL()) { validateSchema(ele, sci.getSystemId(), catalog, schemaCollection); } ele = removeImportElement(ele, key, catalog); InputSource is = new InputSource((InputStream)null); //key = key.replaceFirst("#types[0-9]+$", ""); is.setSystemId(key); is.setPublicId(key); opts.addGrammar(is); try { XMLStreamReader reader = createNoCDATAReader(StaxUtils.createXMLStreamReader(ele, key)); schemaCompiler.parseSchema(key, reader); } catch (XMLStreamException e) { throw new RuntimeException(e); } } } } private XMLStreamReader createNoCDATAReader(final XMLStreamReader reader) { return new StreamReaderDelegate(reader) { public int next() throws XMLStreamException { int i = super.next(); return i == XMLStreamConstants.CDATA ? XMLStreamConstants.CHARACTERS : i; } }; } private String getPluginUsageString(Options opts) { StringBuilder buf = new StringBuilder(128); buf.append("\nAvailable plugin options:\n"); for (Plugin pl : opts.getAllPlugins()) { buf.append(pl.getUsage()); buf.append('\n'); } return buf.toString(); } // JAXB 'deprecates' getOptions, by which they mean that they reserve the right to change it. @SuppressWarnings("deprecation") private Options getOptions(SchemaCompiler schemaCompiler) throws ToolException { return schemaCompiler.getOptions(); } // JAXB bug. JAXB ClassNameCollector may not be invoked when generated // class is an enum. We need to use this method to add the missed file // to classCollector. private void addedEnumClassToCollector(SchemaCollection schemaCollection, ClassNameAllocatorImpl allocator) { //for (Element schemaElement : schemaList.values()) { for (XmlSchema schema : schemaCollection.getXmlSchemas()) { String targetNamespace = schema.getTargetNamespace(); if (StringUtils.isEmpty(targetNamespace)) { continue; } String packageName = context.mapPackageName(targetNamespace); if (!addedToClassCollector(packageName)) { allocator.assignClassName(packageName, "*"); } } } private boolean addedToClassCollector(String packageName) { ClassCollector classCollector = context.get(ClassCollector.class); Collection<String> files = classCollector.getGeneratedFileInfo(); for (String file : files) { int dotIndex = file.lastIndexOf('.'); String sub = dotIndex <= 0 ? "" : file.substring(0, dotIndex - 1); if (sub.equals(packageName)) { return true; } } return false; } private boolean isSuppressCodeGen() { return context.optionSet(ToolConstants.CFG_SUPPRESS_GEN); } public void generate(ToolContext c) throws ToolException { if (!initialized) { initialize(c); } if (rawJaxbModelGenCode == null) { return; } if (c.getErrorListener().getErrorCount() > 0) { return; } try { String dir = (String)context.get(ToolConstants.CFG_OUTPUTDIR); TypesCodeWriter fileCodeWriter = new TypesCodeWriter(new File(dir), context.getExcludePkgList(), (String)context.get(ToolConstants.CFG_ENCODING), context.get(OutputStreamCreator.class)); S2JJAXBModel schem2JavaJaxbModel = rawJaxbModelGenCode; ClassCollector classCollector = context.get(ClassCollector.class); for (JClass cls : schem2JavaJaxbModel.getAllObjectFactories()) { classCollector.getTypesPackages().add(cls._package().name()); } JCodeModel jcodeModel = schem2JavaJaxbModel.generateCode(null, null); if (!isSuppressCodeGen()) { jcodeModel.build(fileCodeWriter); } context.put(JCodeModel.class, jcodeModel); for (String str : fileCodeWriter.getExcludeFileList()) { context.getExcludeFileList().add(str); } return; } catch (IOException e) { Message msg = new Message("FAIL_TO_GENERATE_TYPES", LOG); throw new ToolException(msg, e); } } public String getType(QName qname, boolean element) { TypeAndAnnotation typeAnno = rawJaxbModelGenCode.getJavaType(qname); if (element) { Mapping mapping = rawJaxbModelGenCode.get(qname); if (mapping != null) { typeAnno = mapping.getType(); } } if (typeAnno != null && typeAnno.getTypeClass() != null) { return typeAnno.getTypeClass().fullName(); } return null; } public String getWrappedElementType(QName wrapperElement, QName item) { Mapping mapping = rawJaxbModelGenCode.get(wrapperElement); if (mapping != null) { List<? extends Property> propList = mapping.getWrapperStyleDrilldown(); if (propList != null) { for (Property pro : propList) { if (pro.elementName().getNamespaceURI().equals(item.getNamespaceURI()) && pro.elementName().getLocalPart().equals(item.getLocalPart())) { return pro.type().fullName(); } } } } return null; } private Element removeImportElement(Element element, String sysId, OASISCatalogManager catalog) { List<Element> impElemList = DOMUtils.findAllElementsByTagNameNS(element, ToolConstants.SCHEMA_URI, "import"); List<Element> incElemList = DOMUtils.findAllElementsByTagNameNS(element, ToolConstants.SCHEMA_URI, "include"); boolean hasJAXB = DOMUtils.hasElementInNS(element, ToolConstants.NS_JAXB_BINDINGS); if (impElemList.isEmpty() && incElemList.isEmpty() && !hasJAXB) { return element; } element = (Element)cloneNode(element.getOwnerDocument(), element, true); impElemList = DOMUtils.findAllElementsByTagNameNS(element, ToolConstants.SCHEMA_URI, "import"); for (Element item : impElemList) { item.removeAttribute("schemaLocation"); } incElemList = DOMUtils.findAllElementsByTagNameNS(element, ToolConstants.SCHEMA_URI, "include"); for (Element elem : incElemList) { Attr val = elem.getAttributeNode("schemaLocation"); val.setNodeValue(mapSchemaLocation(val.getNodeValue(), sysId, catalog)); } if (hasJAXB) { //need to add ns and version String pfx = DOMUtils.getPrefix(element, ToolConstants.NS_JAXB_BINDINGS); if (StringUtils.isEmpty(pfx)) { pfx = DOMUtils.createNamespace(element, ToolConstants.NS_JAXB_BINDINGS); } element.setAttributeNS(ToolConstants.NS_JAXB_BINDINGS, pfx + ":version", "2.0"); } return element; } public Node cloneNode(Document document, Node node, boolean deep) throws DOMException { if (document == null || node == null) { return null; } int type = node.getNodeType(); if (node.getOwnerDocument() == document) { return node.cloneNode(deep); } Node clone; switch (type) { case Node.CDATA_SECTION_NODE: clone = document.createCDATASection(node.getNodeValue()); break; case Node.COMMENT_NODE: clone = document.createComment(node.getNodeValue()); break; case Node.ENTITY_REFERENCE_NODE: clone = document.createEntityReference(node.getNodeName()); break; case Node.ELEMENT_NODE: clone = document.createElement(node.getNodeName()); NamedNodeMap attributes = node.getAttributes(); for (int i = 0; i < attributes.getLength(); i++) { ((Element)clone).setAttributeNS(attributes.item(i).getNamespaceURI(), attributes.item(i).getNodeName(), attributes.item(i).getNodeValue()); } try { clone.setUserData("location", node.getUserData("location"), null); } catch (Throwable t) { //non DOM level 3 } break; case Node.TEXT_NODE: clone = document.createTextNode(node.getNodeValue()); break; default: return null; } if (deep && type == Node.ELEMENT_NODE) { Node child = node.getFirstChild(); while (child != null) { clone.appendChild(cloneNode(document, child, true)); child = child.getNextSibling(); } } return clone; } public void validateSchema(Element ele, String uri, final OASISCatalogManager catalog, final SchemaCollection schemaCollection) throws ToolException { SchemaFactory schemaFact = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI); schemaFact.setResourceResolver(new LSResourceResolver() { public LSInput resolveResource(String type, String namespaceURI, String publicId, String systemId, String baseURI) { String s = JAXBDataBinding.mapSchemaLocation(systemId, baseURI, catalog); LOG.fine("validating: " + namespaceURI + " " + systemId + " " + baseURI + " " + s); if (s == null) { XmlSchema sc = schemaCollection.getSchemaByTargetNamespace(namespaceURI); if (sc != null) { StringWriter writer = new StringWriter(); sc.write(writer); InputSource src = new InputSource(new StringReader(writer.toString())); src.setSystemId(sc.getSourceURI()); return new LSInputSAXWrapper(src); } throw new ToolException("Schema not found for namespace: " + namespaceURI); } return new LSInputSAXWrapper(new InputSource(s)); } }); DOMSource domSrc = new DOMSource(ele, uri); try { schemaFact.newSchema(domSrc); } catch (SAXException e) { if (e.getLocalizedMessage().indexOf("src-resolve.4.2") > -1) { //Ignore schema resolve error and do nothing } else { //e.printStackTrace(); throw new ToolException("Schema Error : " + e.getLocalizedMessage(), e); } } } public DefaultValueWriter createDefaultValueWriter(QName qname, boolean element) { if (defaultValues == null) { return null; } TypeAndAnnotation typeAnno = rawJaxbModelGenCode.getJavaType(qname); if (element) { Mapping mapping = rawJaxbModelGenCode.get(qname); if (mapping != null) { typeAnno = mapping.getType(); } } if (typeAnno != null && typeAnno.getTypeClass() instanceof JDefinedClass) { JDefinedClass dc = (JDefinedClass)typeAnno.getTypeClass(); if (dc.isAbstract()) { //no default values for abstract classes typeAnno = null; } } if (typeAnno != null) { final JType type = typeAnno.getTypeClass(); return new JAXBDefaultValueWriter(type); } return null; } public DefaultValueWriter createDefaultValueWriterForWrappedElement(QName wrapperElement, QName item) { if (defaultValues != null) { Mapping mapping = rawJaxbModelGenCode.get(wrapperElement); if (mapping != null) { List<? extends Property> propList = mapping.getWrapperStyleDrilldown(); for (Property pro : propList) { if (pro.elementName().getNamespaceURI().equals(item.getNamespaceURI()) && pro.elementName().getLocalPart().equals(item.getLocalPart())) { JType type = pro.type(); if (type instanceof JDefinedClass && ((JDefinedClass)type).isAbstract()) { //no default values for abstract classes return null; } return new JAXBDefaultValueWriter(pro.type()); } } } } return null; } private class JAXBDefaultValueWriter implements DefaultValueWriter { final JType type; JAXBDefaultValueWriter(JType tp) { type = tp; } public void writeDefaultValue(Writer writer, String indent, String path, String varName) throws IOException { path = path + "/" + varName; writeDefaultValue(writer, indent, path, varName, type); } public void writeDefaultValue(Writer writer, String indent, String path, String varName, JType tp) throws IOException { writer.write(tp.fullName()); writer.write(" "); writer.write(varName); writer.write(" = "); if (tp.isArray()) { writer.write("new "); writer.write(tp.fullName()); writer.write(" {};"); } else if (DEFAULT_TYPE_MAP.contains(tp.fullName())) { writeDefaultType(writer, tp, path); writer.write(";"); } else if (tp instanceof JDefinedClass) { JDefinedClass jdc = (JDefinedClass)tp; if (jdc.getClassType() == ClassType.ENUM) { //no way to get the field list as it's private with //no accessors :-( try { Field f = jdc.getClass().getDeclaredField("enumConstantsByName"); ReflectionUtil.setAccessible(f); Map<?, ?> map = (Map<?, ?>)f.get(jdc); Set<String> values = CastUtils.cast(map.keySet()); String first = defaultValues.chooseEnumValue(path, values); writer.write(tp.fullName()); writer.write("."); writer.write(first); writer.write(";"); } catch (Exception e) { IOException ex = new IOException(e.getMessage()); ex.initCause(e); throw ex; } } else if (jdc.isAbstract()) { writer.write("null;"); } else { writer.write("new "); writer.write(tp.fullName()); writer.write("();"); fillInFields(writer, indent, path, varName, jdc); } } else { boolean found = false; JType tp2 = tp.erasure(); try { Field f = tp2.getClass().getDeclaredField("_class"); ReflectionUtil.setAccessible(f); Class<?> cls = (Class<?>)f.get(tp2); if (List.class.isAssignableFrom(cls)) { found = true; writer.write("new "); writer.write(tp.fullName().replace("java.util.List", "java.util.ArrayList")); writer.write("();"); f = tp.getClass().getDeclaredField("args"); ReflectionUtil.setAccessible(f); List<JClass> lcl = CastUtils.cast((List<?>)f.get(tp)); JClass cl = lcl.get(0); int cnt = defaultValues.getListLength(path + "/" + varName); for (int x = 0; x < cnt; x++) { writer.write("\n"); writer.write(indent); writeDefaultValue(writer, indent, path + "/" + varName + "Val", varName + "Val" + cnt, cl); writer.write("\n"); writer.write(indent); writer.write(varName); writer.write(".add("); writer.write(varName + "Val" + cnt); writer.write(");"); } } } catch (Exception e) { //ignore } if (!found) { //System.err.println("No idea what to do with " + tp.fullName()); //System.err.println(" class " + tp.getClass().getName()); writer.write("null;"); } } } public void fillInFields(Writer writer, String indent, String path, String varName, JDefinedClass tp) throws IOException { JClass sp = tp._extends(); if (sp instanceof JDefinedClass) { fillInFields(writer, indent, path, varName, (JDefinedClass)sp); } Collection<JMethod> methods = tp.methods(); for (JMethod m : methods) { if (m.name().startsWith("set")) { writer.write("\n"); writer.write(indent); if (DEFAULT_TYPE_MAP.contains(m.listParamTypes()[0].fullName())) { writer.write(varName); writer.write("."); writer.write(m.name()); writer.write("("); writeDefaultType(writer, m.listParamTypes()[0], path + "/" + m.name().substring(3)); writer.write(");"); } else { int idx = path.indexOf("/" + m.name().substring(3) + "/"); if (idx > 0) { idx = path.indexOf("/" + m.name().substring(3) + "/", idx + 1); } boolean hasTwo = idx > 0; if (!hasTwo) { writeDefaultValue(writer, indent, path + "/" + m.name().substring(3), varName + m.name().substring(3), m.listParamTypes()[0]); writer.write("\n"); } writer.write(indent); writer.write(varName); writer.write("."); writer.write(m.name()); writer.write("("); if (!hasTwo) { writer.write(varName + m.name().substring(3)); } else { writer.write("null"); } writer.write(");"); } } else if (m.type().fullName().startsWith("java.util.List")) { writer.write("\n"); writer.write(indent); writeDefaultValue(writer, indent, path + "/" + m.name().substring(3), varName + m.name().substring(3), m.type()); writer.write("\n"); writer.write(indent); writer.write(varName); writer.write("."); writer.write(m.name()); writer.write("().addAll("); writer.write(varName + m.name().substring(3)); writer.write(");"); } } } private void writeDefaultType(Writer writer, JType t, String path) throws IOException { String name = t.fullName(); writeDefaultType(writer, name, path); } private void writeDefaultType(Writer writer, String name, String path) throws IOException { if (JLDEFAULT_TYPE_MAP.containsKey(name)) { writer.append(name.substring("java.lang.".length())).append(".valueOf("); writeDefaultType(writer, JLDEFAULT_TYPE_MAP.get(name), path); writer.append(")"); } else if ("boolean".equals(name)) { writer.append(defaultValues.getBooleanValue(path) ? "true" : "false"); } else if ("int".equals(name)) { writer.append(Integer.toString(defaultValues.getIntValue(path))); } else if ("long".equals(name)) { writer.append(Long.toString(defaultValues.getLongValue(path))).append("l"); } else if ("short".equals(name)) { writer.append("(short)").append(Short.toString(defaultValues.getShortValue(path))); } else if ("byte".equals(name)) { writer.append("(byte)").append(Byte.toString(defaultValues.getByteValue(path))); } else if ("float".equals(name)) { writer.append(Float.toString(defaultValues.getFloatValue(path))).append("f"); } else if ("double".equals(name)) { writer.append(Double.toString(defaultValues.getDoubleValue(path))); } else if ("char".equals(name)) { writer.append("(char)").append(Character.toString(defaultValues.getCharValue(path))); } else if ("java.lang.String".equals(name)) { writer.append("\"") .append(defaultValues.getStringValue(path)) .append("\""); } else if ("javax.xml.namespace.QName".equals(name)) { QName qn = defaultValues.getQNameValue(path); writer.append("new javax.xml.namespace.QName(\"") .append(qn.getNamespaceURI()) .append("\", \"") .append(qn.getLocalPart()) .append("\")"); } else if ("java.net.URI".equals(name)) { writer.append("new java.net.URI(\"") .append(defaultValues.getURIValue(path).toASCIIString()) .append("\")"); } else if ("java.math.BigInteger".equals(name)) { writer.append("new java.math.BigInteger(\"") .append(defaultValues.getBigIntegerValue(path).toString()) .append("\")"); } else if ("java.math.BigDecimal".equals(name)) { writer.append("new java.math.BigDecimal(\"") .append(defaultValues.getBigDecimalValue(path).toString()) .append("\")"); } else if ("javax.xml.datatype.XMLGregorianCalendar".equals(name)) { writer.append("javax.xml.datatype.DatatypeFactory.newInstance().newXMLGregorianCalendar(\"") .append(defaultValues.getXMLGregorianCalendarValueString(path)) .append("\")"); } else if ("javax.xml.datatype.Duration".equals(name)) { writer.append("javax.xml.datatype.DatatypeFactory.newInstance().newDuration(\"") .append(defaultValues.getDurationValueString(path)) .append("\")"); } } } private static String mapSchemaLocation(String target, String base, OASISCatalogManager catalog) { try { String resolvedLocation = new OASISCatalogManagerHelper().resolve(catalog, target, base); if (resolvedLocation != null) { return resolvedLocation; } } catch (Exception ex) { //ignore } try (URIResolver resolver = new URIResolver(base, target)) { if (resolver.isResolved()) { target = resolver.getURI().toString(); } } catch (Exception ex) { //ignore } return target; } }
28,287
1,444
<gh_stars>1000+ package org.mage.test.cards.single.hou; import mage.constants.PhaseStep; import mage.constants.Zone; import org.junit.Test; import org.mage.test.serverside.base.CardTestPlayerBase; public class ChampionOfWitsTest extends CardTestPlayerBase { private final String champion = "Champion of Wits"; @Test public void testEternalize(){ addCard(Zone.GRAVEYARD, playerA, champion); addCard(Zone.BATTLEFIELD,playerA, "Island", 10); activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA,"Eternalize {5}{U}{U}"); setStopAt(1, PhaseStep.POSTCOMBAT_MAIN); execute(); assertHandCount(playerA, 2); } @Test public void testEternalizeWithAnthem(){ String anthem = "Glorious Anthem"; addCard(Zone.GRAVEYARD, playerA, champion); addCard(Zone.BATTLEFIELD,playerA, "Island", 10); addCard(Zone.BATTLEFIELD, playerA, anthem); activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA,"Eternalize {5}{U}{U}"); setStopAt(1, PhaseStep.POSTCOMBAT_MAIN); execute(); assertHandCount(playerA, 3); } }
466
14,668
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/host/win/etw_trace_consumer.h" #include <stdint.h> #include <memory> #include "base/logging.h" #include "base/logging_win.h" #include "base/threading/thread_checker.h" #include "base/win/event_trace_consumer.h" #include "base/win/event_trace_controller.h" #include "remoting/base/auto_thread_task_runner.h" #include "remoting/base/logging.h" #include "remoting/host/win/etw_trace_controller.h" #include "remoting/host/win/event_trace_data.h" #include "remoting/host/win/host_event_logger.h" namespace remoting { namespace { class EtwTraceConsumerImpl : public EtwTraceConsumer { public: EtwTraceConsumerImpl(); EtwTraceConsumerImpl(const EtwTraceConsumerImpl&) = delete; EtwTraceConsumerImpl& operator=(const EtwTraceConsumerImpl&) = delete; ~EtwTraceConsumerImpl() override; bool StartLogging(scoped_refptr<AutoThreadTaskRunner> task_runner, std::vector<std::unique_ptr<HostEventLogger>> loggers); void StopLogging(); private: class Core : public base::win::EtwTraceConsumerBase<Core> { public: Core(); Core(const Core&) = delete; Core& operator=(const Core&) = delete; ~Core(); static VOID WINAPI ProcessEvent(EVENT_TRACE* event); bool Start(std::vector<std::unique_ptr<HostEventLogger>> loggers); void Stop(); // Blocking call to begin receiving ETW events from Windows. Must be called // on an IO thread which allows blocking. Call Stop() to unblock the thread // and allow it to be cleaned up. void ConsumeEvents(); private: // Parses an event and passes it along to the delegate for processing. void DispatchEvent(EVENT_TRACE* event); static Core* instance_; std::unique_ptr<EtwTraceController> controller_; std::vector<std::unique_ptr<HostEventLogger>> loggers_; THREAD_CHECKER(main_thread_checker_); THREAD_CHECKER(consume_thread_checker_); }; std::unique_ptr<Core> core_; scoped_refptr<AutoThreadTaskRunner> task_runner_; }; // static EtwTraceConsumerImpl::Core* EtwTraceConsumerImpl::Core::instance_ = nullptr; // static void EtwTraceConsumerImpl::Core::ProcessEvent(EVENT_TRACE* event) { // This method is called on the same thread as Consume(). EtwTraceConsumerImpl::Core* instance = instance_; if (instance) { instance->DispatchEvent(event); } } EtwTraceConsumerImpl::Core::Core() { DETACH_FROM_THREAD(consume_thread_checker_); } EtwTraceConsumerImpl::Core::~Core() { DCHECK_CALLED_ON_VALID_THREAD(consume_thread_checker_); } bool EtwTraceConsumerImpl::Core::Start( std::vector<std::unique_ptr<HostEventLogger>> loggers) { DCHECK_CALLED_ON_VALID_THREAD(main_thread_checker_); DCHECK(!instance_); instance_ = this; controller_ = std::make_unique<EtwTraceController>(); if (!controller_->Start()) { return false; } HRESULT hr = OpenRealtimeSession(controller_->GetActiveSessionName()); if (FAILED(hr)) { return false; } loggers_ = std::move(loggers); return true; } void EtwTraceConsumerImpl::Core::Stop() { DCHECK_CALLED_ON_VALID_THREAD(main_thread_checker_); if (!instance_) { return; } DCHECK_EQ(instance_, this); if (controller_) { controller_->Stop(); controller_.reset(); } instance_ = nullptr; } void EtwTraceConsumerImpl::Core::ConsumeEvents() { // Consume will block the thread until the provider is disabled so make sure // it is not run on the same thread that |core_| was created on. DCHECK_CALLED_ON_VALID_THREAD(consume_thread_checker_); Consume(); } void EtwTraceConsumerImpl::Core::DispatchEvent(EVENT_TRACE* event) { // This method is called on the same thread as Consume(). DCHECK_CALLED_ON_VALID_THREAD(consume_thread_checker_); if (!event) { return; } if (!IsEqualGUID(event->Header.Guid, logging::kLogEventId)) { // Event was not logged from our provider. return; } EventTraceData data = EventTraceData::Create(event); if (data.event_type == logging::LOG_MESSAGE_FULL || data.event_type == logging::LOG_MESSAGE) { for (const auto& logger : loggers_) { logger->LogEvent(data); } } } EtwTraceConsumerImpl::EtwTraceConsumerImpl() = default; EtwTraceConsumerImpl::~EtwTraceConsumerImpl() { StopLogging(); } bool EtwTraceConsumerImpl::StartLogging( scoped_refptr<AutoThreadTaskRunner> task_runner, std::vector<std::unique_ptr<HostEventLogger>> loggers) { DCHECK(!core_); core_ = std::make_unique<Core>(); if (!core_->Start(std::move(loggers))) { core_.reset(); return false; } task_runner_ = task_runner; // base::Unretained is safe because |core_| is destroyed on |task_runner_|. task_runner_->PostTask( FROM_HERE, base::BindOnce(&EtwTraceConsumerImpl::Core::ConsumeEvents, base::Unretained(core_.get()))); return true; } void EtwTraceConsumerImpl::StopLogging() { if (!core_) { return; } // |core_| is consuming trace events on |task_runner_| which is effectively // blocked (Windows is calling it back but we can't schedule work on it). // To unblock that thread, we first need to stop tracing, after that we // schedule a deletion on the tracing thread so it occurs after all of the // pending events have been handled. core_->Stop(); task_runner_->DeleteSoon(FROM_HERE, core_.release()); } } // namespace // static std::unique_ptr<EtwTraceConsumer> EtwTraceConsumer::Create( scoped_refptr<AutoThreadTaskRunner> task_runner, std::vector<std::unique_ptr<HostEventLogger>> loggers) { DCHECK(!loggers.empty()); auto etw_trace_consumer = std::make_unique<EtwTraceConsumerImpl>(); if (!etw_trace_consumer->StartLogging(task_runner, std::move(loggers))) { LOG(ERROR) << "Failed to start EtwTraceConsumer instance."; return nullptr; } return etw_trace_consumer; } } // namespace remoting
2,167
1,968
////////////////////////////////////////////////////////////////////////////// // // This file is part of the Corona game engine. // For overview and more information on licensing please refer to README.md // Home page: https://github.com/coronalabs/corona // Contact: <EMAIL> // ////////////////////////////////////////////////////////////////////////////// #ifndef _Rtt_AppleAudioRecorder_H__ #define _Rtt_AppleAudioRecorder_H__ #include "Rtt_PlatformAudioRecorder.h" #include <AudioToolbox/AudioToolbox.h> // ---------------------------------------------------------------------------- namespace Rtt { // ---------------------------------------------------------------------------- #define kNumberAudioRecordDataBuffers 3 class AppleAudioRecorder : public PlatformAudioRecorder { public: typedef AppleAudioRecorder Self; protected: static void HandleInputBufferCallback( void * aqData, AudioQueueRef inAQ, AudioQueueBufferRef inBuffer, const AudioTimeStamp * inStartTime, UInt32 inNumPackets, const AudioStreamPacketDescription *inPacketDesc ); public: AppleAudioRecorder( const ResourceHandle<lua_State> & handle, Rtt_Allocator & allocator, const char * file ); virtual ~AppleAudioRecorder(); protected: void Cleanup(); public: virtual void Start(); virtual void Stop(); private: AudioStreamBasicDescription fDataFormat; AudioQueueRef fQueue; AudioQueueBufferRef fBuffers[kNumberAudioRecordDataBuffers]; AudioFileID fAudioFile; UInt32 fBufferByteSize; SInt64 fCurrentPacket; UInt32 fSavedSessionCategory; /* only used on iOS */ bool fCancelPendingRecording; }; // ---------------------------------------------------------------------------- } // namespace Rtt #endif // _Rtt_AppleAudioRecorder_H__
728
348
<reponame>chamberone/Leaflet.PixiOverlay {"nom":"Vireux-Wallerand","circ":"2ème circonscription","dpt":"Ardennes","inscrits":1332,"abs":693,"votants":639,"blancs":12,"nuls":6,"exp":621,"res":[{"nuance":"LR","nom":"<NAME>","voix":181},{"nuance":"REM","nom":"<NAME>","voix":134},{"nuance":"FN","nom":"M. <NAME>","voix":101},{"nuance":"SOC","nom":"M. <NAME>","voix":92},{"nuance":"FI","nom":"M. <NAME>","voix":89},{"nuance":"EXG","nom":"Mme <NAME>","voix":9},{"nuance":"ECO","nom":"<NAME>","voix":8},{"nuance":"COM","nom":"M. <NAME>","voix":5},{"nuance":"DIV","nom":"Mme <NAME>","voix":2}]}
242
1,570
//===- subzero/src/IceTimerTree.cpp - Pass timer defs ---------------------===// // // The Subzero Code Generator // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// /// /// \file /// \brief Defines the TimerTree class, which tracks flat and cumulative /// execution time collection of call chains. /// //===----------------------------------------------------------------------===// #include "IceTimerTree.h" #include "IceDefs.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wunused-parameter" #endif // __clang__ #include "llvm/Support/Format.h" #include "llvm/Support/Timer.h" #ifdef __clang__ #pragma clang diagnostic pop #endif // __clang__ namespace Ice { TimerStack::TimerStack(const std::string &Name) : Name(Name), FirstTimestamp(timestamp()), LastTimestamp(FirstTimestamp) { if (!BuildDefs::timers()) return; Nodes.resize(1); // Reserve Nodes[0] for the root node (sentinel). IDs.resize(TT__num); LeafTimes.resize(TT__num); LeafCounts.resize(TT__num); #define STR(s) #s #define X(tag) \ IDs[TT_##tag] = STR(tag); \ IDsIndex[STR(tag)] = TT_##tag; TIMERTREE_TABLE; #undef X #undef STR } // Returns the unique timer ID for the given Name, creating a new ID if needed. TimerIdT TimerStack::getTimerID(const std::string &Name) { if (!BuildDefs::timers()) return 0; if (IDsIndex.find(Name) == IDsIndex.end()) { IDsIndex[Name] = IDs.size(); IDs.push_back(Name); LeafTimes.push_back(decltype(LeafTimes)::value_type()); LeafCounts.push_back(decltype(LeafCounts)::value_type()); } return IDsIndex[Name]; } // Creates a mapping from TimerIdT (leaf) values in the Src timer stack into // TimerIdT values in this timer stack. Creates new entries in this timer stack // as needed. TimerStack::TranslationType TimerStack::translateIDsFrom(const TimerStack &Src) { size_t Size = Src.IDs.size(); TranslationType Mapping(Size); for (TimerIdT i = 0; i < Size; ++i) { Mapping[i] = getTimerID(Src.IDs[i]); } return Mapping; } // Merges two timer stacks, by combining and summing corresponding entries. // This timer stack is updated from Src. void TimerStack::mergeFrom(const TimerStack &Src) { if (!BuildDefs::timers()) return; TranslationType Mapping = translateIDsFrom(Src); TTindex SrcIndex = 0; for (const TimerTreeNode &SrcNode : Src.Nodes) { // The first node is reserved as a sentinel, so avoid it. if (SrcIndex > 0) { // Find the full path to the Src node, translated to path components // corresponding to this timer stack. PathType MyPath = Src.getPath(SrcIndex, Mapping); // Find a node in this timer stack corresponding to the given path, // creating new interior nodes as necessary. TTindex MyIndex = findPath(MyPath); Nodes[MyIndex].Time += SrcNode.Time; Nodes[MyIndex].UpdateCount += SrcNode.UpdateCount; } ++SrcIndex; } for (TimerIdT i = 0; i < Src.LeafTimes.size(); ++i) { LeafTimes[Mapping[i]] += Src.LeafTimes[i]; LeafCounts[Mapping[i]] += Src.LeafCounts[i]; } StateChangeCount += Src.StateChangeCount; } // Constructs a path consisting of the sequence of leaf values leading to a // given node, with the Mapping translation applied to the leaf values. The // path ends up being in "reverse" order, i.e. from leaf to root. TimerStack::PathType TimerStack::getPath(TTindex Index, const TranslationType &Mapping) const { PathType Path; while (Index) { Path.push_back(Mapping[Nodes[Index].Interior]); assert(Nodes[Index].Parent < Index); Index = Nodes[Index].Parent; } return Path; } // Given a parent node and a leaf ID, returns the index of the parent's child // ID, creating a new node for the child as necessary. TimerStack::TTindex TimerStack::getChildIndex(TimerStack::TTindex Parent, TimerIdT ID) { if (Nodes[Parent].Children.size() <= ID) Nodes[Parent].Children.resize(ID + 1); if (Nodes[Parent].Children[ID] == 0) { TTindex Size = Nodes.size(); Nodes[Parent].Children[ID] = Size; Nodes.resize(Size + 1); Nodes[Size].Parent = Parent; Nodes[Size].Interior = ID; } return Nodes[Parent].Children[ID]; } // Finds a node in the timer stack corresponding to the given path, creating // new interior nodes as necessary. TimerStack::TTindex TimerStack::findPath(const PathType &Path) { TTindex CurIndex = 0; // The path is in reverse order (leaf to root), so it needs to be followed in // reverse. for (TTindex Index : reverse_range(Path)) { CurIndex = getChildIndex(CurIndex, Index); } assert(CurIndex); // shouldn't be the sentinel node return CurIndex; } // Pushes a new marker onto the timer stack. void TimerStack::push(TimerIdT ID) { if (!BuildDefs::timers()) return; constexpr bool UpdateCounts = false; update(UpdateCounts); StackTop = getChildIndex(StackTop, ID); assert(StackTop); } // Pops the top marker from the timer stack. Validates via assert() that the // expected marker is popped. void TimerStack::pop(TimerIdT ID) { if (!BuildDefs::timers()) return; constexpr bool UpdateCounts = true; update(UpdateCounts); assert(StackTop); assert(Nodes[StackTop].Parent < StackTop); // Verify that the expected ID is being popped. assert(Nodes[StackTop].Interior == ID); (void)ID; // Verify that the parent's child points to the current stack top. assert(Nodes[Nodes[StackTop].Parent].Children[ID] == StackTop); StackTop = Nodes[StackTop].Parent; } // At a state change (e.g. push or pop), updates the flat and cumulative // timings for everything on the timer stack. void TimerStack::update(bool UpdateCounts) { if (!BuildDefs::timers()) return; ++StateChangeCount; // Whenever the stack is about to change, we grab the time delta since the // last change and add it to all active cumulative elements and to the flat // element for the top of the stack. double Current = timestamp(); double Delta = Current - LastTimestamp; if (StackTop) { TimerIdT Leaf = Nodes[StackTop].Interior; if (Leaf >= LeafTimes.size()) { LeafTimes.resize(Leaf + 1); LeafCounts.resize(Leaf + 1); } LeafTimes[Leaf] += Delta; if (UpdateCounts) ++LeafCounts[Leaf]; } TTindex Prefix = StackTop; while (Prefix) { Nodes[Prefix].Time += Delta; // Only update a leaf node count, not the internal node counts. if (UpdateCounts && Prefix == StackTop) ++Nodes[Prefix].UpdateCount; TTindex Next = Nodes[Prefix].Parent; assert(Next < Prefix); Prefix = Next; } // Capture the next timestamp *after* the updates are finished. This // minimizes how much the timer can perturb the reported timing. The numbers // may not sum to 100%, and the missing amount is indicative of the overhead // of timing. LastTimestamp = timestamp(); } void TimerStack::reset() { if (!BuildDefs::timers()) return; StateChangeCount = 0; FirstTimestamp = LastTimestamp = timestamp(); LeafTimes.assign(LeafTimes.size(), 0); LeafCounts.assign(LeafCounts.size(), 0); for (TimerTreeNode &Node : Nodes) { Node.Time = 0; Node.UpdateCount = 0; } } namespace { using DumpMapType = std::multimap<double, std::string>; // Dump the Map items in reverse order of their time contribution. If // AddPercents is true (i.e. for printing "flat times"), it also prints a // cumulative percentage column, and recalculates TotalTime as the sum of all // the individual times so that cumulative percentage adds up to 100%. void dumpHelper(Ostream &Str, const DumpMapType &Map, double TotalTime, bool AddPercents) { if (!BuildDefs::timers()) return; if (AddPercents) { // Recalculate TotalTime as the sum of the individual times. This is // because the individual times generally add up to less than 100% because // of timer overhead. TotalTime = 0; for (const auto &I : Map) { TotalTime += I.first; } } double Sum = 0; for (const auto &I : reverse_range(Map)) { Sum += I.first; if (AddPercents) { Str << llvm::format(" %10.6f %4.1f%% %5.1f%% ", I.first, I.first * 100 / TotalTime, Sum * 100 / TotalTime) << I.second << "\n"; } else { Str << llvm::format(" %10.6f %4.1f%% ", I.first, I.first * 100 / TotalTime) << I.second << "\n"; } } } } // end of anonymous namespace void TimerStack::dump(Ostream &Str, bool DumpCumulative) { if (!BuildDefs::timers()) return; constexpr bool UpdateCounts = true; update(UpdateCounts); double TotalTime = LastTimestamp - FirstTimestamp; assert(TotalTime); char PrefixStr[30]; if (DumpCumulative) { Str << Name << " - Cumulative times:\n" " Seconds Pct EventCnt TimerPath\n"; DumpMapType CumulativeMap; for (TTindex i = 1; i < Nodes.size(); ++i) { TTindex Prefix = i; std::string Suffix = ""; while (Prefix) { if (Suffix.empty()) Suffix = IDs[Nodes[Prefix].Interior]; else Suffix = IDs[Nodes[Prefix].Interior] + "." + Suffix; assert(Nodes[Prefix].Parent < Prefix); Prefix = Nodes[Prefix].Parent; } snprintf(PrefixStr, llvm::array_lengthof(PrefixStr), "%9zu ", Nodes[i].UpdateCount); CumulativeMap.insert(std::make_pair(Nodes[i].Time, PrefixStr + Suffix)); } constexpr bool NoAddPercents = false; dumpHelper(Str, CumulativeMap, TotalTime, NoAddPercents); } Str << Name << " - Flat times:\n" " Seconds Pct CumPct EventCnt TimerName\n"; DumpMapType FlatMap; for (TimerIdT i = 0; i < LeafTimes.size(); ++i) { if (LeafCounts[i]) { snprintf(PrefixStr, llvm::array_lengthof(PrefixStr), "%9zu ", LeafCounts[i]); FlatMap.insert(std::make_pair(LeafTimes[i], PrefixStr + IDs[i])); } } constexpr bool AddPercents = true; dumpHelper(Str, FlatMap, TotalTime, AddPercents); Str << "Number of timer updates: " << StateChangeCount << "\n"; } double TimerStack::timestamp() { // TODO: Implement in terms of std::chrono for C++11. return llvm::TimeRecord::getCurrentTime(false).getWallTime(); } } // end of namespace Ice
3,977
1,963
/* ******************************************************************************* * Copyright (c) 2020-2021, STMicroelectronics * All rights reserved. * * This software component is licensed by ST under BSD 3-Clause license, * the "License"; You may not use this file except in compliance with the * License. You may obtain a copy of the License at: * opensource.org/licenses/BSD-3-Clause * ******************************************************************************* */ #if defined(ARDUINO_GENERIC_H7A3IGKX) || defined(ARDUINO_GENERIC_H7A3IGTX) ||\ defined(ARDUINO_GENERIC_H7A3IIKX) || defined(ARDUINO_GENERIC_H7A3IITX) ||\ defined(ARDUINO_GENERIC_H7B0IBTX) || defined(ARDUINO_GENERIC_H7B3IIKX) ||\ defined(ARDUINO_GENERIC_H7B3IITX) #include "pins_arduino.h" /** * @brief System Clock Configuration * @param None * @retval None */ WEAK void SystemClock_Config(void) { /* SystemClock_Config can be generated by STM32CubeMX */ #warning "SystemClock_Config() is empty. Default clock at reset is used." } #endif /* ARDUINO_GENERIC_* */
384
453
// Copyright (c) the JPEG XL Project Authors. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /// @addtogroup libjxl_decoder /// @{ /// /// @file decode_cxx.h /// @brief C++ header-only helper for @ref decode.h. /// /// There's no binary library associated with the header since this is a header /// only library. #ifndef JXL_DECODE_CXX_H_ #define JXL_DECODE_CXX_H_ #include <memory> #include "jxl/decode.h" #if !(defined(__cplusplus) || defined(c_plusplus)) #error "This a C++ only header. Use jxl/decode.h from C sources." #endif /// Struct to call JxlDecoderDestroy from the JxlDecoderPtr unique_ptr. struct JxlDecoderDestroyStruct { /// Calls @ref JxlDecoderDestroy() on the passed decoder. void operator()(JxlDecoder* decoder) { JxlDecoderDestroy(decoder); } }; /// std::unique_ptr<> type that calls JxlDecoderDestroy() when releasing the /// decoder. /// /// Use this helper type from C++ sources to ensure the decoder is destroyed and /// their internal resources released. typedef std::unique_ptr<JxlDecoder, JxlDecoderDestroyStruct> JxlDecoderPtr; /// Creates an instance of JxlDecoder into a JxlDecoderPtr and initializes it. /// /// This function returns a unique_ptr that will call JxlDecoderDestroy() when /// releasing the pointer. See @ref JxlDecoderCreate for details on the /// instance creation. /// /// @param memory_manager custom allocator function. It may be NULL. The memory /// manager will be copied internally. /// @return a @c NULL JxlDecoderPtr if the instance can not be allocated or /// initialized /// @return initialized JxlDecoderPtr instance otherwise. static inline JxlDecoderPtr JxlDecoderMake( const JxlMemoryManager* memory_manager) { return JxlDecoderPtr(JxlDecoderCreate(memory_manager)); } #endif // JXL_DECODE_CXX_H_ /// @}
618
956
/* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2010-2014 Intel Corporation */ #ifndef _TB_MEM_H_ #define _TB_MEM_H_ /** * @file * * RTE ACL temporary (build phase) memory management. * Contains structures and functions to manage temporary (used by build only) * memory. Memory allocated in large blocks to speed 'free' when trie is * destructed (finish of build phase). */ #ifdef __cplusplus extern "C" { #endif #include <rte_acl_osdep.h> #include <setjmp.h> struct tb_mem_block { struct tb_mem_block *next; struct tb_mem_pool *pool; size_t size; uint8_t *mem; }; struct tb_mem_pool { struct tb_mem_block *block; size_t alignment; size_t min_alloc; size_t alloc; /* jump target in case of memory allocation failure. */ sigjmp_buf fail; }; void *tb_alloc(struct tb_mem_pool *pool, size_t size); void tb_free_pool(struct tb_mem_pool *pool); #ifdef __cplusplus } #endif #endif /* _TB_MEM_H_ */
439
4,012
/* * Copyright (c) 2019-2021, NVIDIA 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 required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <io/comp/gpuinflate.h> #include <cudf_test/base_fixture.hpp> #include <rmm/cuda_stream_view.hpp> #include <rmm/device_buffer.hpp> #include <rmm/device_uvector.hpp> #include <vector> /** * @brief Base test fixture for decompression * * Calls into Decompressor fixture to dispatch actual decompression work, * whose interface and setup is different for each codec. */ template <typename Decompressor> struct DecompressTest : public cudf::test::BaseFixture { void SetUp() override { ASSERT_CUDA_SUCCEEDED(cudaMallocHost((void**)&inf_args, sizeof(cudf::io::gpu_inflate_input_s))); ASSERT_CUDA_SUCCEEDED( cudaMallocHost((void**)&inf_stat, sizeof(cudf::io::gpu_inflate_status_s))); } void TearDown() override { ASSERT_CUDA_SUCCEEDED(cudaFreeHost(inf_stat)); ASSERT_CUDA_SUCCEEDED(cudaFreeHost(inf_args)); } std::vector<uint8_t> vector_from_string(const char* str) const { return std::vector<uint8_t>(reinterpret_cast<const uint8_t*>(str), reinterpret_cast<const uint8_t*>(str) + strlen(str)); } void Decompress(std::vector<uint8_t>* decompressed, const uint8_t* compressed, size_t compressed_size) { rmm::device_buffer src{compressed, compressed_size, rmm::cuda_stream_default}; rmm::device_buffer dst{decompressed->size(), rmm::cuda_stream_default}; inf_args->srcDevice = static_cast<const uint8_t*>(src.data()); inf_args->dstDevice = static_cast<uint8_t*>(dst.data()); inf_args->srcSize = src.size(); inf_args->dstSize = dst.size(); rmm::device_uvector<cudf::io::gpu_inflate_input_s> d_inf_args(1, rmm::cuda_stream_default); rmm::device_uvector<cudf::io::gpu_inflate_status_s> d_inf_stat(1, rmm::cuda_stream_default); ASSERT_CUDA_SUCCEEDED(cudaMemcpyAsync(d_inf_args.data(), inf_args, sizeof(cudf::io::gpu_inflate_input_s), cudaMemcpyHostToDevice, 0)); ASSERT_CUDA_SUCCEEDED(cudaMemcpyAsync(d_inf_stat.data(), inf_stat, sizeof(cudf::io::gpu_inflate_status_s), cudaMemcpyHostToDevice, 0)); ASSERT_CUDA_SUCCEEDED( static_cast<Decompressor*>(this)->dispatch(d_inf_args.data(), d_inf_stat.data())); ASSERT_CUDA_SUCCEEDED(cudaMemcpyAsync(inf_stat, d_inf_stat.data(), sizeof(cudf::io::gpu_inflate_status_s), cudaMemcpyDeviceToHost, 0)); ASSERT_CUDA_SUCCEEDED(cudaMemcpyAsync( decompressed->data(), inf_args->dstDevice, inf_args->dstSize, cudaMemcpyDeviceToHost, 0)); ASSERT_CUDA_SUCCEEDED(cudaStreamSynchronize(0)); } cudf::io::gpu_inflate_input_s* inf_args = nullptr; cudf::io::gpu_inflate_status_s* inf_stat = nullptr; }; /** * @brief Derived fixture for GZIP decompression */ struct GzipDecompressTest : public DecompressTest<GzipDecompressTest> { cudaError_t dispatch(cudf::io::gpu_inflate_input_s* d_inf_args, cudf::io::gpu_inflate_status_s* d_inf_stat) { return cudf::io::gpuinflate(d_inf_args, d_inf_stat, 1, 1); } }; /** * @brief Derived fixture for Snappy decompression */ struct SnappyDecompressTest : public DecompressTest<SnappyDecompressTest> { cudaError_t dispatch(cudf::io::gpu_inflate_input_s* d_inf_args, cudf::io::gpu_inflate_status_s* d_inf_stat) { return cudf::io::gpu_unsnap(d_inf_args, d_inf_stat, 1); } }; /** * @brief Derived fixture for Brotli decompression */ struct BrotliDecompressTest : public DecompressTest<BrotliDecompressTest> { cudaError_t dispatch(cudf::io::gpu_inflate_input_s* d_inf_args, cudf::io::gpu_inflate_status_s* d_inf_stat) { rmm::device_buffer d_scratch{cudf::io::get_gpu_debrotli_scratch_size(1), rmm::cuda_stream_default}; return cudf::io::gpu_debrotli(d_inf_args, d_inf_stat, d_scratch.data(), d_scratch.size(), 1); } }; TEST_F(GzipDecompressTest, HelloWorld) { constexpr char uncompressed[] = "hello world"; constexpr uint8_t compressed[] = { 0x1f, 0x8b, 0x8, 0x0, 0x9, 0x63, 0x99, 0x5c, 0x2, 0xff, 0xcb, 0x48, 0xcd, 0xc9, 0xc9, 0x57, 0x28, 0xcf, 0x2f, 0xca, 0x49, 0x1, 0x0, 0x85, 0x11, 0x4a, 0xd, 0xb, 0x0, 0x0, 0x0}; std::vector<uint8_t> input = vector_from_string(uncompressed); std::vector<uint8_t> output(input.size()); Decompress(&output, compressed, sizeof(compressed)); EXPECT_EQ(output, input); } TEST_F(SnappyDecompressTest, HelloWorld) { constexpr char uncompressed[] = "hello world"; constexpr uint8_t compressed[] = { 0xb, 0x28, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x77, 0x6f, 0x72, 0x6c, 0x64}; std::vector<uint8_t> input = vector_from_string(uncompressed); std::vector<uint8_t> output(input.size()); Decompress(&output, compressed, sizeof(compressed)); EXPECT_EQ(output, input); } TEST_F(SnappyDecompressTest, ShortLiteralAfterLongCopyAtStartup) { constexpr char uncompressed[] = "Aaaaaaaaaaaah!"; constexpr uint8_t compressed[] = {14, 0x0, 'A', 0x0, 'a', (10 - 4) * 4 + 1, 1, 0x4, 'h', '!'}; std::vector<uint8_t> input = vector_from_string(uncompressed); std::vector<uint8_t> output(input.size()); Decompress(&output, compressed, sizeof(compressed)); EXPECT_EQ(output, input); } TEST_F(BrotliDecompressTest, HelloWorld) { constexpr char uncompressed[] = "hello world"; constexpr uint8_t compressed[] = { 0xb, 0x5, 0x80, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x3}; std::vector<uint8_t> input = vector_from_string(uncompressed); std::vector<uint8_t> output(input.size()); Decompress(&output, compressed, sizeof(compressed)); EXPECT_EQ(output, input); } CUDF_TEST_PROGRAM_MAIN()
3,167
605
<filename>tests/tce/ttasim/host.cpp /* Tests the ttasim device driver. Copyright (c) 2012 <NAME> / Tampere University of Technology 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, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ // Enable OpenCL C++ exceptions #define CL_HPP_ENABLE_EXCEPTIONS #define CL_HPP_MINIMUM_OPENCL_VERSION 120 #define CL_HPP_TARGET_OPENCL_VERSION 120 #include <CL/cl2.hpp> #include <cstdio> #include <cstdlib> #include <iostream> #include <cassert> #include "poclu.h" static char kernelSourceCode[] = "kernel \n" "void test_kernel(constant char *input,\n" " __global char *output,\n" " float a,\n" " int b) {\n" " constant char* pos = input; \n" " local char auto_local_array[5]; \n" " auto_local_array[0] = 'P'; \n" " auto_local_array[1] = 'O'; \n" " auto_local_array[2] = 'N'; \n" " auto_local_array[3] = 'G'; \n" " auto_local_array[4] = '\\0'; \n" " while (*pos) {\n" " printf (\"%c\", *pos);\n" " ++pos;\n" " }\n" "#ifdef cl_TCE_ABSF\n" " clABSFTCE(input[0], output[0]); \n" "#else\n" "#error The machine should have ADDF in the ISA\n" "#endif\n" " printf(\"%f %d\", a, b);\n" " for (int i = 0; i < 5; ++i) output[i] = auto_local_array[i]; \n" "}\n"; int main(void) { const size_t OUTPUT_SIZE = 5; const char *input = "PING\0"; char output[OUTPUT_SIZE]; float a = 23456.0f; int b = 2000001; try { std::vector<cl::Platform> platformList; // Pick platform cl::Platform::get(&platformList); // Pick first platform cl_context_properties cprops[] = { CL_CONTEXT_PLATFORM, (cl_context_properties)(platformList[0])(), 0}; cl::Context context(CL_DEVICE_TYPE_GPU, cprops); // Query the set of devices attched to the context std::vector<cl::Device> devices = context.getInfo<CL_CONTEXT_DEVICES>(); assert (devices.size() == 1); cl::Device device = devices.at(0); assert (strncmp(device.getInfo<CL_DEVICE_NAME>().c_str(), "tta", 3) == 0); a = poclu_bswap_cl_float (device(), a); b = poclu_bswap_cl_int (device(), b); // Create and program from source cl::Program::Sources sources({kernelSourceCode}); cl::Program program(context, sources); // Build program program.build(devices); cl::Buffer inputBuffer = cl::Buffer( context, CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR, strlen (input) + 1, (void *) &input[0]); // Create buffer for that uses the host ptr C cl::Buffer outputBuffer = cl::Buffer( context, CL_MEM_WRITE_ONLY | CL_MEM_USE_HOST_PTR, OUTPUT_SIZE, (void *) &output[0]); // Create kernel object cl::Kernel kernel(program, "test_kernel"); // Set kernel args kernel.setArg(0, inputBuffer); kernel.setArg(1, outputBuffer); kernel.setArg(2, a); kernel.setArg(3, b); // Create command queue cl::CommandQueue queue(context, devices[0], CL_QUEUE_PROFILING_ENABLE); cl::Event enqEvent; // Do the work queue.enqueueNDRangeKernel( kernel, cl::NullRange, cl::NDRange(1), cl::NullRange, NULL, &enqEvent); cl::Event mapEvent; void *outVal = queue.enqueueMapBuffer( outputBuffer, CL_TRUE, // block CL_MAP_READ, 0, OUTPUT_SIZE, NULL, &mapEvent); char* outStr = (char*)(outVal); if (std::string(outStr) == "PONG") std::cout << "OK\n"; else std::cerr << "FAIL, received: " << outStr << "\n"; cl::Event unmapEvent; // Finally release our hold on accessing the memory queue.enqueueUnmapMemObject( outputBuffer, (void*)(outVal), NULL, &unmapEvent); queue.finish(); assert (enqEvent.getInfo<CL_EVENT_COMMAND_EXECUTION_STATUS>() == CL_COMPLETE); assert (mapEvent.getInfo<CL_EVENT_COMMAND_EXECUTION_STATUS>() == CL_COMPLETE); assert (unmapEvent.getInfo<CL_EVENT_COMMAND_EXECUTION_STATUS>() == CL_COMPLETE); assert ( enqEvent.getProfilingInfo<CL_PROFILING_COMMAND_QUEUED>() <= enqEvent.getProfilingInfo<CL_PROFILING_COMMAND_SUBMIT>()); assert ( enqEvent.getProfilingInfo<CL_PROFILING_COMMAND_SUBMIT>() <= enqEvent.getProfilingInfo<CL_PROFILING_COMMAND_START>()); assert ( enqEvent.getProfilingInfo<CL_PROFILING_COMMAND_START>() < enqEvent.getProfilingInfo<CL_PROFILING_COMMAND_END>()); #if 0 std::cerr << "exec time: " << enqEvent.getProfilingInfo<CL_PROFILING_COMMAND_END>() - enqEvent.getProfilingInfo<CL_PROFILING_COMMAND_START>() << std::endl; #endif assert ( mapEvent.getProfilingInfo<CL_PROFILING_COMMAND_QUEUED>() <= mapEvent.getProfilingInfo<CL_PROFILING_COMMAND_SUBMIT>()); assert ( mapEvent.getProfilingInfo<CL_PROFILING_COMMAND_SUBMIT>() <= mapEvent.getProfilingInfo<CL_PROFILING_COMMAND_START>()); assert ( mapEvent.getProfilingInfo<CL_PROFILING_COMMAND_START>() <= mapEvent.getProfilingInfo<CL_PROFILING_COMMAND_END>()); assert ( unmapEvent.getProfilingInfo<CL_PROFILING_COMMAND_QUEUED>() <= unmapEvent.getProfilingInfo<CL_PROFILING_COMMAND_SUBMIT>()); assert ( unmapEvent.getProfilingInfo<CL_PROFILING_COMMAND_SUBMIT>() <= unmapEvent.getProfilingInfo<CL_PROFILING_COMMAND_START>()); assert ( unmapEvent.getProfilingInfo<CL_PROFILING_COMMAND_START>() <= unmapEvent.getProfilingInfo<CL_PROFILING_COMMAND_END>()); assert (enqEvent.getProfilingInfo<CL_PROFILING_COMMAND_END>() <= mapEvent.getProfilingInfo<CL_PROFILING_COMMAND_END>()); assert (mapEvent.getProfilingInfo<CL_PROFILING_COMMAND_END>() <= unmapEvent.getProfilingInfo<CL_PROFILING_COMMAND_END>()); } catch (cl::Error &err) { std::cerr << "ERROR: " << err.what() << "(" << err.err() << ")" << std::endl; return EXIT_FAILURE; } return EXIT_SUCCESS; }
3,792
679
from maml_rl.metalearners.base import GradientBasedMetaLearner from maml_rl.metalearners.maml_trpo import MAMLTRPO __all__ = ['GradientBasedMetaLearner', 'MAMLTRPO']
62