content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
listlengths
1
8
--TEST-- __serialize() mechanism (002): TypeError on invalid return type --FILE-- <?php class Test { public function __serialize() { return $this; } } try { serialize(new Test); } catch (TypeError $e) { echo $e->getMessage(), "\n"; } ?> --EXPECT-- Test::__serialize() must return an array
PHP
4
thiagooak/php-src
ext/standard/tests/serialize/__serialize_002.phpt
[ "PHP-3.01" ]
DROP TABLE "public"."table12";
SQL
1
devrsi0n/graphql-engine
cli/commands/testdata/migrate-squash-test/migrations/1588172668691_create_table_public_table12/down.sql
[ "Apache-2.0", "MIT" ]
BEGIN { print; print "The following FV tests will run in this batch"; print "============================================="; } /msg="Loaded config"/ { next; } /^Running Suite:/ { next; } /^==============/ { next; } /^Random Seed:/ { next; } /^Parallel test node/ { next; } /^JUnit report was created/ { next; } /^Ran [[:digit:]]+ of [[:digit:]]+ Specs/ { next; } /^SUCCESS!/ { next; } /^PASS$/ { next; } /^[•S]+$/ { next; } { print; }
Awk
3
pluzun/calico
felix/fv/test-list-filter.awk
[ "Apache-2.0" ]
## -*- coding: utf-8 -*- ## Licensed to Cloudera, Inc. under one ## or more contributor license agreements. See the NOTICE file ## distributed with this work for additional information ## regarding copyright ownership. Cloudera, Inc. 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. <%! from oozie.models import BundledCoordinator %> <bundle-app name="${ bundle.name }" xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns="${ bundle.schema_version }"> % if bundle.get_parameters(): <parameters> % for p in bundle.get_parameters(): <property> <name>${ p['name'] }</name> <value>${ p['value'] }</value> </property> % endfor </parameters> % endif <controls> <kick-off-time>${ bundle.kick_off_time_utc }</kick-off-time> </controls> % for bundled in BundledCoordinator.objects.filter(bundle=bundle): <coordinator name='${ bundled.coordinator.name }-${ bundled.id }' > <app-path>${'${'}nameNode}${ mapping['coord_%s_dir' % bundled.coordinator.id] }</app-path> <configuration> <property> <name>wf_application_path</name> <value>${ mapping['wf_%s_dir' % bundled.coordinator.coordinatorworkflow.id] }</value> </property> % for param in bundled.get_parameters(): <property> <name>${ param['name'] }</name> <value>${ param['value'] }</value> </property> % endfor </configuration> </coordinator> % endfor </bundle-app>
Mako
3
kokosing/hue
apps/oozie/src/oozie/templates/editor/gen/bundle.xml.mako
[ "Apache-2.0" ]
DejaVu Sans Mono for Powerline ============================== :Font creator: Roy Y.T. Chen :Source: http://dejavu-fonts.org/wiki/Main_Page :Version: 2.37 :Patched by: `Roy-Orbison <https://github.com/Roy-Orbison>`_ Includes column number, diagonal block and line characters in same positions as `Nerdfonts' <https://github.com/ryanoasis/nerd-fonts#powerline-extra-symbols>`_. ============ ======================== Codepoint Character ============ ======================== :code:`E0A0` Branch :code:`E0A1` Line number :code:`E0A2` Padlock (read-only) :code:`E0A3` Column number :code:`E0B0` Right angle solid :code:`E0B1` Right angle line :code:`E0B2` Left angle solid :code:`E0B3` Left angle line :code:`E0B8` Bottom-left angle solid :code:`E0B9` Bottom-left angle line :code:`E0BA` Bottom-right angle solid :code:`E0BB` Bottom-right angle line :code:`E0BC` Top-left angle solid :code:`E0BD` Top-left angle line :code:`E0BE` Top-right angle solid :code:`E0BF` Top-right angle line ============ ========================
reStructuredText
2
davidascher/fonts
DejaVuSansMono/README.rst
[ "Apache-1.1" ]
#lang scribble/manual @title[#:tag "big-picture"]{The big picture} A summary of the key components & concepts of the Pollen publishing system and how they fit together. If you've completed the @secref["quick-tour"], this will lend some context to what you saw. The upcoming @seclink["first-tutorial"]{tutorials} will make more sense if you read this first. @section[#:tag "the-book-is-a-program"]{The book is a program} This is the core design principle of Pollen. Consistent with this principle, Pollen adopts the habits of software development in its functionality, workflow, and project structure. @itemlist[ @item{@bold{You are a programmer.} Don't panic. But let's just admit it — if your book is a program, then you are, in part, programming it. You don't have to know any programming to start using Pollen. But you'll have to be willing to learn a few programming ideas. (And those who have used other template-based HTML generators may have to forget a few things.)} @item{@bold{A Pollen project consists of source files + static files.} A @italic{source file} is a file that can be compiled to produce certain output. A @italic{static file} is usable as it stands (e.g., an SVG file or webfont). Generally, the textual content of your book will live in source files, and other elements will be static files.} @item{@bold{Source control is a good idea.} Because Pollen projects are software projects, they can be easily managed with systems for source control and collaboration, like @link["http://github.com"]{GitHub}. If you're a writer at heart, don't fear these systems — the learning curve is repaid by revision & edit tracking that's much easier than it is with Word or PDF files.} ] @section{One language, multiple dialects} @itemlist[ @item{@bold{Everything is Racket.} The Pollen system is built entirely in the Racket programming language. Some of your source files will be in Racket. Others will be in one of the Pollen language dialects. But under the hood, everything becomes Racket code. So if you plan to do any serious work in Pollen, you'll want to learn some basics about Racket too (for instance @other-doc['(lib "scribblings/quick/quick.scrbl")]).} @item{@bold{The Pollen language is based on Scribble.} Scribble is a variant of the Racket language that flips the usual programming syntax: instead of code with embedded textual content, a Scribble source file is text with embedded code (an idea borrowed from @link["https://en.wikipedia.org/wiki/TeX"]{TeX}). The Pollen language is adapted from Scribble. So most things that are true about Scribble are also true about Pollen (see @other-doc['(lib "scribblings/scribble/scribble.scrbl")]).} @item{@bold{The Pollen language is a set of dialects.} The Pollen dialects share a common syntax and structure. But they're different in details that makes them better adapted to certain types of source files (for instance, one dialect of Pollen understands Markdown; the others don't). Use whichever suits the task at hand.} ] @section{Development environment} The Pollen development environment has three main pieces: the DrRacket code editor, the project server, and the command line. @itemlist[ @item{@bold{Edit source files with DrRacket.} DrRacket is Racket's GUI code editor. Sure, you can also use a generic text editor. But DrRacket lets you immediately run your source and see if it works.} @item{@bold{Preview & test web pages with the Pollen project server.} Pollen has a built-in development web server called the @seclink["Using_the_project_server"]{@defterm{project server}}. After you start the project server, you can preview your web pages within any web browser, allowing you to test them with maximum accuracy.} @item{@bold{Write the docs.} The project server can recognize and render Scribble files, so you can use it as a previewing tool while you're writing your documentation.} @item{@bold{Render & deploy from the command line.} Your Pollen project ultimately gets rendered to a set of static files (usually HTML and related assets). This can be controlled from the command line, so you can integrate it into other scripts.} ] @section{A special data structure for HTML} Unlike other programming languages, Pollen (and Racket) internally represent HTML with something called @secref["X-expressions"]. An X-expression is simply a list that represents an HTML @defterm{element}, meaning a thing with an opening tag, a closing tag, and content in between. Like HTML elements, X-expressions can be nested. Unlike HTML elements, X-expressions have no closing tag, they use parentheses to denote the start and end, and text elements are put inside quotes. For example, consider this HTML element: @nested[#:style 'code-inset]{@verbatim{<body><h1>Hello world</h1><p>Nice to <i>see</i> you.</p></body>}} As a Racket X-expression, this would be written: @nested[#:style 'code-inset]{@verbatim{(body (h1 "Hello world") (p "Nice to " (i "see") " you."))}} More will be said about X-expressions. But several advantages should be evident already. First, without the redundant angle brackets, the X-expression is arguably more readable than the equivalent HTML. Second, an X-expression is preferable to treating HTML as a simple string, because it preserves the internal structure of the element. Third, an X-expression is a native data type in Racket. @section{Pollen command syntax} As mentioned above, a Pollen source file is not code with text embedded in it, but rather text with code embedded. (See @secref["pollen-command-syntax"] for more.) @itemlist[ @item{@bold{If you can write text, you can program in Pollen.} Really. As you already found out in the @secref["quick-tour"], this is a valid Pollen program: @codeblock{ #lang pollen Bonjour, tout le monde: comment ça va? }} @item{@bold{Commands start with ◊.} A simple rule: if something in a Pollen source file starts with @litchar{◊}, it's treated as a command; otherwise it's treated as ordinary text.} @item{@bold{Write commands in Pollen mode or Racket mode.} Commands can use two equivalent notation systems: either Pollen's text-oriented command syntax, or standard Racket syntax.} @item{@bold{Everything in Racket is in Pollen too.} Pollen isn't a watered-down ``template language.'' Racket is a fully provisioned programming language, and every Racket function is available in Pollen.} ] @section{The preprocessor} The @italic{preprocessor} is the simplest processing mode in Pollen. @itemlist[ @item{@bold{Text output.} The preprocessor scans the source for any Pollen commands, resolves them, and outputs the whole file as text.} @item{@bold{Work with any text file.} You can use the preprocessor with HTML, CSS, Markdown, JavaScript, XML, SVG, or any other text-based file (including source files of other programming languages). I hope this blows your mind a teeny bit.} @item{@bold{Start quickly.} Because it works with any text file, the preprocessor is an easy way to try out Pollen, because you can mix it into your workflow on an existing project, or even just one file.} ] @section{Templated source files} If you want to apply a particular page format to multiple sources of content — as you would in a book — you can use Pollen @defterm{templates}. @itemlist[ @item{@bold{Templates can be any format.} Usually Pollen templates will be HTML. But they don't have to be. Templates can generate any kind of file — either text-based (XML) or not (PDF).} @item{@bold{Markdown authoring mode.} Pollen has a built-in Markdown parser, so you can import Markdown sources into a Pollen publication.} @item{@bold{Pollen markup.} Pollen markup allows you the freedom to define your own markup tags and attach behavior to them.} @item{@bold{Mix source types.} Every text source is converted to an X-expression before going into a template. So it's fine to have multiple dialects of source files in one project.} ] @section{Pagetrees} Similar to a table of contents, a @defterm{pagetree} is a special Pollen source file that gets turned into a hierarchical list of pages. @itemlist[ @item{@bold{Navigation.} Pagetrees are used to provide navigation links within HTML templates (like previous, next, up, top).} @item{@bold{Organization.} Multiple pagetrees can be used to divide your project into subsets of pages that should be treated separately.} ]
Racket
5
otherjoel/pollen
pollen/scribblings/big-picture.scrbl
[ "MIT" ]
# API name # Group Users User related endpoints
API Blueprint
0
darkcl/drafter
test/fixtures/api/resource-group.apib
[ "MIT" ]
source ./test-functions.sh mkdir ./pid install_service echo 'LOG_FOLDER=log' > /test-service/spring-boot-app.conf mkdir -p /test-service/log start_service await_app [[ -s /test-service/log/spring-boot-app.log ]] && echo "Log written"
Shell
2
yiou362/spring-boot-2.2.9.RELEASE
spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/src/test/resources/scripts/launch-with-relative-log-folder.sh
[ "Apache-2.0" ]
// aux-build:test-macros.rs #[macro_use(Empty)] extern crate test_macros; use test_macros::empty_attr as empty_helper; #[empty_helper] //~ ERROR `empty_helper` is ambiguous //~| WARN derive helper attribute is used before it is introduced //~| WARN this was previously accepted #[derive(Empty)] struct S; fn main() {}
Rust
2
mbc-git/rust
src/test/ui/proc-macro/helper-attr-blocked-by-import-ambig.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
lines(0); ilib_verbose(0); ierr = exec('loader.sce', 'errcatch'); if ierr <> 0 then disp(lasterror()); exit(ierr); end // First create some objects using the pointer library. printf("Testing the pointer library\n") a = new_intp(); b = new_intp(); c = new_intp(); // Memory for result intp_assign(a, 37); intp_assign(b, 42); printf(" a = %d\n", intp_value(a)); printf(" b = %d\n", intp_value(b)); printf(" c = %d\n", intp_value(c)); // Call the add() function with some pointers add(a, b, c); // Now get the result r = intp_value(c); printf(" 37 + 42 = %d\n", r); // Clean up the pointers delete_intp(a); delete_intp(b); delete_intp(c); // Now try the typemap library // This should be much easier. Now how it is no longer // necessary to manufacture pointers. printf("Trying the typemap library\n"); r = sub(37, 42); printf(" 37 - 42 = %d\n", r); // Now try the version with multiple return values printf("Testing multiple return values\n"); [q, r] = divide(42, 37); printf(" 42/37 = %d remainder %d\n", q, r); exit
Scilab
4
kyletanyag/LL-Smartcard
cacreader/swig-4.0.2/Examples/scilab/pointer/runme.sci
[ "BSD-3-Clause" ]
<!-- ~ Copyright 2016 Red Hat, Inc. and/or its affiliates ~ and other contributors as indicated by the @author tags. ~ ~ 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. --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xalan="http://xml.apache.org/xalan" version="2.0" exclude-result-prefixes="xalan #all"> <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" xalan:indent-amount="4" standalone="no"/> <xsl:strip-space elements="*"/> <xsl:param name="hotrod.sasl.mechanism" /> <xsl:template match="//*[local-name()='infinispan']/*[local-name()='cache-container' and @name='default']"> <xsl:copy> <xsl:apply-templates select="@* | node()" /> </xsl:copy> </xsl:template> <xsl:template match="//*[local-name()='hotrod-connector' and @name='hotrod']"> <xsl:copy> <xsl:apply-templates select="@* | node()" /> <!-- Add "authentication" into HotRod connector configuration --> <authentication security-realm="default"> <!--qop="auth"--> <!--<sasl mechanisms="SCRAM-SHA-512 SCRAM-SHA-384 SCRAM-SHA-256 SCRAM-SHA-1 DIGEST-SHA-512 DIGEST-SHA-384 DIGEST-SHA-256 DIGEST-SHA DIGEST-MD5 PLAIN"--> <sasl mechanisms="{$hotrod.sasl.mechanism}" server-name="infinispan"> <policy> <no-anonymous value="false" /> </policy> </sasl> </authentication> </xsl:copy> </xsl:template> <!-- Configure SSL --> <xsl:template match="//*[local-name()='infinispan'] /*[local-name()='server'] //*[local-name()='security-realm' and @name='default']"> <xsl:copy copy-namespaces="no"> <xsl:apply-templates select="@*" /> <server-identities> <ssl> <keystore path="server.jks" relative-to="infinispan.server.config.path" keystore-password="password" alias="server" key-password="password" /> </ssl> </server-identities> <xsl:apply-templates select="node()" /> </xsl:copy> </xsl:template> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()" /> </xsl:copy> </xsl:template> </xsl:stylesheet>
XSLT
4
evtr/keycloak
testsuite/integration-arquillian/servers/cache-server/infinispan/common/cache-authentication-enabled.xsl
[ "Apache-2.0" ]
\title{Probabilistic Models} \subsection{Probabilistic Models} A probabilistic model asserts how observations from a natural phenomenon arise. The model is a \emph{joint distribution} \begin{align*} p(\mathbf{x}, \mathbf{z}) \end{align*} of observed variables $\mathbf{x}$ corresponding to data, and latent variables $\mathbf{z}$ that provide the hidden structure to generate from $\mathbf{x}$. The joint distribution factorizes into two components. The \emph{likelihood} \begin{align*} p(\mathbf{x} \mid \mathbf{z}) \end{align*} is a probability distribution that describes how any data $\mathbf{x}$ depend on the latent variables $\mathbf{z}$. The likelihood posits a data generating process, where the data $\mathbf{x}$ are assumed drawn from the likelihood conditioned on a particular hidden pattern described by $\mathbf{z}$. The \emph{prior} \begin{align*} p(\mathbf{z}) \end{align*} is a probability distribution that describes the latent variables present in the data. It posits a generating process of the hidden structure. For details on how to specify a model in Edward, see the \href{/api/model}{model API}. We describe several examples in detail in the \href{/tutorials/}{tutorials}.
TeX
4
xiangze/edward
docs/tex/tutorials/model.tex
[ "Apache-2.0" ]
--- layout: default route: index fixed_navbar: true --- {% include global/navbar.html id="Index" %} {% include index/hello.html %} {% include index/focus.html %} {% include index/best.html %} {% include index/sponsors.html %} {% include index/columns.html %} {% include index/modifiers.html %} {% include index/customize.html %} {% include index/js.html %} {% include index/beautified.html %} {% include index/love.html %} {% include index/start.html %}
HTML
3
kalpitzeta/bulma
docs/index.html
[ "MIT" ]
message.exception = Je suis une exception.
INI
0
DBatOWL/tutorials
core-java-modules/core-java-exceptions-3/src/main/resources/messages_fr.properties
[ "MIT" ]
@program cmd-id.muf 1 1000 d i ( cmd-id.muf by Natasha@HLM A simple object describer. Copyright 2003-2019 Natasha Snunkmeox. Copyright 2003-2019 Here Lie Monsters. "@view $box/mit" for license information. Version history 1.0, 25 Oct 2003: First version. 1.1, 26 Jan 2019: Vendorized the obj-color word for portability. ) $author Natasha Snunkmeox <natmeox@neologasm.org> $version 1.1 $note A simple object describer. $include $lib/bits $ifnlib $lib/stoplights $def .tellgood .tell $endif : rtn-getType ( db -- str } Returns a string identifying the object type of db. ) dup ok? not if pop "garbage" exit then ( db ) dup player? if pop "player" exit then dup program? if pop "program" exit then dup exit? if pop "exit" exit then dup room? if pop "room" exit then pop "thing" ; : obj-color ( db -- str ) dup ok? if ( db ) dup unparseobj over name strlen strcut ( db strName strData ) "bold,yellow" textattr strcat ( db str ) else "<unknown>" then ( db str ) prog "_obj-color/" 4 rotate rtn-getType strcat getpropstr ( str strColor ) textattr ( str ) ; : main ( str -- } Print out the unparseobj for the given string. ) dup strip "#help" stringcmp not if "_help" rtn-dohelp exit then ( str ) dup if match else pop me @ then ( db ) dup obj-color ( db str ) over ok? if ( db str ) over owner swap "%s Owner: %D" fmtstring ( db str ) over exit? if ( db str ) over getlink obj-color swap "%s Link: %s" fmtstring ( db str ) then ( db str ) then ( db str ) .tellgood pop ( ) ; PUBLIC obj-color . c q @act id;db=#0 @link id=cmd-id lsedit cmd-id=_help .del 1 $ id <object> db <object> Displays the name and dbref for the given object. .end @set cmd-id=_obj-color/garbage:bold,black @set cmd-id=_obj-color/player:bold,green @set cmd-id=_obj-color/program:bold,red @set cmd-id=_obj-color/exit:bold,green @set cmd-id=_obj-color/room:bold,cyan @set cmd-id=_obj-color/thing:bold,magenta
MUF
4
natmeox/hlm-suite
cmd-id.muf
[ "MIT" ]
{ metadata: { namespace: "XMLNS", namespaceURI: "http://www.w3.org/2000/xmlns/", }, data: [ "xmlns", ], }
JSON5
2
zealoussnow/chromium
third_party/blink/renderer/core/xml/xmlns_attribute_names.json5
[ "BSD-3-Clause-No-Nuclear-License-2014", "BSD-3-Clause" ]
"""Test config flow.""" from http import HTTPStatus from unittest.mock import Mock, patch from homeassistant.components.hassio import HassioServiceInfo from homeassistant.components.hassio.handler import HassioAPIError from homeassistant.const import EVENT_HOMEASSISTANT_START from homeassistant.setup import async_setup_component async def test_hassio_discovery_startup(hass, aioclient_mock, hassio_client): """Test startup and discovery after event.""" aioclient_mock.get( "http://127.0.0.1/discovery", json={ "result": "ok", "data": { "discovery": [ { "service": "mqtt", "uuid": "test", "addon": "mosquitto", "config": { "broker": "mock-broker", "port": 1883, "username": "mock-user", "password": "mock-pass", "protocol": "3.1.1", }, } ] }, }, ) aioclient_mock.get( "http://127.0.0.1/addons/mosquitto/info", json={"result": "ok", "data": {"name": "Mosquitto Test"}}, ) assert aioclient_mock.call_count == 0 with patch( "homeassistant.components.mqtt.config_flow.FlowHandler.async_step_hassio", return_value={"type": "abort"}, ) as mock_mqtt: hass.bus.async_fire(EVENT_HOMEASSISTANT_START) await hass.async_block_till_done() assert aioclient_mock.call_count == 2 assert mock_mqtt.called mock_mqtt.assert_called_with( HassioServiceInfo( config={ "broker": "mock-broker", "port": 1883, "username": "mock-user", "password": "mock-pass", "protocol": "3.1.1", "addon": "Mosquitto Test", } ) ) async def test_hassio_discovery_startup_done(hass, aioclient_mock, hassio_client): """Test startup and discovery with hass discovery.""" aioclient_mock.post( "http://127.0.0.1/supervisor/options", json={"result": "ok", "data": {}}, ) aioclient_mock.get( "http://127.0.0.1/discovery", json={ "result": "ok", "data": { "discovery": [ { "service": "mqtt", "uuid": "test", "addon": "mosquitto", "config": { "broker": "mock-broker", "port": 1883, "username": "mock-user", "password": "mock-pass", "protocol": "3.1.1", }, } ] }, }, ) aioclient_mock.get( "http://127.0.0.1/addons/mosquitto/info", json={"result": "ok", "data": {"name": "Mosquitto Test"}}, ) with patch( "homeassistant.components.hassio.HassIO.update_hass_api", return_value={"result": "ok"}, ), patch( "homeassistant.components.hassio.HassIO.get_info", Mock(side_effect=HassioAPIError()), ), patch( "homeassistant.components.mqtt.config_flow.FlowHandler.async_step_hassio", return_value={"type": "abort"}, ) as mock_mqtt: await hass.async_start() await async_setup_component(hass, "hassio", {}) await hass.async_block_till_done() assert aioclient_mock.call_count == 2 assert mock_mqtt.called mock_mqtt.assert_called_with( HassioServiceInfo( config={ "broker": "mock-broker", "port": 1883, "username": "mock-user", "password": "mock-pass", "protocol": "3.1.1", "addon": "Mosquitto Test", } ) ) async def test_hassio_discovery_webhook(hass, aioclient_mock, hassio_client): """Test discovery webhook.""" aioclient_mock.get( "http://127.0.0.1/discovery/testuuid", json={ "result": "ok", "data": { "service": "mqtt", "uuid": "test", "addon": "mosquitto", "config": { "broker": "mock-broker", "port": 1883, "username": "mock-user", "password": "mock-pass", "protocol": "3.1.1", }, }, }, ) aioclient_mock.get( "http://127.0.0.1/addons/mosquitto/info", json={"result": "ok", "data": {"name": "Mosquitto Test"}}, ) with patch( "homeassistant.components.mqtt.config_flow.FlowHandler.async_step_hassio", return_value={"type": "abort"}, ) as mock_mqtt: resp = await hassio_client.post( "/api/hassio_push/discovery/testuuid", json={"addon": "mosquitto", "service": "mqtt", "uuid": "testuuid"}, ) await hass.async_block_till_done() assert resp.status == HTTPStatus.OK assert aioclient_mock.call_count == 2 assert mock_mqtt.called mock_mqtt.assert_called_with( HassioServiceInfo( config={ "broker": "mock-broker", "port": 1883, "username": "mock-user", "password": "mock-pass", "protocol": "3.1.1", "addon": "Mosquitto Test", } ) )
Python
4
MrDelik/core
tests/components/hassio/test_discovery.py
[ "Apache-2.0" ]
type X = u32<i32>; //~ ERROR E0109 fn main() { }
Rust
2
Eric-Arellano/rust
src/test/ui/error-codes/E0109.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
(module (type $none_=>_i32 (func (result i32))) (global $~lib/memory/__data_end i32 (i32.const 8)) (global $~lib/memory/__stack_pointer (mut i32) (i32.const 16392)) (global $~lib/memory/__heap_base i32 (i32.const 16392)) (memory $0 0) (table $0 1 funcref) (elem $0 (i32.const 1)) (export "default" (func $named-export-default/get3)) (export "memory" (memory $0)) (func $named-export-default/get3 (result i32) i32.const 3 ) )
WebAssembly
1
romdotdog/assemblyscript
tests/compiler/named-export-default.untouched.wat
[ "Apache-2.0" ]
SELECT xor(1, 0);
SQL
3
pdv-ru/ClickHouse
tests/queries/0_stateless/01411_xor_itai_shirav.sql
[ "Apache-2.0" ]
exec("swigtest.start", -1); // TODO: support for STL vectors operator = iv = new_DoubleVector(); //for i=1:4 // iv(i) = i; //end //x = average(iv); //if x <> 2.5 then swigtesterror(); end exit exec("swigtest.quit", -1);
Scilab
0
kyletanyag/LL-Smartcard
cacreader/swig-4.0.2/Examples/test-suite/scilab/li_std_vector_runme.sci
[ "BSD-3-Clause" ]
option now = () => 2020-02-22T18:00:00Z @tableflux.h2o_temperature{bottom_degrees, time > -3h} |> aggregate({count(bottom_degrees)})
FLUX
3
RohanSreerama5/flux
colm/tableflux/query12.flux
[ "MIT" ]
# Copyright (c) 2018-2021, Carnegie Mellon University # See LICENSE for details #F DiagFunc - base class for diagonal generating functions #F Required fields in subclasses: #F .abbrevs = [ (p1) -> [parlist1], #F (p1,...) -> [parlist2] ] #F Mapping from various lengths of parameter lists to a #F fixed signature .def #F #F .lambda(self) - must return Lambda() object representing the actual #F function. One should use .params field here #F #F .domain(self) -- must return the domain of the function (integer or type) #F .range(self) -- must return the range of the function (integer or type) #F #F Optional: #F .def(self, p1, ...) - this method is called from the constructor #F before the instance object is created. #F <self> = class in this case #F .def() must return a record, all fields of the record #F will be copied to the resulting instance object, #F which will also have the field .params := [p1, ...]. #F additional error checking can be performed in .def #F NB: parameter lists are normalized here, using .abbrevs Class(DiagFunc, Function, Sym, rec( isSPL := false, range := self >> Error(ObjId(self), " does not implement .range()"), domain := self >> Error(ObjId(self), " does not implement .domain()"), tensor_op := (v,rows,cols,fl,gl) -> Lambda(v, fl.at(idiv(v, cols)) * gl.at(imod(v, cols))), sums := self >> self, rSetChild := meth(self, n, newChild) self.params[n] := newChild; end, print := meth(self, i, is) local params; params := let(p:=self.params, When(IsList(p), p, [p])); Print(self.name, "(", DoForAllButLast(params, x -> Print(x, ", ")), Last(params), ")"); end, def := arg -> rec(), fromDef := meth(arg) local result, self, params, h, lkup; self := arg[1]; params := arg{[2..Length(arg)]}; params := self.canonizeParams(params); self.checkParams(params); params := When(IsList(params), params, [params]); h := self.hash; if h<>false then lkup := h.objLookup(self, params); if lkup[1] <> false then return lkup[1]; fi; fi; result := SPL(WithBases(self, CopyFields( rec(params := params), ApplyFunc(self.def,params)))); if h<>false then return h.objAdd(result, lkup[2]); else return result; fi; end, free := self >> Union(List(self.params, FreeVars)), __call__ := ~.fromDef, isReal := self >> not IsComplexT(self.range()) )); #F II - interval diagonal function #F #F II(<N>) - diagonal of N 1's #F II(<N>, <to>) - diagonal with 1's from 0..<to>, and 0's after #F II(<N>, <from>, <to>) - diagonal with 1's in <from>..<to>, 0's elsewhere #F Class(II, DiagFunc, rec( abbrevs := [ (N) -> [N,0,N], (N,to) -> [N,0,to], (N,from,to) -> [N,from,to] ], def := (N, from, to) -> Checked( IsPosInt0Sym(N), IsPosInt0Sym(from), IsPosInt0Sym(to), rec()), lambda := self >> let( i := Ind(self.params[1]), from := self.params[2], to := self.params[3], Lambda(i, cond(leq(from, i, to-1), 1, 0))), domain := self >> self.params[1], range := self >> TInt, )); #F fConst(<t>, <N>, <c>) - constant diagonal function, <N> values of <c> of type <t> #F Class(fConst, DiagFunc, rec( abbrevs := [ (N,c) -> Checked( IsPosInt0Sym(N), [TReal, N,c]), (t,N,c) -> Checked(IsType(t), IsPosInt0Sym(N), [t, N, c]) ], range := self >> self.params[1], domain := self >> self.params[2], lambda := self >> let(i := Ind(self.params[2]), Lambda(i, self.params[3])) )); #F fUnk(<t>, <N>) - dummy diagonal that denotes an "unknown" function, <N> values of type <t> #F To be used for .hashAs methods of transforms #F Class(fUnk, DiagFunc, rec( abbrevs := [ N -> Checked(IsIntSym(N), [TReal, N]), (t, N) -> Checked(IsType(t), IsIntSym(N), [t, N]) ], range := self >> self.params[1], domain := self >> self.params[2], lambda := self >> let(N:=self.params[2], i:=Ind(N), Cond(IsIntT(self.params[1]), Lambda(i, i+1), Lambda(i, self.params[1].one()/N*(i+1)))) )); # FUnk is for backwards compatibility, use fUnk FUnk := n -> fUnk(TReal, n); Declare(LD); # UD(<N>, <shift>) - upper diagonal # Class(UD, Sym, rec( def := (n,k) -> Checked(k < n, Z(n,k) * Diag(II(n, k, n))), transpose := self >> ApplyFunc(LD, self.params) )); # LD(<N>, <shift>) - lower diagonal # Class(LD, Sym, rec( def := (n,k) -> Checked(k < n, Z(n,n-k) * Diag(II(n, 0, n-k))), transpose := self >> ApplyFunc(UD, self.params) )); # [ 1 1 # 1 1 # ... ] Class(S, Sym, rec( def := n -> SUM(I(n), UD(n,1)))); # Class(fComputeOnline, PlaceholderExp); Class(fComputeOnline, FuncClassOper, rec( range := self >> self._children[1].range(), domain := self >> self._children[1].domain(), lambda := self >> self._children[1].lambda(), tolist := self >> self._children[1].tolist(), free := self >> self._children[1].free(), ev := self >> self._children[1].ev(), eval := self >> self._children[1].eval(), )); Declare(fPrecompute); # fPrecompute(<func>) # # Marks functions that should be precomputed by either generating a # table (opts.generateInitCode := true) or runtime initialization code # (opts.generateInitCode := true). # # Actual precomputation is done by Process_fPrecompute. Which uses # options record 'opts' to determine the precomputation strategy. # Class(fPrecompute, FuncClassOper, rec( def := func -> rec(t := TPtr(func.range())), range := self >> self._children[1].range(), domain := self >> self._children[1].domain(), lambda := self >> self._children[1].lambda(), tolist := self >> self._children[1].tolist(), free := self >> self._children[1].free(), isReal := self >> self._children[1].isReal() )); # diagAdd(<f1>, <f2>,...) : i -> f1(i) + f2(i) + ... # Pointwise addition of several diagonal functions Class(diagAdd, FuncClassOper, rec( domain := self >> self.child(1).domain(), range := self >> UnifyTypes(List(self.children(), x->x.range())), lambda := self >> let(v := Ind(self.domain()), Lambda(v, ApplyFunc(add, List(self.children(), i->i.at(v))))), )); # diagMul(<f1>, <f2>,...) : i -> f1(i) * f2(i) * ... # Pointwise multiplication of several diagonal functions Class(diagMul, FuncClassOper, rec( domain := self >> self.child(1).domain(), range := self >> UnifyTypes(List(self.children(), (x) -> x.range())), lambda := self >> let(v := Ind(self.domain()), Lambda(v, ApplyFunc(mul, List(self.children(), i->i.at(v))))), )); Class(diagCond, FuncClassOper, rec( domain := self >> self.child(2).domain(), range := self >> UnifyTypes(List(Drop(self.children(), 1), x->x.range())), lambda := self >> let(v := Ind(self.domain()), Lambda(v, cond(self.child(1), self.child(2).at(v), self.child(3).at(v)))) )); #F fCast(<toT>, <fromT>) -- symbolic type cast function #F #F Example: fCast(TReal, TInt) #F Class(fCast, DiagFunc, rec( abbrevs := [ (toT, fromT) -> Checked(IsType(toT), IsType(fromT), [toT, fromT]) ], range := self >> self.params[1], domain := self >> self.params[2], lambda := self >> let(i:=TempVar(self.domain()), Lambda(i, tcast(self.range(), i))), ));
GAP
5
sr7cb/spiral-software
namespaces/spiral/spl/diags.gi
[ "BSD-2-Clause-FreeBSD" ]
\ require pdump.fth \ require structs.fth \ require exceptions.fth { ." minidump.fth Given a process ID, collect a minidump for analysis or download. This is a full memory dump of the process, so it can be very useful for finding secrets or examining the running state of a process. PID minidump Don't forget you can find your process with psfind. E.g., say you want to download a minidump of LSASS for an offline mimikatz: psfind lsass <PID> minidump download <FILE> This command will write the file out to a temporary filename in the current directory (think about where you are first -- you might not want to write minidumps in to %SYSTEM32%, for example!). " ETX emit }! : align last >xt 10 + dup ( a0 a0 ) @ 64 + -64 and ( a0 a' ) tuck swap ! !here ; \ Some misc. constants from the Win32 API 260 value MAX_PATH $40000000 value GENERIC_WRITE $1 value FILE_SHARE_READ $2 value CREATE_ALWAYS $80 value FILE_ATTRIBUTE_NORMAL $400 value PROCESS_QUERY_INFORMATION $10 value PROCESS_VM_READ $40 value PROCESS_DUP_HANDLE $1fffff value THREAD_ALL_ACCESS $2 value MiniDumpWithFullMemory \ We depend on the debug API for memory dumps loadlib dbghelp.dll value dbghelp.dll kernel32 3 dllfun OpenProcess OpenProcess kernel32 4 dllfun GetTempFileName GetTempFileNameA kernel32 7 dllfun CreateFile CreateFileA dbghelp.dll 7 dllfun MiniDumpWriteDump MiniDumpWriteDump \ Some state variables to keep track of our resources. It's not very \ "Forth"ish, but neither is error handling in the Win32 API :-). create filename MAX_PATH allot 0 value phandle 0 value fhandle 0 value dpid \ Open a temp file in the current directory for writing : temp-file s" ." drop s" md_" drop 0 filename GetTempFileName if filename GENERIC_WRITE FILE_SHARE_READ 0 CREATE_ALWAYS FILE_ATTRIBUTE_NORMAL 0 CreateFile dup 0 <= if .err drop else [to] fhandle then else .err then ; : procflags PROCESS_QUERY_INFORMATION PROCESS_VM_READ or PROCESS_DUP_HANDLE or ; \ Open a process to dump : get-proc ( pid -- ) procflags 0 rot OpenProcess [to] phandle ; \ This is written in an exception-handling style that I find quite comfortable \ compared to catching every error along the way and nesting a ton of \ conditionals for all the resource management. : minidump ( pid -- ) .pre [to] dpid try \ first, open a handle to the process with the right permissions -bold ." [+] Opening the process\n" '{ dpid get-proc }' '{ phandle CloseHandle drop }' attempt phandle +assert \ now, open a temporary file to write the dump to ." [+] Creating a temp file\n" '{ temp-file }' '{ fhandle CloseHandle drop }' attempt fhandle +assert \ user needs to know where it is! ." [+] Writing to " filename +bold .cstring -bold cr \ trigger the dump ." [+] Triggering the dump.\n" phandle dpid fhandle MiniDumpWithFullMemory 0 0 0 MiniDumpWriteDump \ check success if ." [+] Done, minidump successful.\n" else ." [+] Done, but there was a problem!" .err then ensure ." [+] Cleaning up handles.\n" cleanup done .post ;
Forth
5
jephthai/EvilVM
samples/minidump.fth
[ "MIT" ]
DOWHILELOOP set val = 0 do { set val = val + 1 write val,! } while ((val # 6) '= 0) quit
M
3
LaudateCorpus1/RosettaCodeData
Task/Loops-Do-while/MUMPS/loops-do-while.mumps
[ "Info-ZIP" ]
/* * Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org> * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include <Kernel/API/POSIX/sys/types.h> #ifdef __cplusplus extern "C" { #endif struct sched_param { int sched_priority; }; #ifdef __cplusplus } #endif
C
3
r00ster91/serenity
Kernel/API/POSIX/sched.h
[ "BSD-2-Clause" ]
ID PP1B_HUMAN Reviewed; 327 AA. AC P62140; B2R5V4; D6W565; P37140; Q5U087; Q6FG45; DT 21-JUN-2004, integrated into UniProtKB/Swiss-Prot. DT 23-JAN-2007, sequence version 3. DT 25-OCT-2017, entry version 157. DE RecName: Full=Serine/threonine-protein phosphatase PP1-beta catalytic subunit; DE Short=PP-1B; DE Short=PPP1CD; DE EC=3.1.3.16; DE EC=3.1.3.53; GN Name=PPP1CB; OS Homo sapiens (Human). OC Eukaryota; Metazoa; Chordata; Craniata; Vertebrata; Euteleostomi; OC Mammalia; Eutheria; Euarchontoglires; Primates; Haplorrhini; OC Catarrhini; Hominidae; Homo. OX NCBI_TaxID=9606; RN [1] RP NUCLEOTIDE SEQUENCE [MRNA]. RX PubMed=8312365; DOI=10.1016/0167-4889(94)90138-4; RA Barker H.M., Brewis N.D., Street A.J., Spurr N.K., Cohen P.T.W.; RT "Three genes for protein phosphatase 1 map to different human RT chromosomes: sequence, expression and gene localisation of protein RT serine/threonine phosphatase 1 beta (PPP1CB)."; RL Biochim. Biophys. Acta 1220:212-218(1994). RN [2] RP NUCLEOTIDE SEQUENCE [GENOMIC DNA]. RX PubMed=7796987; DOI=10.1007/BF00410284; RA Prochazka M., Mochizuki H., Baier L.J., Cohen P.T.W., Bogardus C.; RT "Molecular and linkage analysis of type-1 protein phosphatase RT catalytic beta-subunit gene: lack of evidence for its major role in RT insulin resistance in Pima Indians."; RL Diabetologia 38:461-466(1995). RN [3] RP NUCLEOTIDE SEQUENCE [MRNA]. RC TISSUE=Umbilical vein; RX PubMed=10906760; RX DOI=10.1002/1097-4644(2000)79:1<113::AID-JCB110>3.0.CO;2-9; RA Verin A.D., Csortos C., Durbin S.D., Aydanyan A., Wang P., RA Patterson C.E., Garcia J.G.; RT "Characterization of the protein phosphatase 1 catalytic subunit in RT endothelium: involvement in contractile responses."; RL J. Cell. Biochem. 79:113-125(2000). RN [4] RP NUCLEOTIDE SEQUENCE [LARGE SCALE MRNA]. RA Halleck A., Ebert L., Mkoundinya M., Schick M., Eisenstein S., RA Neubert P., Kstrang K., Schatten R., Shen B., Henze S., Mar W., RA Korn B., Zuo D., Hu Y., LaBaer J.; RT "Cloning of human full open reading frames in Gateway(TM) system entry RT vector (pDONR201)."; RL Submitted (JUN-2004) to the EMBL/GenBank/DDBJ databases. RN [5] RP NUCLEOTIDE SEQUENCE [LARGE SCALE MRNA]. RA Kalnine N., Chen X., Rolfs A., Halleck A., Hines L., Eisenstein S., RA Koundinya M., Raphael J., Moreira D., Kelley T., LaBaer J., Lin Y., RA Phelan M., Farmer A.; RT "Cloning of human full-length CDSs in BD Creator(TM) system donor RT vector."; RL Submitted (OCT-2004) to the EMBL/GenBank/DDBJ databases. RN [6] RP NUCLEOTIDE SEQUENCE [LARGE SCALE MRNA]. RC TISSUE=Cerebellum; RX PubMed=14702039; DOI=10.1038/ng1285; RA Ota T., Suzuki Y., Nishikawa T., Otsuki T., Sugiyama T., Irie R., RA Wakamatsu A., Hayashi K., Sato H., Nagai K., Kimura K., Makita H., RA Sekine M., Obayashi M., Nishi T., Shibahara T., Tanaka T., Ishii S., RA Yamamoto J., Saito K., Kawai Y., Isono Y., Nakamura Y., Nagahari K., RA Murakami K., Yasuda T., Iwayanagi T., Wagatsuma M., Shiratori A., RA Sudo H., Hosoiri T., Kaku Y., Kodaira H., Kondo H., Sugawara M., RA Takahashi M., Kanda K., Yokoi T., Furuya T., Kikkawa E., Omura Y., RA Abe K., Kamihara K., Katsuta N., Sato K., Tanikawa M., Yamazaki M., RA Ninomiya K., Ishibashi T., Yamashita H., Murakawa K., Fujimori K., RA Tanai H., Kimata M., Watanabe M., Hiraoka S., Chiba Y., Ishida S., RA Ono Y., Takiguchi S., Watanabe S., Yosida M., Hotuta T., Kusano J., RA Kanehori K., Takahashi-Fujii A., Hara H., Tanase T.-O., Nomura Y., RA Togiya S., Komai F., Hara R., Takeuchi K., Arita M., Imose N., RA Musashino K., Yuuki H., Oshima A., Sasaki N., Aotsuka S., RA Yoshikawa Y., Matsunawa H., Ichihara T., Shiohata N., Sano S., RA Moriya S., Momiyama H., Satoh N., Takami S., Terashima Y., Suzuki O., RA Nakagawa S., Senoh A., Mizoguchi H., Goto Y., Shimizu F., Wakebe H., RA Hishigaki H., Watanabe T., Sugiyama A., Takemoto M., Kawakami B., RA Yamazaki M., Watanabe K., Kumagai A., Itakura S., Fukuzumi Y., RA Fujimori Y., Komiyama M., Tashiro H., Tanigami A., Fujiwara T., RA Ono T., Yamada K., Fujii Y., Ozaki K., Hirao M., Ohmori Y., RA Kawabata A., Hikiji T., Kobatake N., Inagaki H., Ikema Y., Okamoto S., RA Okitani R., Kawakami T., Noguchi S., Itoh T., Shigeta K., Senba T., RA Matsumura K., Nakajima Y., Mizuno T., Morinaga M., Sasaki M., RA Togashi T., Oyama M., Hata H., Watanabe M., Komatsu T., RA Mizushima-Sugano J., Satoh T., Shirai Y., Takahashi Y., Nakagawa K., RA Okumura K., Nagase T., Nomura N., Kikuchi H., Masuho Y., Yamashita R., RA Nakai K., Yada T., Nakamura Y., Ohara O., Isogai T., Sugano S.; RT "Complete sequencing and characterization of 21,243 full-length human RT cDNAs."; RL Nat. Genet. 36:40-45(2004). RN [7] RP NUCLEOTIDE SEQUENCE [LARGE SCALE MRNA]. RC TISSUE=Endometrium; RX PubMed=17974005; DOI=10.1186/1471-2164-8-399; RA Bechtel S., Rosenfelder H., Duda A., Schmidt C.P., Ernst U., RA Wellenreuther R., Mehrle A., Schuster C., Bahr A., Bloecker H., RA Heubner D., Hoerlein A., Michel G., Wedler H., Koehrer K., RA Ottenwaelder B., Poustka A., Wiemann S., Schupp I.; RT "The full-ORF clone resource of the German cDNA consortium."; RL BMC Genomics 8:399-399(2007). RN [8] RP NUCLEOTIDE SEQUENCE [LARGE SCALE GENOMIC DNA]. RX PubMed=15815621; DOI=10.1038/nature03466; RA Hillier L.W., Graves T.A., Fulton R.S., Fulton L.A., Pepin K.H., RA Minx P., Wagner-McPherson C., Layman D., Wylie K., Sekhon M., RA Becker M.C., Fewell G.A., Delehaunty K.D., Miner T.L., Nash W.E., RA Kremitzki C., Oddy L., Du H., Sun H., Bradshaw-Cordum H., Ali J., RA Carter J., Cordes M., Harris A., Isak A., van Brunt A., Nguyen C., RA Du F., Courtney L., Kalicki J., Ozersky P., Abbott S., Armstrong J., RA Belter E.A., Caruso L., Cedroni M., Cotton M., Davidson T., Desai A., RA Elliott G., Erb T., Fronick C., Gaige T., Haakenson W., Haglund K., RA Holmes A., Harkins R., Kim K., Kruchowski S.S., Strong C.M., RA Grewal N., Goyea E., Hou S., Levy A., Martinka S., Mead K., RA McLellan M.D., Meyer R., Randall-Maher J., Tomlinson C., RA Dauphin-Kohlberg S., Kozlowicz-Reilly A., Shah N., RA Swearengen-Shahid S., Snider J., Strong J.T., Thompson J., Yoakum M., RA Leonard S., Pearman C., Trani L., Radionenko M., Waligorski J.E., RA Wang C., Rock S.M., Tin-Wollam A.-M., Maupin R., Latreille P., RA Wendl M.C., Yang S.-P., Pohl C., Wallis J.W., Spieth J., Bieri T.A., RA Berkowicz N., Nelson J.O., Osborne J., Ding L., Meyer R., Sabo A., RA Shotland Y., Sinha P., Wohldmann P.E., Cook L.L., Hickenbotham M.T., RA Eldred J., Williams D., Jones T.A., She X., Ciccarelli F.D., RA Izaurralde E., Taylor J., Schmutz J., Myers R.M., Cox D.R., Huang X., RA McPherson J.D., Mardis E.R., Clifton S.W., Warren W.C., RA Chinwalla A.T., Eddy S.R., Marra M.A., Ovcharenko I., Furey T.S., RA Miller W., Eichler E.E., Bork P., Suyama M., Torrents D., RA Waterston R.H., Wilson R.K.; RT "Generation and annotation of the DNA sequences of human chromosomes 2 RT and 4."; RL Nature 434:724-731(2005). RN [9] RP NUCLEOTIDE SEQUENCE [LARGE SCALE GENOMIC DNA]. RA Mural R.J., Istrail S., Sutton G.G., Florea L., Halpern A.L., RA Mobarry C.M., Lippert R., Walenz B., Shatkay H., Dew I., Miller J.R., RA Flanigan M.J., Edwards N.J., Bolanos R., Fasulo D., Halldorsson B.V., RA Hannenhalli S., Turner R., Yooseph S., Lu F., Nusskern D.R., RA Shue B.C., Zheng X.H., Zhong F., Delcher A.L., Huson D.H., RA Kravitz S.A., Mouchard L., Reinert K., Remington K.A., Clark A.G., RA Waterman M.S., Eichler E.E., Adams M.D., Hunkapiller M.W., Myers E.W., RA Venter J.C.; RL Submitted (SEP-2005) to the EMBL/GenBank/DDBJ databases. RN [10] RP NUCLEOTIDE SEQUENCE [LARGE SCALE MRNA]. RC TISSUE=Uterus; RX PubMed=15489334; DOI=10.1101/gr.2596504; RG The MGC Project Team; RT "The status, quality, and expansion of the NIH full-length cDNA RT project: the Mammalian Gene Collection (MGC)."; RL Genome Res. 14:2121-2127(2004). RN [11] RP PROTEIN SEQUENCE OF 2-14, AND ACETYLATION AT ALA-2. RC TISSUE=Platelet; RX PubMed=12665801; DOI=10.1038/nbt810; RA Gevaert K., Goethals M., Martens L., Van Damme J., Staes A., RA Thomas G.R., Vandekerckhove J.; RT "Exploring proteomes and analyzing protein processing by mass RT spectrometric identification of sorted N-terminal peptides."; RL Nat. Biotechnol. 21:566-569(2003). RN [12] RP INTERACTION WITH PPP1R12C. RX PubMed=11399775; DOI=10.1074/jbc.M102615200; RA Tan I., Ng C.H., Lim L., Leung T.; RT "Phosphorylation of a novel myosin binding subunit of protein RT phosphatase 1 reveals a conserved mechanism in the regulation of actin RT cytoskeleton."; RL J. Biol. Chem. 276:21209-21216(2001). RN [13] RP SUBCELLULAR LOCATION. RX PubMed=11739654; RA Trinkle-Mulcahy L., Sleeman J.E., Lamond A.I.; RT "Dynamic targeting of protein phosphatase 1 within the nuclei of RT living mammalian cells."; RL J. Cell Sci. 114:4219-4228(2001). RN [14] RP INTERACTION WITH PPP1R15A. RX PubMed=11564868; DOI=10.1128/MCB.21.20.6841-6850.2001; RA Connor J.H., Weiser D.C., Li S., Hallenbeck J.M., Shenolikar S.; RT "Growth arrest and DNA damage-inducible protein GADD34 assembles a RT novel signaling complex containing protein phosphatase 1 and inhibitor RT 1."; RL Mol. Cell. Biol. 21:6841-6850(2001). RN [15] RP INTERACTION WITH PPP1R7. RX PubMed=12226088; DOI=10.1074/jbc.M206838200; RA Ceulemans H., Vulsteke V., De Maeyer M., Tatchell K., Stalmans W., RA Bollen M.; RT "Binding of the concave surface of the Sds22 superhelix to the alpha RT 4/alpha 5/alpha 6-triangle of protein phosphatase-1."; RL J. Biol. Chem. 277:47331-47337(2002). RN [16] RP ENZYME REGULATION. RX PubMed=15705855; DOI=10.1126/science.1101902; RA Boyce M., Bryant K.F., Jousse C., Long K., Harding H.P., Scheuner D., RA Kaufman R.J., Ma D., Coen D.M., Ron D., Yuan J.; RT "A selective inhibitor of eIF2alpha dephosphorylation protects cells RT from ER stress."; RL Science 307:935-939(2005). RN [17] RP INTERACTION WITH PPP1R16B. RX PubMed=18586956; DOI=10.1152/ajplung.00325.2007; RA Csortos C., Czikora I., Bogatcheva N.V., Adyshev D.M., Poirier C., RA Olah G., Verin A.D.; RT "TIMAP is a positive regulator of pulmonary endothelial barrier RT function."; RL Am. J. Physiol. 295:L440-L450(2008). RN [18] RP PHOSPHORYLATION [LARGE SCALE ANALYSIS] AT THR-316, AND IDENTIFICATION RP BY MASS SPECTROMETRY [LARGE SCALE ANALYSIS]. RC TISSUE=Cervix carcinoma; RX PubMed=18669648; DOI=10.1073/pnas.0805139105; RA Dephoure N., Zhou C., Villen J., Beausoleil S.A., Bakalarski C.E., RA Elledge S.J., Gygi S.P.; RT "A quantitative atlas of mitotic phosphorylation."; RL Proc. Natl. Acad. Sci. U.S.A. 105:10762-10767(2008). RN [19] RP IDENTIFICATION IN THE MLL5-L COMPLEX. RX PubMed=19377461; DOI=10.1038/nature07954; RA Fujiki R., Chikanishi T., Hashiba W., Ito H., Takada I., Roeder R.G., RA Kitagawa H., Kato S.; RT "GlcNAcylation of a histone methyltransferase in retinoic-acid-induced RT granulopoiesis."; RL Nature 459:455-459(2009). RN [20] RP IDENTIFICATION IN THE PTW/PP1 PHOSPHATASE COMPLEX, FUNCTION, AND RP INTERACTION WITH PPP1R8. RX PubMed=20516061; DOI=10.1074/jbc.M110.109801; RA Lee J.H., You J., Dobrota E., Skalnik D.G.; RT "Identification and characterization of a novel human PP1 phosphatase RT complex."; RL J. Biol. Chem. 285:24466-24476(2010). RN [21] RP INTERACTION WITH RRP1B, AND SUBCELLULAR LOCATION. RX PubMed=20926688; DOI=10.1091/mbc.E10-04-0287; RA Chamousset D., De Wever V., Moorhead G.B., Chen Y., Boisvert F.M., RA Lamond A.I., Trinkle-Mulcahy L.; RT "RRP1B targets PP1 to mammalian cell nucleoli and is associated with RT pre-60S ribosomal subunits."; RL Mol. Biol. Cell 21:4212-4226(2010). RN [22] RP INTERACTION WITH NUAK1 AND PPP1R12A. RX PubMed=20354225; DOI=10.1126/scisignal.2000616; RA Zagorska A., Deak M., Campbell D.G., Banerjee S., Hirano M., RA Aizawa S., Prescott A.R., Alessi D.R.; RT "New roles for the LKB1-NUAK pathway in controlling myosin phosphatase RT complexes and cell adhesion."; RL Sci. Signal. 3:RA25-RA25(2010). RN [23] RP INTERACTION WITH TRIM28. RX PubMed=20424263; DOI=10.1126/scisignal.2000781; RA Li X., Lin H.H., Chen H., Xu X., Shih H.M., Ann D.K.; RT "SUMOylation of the transcriptional co-repressor KAP1 is regulated by RT the serine and threonine phosphatase PP1."; RL Sci. Signal. 3:RA32-RA32(2010). RN [24] RP IDENTIFICATION BY MASS SPECTROMETRY [LARGE SCALE ANALYSIS]. RX PubMed=21269460; DOI=10.1186/1752-0509-5-17; RA Burkard T.R., Planyavsky M., Kaupe I., Breitwieser F.P., RA Buerckstuemmer T., Bennett K.L., Superti-Furga G., Colinge J.; RT "Initial characterization of the human central proteome."; RL BMC Syst. Biol. 5:17-17(2011). RN [25] RP FUNCTION IN CIRCADIAN CLOCK. RX PubMed=21712997; DOI=10.1371/journal.pone.0021325; RA Schmutz I., Wendt S., Schnell A., Kramer A., Mansuy I.M., Albrecht U.; RT "Protein phosphatase 1 (PP1) is a post-translational regulator of the RT mammalian circadian clock."; RL PLoS ONE 6:E21325-E21325(2011). RN [26] RP ACETYLATION [LARGE SCALE ANALYSIS] AT ALA-2, CLEAVAGE OF INITIATOR RP METHIONINE [LARGE SCALE ANALYSIS], AND IDENTIFICATION BY MASS RP SPECTROMETRY [LARGE SCALE ANALYSIS]. RX PubMed=22223895; DOI=10.1074/mcp.M111.015131; RA Bienvenut W.V., Sumpton D., Martinez A., Lilla S., Espagne C., RA Meinnel T., Giglione C.; RT "Comparative large-scale characterisation of plant vs. mammal proteins RT reveals similar and idiosyncratic N-alpha acetylation features."; RL Mol. Cell. Proteomics 11:M111.015131-M111.015131(2012). RN [27] RP ACETYLATION [LARGE SCALE ANALYSIS] AT ALA-2, CLEAVAGE OF INITIATOR RP METHIONINE [LARGE SCALE ANALYSIS], AND IDENTIFICATION BY MASS RP SPECTROMETRY [LARGE SCALE ANALYSIS]. RX PubMed=22814378; DOI=10.1073/pnas.1210303109; RA Van Damme P., Lasa M., Polevoda B., Gazquez C., Elosegui-Artola A., RA Kim D.S., De Juan-Pardo E., Demeyer K., Hole K., Larrea E., RA Timmerman E., Prieto J., Arnesen T., Sherman F., Gevaert K., RA Aldabe R.; RT "N-terminal acetylome analyses and functional insights of the N- RT terminal acetyltransferase NatB."; RL Proc. Natl. Acad. Sci. U.S.A. 109:12449-12454(2012). RN [28] RP PHOSPHORYLATION [LARGE SCALE ANALYSIS] AT THR-316, AND IDENTIFICATION RP BY MASS SPECTROMETRY [LARGE SCALE ANALYSIS]. RC TISSUE=Cervix carcinoma, and Erythroleukemia; RX PubMed=23186163; DOI=10.1021/pr300630k; RA Zhou H., Di Palma S., Preisinger C., Peng M., Polat A.N., Heck A.J., RA Mohammed S.; RT "Toward a comprehensive characterization of a human cancer cell RT phosphoproteome."; RL J. Proteome Res. 12:260-271(2013). RN [29] RP FUNCTION, INTERACTION WITH FOXP3, AND INDUCTION. RX PubMed=23396208; DOI=10.1038/nm.3085; RA Nie H., Zheng Y., Li R., Guo T.B., He D., Fang L., Liu X., Xiao L., RA Chen X., Wan B., Chin Y.E., Zhang J.Z.; RT "Phosphorylation of FOXP3 controls regulatory T cell function and is RT inhibited by TNF-alpha in rheumatoid arthritis."; RL Nat. Med. 19:322-328(2013). RN [30] RP IDENTIFICATION BY MASS SPECTROMETRY [LARGE SCALE ANALYSIS]. RX PubMed=25944712; DOI=10.1002/pmic.201400617; RA Vaca Jacome A.S., Rabilloud T., Schaeffer-Reiss C., Rompais M., RA Ayoub D., Lane L., Bairoch A., Van Dorsselaer A., Carapito C.; RT "N-terminome analysis of the human mitochondrial proteome."; RL Proteomics 15:2519-2524(2015). RN [31] RP VARIANTS ARG-49 AND PRO-56, AND INVOLVEMENT IN SUSCEPTIBILITY TO RP RASOPATHY REMINISCENT OF NSLH. RX PubMed=27264673; DOI=10.1002/ajmg.a.37781; RA Gripp K.W., Aldinger K.A., Bennett J.T., Baker L., Tusi J., RA Powell-Hamilton N., Stabley D., Sol-Church K., Timms A.E., RA Dobyns W.B.; RT "A novel rasopathy caused by recurrent de novo missense mutations in RT PPP1CB closely resembles Noonan syndrome with loose anagen hair."; RL Am. J. Med. Genet. A 170:2237-2247(2016). CC -!- FUNCTION: Protein phosphatase that associates with over 200 CC regulatory proteins to form highly specific holoenzymes which CC dephosphorylate hundreds of biological targets. Protein CC phosphatase (PP1) is essential for cell division, it participates CC in the regulation of glycogen metabolism, muscle contractility and CC protein synthesis. Involved in regulation of ionic conductances CC and long-term synaptic plasticity. Component of the PTW/PP1 CC phosphatase complex, which plays a role in the control of CC chromatin structure and cell cycle progression during the CC transition from mitosis into interphase. In balance with CSNK1D CC and CSNK1E, determines the circadian period length, through the CC regulation of the speed and rhythmicity of PER1 and PER2 CC phosphorylation. May dephosphorylate CSNK1D and CSNK1E. CC Dephosphorylates the 'Ser-418' residue of FOXP3 in regulatory T- CC cells (Treg) from patients with rheumatoid arthritis, thereby CC inactivating FOXP3 and rendering Treg cells functionally defective CC (PubMed:23396208). {ECO:0000269|PubMed:20516061, CC ECO:0000269|PubMed:21712997, ECO:0000269|PubMed:23396208}. CC -!- CATALYTIC ACTIVITY: [a protein]-serine/threonine phosphate + H(2)O CC = [a protein]-serine/threonine + phosphate. CC -!- CATALYTIC ACTIVITY: [Myosin light-chain] phosphate + H(2)O = CC [myosin light-chain] + phosphate. {ECO:0000269|PubMed:20516061} CC -!- COFACTOR: CC Name=Mn(2+); Xref=ChEBI:CHEBI:29035; Evidence={ECO:0000250}; CC Note=Binds 2 manganese ions per subunit. {ECO:0000250}; CC -!- ENZYME REGULATION: Inhibited by the toxins okadaic acid, CC tautomycin and microcystin Leu-Arg (By similarity). The CC phosphatase activity of the PPP1R15A-PP1 complex toward EIF2S1 is CC specifically inhibited by Salubrinal, a drug that protects cells CC from endoplasmic reticulum stress. {ECO:0000250, CC ECO:0000269|PubMed:15705855}. CC -!- SUBUNIT: PP1 comprises a catalytic subunit, PPP1CA, PPP1CB or CC PPP1CC, which is folded into its native form by inhibitor 2 and CC glycogen synthetase kinase 3, and then complexed to one or several CC targeting or regulatory subunits. The targeting or regulatory CC subunits determine the substrate specificity of PP1. PPP1R12A, CC PPP1R12B and PPP1R12C mediate binding to myosin. PPP1R3A (in CC skeletal muscle), PPP1R3B (in liver), PPP1R3C, PPP1R3D and PPP1R3F CC (in brain) mediate binding to glycogen. Part of a complex CC containing PPP1R15B, PP1 and NCK1/2 (By similarity). Component of CC the MLL5-L complex, at least composed of KMT2E/MLL5, STK38, CC PPP1CA, PPP1CB, PPP1CC, HCFC1, ACTB and OGT. Interacts with PPP1R7 CC and PPP1R12C. PPP1R15A and PPP1R15B mediate binding to EIF2S1. CC Interacts with PPP1R16B. Component of the PTW/PP1 phosphatase CC complex, composed of PPP1R10/PNUTS, TOX4, WDR82, and PPP1CA or CC PPP1CB or PPP1CC. Interacts with PPP1R8. Interacts with TRIM28; CC the interaction is weak. Interacts with PPP1R12A and NUAK1; the CC interaction is direct. Interacts with FOXP3. Interacts with RRP1B CC (PubMed:20926688). {ECO:0000250|UniProtKB:P62141, CC ECO:0000269|PubMed:11399775, ECO:0000269|PubMed:11564868, CC ECO:0000269|PubMed:12226088, ECO:0000269|PubMed:18586956, CC ECO:0000269|PubMed:19377461, ECO:0000269|PubMed:20354225, CC ECO:0000269|PubMed:20424263, ECO:0000269|PubMed:20516061, CC ECO:0000269|PubMed:20926688, ECO:0000269|PubMed:23396208}. CC -!- INTERACTION: CC P35609:ACTN2; NbExp=3; IntAct=EBI-352350, EBI-77797; CC P38398:BRCA1; NbExp=3; IntAct=EBI-352350, EBI-349905; CC O08785:Clock (xeno); NbExp=2; IntAct=EBI-352350, EBI-79859; CC Q9H175:CSRNP2; NbExp=5; IntAct=EBI-352350, EBI-5235958; CC P50222:MEOX2; NbExp=4; IntAct=EBI-352350, EBI-748397; CC Q76TK5:ORF23 (xeno); NbExp=2; IntAct=EBI-352350, EBI-14033469; CC Q8WUF5:PPP1R13L; NbExp=5; IntAct=EBI-352350, EBI-5550163; CC Q96I34:PPP1R16A; NbExp=9; IntAct=EBI-352350, EBI-710402; CC Q96T49:PPP1R16B; NbExp=4; IntAct=EBI-352350, EBI-10293968; CC Q6NXS1:PPP1R2P3; NbExp=5; IntAct=EBI-352350, EBI-10251630; CC Q9UQK1:PPP1R3C; NbExp=6; IntAct=EBI-352350, EBI-2506727; CC Q15435:PPP1R7; NbExp=8; IntAct=EBI-352350, EBI-1024281; CC Q9H788:SH2D4A; NbExp=13; IntAct=EBI-352350, EBI-747035; CC Q13625-3:TP53BP2; NbExp=3; IntAct=EBI-352350, EBI-10175039; CC -!- SUBCELLULAR LOCATION: Cytoplasm {ECO:0000269|PubMed:11739654}. CC Nucleus {ECO:0000269|PubMed:11739654}. Nucleus, nucleoplasm CC {ECO:0000269|PubMed:11739654}. Nucleus, nucleolus CC {ECO:0000269|PubMed:11739654, ECO:0000269|PubMed:20926688}. CC Note=Highly mobile in cells and can be relocalized through CC interaction with targeting subunits. In the presence of PPP1R8 CC relocalizes from the nucleus to nuclear speckles. CC -!- INDUCTION: Up-regulated in synovial fluid mononuclear cells and CC peripheral blood mononuclear cells from patients with rheumatoid CC arthritis. {ECO:0000269|PubMed:23396208}. CC -!- DISEASE: Note=Variants in PPP1CB may be a cause of susceptibility CC to rasopathy reminiscent of Noonan syndrome-like disorder with CC loose anagen hair (NSLH). Affected individuals show Noonan CC dysmorphic features such as macrocephaly, high forehead and low- CC set and posteriorly rotated ears, in association with some hair CC abnormality (slow-growing, very fine hair or unruly hair texture), CC developmental delay and mild ventriculomegaly. CC {ECO:0000269|PubMed:27264673}. CC -!- SIMILARITY: Belongs to the PPP phosphatase family. PP-1 subfamily. CC {ECO:0000305}. CC -!- WEB RESOURCE: Name=Protein Spotlight; Note=The things we forget CC - Issue 32 of March 2003; CC URL="http://web.expasy.org/spotlight/back_issues/032"; DR EMBL; X80910; CAA56870.1; -; mRNA. DR EMBL; U11005; AAA85093.1; -; Genomic_DNA. DR EMBL; U10998; AAA85093.1; JOINED; Genomic_DNA. DR EMBL; U10999; AAA85093.1; JOINED; Genomic_DNA. DR EMBL; U11000; AAA85093.1; JOINED; Genomic_DNA. DR EMBL; U11001; AAA85093.1; JOINED; Genomic_DNA. DR EMBL; U11002; AAA85093.1; JOINED; Genomic_DNA. DR EMBL; U11003; AAA85093.1; JOINED; Genomic_DNA. DR EMBL; U11004; AAA85093.1; JOINED; Genomic_DNA. DR EMBL; AF092905; AAF01137.1; -; mRNA. DR EMBL; CR542263; CAG47059.1; -; mRNA. DR EMBL; CR542285; CAG47080.1; -; mRNA. DR EMBL; BT019744; AAV38549.1; -; mRNA. DR EMBL; AK312329; BAG35251.1; -; mRNA. DR EMBL; BX647970; -; NOT_ANNOTATED_CDS; mRNA. DR EMBL; AC097724; AAY24124.1; -; Genomic_DNA. DR EMBL; CH471053; EAX00527.1; -; Genomic_DNA. DR EMBL; CH471053; EAX00528.1; -; Genomic_DNA. DR EMBL; CH471053; EAX00529.1; -; Genomic_DNA. DR EMBL; CH471053; EAX00530.1; -; Genomic_DNA. DR EMBL; BC002697; AAH02697.1; -; mRNA. DR EMBL; BC012045; AAH12045.1; -; mRNA. DR CCDS; CCDS33169.1; -. DR PIR; S41052; S41052. DR RefSeq; NP_002700.1; NM_002709.2. DR RefSeq; NP_996759.1; NM_206876.1. DR UniGene; Hs.702907; -. DR ProteinModelPortal; P62140; -. DR SMR; P62140; -. DR BioGrid; 111494; 264. DR DIP; DIP-33220N; -. DR IntAct; P62140; 234. DR MINT; MINT-208135; -. DR STRING; 9606.ENSP00000296122; -. DR DEPOD; P62140; -. DR iPTMnet; P62140; -. DR PhosphoSitePlus; P62140; -. DR SwissPalm; P62140; -. DR BioMuta; PPP1CB; -. DR DMDM; 49065814; -. DR OGP; P37140; -. DR EPD; P62140; -. DR PaxDb; P62140; -. DR PeptideAtlas; P62140; -. DR PRIDE; P62140; -. DR TopDownProteomics; P62140; -. DR DNASU; 5500; -. DR Ensembl; ENST00000296122; ENSP00000296122; ENSG00000213639. DR Ensembl; ENST00000358506; ENSP00000351298; ENSG00000213639. DR Ensembl; ENST00000395366; ENSP00000378769; ENSG00000213639. DR GeneID; 5500; -. DR KEGG; hsa:5500; -. DR CTD; 5500; -. DR DisGeNET; 5500; -. DR EuPathDB; HostDB:ENSG00000213639.9; -. DR GeneCards; PPP1CB; -. DR HGNC; HGNC:9282; PPP1CB. DR HPA; CAB022558; -. DR HPA; CAB069426; -. DR HPA; HPA065425; -. DR MIM; 600590; gene. DR neXtProt; NX_P62140; -. DR OpenTargets; ENSG00000213639; -. DR PharmGKB; PA33610; -. DR eggNOG; ENOG410IN85; Eukaryota. DR eggNOG; ENOG410XPVF; LUCA. DR GeneTree; ENSGT00530000062911; -. DR HOGENOM; HOG000172697; -. DR HOVERGEN; HBG000216; -. DR InParanoid; P62140; -. DR KO; K06269; -. DR OMA; IFIQQPI; -. DR OrthoDB; EOG091G0EKF; -. DR PhylomeDB; P62140; -. DR TreeFam; TF354243; -. DR Reactome; R-HSA-163560; Triglyceride catabolism. DR Reactome; R-HSA-2173788; Downregulation of TGF-beta receptor signaling. DR Reactome; R-HSA-2565942; Regulation of PLK1 Activity at G2/M Transition. DR Reactome; R-HSA-400253; Circadian Clock. DR Reactome; R-HSA-5625740; RHO GTPases activate PKNs. DR Reactome; R-HSA-5625900; RHO GTPases activate CIT. DR Reactome; R-HSA-5627117; RHO GTPases Activate ROCKs. DR Reactome; R-HSA-5627123; RHO GTPases activate PAKs. DR SIGNOR; P62140; -. DR ChiTaRS; PPP1CB; human. DR GeneWiki; PPP1CB; -. DR GenomeRNAi; 5500; -. DR PRO; PR:P62140; -. DR Proteomes; UP000005640; Chromosome 2. DR Bgee; ENSG00000213639; -. DR CleanEx; HS_PPP1CB; -. DR ExpressionAtlas; P62140; baseline and differential. DR Genevisible; P62140; HS. DR GO; GO:0005829; C:cytosol; TAS:Reactome. DR GO; GO:0070062; C:extracellular exosome; IDA:UniProtKB. DR GO; GO:0005925; C:focal adhesion; IDA:UniProtKB. DR GO; GO:0042587; C:glycogen granule; IEA:Ensembl. DR GO; GO:0005730; C:nucleolus; IEA:UniProtKB-SubCell. DR GO; GO:0005654; C:nucleoplasm; TAS:Reactome. DR GO; GO:0005634; C:nucleus; IDA:UniProtKB. DR GO; GO:0000164; C:protein phosphatase type 1 complex; IEA:Ensembl. DR GO; GO:0072357; C:PTW/PP1 phosphatase complex; IDA:UniProtKB. DR GO; GO:0046872; F:metal ion binding; IEA:UniProtKB-KW. DR GO; GO:0017018; F:myosin phosphatase activity; ISS:UniProtKB. DR GO; GO:0050115; F:myosin-light-chain-phosphatase activity; IDA:UniProtKB. DR GO; GO:0016791; F:phosphatase activity; ISS:UniProtKB. DR GO; GO:0019901; F:protein kinase binding; IPI:UniProtKB. DR GO; GO:0051301; P:cell division; IEA:UniProtKB-KW. DR GO; GO:0032922; P:circadian regulation of gene expression; ISS:UniProtKB. DR GO; GO:0043153; P:entrainment of circadian clock by photoperiod; ISS:UniProtKB. DR GO; GO:0000086; P:G2/M transition of mitotic cell cycle; TAS:Reactome. DR GO; GO:0005977; P:glycogen metabolic process; IEA:UniProtKB-KW. DR GO; GO:0006470; P:protein dephosphorylation; ISS:UniProtKB. DR GO; GO:0030155; P:regulation of cell adhesion; IDA:UniProtKB. DR GO; GO:0042752; P:regulation of circadian rhythm; IMP:UniProtKB. DR GO; GO:0005979; P:regulation of glycogen biosynthetic process; IEA:Ensembl. DR GO; GO:0005981; P:regulation of glycogen catabolic process; IEA:Ensembl. DR Gene3D; 3.60.21.10; -; 1. DR InterPro; IPR004843; Calcineurin-like_PHP_ApaH. DR InterPro; IPR029052; Metallo-depent_PP-like. DR InterPro; IPR006186; Ser/Thr-sp_prot-phosphatase. DR InterPro; IPR031675; STPPase_N. DR Pfam; PF00149; Metallophos; 1. DR Pfam; PF16891; STPPase_N; 1. DR PRINTS; PR00114; STPHPHTASE. DR SMART; SM00156; PP2Ac; 1. DR SUPFAM; SSF56300; SSF56300; 1. DR PROSITE; PS00125; SER_THR_PHOSPHATASE; 1. PE 1: Evidence at protein level; KW Acetylation; Biological rhythms; Carbohydrate metabolism; Cell cycle; KW Cell division; Complete proteome; Cytoplasm; KW Direct protein sequencing; Disease mutation; Glycogen metabolism; KW Hydrolase; Manganese; Metal-binding; Nucleus; Phosphoprotein; KW Protein phosphatase; Reference proteome. FT INIT_MET 1 1 Removed. {ECO:0000244|PubMed:22223895, FT ECO:0000244|PubMed:22814378, FT ECO:0000269|PubMed:12665801}. FT CHAIN 2 327 Serine/threonine-protein phosphatase PP1- FT beta catalytic subunit. FT /FTId=PRO_0000058779. FT ACT_SITE 124 124 Proton donor. {ECO:0000250}. FT METAL 63 63 Manganese 1. {ECO:0000250}. FT METAL 65 65 Manganese 1. {ECO:0000250}. FT METAL 91 91 Manganese 1. {ECO:0000250}. FT METAL 91 91 Manganese 2. FT {ECO:0000250|UniProtKB:P62141}. FT METAL 123 123 Manganese 2. FT {ECO:0000250|UniProtKB:P62141, FT ECO:0000250|UniProtKB:Q33333}. FT METAL 172 172 Manganese 2. {ECO:0000250}. FT METAL 247 247 Manganese 2. {ECO:0000250}. FT DISULFID 61 171 {ECO:0000250|UniProtKB:P12345} FT DISULFID 66 180 {ECO:0000250|UniProtKB:A11111, FT ECO:0000250|UniProtKB:Q33333}. FT MOD_RES 2 2 N-acetylalanine. FT {ECO:0000244|PubMed:22223895, FT ECO:0000244|PubMed:22814378, FT ECO:0000269|PubMed:12665801}. FT MOD_RES 316 316 Phosphothreonine. FT {ECO:0000244|PubMed:18669648, FT ECO:0000244|PubMed:23186163}. FT VARIANT 49 49 P -> R (probable disease-associated FT mutation found in patients with rasopathy FT reminiscent of NSLH). FT {ECO:0000269|PubMed:27264673}. FT /FTId=VAR_076839. FT VARIANT 56 56 A -> P (probable disease-associated FT mutation found in patients with rasopathy FT reminiscent of NSLH). FT {ECO:0000269|PubMed:27264673}. FT /FTId=VAR_076840. FT CONFLICT 51 51 L -> P (in Ref. 5; AAV38549). FT {ECO:0000305}. ** ** ################# INTERNAL SECTION ################## **CL 2p23; **EV ECO:0000244; PubMed:18669648; 001; 09-JUN-2017. **EV ECO:0000244; PubMed:22223895; 001; 09-JUN-2017. **EV ECO:0000244; PubMed:22814378; 001; 09-JUN-2017. **EV ECO:0000244; PubMed:23186163; 001; 09-JUN-2017. **EV ECO:0000250; -; XXX; 01-JAN-1900. **EV ECO:0000250; UniProtKB:P62141; SHS; 26-JAN-2015. **EV ECO:0000269; PubMed:11399775; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:11564868; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:11739654; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:12226088; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:12665801; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:15705855; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:18586956; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:19377461; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:20354225; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:20424263; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:20516061; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:20926688; MIM; 15-SEP-2017. **EV ECO:0000269; PubMed:21712997; XXX; 01-JAN-1900. **EV ECO:0000269; PubMed:23396208; SHS; 26-JAN-2015. **EV ECO:0000269; PubMed:27264673; KAL; 26-AUG-2016. **EV ECO:0000305; -; XXX; 01-JAN-1900. **ZB ANS, 01-JUN-2004; RUE, 21-JUN-2005; GAP, 22-MAY-2006; WMC, 04-DEC-2007; **ZB LYG, 31-JAN-2008; LYG, 04-AUG-2008; GAP, 21-JAN-2009; GAP, 20-MAR-2009; **ZB SYP, 03-JUN-2009; ALB/EMB, 16-OCT-2009; SHS, 04-NOV-2009; JUJ, 22-MAR-2010; **ZB GAP, 25-MAR-2010; SIJ, 22-APR-2010; SIJ, 17-MAY-2010; RUE, 21-SEP-2010; **ZB SHS, 04-NOV-2010; SHS, 16-NOV-2010; SIJ, 07-FEB-2011; JAJ, 22-FEB-2011; **ZB SYP, 29-JUL-2011; SHS, 10-OCT-2011; ALG, 14-OCT-2011; ALG, 18-MAY-2012; **ZB KAX, 19-DEC-2013; KAX, 06-JAN-2014; CRC, 26-MAY-2014; SHS, 30-JAN-2015; **ZB KAL, 30-AUG-2016; MIM, 21-SEP-2017; SQ SEQUENCE 327 AA; 37187 MW; E8356022E9B94ECD CRC64; MADGELNVDS LITRLLEVRG CRPGKIVQMT EAEVRGLCIK SREIFLSQPI LLELEAPLKI CGDIHGQYTD LLRLFEYGGF PPEANYLFLG DYVDRGKQSL ETICLLLAYK IKYPENFFLL RGNHECASIN RIYGFYDECK RRFNIKLWKT FTDCFNCLPI AAIVDEKIFC CHGGLSPDLQ SMEQIRRIMR PTDVPDTGLL CDLLWSDPDK DVQGWGENDR GVSFTFGADV VSKFLNRHDL DLICRAHQVV EDGYEFFAKR QLVTLFSAPN YCGEFDNAGG MMSVDETLMC SFQILKPSEK KAKYQYGGLN SGRPVTPPRT ANPPKKR //
TXL
0
kp14/biocuration
tests/SwissProt/atomic.txl
[ "Unlicense" ]
package io.swagger.client.api { import io.swagger.common.ApiInvoker; import io.swagger.exception.ApiErrorCodes; import io.swagger.exception.ApiError; import io.swagger.common.ApiUserCredentials; import io.swagger.event.Response; import io.swagger.common.SwaggerApi; import io.swagger.client.model.Order; import mx.rpc.AsyncToken; import mx.utils.UIDUtil; import flash.utils.Dictionary; import flash.events.EventDispatcher; public class StoreApi extends SwaggerApi { /** * Constructor for the StoreApi api client * @param apiCredentials Wrapper object for tokens and hostName required towards authentication * @param eventDispatcher Optional event dispatcher that when provided is used by the SDK to dispatch any Response */ public function StoreApi(apiCredentials: ApiUserCredentials, eventDispatcher: EventDispatcher = null) { super(apiCredentials, eventDispatcher); } public static const event_delete_order: String = "delete_order"; public static const event_get_inventory: String = "get_inventory"; public static const event_get_order_by_id: String = "get_order_by_id"; public static const event_place_order: String = "place_order"; /* * Returns void */ public function delete_order (orderId: String): String { // create path and map variables var path: String = "/store/order/{orderId}".replace(/{format}/g,"xml").replace("{" + "orderId" + "}", getApiInvoker().escapeString(orderId)); // query params var queryParams: Dictionary = new Dictionary(); var headerParams: Dictionary = new Dictionary(); // verify required params are set if() { throw new ApiError(400, "missing required params"); } var token:AsyncToken = getApiInvoker().invokeAPI(path, "DELETE", queryParams, null, headerParams); var requestId: String = getUniqueId(); token.requestId = requestId; token.completionEventType = "delete_order"; token.returnType = null ; return requestId; } /* * Returns Dictionary */ public function get_inventory (): String { // create path and map variables var path: String = "/store/inventory".replace(/{format}/g,"xml"); // query params var queryParams: Dictionary = new Dictionary(); var headerParams: Dictionary = new Dictionary(); var token:AsyncToken = getApiInvoker().invokeAPI(path, "GET", queryParams, null, headerParams); var requestId: String = getUniqueId(); token.requestId = requestId; token.completionEventType = "get_inventory"; token.returnType = Dictionary; return requestId; } /* * Returns Order */ public function get_order_by_id (orderId: Number): String { // create path and map variables var path: String = "/store/order/{orderId}".replace(/{format}/g,"xml").replace("{" + "orderId" + "}", getApiInvoker().escapeString(orderId)); // query params var queryParams: Dictionary = new Dictionary(); var headerParams: Dictionary = new Dictionary(); // verify required params are set if() { throw new ApiError(400, "missing required params"); } var token:AsyncToken = getApiInvoker().invokeAPI(path, "GET", queryParams, null, headerParams); var requestId: String = getUniqueId(); token.requestId = requestId; token.completionEventType = "get_order_by_id"; token.returnType = Order; return requestId; } /* * Returns Order */ public function place_order (body: Order): String { // create path and map variables var path: String = "/store/order".replace(/{format}/g,"xml"); // query params var queryParams: Dictionary = new Dictionary(); var headerParams: Dictionary = new Dictionary(); // verify required params are set if() { throw new ApiError(400, "missing required params"); } var token:AsyncToken = getApiInvoker().invokeAPI(path, "POST", queryParams, body, headerParams); var requestId: String = getUniqueId(); token.requestId = requestId; token.completionEventType = "place_order"; token.returnType = Order; return requestId; } } }
ActionScript
4
wwadge/swagger-codegen
samples/client/petstore/flash/flash/src/io/swagger/client/api/StoreApi.as
[ "Apache-2.0" ]
size: 1024px 80px; dpi: 96; margin: 2em; axis { label-format: scientific(); label-placement: linear(500); limit: 0 3500; }
CLIPS
2
asmuth-archive/travistest
test/examples/charts_reference_format_scientific.clp
[ "Apache-2.0" ]
func(x: 'f32) { x }; func(1.0)
Objective-J
0
justinmann/sj
tests/function16.sj
[ "Apache-2.0" ]
[[local lapis = require("lapis") local app = lapis.Application() app:get("/", function() return "Welcome to Lapis " .. require("lapis.version") end) return app ]]
MoonScript
3
tommy-mor/lapis
lapis/cmd/templates/app_lua.moon
[ "MIT", "Unlicense" ]
; Copyright © 2006-2020 Phil Pennock ; No warranty: if it breaks, you get to cut your hands picking up the shards. ; Permission granted to duplicate in its entirety with authorship preserved, ; or redact as needed for test frameworks, or copy fragments for use in your ; own domains, or pretty much anything else except presenting it as your own ; creation. $TTL 7200 $ORIGIN example.org. ; This is adapted from a real zonefile. ; All IPs and DNS should be using address-spaces reserved for documentation or ; otherwise available for this usage. ; The original had a /28 routed to an onlink /32 in IPv4, and a /48 for IPv6. ; ; A couple of entries come from a different zone, to round out the examples. ; ; Some information has been redacted, eg Let's Encrypt account numbers. ; Some public keys are the same as they were in the original zone-file, so if ; you have tooling which parses ASN structure or whatever, they should still be ; good. ; If you have a DNS Observatory, you can probably identify the original zone ; through some of these. Good luck! ; ; Some of the IPv6 stuff shows a H:EX encoding scheme; that's real, not ; invented for the example.org redaction. I just changed the prefix. ; {{{ SOA and NS records example.org. 43200 SOA ns1.example.org. hostmaster.example.org. ( 2020030700 ; serial 7200 ; refresh period 3600 ; retry interval 10d ; expire time 7200 ; default/negative TTL ) NS ns1.example.org. NS ns2.example.org. NS ns-a.example.net. NS friend-dns.example.com. ; }}} SOA and NS records ;;; ====================================================================== ; EMAIL FEDERATION {{{ ; These are not for clients within our domain. ; These are for sending and receiving email, and telling other mail-systems ; what can send email as us, or claim to be us in HELO, etc. ; ; For SPF: this affects "domains which aren't the domain in question"; we can ; ignore it for our own domains from systems under our control, as the ; mail-server we list here is the one which all mail is channeled through, so ; is what the outside world sees, so is the one listed. MX 10 mx TXT "v=spf1 ip4:192.0.2.25 ip6:2001:db8::1:25 mx include:_spf.example.com ~all" ; CSA Priority/Weight/Port; ; Priority for CSA version, so 1 ; Weight: 1 unauthorized, 2 authorized, 3 unknown (bit-field) ; Port: assertions: 0 no assertion; 1 subdomains must use CSA ; Target: hostname for which sender IP must be in the RRsets of address records ; Top-level assertion: we list _all_ hostnames which send email out, so EHLO/HELO claiming to be us must be covered here. ; Because almost all mail routes through the mail-hub, we can make this claim; foo is exception _client._smtp SRV 1 1 1 @ _client._smtp.mx SRV 1 2 1 mx _client._smtp.foo SRV 1 2 1 foo ; }}} ;;; ====================================================================== ; Authentication and directory services {{{ ; _Service._Proto.Name TTL Class SRV Priority Weight Port Target _kerberos._tcp SRV 10 1 88 kerb-service _kerberos._udp SRV 10 1 88 kerb-service _kpasswd._udp SRV 10 1 464 kerb-service _kerberos-adm._tcp SRV 10 1 749 kerb-service _kerberos TXT "EXAMPLE.ORG" ; No LDAP service, and tell people that. _ldap._tcp SRV 0 0 0 . _ldap._udp SRV 0 0 0 . ; PGP Universal & GnuPG use keys.$domain to find PGP keys, via LDAP ; }}} ;;; ====================================================================== ; Chat services {{{ ; XMPP we divide up the hostnames for federation vs client access. ; Federation on xmpp-s2s, client access on xmpp. ; They are the same host, but we architect to be able to split. _jabber._tcp SRV 10 2 5269 xmpp-s2s _xmpp-server._tcp SRV 10 2 5269 xmpp-s2s _xmpp-client._tcp SRV 10 2 5222 xmpp ; I don't think we need _im._xmpp and _pres._xmpp for a real present server, so ; skip them. If setting up a domain without XMPP, publish `0 0 0 .` for these too. ; _im._xmpp SRV ... ; _pres._xmpp SRV ... ; RFC 3832 "Remote Discovery in SLP via DNS SRV" {exp}: _slpda.{_tcp,_udp} ; RFC 3861: _im.<proto> and _pres.<proto> for IM protocols; ; Instant Messaging SRV Protocol Label registry http://www.iana.org/assignments/im-srv-labels ; Presence SRV Protocol Label registry http://www.iana.org/assignments/pres-srv-labels/pres-srv-labels.xhtml ; So far, both only contain: _xmpp ; Thus _im._xmpp _pres._xmpp ; draft-loreto-simple-im-srv-label-02.txt adds _sip: _im._sip _pres._sip ; RFC 3921: _im._xmpp _pres._xmpp _xmpp._tcp ; SIP SRV: http://www.iana.org/assignments/sip-table ; _sip+d2t._tcp _sips+d2t._tcp _sip+d2u._udp _sip+d2s._sctp _sips+d2s._sctp ; RFC 4386: http://www.iana.org/assignments/pkix-parameters/pkix-parameters.xhtml ; _pkixrep.<proto> -> _ldap _http _ocsp ; Also possibly: _sip _sips _sipfederation _msrps _im._sip SRV 0 0 0 . _pres._sip SRV 0 0 0 . _sip+d2t._tcp SRV 0 0 0 . _sips+d2t._tcp SRV 0 0 0 . _sip+d2u._udp SRV 0 0 0 . _sip+d2s._sctp SRV 0 0 0 . _sips+d2s._sctp SRV 0 0 0 . ; }}} ;;; ====================================================================== ; Email service for use by clients within the domain. {{{ ; RFC 6186 (was: draft-daboo-srv-email-05.txt) ; RFC 8314 updates for submissions ; RFC 8314 updates for submissions (obsoletes all cleartext) ; RFC 8552 sets up a registry for all the underscore services and 8553 backfills it _submission._tcp SRV 10 10 587 smtp _submissions._tcp SRV 10 10 465 smtp _imap._tcp SRV 10 10 143 imap _imaps._tcp SRV 10 10 993 imap _pop3._tcp SRV 0 0 0 . _pop3s._tcp SRV 0 0 0 . _sieve._tcp SRV 10 10 4190 imap ; }}} ;;; ====================================================================== ; Other zone-top services {{{ ; Where can people send questions or get more information ;;;@ RP hostmaster.example.org. dns-moreinfo.example.org. dns-moreinfo TXT ( "Fred Bloggs, TZ=America/New_York" "Chat-Service-X: @handle1" "Chat-Service-Y: federated-handle@example.org" ) ; SKS withdrawn _pgpkey-http._tcp SRV 0 0 0 . _pgpkey-https._tcp SRV 0 0 0 . _hkp._tcp SRV 0 0 0 . ; WKD <https://datatracker.ietf.org/doc/draft-koch-openpgp-webkey-service/?include_text=1> ; The SRV record should be disappearing because it was removed from the spec. ; In the meantime, point it to the host while being cognizant that GnuPG will ; use the hostname from the target of the SRV for the Host header. _openpgpkey._tcp SRV 10 10 443 openpgpkey.example.org. ; Not sure anything actually uses this, but ah well ; Avoid pointing at a CNAME, just use barbican directly _finger._tcp SRV 10 10 79 barbican ; https://wiki.libravatar.org/api/ _avatars-sec._tcp SRV 10 10 443 avatars ; For bare domain as a hostname, we try to avoid it as much as possible. ; Sometimes, it's necessary, eg finger. ; Once it exists in DNS though, HTTP requests will try to hit it when people ; don't type `www.` ; So we point the bare domain at a minimal jail with "not much" in it, and ; use packet filters to redirect the traffic to the correct places. ; For HTTP, we'll issue redirects to avoid this. For finger, we just respond. @ A 192.0.2.1 @ AAAA 2001:db8::1:1 ; }}} ;;; ====================================================================== ; Email cryptographic authentication {{{ ; RFC5585 DomainKeys Identified Mail (DKIM) Service Overview _adsp._domainkey TXT "dkim=all" ; RFC5617 unknown | all | discardable ; http://dmarc.org/draft-dmarc-base-00-01.html DMARC DKIM policy ; ; DMARC: beware that some validators require v/p with no intermediate values, ; which one reading of RFC7489 can support. So keep those together at the front. _dmarc TXT "v=DMARC1; p=none; sp=none; rua=mailto:dmarc-notify@example.org; ruf=mailto:dmarc-notify@example.org; adkim=s" ; [This is a good place to have a link to documentation on local processes for ; updating DKIM keys] ; ; These are the real current (March 2020) values for the domain which this ; example was drawn from. ; Note that the domain dual-signs email with both RSA and Ed25519 keys. ; The domain also cycles DKIM keys every three months, but it's manual and the ; calendar reminder was missed in February. Oops. ; d201911._domainkey TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4SmyE5Tz5/wPL8cb2AKuHnlFeLMOhAl1UX/NYaeDCKMWoBPTgZRT0jonKLmV2UscHdodXu5ZsLr/NAuLCp7HmPLReLz7kxKncP6ppveKxc1aq5SPTKeWe77p6BptlahHc35eiXsZRpTsEzrbEOainy1IWEd+w9p1gWbrSutwE22z0i4V88nQ9UBa1ks" "6cVGxXBZFovWC+i28aGs6Lc7cSfHG5+Mrg3ud5X4evYXTGFMPpunMcCsXrqmS5a+5gRSEMZhngha/cHjLwaJnWzKaywNWF5XOsCjL94QkS0joB7lnGOHMNSZBCcu542Y3Ht3SgHhlpkF9mIbIRfpzA9IoSQIDAQAB" d201911e2._domainkey TXT "v=DKIM1; k=ed25519; p=GBt2k2L39KUb39fg5brOppXDHXvISy0+ECGgPld/bIo=" ; d202003._domainkey TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv/1tQvOEs7xtKNm7PbPgY4hQjwHVvqqkDb0+TeqZHYRSczQ3c0LFJrIDFiPIdwQe/7AuKrxvATSh/uXKZ3EP4ouMgROPZnUxVXENeetJj+pc3nfGwTKUBTTTth+SO74gdIWsntjvAfduzosC4ZkxbDwZ9c253qXARGvGu+LB/iAeq0ngEbm5fU13+Jo" "pv0d4dR6oGe9GvMEnGGLZzNrxWl1BPe2x5JZ5/X/3fW8vJx3OgRB5N6fqbAJ6HZ9kcbikDH4lPPl9RIoprFk7mmwno/nXLQYGhPobmqq8wLkDiXEkWtYa5lzujz3XI3Zkk8ZIOGvdbVVfAttT0IVPnYkOhQIDAQAB" d202003e2._domainkey TXT "v=DKIM1; k=ed25519; p=DQI5d9sNMrr0SLDoAi071IFOyKnlbR29hAQdqVQecQg=" ; ; http://tools.ietf.org/html/draft-ietf-marf-reporting-discovery-01 _report TXT "r=abuse-reports@example.org; rf=ARF; re=postmaster@example.org;" ; These are for RFC8460 and the sender needs to support MTA-STS or DANE; if ; they only support one, we might get error complaints. ; SMTP TLS Reporting used `_smtp-tlsrpt` in <https://tools.ietf.org/html/draft-ietf-uta-smtp-tlsrpt-17> ; but `_smtp._tls` by the time RFC 8460 was published. _smtp._tls TXT "v=TLSRPTv1; rua=mailto:smtp-tls-reports@example.org" _smtp-tlsrpt TXT "v=TLSRPTv1; rua=mailto:smtp-tls-reports@example.org" ; RFC 7489 § 7.1 ; Any domains which point their DMARC records to email in this domain need ; to be authorized by having a record here, saying "yes, it's known, go ahead ; and send their DMARC reports to us." ; ; This is not needed for our sub-domains, because they're the same ; "organizational domain" as us (organizational domain is the thing which is ; publicly registered, ie where the parent domain is in the public suffix ; list). ; $ORIGIN _report._dmarc.example.org. example.net TXT "v=DMARC1" example.com TXT "v=DMARC1" xn--2j5b.xn--9t4b11yi5a TXT "v=DMARC1" special.test TXT "v=DMARC1" xn--qck5b9a5eml3bze.xn--zckzah TXT "v=DMARC1" $ORIGIN example.org. ; https://datatracker.ietf.org/doc/draft-ietf-dane-smime/?include_text=1 ; Using Secure DNS to Associate Certificates with Domain Names For S/MIME ; draft-ietf-dane-smime-15 *._smimecert CNAME _ourca-smimea ; Whatever the LHS, it all uses the one set of CAs, mine, which is ECC. ; }}} ;;; ====================================================================== ; Zeroconf Delegation {{{ ; Point clients at a sub-domain for Wide Area Bonjour ; "b" = browse domain ; "lb" = legacy browse domain (include domain in empty-string browses) ; "r" = registration domain b._dns-sd._udp PTR field lb._dns-sd._udp PTR field r._dns-sd._udp PTR field field NS ns1.example.org. NS ns2.example.org. ;;;field DS 50664 7 1 8AA19AF49BFBAE7103E3450FB19E7C4B88FA556A ;;;field DS 50664 7 2 D4EEDAE5EC46C3C1A3A6DC6BC4404F36BA00E4025562A9BC8F3261A9 D0F08F96 ; }}} ;;; ====================================================================== ; Hosts and SSH Fingerprints {{{ ; SSH fingerprints ; RFC4255 Using DNS to Securely Publish Secure Shell (SSH) Key Fingerprints ; RFC6594 Use of the SHA-256 Algorithm with RSA, Digital Signature Algorithm (DSA), and Elliptic Curve DSA (ECDSA) in SSHFP Resource Records ; http://www.iana.org/assignments/dns-sshfp-rr-parameters/dns-sshfp-rr-parameters.xml ; ; On a host with a suitably up-to-date ssh-keygen, using the .pub files: ; ssh-keygen -r $hostname -f /etc/ssh/ssh_host_$type_key.pub ; ; Records are: SSHFP ${keytype_alg} ${hash_alg} ${hash_data} ; keytype_alg: 1/RSA 2/DSA 3/ECDSA 4/Ed25519 6/Ed448 ; hash_alg: 1/SHA-1 2/SHA-256 ; ;nb: SSH DSA currently constrained to 1024-bit, far too short, so dropping alg=2 from DNS ;nb: SHA-1 is dead, let's stop publishing it. ; barbican: perimeter defense {{{ ; barbican runs perimeter general services, such as recursive DNS ; This is also the IP address used for NAT/RDR for private jails ; This is also now @ for example.org too. ; Deliberately no SSH here. barbican A 192.0.2.1 barbican AAAA 2001:db8::1:1 barbican.ipv4 A 192.0.2.1 barbican.ipv6 AAAA 2001:db8::1:1 ; }}} ; megalomaniac: Onlink-address for main Colo box {{{ megalomaniac A 198.51.100.254 AAAA 2001:db8:ffef::254 megalomaniac.ipv4 A 198.51.100.254 megalomaniac.ipv6 AAAA 2001:db8:ffef::254 megalomaniac SSHFP 1 2 4e9ced94d3caf2ce915f85a63ce7279d5118a79ea03dac59cf4859b825d2f619 megalomaniac SSHFP 3 2 d3556a3db83ab9ccec39dc6693dd2f3e28b178c9bba61880924821c426cc61eb megalomaniac SSHFP 4 2 c60c9d9d4728668f5f46986ff0c5b416c5e913862c4970cbfe211a6f44a111b4 megalomaniac.ipv4 SSHFP 1 2 4e9ced94d3caf2ce915f85a63ce7279d5118a79ea03dac59cf4859b825d2f619 megalomaniac.ipv4 SSHFP 3 2 d3556a3db83ab9ccec39dc6693dd2f3e28b178c9bba61880924821c426cc61eb megalomaniac.ipv4 SSHFP 4 2 c60c9d9d4728668f5f46986ff0c5b416c5e913862c4970cbfe211a6f44a111b4 megalomaniac.ipv6 SSHFP 1 2 4e9ced94d3caf2ce915f85a63ce7279d5118a79ea03dac59cf4859b825d2f619 megalomaniac.ipv6 SSHFP 3 2 d3556a3db83ab9ccec39dc6693dd2f3e28b178c9bba61880924821c426cc61eb megalomaniac.ipv6 SSHFP 4 2 c60c9d9d4728668f5f46986ff0c5b416c5e913862c4970cbfe211a6f44a111b4 ; }}} ; tower is the main login jail {{{ tower A 192.0.2.42 tower AAAA 2001:db8::1:42 tower.ipv4 A 192.0.2.42 tower.ipv6 AAAA 2001:db8::1:42 tower SSHFP 1 2 0f211d236e94768911a294f38653c4af6fa935a5b06c975d8162f59142571451 tower SSHFP 3 2 88bf7b7401c11fa2e84871efb06cd73d8fc409154605b354db2dda0b82fe1160 tower SSHFP 4 2 6d30900be0faaae73568fc007a87b4d076cf9a351ecacc1106aef726c34ad61d tower.ipv4 SSHFP 1 2 0f211d236e94768911a294f38653c4af6fa935a5b06c975d8162f59142571451 tower.ipv4 SSHFP 3 2 88bf7b7401c11fa2e84871efb06cd73d8fc409154605b354db2dda0b82fe1160 tower.ipv4 SSHFP 4 2 6d30900be0faaae73568fc007a87b4d076cf9a351ecacc1106aef726c34ad61d tower.ipv6 SSHFP 1 2 0f211d236e94768911a294f38653c4af6fa935a5b06c975d8162f59142571451 tower.ipv6 SSHFP 3 2 88bf7b7401c11fa2e84871efb06cd73d8fc409154605b354db2dda0b82fe1160 tower.ipv6 SSHFP 4 2 6d30900be0faaae73568fc007a87b4d076cf9a351ecacc1106aef726c34ad61d ; }}} ; vcs for svn and git {{{ vcs A 192.0.2.228 vcs AAAA 2001:db8::48:4558:4456:4353 vcs.ipv4 A 192.0.2.228 vcs.ipv6 AAAA 2001:db8::48:4558:4456:4353 git CNAME vcs git.ipv4 CNAME vcs.ipv4 git.ipv6 CNAME vcs.ipv6 ; svn is kerberized so has its own hostname and is only IPv6-accessible because ; we don't have IPv4 to spare for this. svn AAAA 2001:db8::48:4558:73:766e vcs SSHFP 1 2 b518be390babdf43cb2d598aa6befa6ce6878546bf107b829d0cfc65253a97d4 vcs SSHFP 3 2 e92545dc0bf501f72333ddeb7a37afc2c5b408ce39a3ad95fbc66236f0077323 vcs SSHFP 4 2 02289441124a487095a6cda2e946c6a8ed9087faf3592ec4135536c3e615521c vcs.ipv4 SSHFP 1 2 b518be390babdf43cb2d598aa6befa6ce6878546bf107b829d0cfc65253a97d4 vcs.ipv4 SSHFP 3 2 e92545dc0bf501f72333ddeb7a37afc2c5b408ce39a3ad95fbc66236f0077323 vcs.ipv4 SSHFP 4 2 02289441124a487095a6cda2e946c6a8ed9087faf3592ec4135536c3e615521c vcs.ipv6 SSHFP 1 2 b518be390babdf43cb2d598aa6befa6ce6878546bf107b829d0cfc65253a97d4 vcs.ipv6 SSHFP 3 2 e92545dc0bf501f72333ddeb7a37afc2c5b408ce39a3ad95fbc66236f0077323 vcs.ipv6 SSHFP 4 2 02289441124a487095a6cda2e946c6a8ed9087faf3592ec4135536c3e615521c ; }}} ; nsauth is the authoritative DNS server {{{ nsauth A 192.0.2.53 nsauth AAAA 2001:db8::53:1 nsauth.ipv4 A 192.0.2.53 nsauth.ipv6 AAAA 2001:db8::53:1 nsauth SSHFP 1 2 895804ae022fff643b2677563cb850607c5bb564d9919896c521098c8abc40f2 nsauth SSHFP 3 2 28a65470badae611375747e1a803211c41e3d71e97741fa92ccbdf7b01f34e42 nsauth SSHFP 4 2 6e10445c0649c03fa83e18b1873e5b89b3a20893ecb48d01e7cedb3dd563ecf0 nsauth.ipv4 SSHFP 1 2 895804ae022fff643b2677563cb850607c5bb564d9919896c521098c8abc40f2 nsauth.ipv4 SSHFP 3 2 28a65470badae611375747e1a803211c41e3d71e97741fa92ccbdf7b01f34e42 nsauth.ipv4 SSHFP 4 2 6e10445c0649c03fa83e18b1873e5b89b3a20893ecb48d01e7cedb3dd563ecf0 nsauth.ipv6 SSHFP 1 2 895804ae022fff643b2677563cb850607c5bb564d9919896c521098c8abc40f2 nsauth.ipv6 SSHFP 3 2 28a65470badae611375747e1a803211c41e3d71e97741fa92ccbdf7b01f34e42 nsauth.ipv6 SSHFP 4 2 6e10445c0649c03fa83e18b1873e5b89b3a20893ecb48d01e7cedb3dd563ecf0 ; These are the entries which appear in glue ns1 A 192.0.2.53 ns1 AAAA 2001:db8::53:1 ns2 A 203.0.113.53 ns2 AAAA 2001:db8:113::53 ; }}} ; hermes for mail {{{ ; The raw IPv6 for this match the SMTP and IMAP _submission_ aliases ; for various reasons, but not the MX IPv6 (which also goes there). hermes A 192.0.2.25 hermes AAAA 2001:db8::48:4558:736d:7470 hermes AAAA 2001:db8::48:4558:696d:6170 hermes.ipv4 A 192.0.2.25 hermes.ipv6 AAAA 2001:db8::48:4558:736d:7470 hermes.ipv6 AAAA 2001:db8::48:4558:696d:6170 hermes SSHFP 1 2 4472ff5bd0528cd49216af4503ba6a1c48f121d0292a31d6af193e5000af4966 hermes SSHFP 3 2 eaba20c1565676a5229184ccfcf82d0ee408f91757a67d9fa51a0b6f3db4a33b hermes SSHFP 4 2 a9d89920e599d04363c8b35a4ce66c1ed257ea1d16981f060b6aed080bbb7a7c hermes.ipv4 SSHFP 1 2 4472ff5bd0528cd49216af4503ba6a1c48f121d0292a31d6af193e5000af4966 hermes.ipv4 SSHFP 3 2 eaba20c1565676a5229184ccfcf82d0ee408f91757a67d9fa51a0b6f3db4a33b hermes.ipv4 SSHFP 4 2 a9d89920e599d04363c8b35a4ce66c1ed257ea1d16981f060b6aed080bbb7a7c hermes.ipv6 SSHFP 1 2 4472ff5bd0528cd49216af4503ba6a1c48f121d0292a31d6af193e5000af4966 hermes.ipv6 SSHFP 3 2 eaba20c1565676a5229184ccfcf82d0ee408f91757a67d9fa51a0b6f3db4a33b hermes.ipv6 SSHFP 4 2 a9d89920e599d04363c8b35a4ce66c1ed257ea1d16981f060b6aed080bbb7a7c ; }}} ; other top-level base service hostnames (no SSH) {{{ ; other IPv4 and IPv6 is routed to unredoubted and then configured up locally kerb-service A 192.0.2.88 kerb-service AAAA 2001:db8::48:4558:6b65:7262 security A 192.0.2.92 security AAAA 2001:db8::48:4558:53:4543 security.ipv4 A 192.0.2.92 security.ipv6 AAAA 2001:db8::48:4558:53:4543 services A 192.0.2.93 services AAAA 2001:db8::48:4558:5345:5256 services.ipv4 A 192.0.2.93 services.ipv6 AAAA 2001:db8::48:4558:5345:5256 ; }}} ; CNAMEs and things we wish were ALIAS or auto-made: {{{ ; https://www.ietf.org/id/draft-koch-openpgp-webkey-service-07.txt ; (thru -06 it was SRV records); this is constructed from the email address, ; so we don't need .ipvX variants. ; I don't want CNAME as target of SRV; so grep-bait: CNAME security openpgpkey A 192.0.2.92 openpgpkey AAAA 2001:db8::48:4558:53:4543 finger CNAME barbican finger.ipv4 CNAME barbican.ipv4 finger.ipv6 CNAME barbican.ipv6 ; avatars can't be a CNAME and the target of an SRV. ; greb-bait: CNAME services avatars A 192.0.2.93 AAAA 2001:db8::48:4558:5345:5256 dict CNAME services people CNAME services people.ipv4 CNAME services.ipv4 people.ipv6 CNAME services.ipv6 wpad CNAME services www CNAME services www.ipv4 CNAME services.ipv4 www.ipv6 CNAME services.ipv6 ; }}} ; Hosts and SSH Fingerprints }}} ;;; ====================================================================== ; Zone Identity Services {{{ ; CAA: originally:RFC 6844 ; currently: RFC 8659, with extensions in RFC 8657 ; ; issue/issuewild tags use values which are "rest of data" (not Strings, no 255 ; limit) and which are a domain name, followed optionally by parameters, each ; individual parameter preceded by a `;` semi-colon; parameters are defined ; per-Issuer. A missing domain-name is allowed, no parameters defined for that ; case. ; ; Even though RFC 8659 says "The semantics of parameters to the issue Property ; Tag are determined by the Issuer alone.", RFC 8657 proceeds to define ; semantics for some parameters. I think this is more "if folks do stick to ; one common schema then it's easier for others to build tools, but still each ; Issuer can set their own meanings and ignore this if they really want". ; This is backed by 8657 IANA Considerations. ; But then 8657 then imposes MUST requirements upon ACME-using systems. ; ; RFC 8657 adds: `accounturi`, `validationmethods`; can repeat the CAA record ; with the same domain but a different accounturi each time. ; https://docs.aws.amazon.com/acm/latest/userguide/setup-caa.html ; Any of: "amazon.com" "amazontrust.com" "awstrust.com" "amazonaws.com" ; No info re RFC8657 as of 2019-12-31 ; ; https://letsencrypt.org/docs/caa/ ; "Let’s Encrypt’s identifying domain name for CAA is letsencrypt.org. This is officially documented in our Certification Practice Statement (CPS), section 4.2.1." ; https://letsencrypt.org/documents/isrg-cps-v2.0/ ; ISRG checks for relevant CAA records prior to issuing certificates. The CA acts in accordance with CAA records if present. The CA’s CAA identifying domain is ‘letsencrypt.org’. ; 2019-12-31: can find no docs re accounturi, but community forum posts ; showing that the account from the ACME client data works (after a bug was ; fixed re ACMEv2 URLs) ; ; https://www.digicert.com/dns-caa-rr-check.htm ; Equivalent: "digicert.com" "www.digicert.com" "digicert.ne.jp" "cybertrust.ne.jp" "symantec.com" "thawte.com" "geotrust.com" "rapidssl.com" ; 2019-12-31: no accounturi docs ; ; https://ccadb-public.secure.force.com/ccadb/AllCAAIdentifiersReport ; HTML page, all CAA identifiers known to the Common CA Database; <https://www.ccadb.org/resources> ; 2019-12-31: I am not using Amazon inside example.org domain; that's on the blog at bridge.example.com ; <https://crt.sh/?q=%25.example.org> only lists LE. ; Beware that our LetsEncrypt automation tooling uses multiple email addresses ; for different purposes, but all hostnames within example.org are using the ; noc@example.org address, so that's the only one we need. ; Let's Encrypt: ; Prod/1234567 == tower / noc@example.org ; Stag/23456789 = chat2 / noc+chat2@example.net ; Prod/76543210 = chat2 / noc+chat2@example.net @ CAA 0 issue "example.net" @ CAA 0 issue "letsencrypt.org\; accounturi=https://acme-v01.api.letsencrypt.org/acme/reg/1234567" @ CAA 0 issue "letsencrypt.org\; accounturi=https://acme-staging-v02.api.letsencrypt.org/acme/acct/23456789" @ CAA 0 issue "letsencrypt.org\; accounturi=https://acme-v02.api.letsencrypt.org/acme/acct/76543210" ;@ CAA 0 issue "amazonaws.com" @ CAA 0 issuewild ";" @ CAA 0 iodef "mailto:security@example.org" ; Zone Identity Services }}} ;;; ====================================================================== ; TLSA Records {{{ ; TLSA: Usage Selector Matching-Type CAdata ; Usage==2 : CA anchor, no PKIX requirement ; Selector==0 : match entire cert ; Selector==1 : match public key ; MT: 0=exact match, 1=sha256, 2=sha512 ; RFCs: 6698 6394 ; Naming from RFC 7218 (draft-ietf-dane-registry-acronyms-03.txt): ; * Usages: PKIX-TA(0) PKIX-EE(1) DANE-TA(2) DANE-EE(3) PrivCert(255) ; * Selectors: Cert(0) SPKI(1) PrivSel(255) ; * Matching Types: Full(0) SHA2-256(1) SHA2-512(2) PrivMatch(255) ; We don't use -example-tlsa-full any more; that was our v3 CA, and in the meantime ; the client tooling for TLSA has matured and we can use better matching. ; ; _example-tlsa-full TLSA ( 2 0 0 30.... ) ; OurCA3 PKIX-less trust anchor ; ; openssl x509 -inform pem -outform der -in OurCA3.pem| perl -pe 's/(.)/sprintf "%02x", ord $1/aesg';echo ; openssl x509 -inform pem -outform der -in OurCA3.pem| perl -pe 's/(.)/sprintf "%02x", ord $1/aesg' | perl -pe 's/(.{72})/$1\n/g';echo ; For our own CAs, we use Selector 0 to match the entire cert, because we ; control the horizontal and the vertical. ; For CAs we use, we use Selector 1, so that if they reissue their signing cert ; then our DNS records remain valid: as long the as public key is unchanged, ; the 2/1/1 will be unchanged too. ; ; We typically avoid 3/x/x for individual certs or public keys directly in DNS: ; we don't want to have to update a static zonefile for cert re-issuance, and ; even with a dynamic zonefile, any complicated pre-issuance schemes or timing ; dances to deal with DNS TTLs fall down when there's an emergency revocation ; or replacement. Just pin the issuing CA with 2/x/x and be done with it. ; OurCA {{{ _ourcaca4-tlsa TLSA ( ; OurCA4 PKIX-less trust anchor 02 00 01 ea99063a0a3bda9727032cf82da238698b90ba729300703d3956943635f96488 ; TLSA DANE-TA CERT SHA2-256 ) ; danetool --tlsa-rr --host=foo --ca --x509 --load-certificate=OurCA4.pem _ourcaca5-tlsa TLSA ( ; OurCA5 PKIX-less trust anchor 02 00 01 11f058f61f97b8adc66ef4801f918c71b10e5c1e3d39afde10408b3026647ef1 ; TLSA DANE-TA CERT SHA2-256 ) ; danetool --tlsa-rr --host=foo --ca --x509 --load-certificate=OurCA5.pem ; SMIMEA {{{ ; Note that the SMIME email signatures include the CA usually; mutt certainly does, ; so folks getting signed email from me _have_ the CA. So no need to use 2/0/0 here. ; ; That _was_: ; openssl x509 -inform pem -outform der -in OurCA5.pem | perl -pe 's/(.)/sprintf "%02x", ord $1/aesg' | perl -pe 's/(.{72})/$1\n/g';echo ; ; but instead we can just use the signatures. ; Since it's just an X.509 cert and almost the same as a TLSA record, use danetool. ; Heck, copy the _ourcaca5-tlsa RRset and change the RRtypes. ;;;_ourcaca5-smimea SMIMEA ( ; OurCA5 PKIX-less trust anchor ;;; 02 00 01 11f058f61f97b8adc66ef4801f918c71b10e5c1e3d39afde10408b3026647ef1 ;;; ; SMIMEA DANE-TA CERT SHA2-256 ;;; ) ; danetool --tlsa-rr --host=foo --ca --x509 --load-certificate=OurCA5.pem ; This one should be a _set_ of CAs, letting me add OurCA6 (Ed25519) when the time comes. ;;;_ourca-smimea SMIMEA ( ; OurCA5 PKIX-less trust anchor ;;; 02 00 01 11f058f61f97b8adc66ef4801f918c71b10e5c1e3d39afde10408b3026647ef1 ;;; ; SMIMEA DANE-TA CERT SHA2-256 ;;; ) ; OurCA }}} ; SMIMEA }}} ; Other CAs, standalone {{{ _cacert-c3-tlsa TLSA ( ; CACert Class 3 PKIX-less trust anchor 02 00 01 4edde9e55ca453b388887caa25d5c5c5bccf2891d73b87495808293d5fac83c8 ; TLSA DANE-TA CERT SHA2-256 ) ; danetool --tlsa-rr --host=foo --ca --x509 --load-certificate=cacert-class3.pem ; For Let's Encrypt, where they have multiple signing paths, we use public-key ; hashing, not certificate hashing. ; This avoids breakage given, eg, IdenTrust vs other authority paths ; ;_letsencrypt-tlsa TLSA ( 02 01 01 0b9fa5a59eed715c26c1020c711b4f6ec42d58b0015e14337a39dad301c5afc3 ) ; ISRG Root X1 _letsencrypt-tlsa TLSA ( 02 01 01 60b87575447dcba2a36b7d11ac09fb24a9db406fee12d2cc90180517616e8a18 ) ; X1 & X3 _letsencrypt-tlsa TLSA ( 02 01 01 b111dd8a1c2091a89bd4fd60c57f0716cce50feeff8137cdbee0326e02cf362b ) ; X2 & X4 ; danetool --tlsa-rr --host=foo --ca --load-certificate=letsencrypt_rsa_authority_x1.pem ; edit results of: for F in AmazonRootCA*; danetool --tlsa-rr --host=$F --ca --x509 --load-certificate=$F _amazon-tlsa TLSA ( 02 00 01 8ecde6884f3d87b1125ba31ac3fcb13d7016de7f57cc904fe1cb97c6ae98196e ) ; AmazonRootCA1 _amazon-tlsa TLSA ( 02 00 01 1ba5b2aa8c65401a82960118f80bec4f62304d83cec4713a19c39c011ea46db4 ) ; AmazonRootCA2 _amazon-tlsa TLSA ( 02 00 01 18ce6cfe7bf14e60b2e347b8dfe868cb31d02ebb3ada271569f50343b46db3a4 ) ; AmazonRootCA3 _amazon-tlsa TLSA ( 02 00 01 e35d28419ed02025cfa69038cd623962458da5c695fbdea3c22b0bfb25897092 ) ; AmazonRootCA4 ; Other CAs, standalone }}} ; Combined CA TLSA records {{{ ; These let us migrate between CAs without any outage, or have contingency plans. ; _ourca-tlsa is a pairing anchor, handling both CA4 and CA5. _ourca-tlsa TLSA ( 02 00 01 ea99063a0a3bda9727032cf82da238698b90ba729300703d3956943635f96488 ) ; OurCA4 _ourca-tlsa TLSA ( 02 00 01 11f058f61f97b8adc66ef4801f918c71b10e5c1e3d39afde10408b3026647ef1 ) ; OurCA5 ; Used for migrations CACert -> OurCA4 _ourca-cacert-tlsa TLSA 02 00 01 ea99063a0a3bda9727032cf82da238698b90ba729300703d3956943635f96488 ; OurCA4 _ourca-cacert-tlsa TLSA 02 00 01 11f058f61f97b8adc66ef4801f918c71b10e5c1e3d39afde10408b3026647ef1 ; OurCA5 _ourca-cacert-tlsa TLSA 02 00 01 4edde9e55ca453b388887caa25d5c5c5bccf2891d73b87495808293d5fac83c8 ; cacert-c3 ; This mostly means "stuff which used to be on our own CA but for which we now use Let's Encrypt because others might see it" _ourca-le-tlsa TLSA ( 02 00 01 ea99063a0a3bda9727032cf82da238698b90ba729300703d3956943635f96488 ) ; OurCA4 _ourca-le-tlsa TLSA ( 02 00 01 11f058f61f97b8adc66ef4801f918c71b10e5c1e3d39afde10408b3026647ef1 ) ; OurCA5 _ourca-le-tlsa TLSA ( 02 01 01 60b87575447dcba2a36b7d11ac09fb24a9db406fee12d2cc90180517616e8a18 ) ; letsencrypt X1 & X3 _ourca-le-tlsa TLSA ( 02 01 01 b111dd8a1c2091a89bd4fd60c57f0716cce50feeff8137cdbee0326e02cf362b ) ; letsencrypt X2 & X4 ; Don't ask _ourca-cacert-le-tlsa TLSA ( 02 00 01 ea99063a0a3bda9727032cf82da238698b90ba729300703d3956943635f96488 ) ; OurCA4 _ourca-cacert-le-tlsa TLSA ( 02 00 01 11f058f61f97b8adc66ef4801f918c71b10e5c1e3d39afde10408b3026647ef1 ) ; OurCA5 _ourca-cacert-le-tlsa TLSA ( 02 00 01 4edde9e55ca453b388887caa25d5c5c5bccf2891d73b87495808293d5fac83c8 ) ; cacert-c3 _ourca-cacert-le-tlsa TLSA ( 02 01 01 60b87575447dcba2a36b7d11ac09fb24a9db406fee12d2cc90180517616e8a18 ) ; letsencrypt X1 & X3 _ourca-cacert-le-tlsa TLSA ( 02 01 01 b111dd8a1c2091a89bd4fd60c57f0716cce50feeff8137cdbee0326e02cf362b ) ; letsencrypt X2 & X4 ; Stuff we migrate from CACert to Let's Encrypt; was never private CA, we ; always wanted others to be able to validate. _cacert-le-tlsa TLSA ( 02 00 01 4edde9e55ca453b388887caa25d5c5c5bccf2891d73b87495808293d5fac83c8 ) ; cacert-c3 _cacert-le-tlsa TLSA ( 02 01 01 60b87575447dcba2a36b7d11ac09fb24a9db406fee12d2cc90180517616e8a18 ) ; letsencrypt X1 & X3 _cacert-le-tlsa TLSA ( 02 01 01 b111dd8a1c2091a89bd4fd60c57f0716cce50feeff8137cdbee0326e02cf362b ) ; letsencrypt X2 & X4 ; Some stuff we move between LE and AWS CloudFront in front of an S3 bucket _le-amazon-tlsa TLSA ( 02 01 01 60b87575447dcba2a36b7d11ac09fb24a9db406fee12d2cc90180517616e8a18 ) ; letsencrypt X1 & X3 _le-amazon-tlsa TLSA ( 02 01 01 b111dd8a1c2091a89bd4fd60c57f0716cce50feeff8137cdbee0326e02cf362b ) ; letsencrypt X2 & X4 _le-amazon-tlsa TLSA ( 02 00 01 8ecde6884f3d87b1125ba31ac3fcb13d7016de7f57cc904fe1cb97c6ae98196e ) ; AmazonRootCA1 _le-amazon-tlsa TLSA ( 02 00 01 1ba5b2aa8c65401a82960118f80bec4f62304d83cec4713a19c39c011ea46db4 ) ; AmazonRootCA2 _le-amazon-tlsa TLSA ( 02 00 01 18ce6cfe7bf14e60b2e347b8dfe868cb31d02ebb3ada271569f50343b46db3a4 ) ; AmazonRootCA3 _le-amazon-tlsa TLSA ( 02 00 01 e35d28419ed02025cfa69038cd623962458da5c695fbdea3c22b0bfb25897092 ) ; AmazonRootCA4 ; All The Current Bases _ourca-le-amazon-tlsa TLSA ( 02 00 01 ea99063a0a3bda9727032cf82da238698b90ba729300703d3956943635f96488 ) ; OurCA4 _ourca-le-amazon-tlsa TLSA ( 02 00 01 11f058f61f97b8adc66ef4801f918c71b10e5c1e3d39afde10408b3026647ef1 ) ; OurCA5 _ourca-le-amazon-tlsa TLSA ( 02 01 01 60b87575447dcba2a36b7d11ac09fb24a9db406fee12d2cc90180517616e8a18 ) ; letsencrypt X1 & X3 _ourca-le-amazon-tlsa TLSA ( 02 01 01 b111dd8a1c2091a89bd4fd60c57f0716cce50feeff8137cdbee0326e02cf362b ) ; letsencrypt X2 & X4 _ourca-le-amazon-tlsa TLSA ( 02 00 01 8ecde6884f3d87b1125ba31ac3fcb13d7016de7f57cc904fe1cb97c6ae98196e ) ; AmazonRootCA1 _ourca-le-amazon-tlsa TLSA ( 02 00 01 1ba5b2aa8c65401a82960118f80bec4f62304d83cec4713a19c39c011ea46db4 ) ; AmazonRootCA2 _ourca-le-amazon-tlsa TLSA ( 02 00 01 18ce6cfe7bf14e60b2e347b8dfe868cb31d02ebb3ada271569f50343b46db3a4 ) ; AmazonRootCA3 _ourca-le-amazon-tlsa TLSA ( 02 00 01 e35d28419ed02025cfa69038cd623962458da5c695fbdea3c22b0bfb25897092 ) ; AmazonRootCA4 ; Combined CA TLSA records }}} ; TLSA Records }}} ;;; ====================================================================== ; TLSA Referencing {{{ ; full: ; openssl x509 -inform pem -outform der -in OurCA3.pem| perl -pe 's/(.)/sprintf "%02x", ord $1/aesg' | perl -pe 's/(.{72})/$1\n/g';echo ; short: ; danetool --tlsa-rr --host=foo --ca --x509 --load-certificate=some-company.classN.server.shaN.ca.pem ; Web and other HTTP Transport _443._tcp.www CNAME _ourca-le-tlsa _443._tcp.www.ipv4 CNAME _ourca-le-tlsa _443._tcp.www.ipv6 CNAME _ourca-le-tlsa _443._tcp.people CNAME _ourca-le-tlsa _443._tcp.people.ipv4 CNAME _ourca-le-tlsa _443._tcp.people.ipv6 CNAME _ourca-le-tlsa _443._tcp.git CNAME _ourca-le-tlsa _443._tcp.svn CNAME _ourca-le-tlsa ; XMPP / Jabber _5222._tcp.xmpp CNAME _ourca-le-tlsa _5223._tcp.xmpp CNAME _ourca-le-tlsa _5269._tcp.xmpp-s2s CNAME _ourca-le-tlsa ; Email _25._tcp.mx CNAME _ourca-le-tlsa _26._tcp.mx CNAME _ourca-le-tlsa _27._tcp.mx CNAME _ourca-le-tlsa ; the ....46 are the SRV results, the non-46 may be manually configured ; the 1xxx are for potential debugging ; there's too much historical cruft here, from when I had one IPv4 address and ; a bazillion IPv6 addresses. _465._tcp.smtp46 CNAME _ourca-le-tlsa _587._tcp.smtp46 CNAME _ourca-le-tlsa _1465._tcp.smtp46 CNAME _ourca-le-tlsa _1587._tcp.smtp46 CNAME _ourca-le-tlsa _465._tcp.smtp CNAME _ourca-le-tlsa _587._tcp.smtp CNAME _ourca-le-tlsa _1465._tcp.smtp CNAME _ourca-le-tlsa _1587._tcp.smtp CNAME _ourca-le-tlsa _143._tcp.imap46 CNAME _ourca-le-tlsa _993._tcp.imap46 CNAME _ourca-le-tlsa _143._tcp.imap CNAME _ourca-le-tlsa _993._tcp.imap CNAME _ourca-le-tlsa ; except for sieve, where there's only IPv6 _4190._tcp.imap CNAME _ourca-le-tlsa ; www.security CNAME security www.security.ipv4 CNAME security.ipv4 www.security.ipv6 CNAME security.ipv6 _443._tcp.www.security CNAME _ourca-le-tlsa _443._tcp.www.security.ipv4 CNAME _ourca-le-tlsa _443._tcp.www.security.ipv6 CNAME _ourca-le-tlsa _443._tcp.security CNAME _ourca-le-tlsa _443._tcp.security.ipv4 CNAME _ourca-le-tlsa _443._tcp.security.ipv6 CNAME _ourca-le-tlsa ; _acme-challenge.www.security.example.org. 120 TXT "..." ; _acme-challenge.security.example.org. 120 TXT "..." ; beware SAN : one each ; rather low TTL because some things might be using this as their backoff determination, buggily. ; ; This does require that the ACME client correctly remap domains to update in ; DNS before asking for a validation of the unmapped domain. The tool I used ; in 2020-02 claimed such support but it was buggy and I had to abandon this ; approach. Instead, we have the nginx vhost which handles a bare ; "example.org" handle /.well-known/acme-challenge/ by trying local files ; first, else HTTP proxying to the chat server. ; I'd like to get rid of that proxying and switch back to DNS updating; ; "d.example.net" is delegated to a commercial service which has an API with ; near-instant live updates. _acme-challenge 15 CNAME _acme-challenge.chat-acme.d.example.net. _acme-challenge.xmpp 15 CNAME _acme-challenge.xmpp.chat-acme.d.example.net. _acme-challenge.chat 15 CNAME _acme-challenge.chat.chat-acme.d.example.net. _acme-challenge.conference 15 CNAME _acme-challenge.conference.chat-acme.d.example.net. _acme-challenge.proxy-chatfiles 15 CNAME _acme-challenge.proxy-chatfiles.chat-acme.d.example.net. _acme-challenge.pubsub.xmpp 15 CNAME _acme-challenge.pubsub.xmpp.chat-acme.d.example.net. ; TLSA Referencing }}} ;;; ====================================================================== ; Mail server hostnames {{{ ; Willing to sacrifice Kerberos portability and rely upon disabling reverse DNS ; hostname canonicalization. Sucking it up. Still no reliable IPv6 at home. ; :( ; For /etc/krb5.conf: [libdefaults] dns_canonicalize_hostname = false ; imap AAAA 2001:db8::48:4558:696d:6170 A 192.0.2.25 smtp AAAA 2001:db8::48:4558:736d:7470 A 192.0.2.25 ; smtp46 A 192.0.2.25 ; old alias pre-dating IPv4 in smtp AAAA 2001:db8::48:4558:736d:7470 imap46 A 192.0.2.25 ; old alias pre-dating IPv4 in imap AAAA 2001:db8::48:4558:696d:6170 ; If changing this, then also update the SPF record; it hard-codes these for ; efficiency of remote systems, saving them some lookups. ; Really, we should be constructing the SPF record via a macro of some kind. ; I'm trying to avoid using M4 to make this zonefile, but sometimes with some ; good whiskey, that looks mighty tempting. mx A 192.0.2.25 AAAA 2001:db8::48:4558:736d:7470 mx.ipv4 A 192.0.2.25 mx.ipv6 AAAA 2001:db8::48:4558:736d:7470 ; ; RFC 7208 section 10.1.3 ; HELO hostnames need to have SPF to allow processing for bounces ; In short: there is no envelope sender for bounces, so the only thing which ; can be checked in the HELO name. ; ; This needs to be tied to the exim.conf setup for outbound `helo_data` on ; transports. At this time, that's "mx.example.org"; this needs to also ; match the `interface` IP address list. ; We do not need to allow other email service providers to claim to be this ; host, so we use "a" (for A/AAAA matching), a catchall for our IPs, and a ; *hard* reject on any other IP. ; Because we never send email from mx.example.org and it's only used by HELO ; checks, we can be firm and not have to worry about forwarding or other ; legitimate shenanigans. mx TXT "v=spf1 a include:_spflarge.example.net -all" ; RFC 8461 SMTP MTA Strict Transport Security (MTA-STS) ; Final: `_mta-sts` TXT record, `v=STSv1`, with host records on `mta-sts`: ; https://mta-sts.example.com/.well-known/mta-sts.txt ; ;; History: ;;; https://tools.ietf.org/html/draft-ietf-uta-mta-sts-02 ;;; SMTP MTA Strict Transport Security (MTA-STS) ;;; Draft -03 renames to "mta-sts", to match the hostname which has to resolve anyway, ;;; which makes sense: NXDOMAIN can skip a second lookup. ;;; https://tools.ietf.org/html/draft-ietf-uta-mta-sts-03 ;;; NB: draft -15 in now in last call, and by this point: ;;; + it's .txt, not .json ;;; + the allowed fields for the mode have changed (`report` -> `testing`) ;;; + DNS is back to _mta-sts ; ; IP addresses should match `services`; this is ALIAS record stuff, can't use ; CNAME because need TXT record too, for the draft, but can switch back to CNAME ; if ignoring the draft. ; ; If updating version, don't forget to check globnix.org DNS too! _mta-sts TXT "v=STSv1; id=20191231r1;" mta-sts TXT "v=STSv1; id=20191231r1;" mta-sts A 192.0.2.93 mta-sts AAAA 2001:db8::48:4558:5345:5256 ; Mail server hostnames }}} ;;; ====================================================================== ; Chat server hostnames {{{ ; $HostingProvider chat2.example.net ; ipv4: 203.0.113.175 ; ipv6: 2001:db8::f0ab:cdef:1234:f00f ; xmpp.ipv6 AAAA 2001:db8::f0ab:cdef:1234:f00f xmpp-s2s.ipv6 AAAA 2001:db8::f0ab:cdef:1234:f00f xmpp A 203.0.113.175 AAAA 2001:db8::f0ab:cdef:1234:f00f xmpp-s2s A 203.0.113.175 AAAA 2001:db8::f0ab:cdef:1234:f00f proxy-chatfiles CNAME xmpp fileproxy.xmpp CNAME xmpp ; Federated services which are offered under their own hostnames (even if on ; the same server instance and port) federate with the same mechanisms, so you ; need an SRV or just an address record if on the default ports. ; Which remote servers will actually use SRV is more open to question. conference CNAME xmpp-s2s _xmpp-server._tcp.conference SRV 10 2 5269 xmpp-s2s ; Services which are modules and need their own hostnames, but are not ; federated within XMPP, don't need the SRV record pubsub.xmpp CNAME xmpp-s2s chat A 203.0.113.175 AAAA 2001:db8::f0ab:cdef:1234:f00f proxy-chatfiles.chat CNAME chat fileproxy.chat CNAME chat conference.chat CNAME chat pubsub.chat CNAME chat _xmpp-server._tcp.conference SRV 10 2 5269 chat ; Chat server hostnames }}} ;;; ====================================================================== ; Random other hostnames {{{ auth AAAA 2001:db8::48:4558:6175:7468 kpeople AAAA 2001:db8::48:4558:6b70:706c ocsp.security AAAA 2001:db8::48:4558:6f63:7370 webauth AAAA 2001:db8::48:4558:7765:6261 news-feed A 192.0.2.93 AAAA 2001:db8::48:4558:6e6e:7470 ; This is for Go package downloads, keeping the canonical names of modules ; in domains under our control, so that we're not locked into one code-hosting ; provider. go CNAME abcdefghijklmn.cloudfront.net. ; Do *not* deploy TLSA until cloudfront.net is signed ; (or we use ALIAS-type records) ;_443._tcp.go CNAME _amazon-tlsa foo A 192.0.2.200 ; Random other hostnames }}} ;;; ====================================================================== ; Per-person email sub-domains {{{ ; Household dedicated mail domains where *@person.example.org can receive email ; Gladys receives email here but never sends from this address ; (Gladys has probably forgotten this exists and will roll her eyes at it.) gladys MX 10 mx $ORIGIN gladys.example.org. _adsp._domainkey TXT "dkim=all" _dmarc TXT "v=DMARC1; p=none; sp=none; rua=mailto:dmarc-notify@example.org; ruf=mailto:dmarc-notify@example.org; adkim=s" _report TXT "r=abuse-reports@example.org; rf=ARF; re=postmaster@example.org;" _smtp._tls TXT "v=TLSRPTv1; rua=mailto:smtp-tls-reports@example.org" _smtp-tlsrpt TXT "v=TLSRPTv1; rua=mailto:smtp-tls-reports@example.org" $ORIGIN example.org. ; Fred sends and receives email in this domain fred MX 10 mx $ORIGIN fred.example.org. ; Also have a web-server for some old OpenID stuff @ A 192.0.2.93 ; services @ AAAA 2001:db8::48:4558:5345:5256 ; services TXT "v=spf1 ip4:192.0.2.25 ip6:2001:db8::1:25 mx include:_spf.example.com ~all" ; d201911._domainkey TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8/OMUa3PnWh9LqXFVwlAgYDdTtbq3zTtTOSBmJq5yWauzXYcUuSmhW7CsV0QQlacCsQgJlwg9Nl1vO1TosAj5EKUCLTeSqjlWrM7KXKPx8FT71Q9H9wXX4MHUyGrqHFo0OPzcmtHwqcd8AD6MIvJHSRoAfiPPBp8Euc0wGnJZdGS75Hk+wA3MQ2/Tlz" "P2eenyiFyqmUTAGOYsGC/tREsWPiegR/OVxNGlzTY6quHsuVK7UYtIyFnYx9PGWdl3b3p7VjQ5V0Rp+2CLtVrCuS6Zs+/3NhZdM7mdD0a9Jgxakwa1le5YmB5lHTGF7T8quy6TlKe9lMUIRNjqTHfSFz/MwIDAQAB" d201911e2._domainkey TXT "v=DKIM1; k=ed25519; p=rQNsV9YcPJn/WYI1EDLjNbN/VuX1Hqq/oe4htbnhv+A=" ; d202003._domainkey TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvpnx7tnRxAnE/poIRbVb2i+f1uQCXWnBHzHurgEyZX0CmGaiJuCbr8SWOW2PoXq9YX8gIv2TS3uzwGv/4yA2yX9Z9zar1LeWUfGgMWLdCol9xfmWrI+6MUzxuwhw/mXwzigbI4bHoakh3ez/i3J9KPS85GfrOODqA1emR13f2pG8EzAcje+rwW2PtYj" "c0h+FMDpeLuPYyYszFbNlrkVUneesxnoz+o4x/s6P14ZoRqz5CR7u6G02HwnNaHads5Eto6FYYErUUTtFmgWuYabHxgLVGRdRQs6B5OBYT/3L2q/lAgmEgdy/QL+c0Psfj99/XQmO8fcM0scBzw2ukQzcUwIDAQAB" d202003e2._domainkey TXT "v=DKIM1; k=ed25519; p=0DAPp/IRLYFI/Z4YSgJRi4gr7xcu1/EfJ5mjVn10aAw=" ; _adsp._domainkey TXT "dkim=all" _dmarc TXT "v=DMARC1; p=none; sp=none; rua=mailto:dmarc-notify@example.org; ruf=mailto:dmarc-notify@example.org; adkim=s" _report TXT "r=abuse-reports@example.org; rf=ARF; re=postmaster@example.org;" _smtp._tls TXT "v=TLSRPTv1; rua=mailto:smtp-tls-reports@example.org" _smtp-tlsrpt TXT "v=TLSRPTv1; rua=mailto:smtp-tls-reports@example.org" $ORIGIN example.org. ; Per-person email sub-domains }}} ;;; ====================================================================== ; {{{PGP-Keys-And-Fingerprints ; RFC4398 Storing Certificates in the Domain Name System (DNS) ; type tag algorithm <data> ; type 3 = PGP ; type 6 = IPGP ; IPGP fingerprint length, fingerprint, URL; either FP or URL may be empty ; gnupg comes with tools/make-dns-cert.c ; ; There's a lack of clarity about what clients do given a dot in the email LHS, ; so I solve it by publishing both with the dot escaped to be part of the label, ; and the dot introducing DNS hierarchy. ; ;;;fred CERT 6 0 0 FKy7QyQ5Ot41Fdot2k0ekA4UwcwEaHR0cHM6Ly93d3cuc2VjdXJpdHkuc3BvZGh1aXMub3JnL1BHUC9rZXlzLzB4NEQxRTkwMEUxNEMxQ0MwNC5hc2M= ;;;fred.bloggs CERT 6 0 0 FKy7QyQ5Ot41Fdot2k0ekA4UwcwEaHR0cHM6Ly93d3cuc2VjdXJpdHkuc3BvZGh1aXMub3JnL1BHUC9rZXlzLzB4NEQxRTkwMEUxNEMxQ0MwNC5hc2M= ;;;fred\.bloggs CERT 6 0 0 FKy7QyQ5Ot41Fdot2k0ekA4UwcwEaHR0cHM6Ly93d3cuc2VjdXJpdHkuc3BvZGh1aXMub3JnL1BHUC9rZXlzLzB4NEQxRTkwMEUxNEMxQ0MwNC5hc2M= ; ; I used: ; perl -MMIME::Base64 -le '$_ = $ARGV[0]; s/\s+//g; s/(..)/chr(hex($1))/eg; ; $_=chr(length($_)) . $_ . $ARGV[1]; print encode_base64($_, "")' \ ; "$(gpg --with-colons --fingerprint $gpg_key | perl -F: -lane 'print $F[9] if $F[0] eq "fpr"')" \ ; https://www.security.example.org/PGP/keys/0x0123456789ABCDEF.asc ; ; Note that my first attempt omitted the length. Oops. The first octet of ; the base64 data is the length; following octets, for that length, is the ; fingerprint, in raw binary form; any remaining octets are the URL. ; With the URL in, we might have with key 0x0123456789ABCDEF : ; FKy7QyQ5Ot41Fdot2k0ekA4UwcwEaHR0cHM6Ly93d3cuc2VjdXJpdHkuc3BvZGh1aXMub3JnL1BHUC9rZXlzLzB4NEQxRTkwMEUxNEMxQ0MwNC5hc2M= ;; WKD is https://datatracker.ietf.org/doc/draft-koch-openpgp-webkey-service/?include_text=1 ;; and included above with SRV records ;; https://datatracker.ietf.org/doc/draft-ietf-dane-openpgpkey/?include_text=1 ;; rev 00: so draft-ietf-dane-openpgpkey-00.txt ;; NOW: RFC 7929 (experimental) ; Generated by my gnupg-exportsof-mykey tooling; this is from output file ; dns-examplecom-pgp.openpgpkey.db ; This is the 2020 Ed25519 key. It's smaller, so it's marginally less insane ; to have it in DNS. ; ; For example.org redaction: leaving this intact, original PGP key, there ; are email addresses buried in the key, and human names. But changing ; the DNS labels and comments for zone consistency. ; You can get the original name just by looking up the fingerprint below ; the ORIGIN: $ORIGIN _openpgpkey.example.org. ; 4833892924C60A7AE666D32A1DA3E68F41CEECAC ; Fred Bloggs <fred.bloggs@example.org> ;;;6555f290b6e653629d9d582660dd2fe730320e43e252f8e2e5ee1bdd TYPE61 \# 1239 ( ;;; 9833045e2504f516092b06010401da470f0101074043c292df50b30dcaadd549 ;;; cf48fd9cbc06e43c3a9ca1cb788da0bd3c00ffc750b4245068696c2050656e6e ;;; 6f636b203c7068696c4070656e6e6f636b2d746563682e636f6d3e888e041316 ;;; 080036021b03030b090703150a080416030201021e0102178002190116210448 ;;; 33892924c60a7ae666d32a1da3e68f41ceecac05025e250723000a09101da3e6 ;;; 8f41ceecac2b46010081e1c09a255705b3fdda16a5485e6ec25edeabac78c92d ;;; aa5f6c1af2b71cc93800fe364bd0438dd5120585a034327e69757aa58ca0890a ;;; d7691cba343c55cf957806b41c5068696c2050656e6e6f636b203c7064704067 ;;; 6e7570672e6e65743e888b041316080033021b03030b090703150a0804160302 ;;; 01021e010217801621044833892924c60a7ae666d32a1da3e68f41ceecac0502 ;;; 5e250723000a09101da3e68f41ceecac4faf00ff4bc1c3a4389cb5bb9cb90026 ;;; c416f2ad99be2a6e0fe2ceea0bfa8e175e02c0eb0100eb8a11ec88b21ffa08c3 ;;; 0a71afd04dc43d093fabcb9c5ae2de0b9c627e88670eb4285068696c2050656e ;;; 6e6f636b203c7068696c2e70656e6e6f636b4073706f64687569732e6f72673e ;;; 888b041316080033021b03030b090703150a080416030201021e010217801621 ;;; 044833892924c60a7ae666d32a1da3e68f41ceecac05025e250724000a09101d ;;; a3e68f41ceecacc40800ff6702abcf89ddfe3ed0670953ca6a0a33ff4d6d83bf ;;; 8b4496cc299abedfb4947401008ab97f09df18813ad998de3fe3c55085b49f56 ;;; ee1f68cac298be4be6d4f34906b41b5068696c2050656e6e6f636b203c706470 ;;; 406578696d2e6f72673e888b041316080033021b03030b090703150a08041603 ;;; 0201021e010217801621044833892924c60a7ae666d32a1da3e68f41ceecac05 ;;; 025e250724000a09101da3e68f41ceecac9dbf0100f3eac82b9ef48d4cabc522 ;;; 44cbd52ed9392a2ad4111d8f6b0aa33f8859e956c301008653862e15970d7601 ;;; 57764064209c2ca8a9a616b1441e0e670b96458fd1a90eb838045e2504f5120a ;;; 2b0601040197550105010107401ea56299a543466023db5f4d4f1452450a393a ;;; fcb9039ada0c27e2dc7f59752f03010807887e04181608002616210448338929 ;;; 24c60a7ae666d32a1da3e68f41ceecac05025e2504f5021b0c05090966018000 ;;; 0a09101da3e68f41ceecac624d00fe30c7b6e6bbe930e899c270f4f17de5bdae ;;; 55612f9d69cb7490f6a4a4d04f261600ff58e26ae9fc3324de9bd51a77ff65d4 ;;; 2af60294f55a03fe0f1ec316e4f5b8e70bb833045e25054016092b06010401da ;;; 470f010107406df5a87cd9b51890f84f7e597ab17e549f1ba093844178ea61ce ;;; ac484b4a58e988ef0418160800201621044833892924c60a7ae666d32a1da3e6 ;;; 8f41ceecac05025e250540021b02008109101da3e68f41ceecac762004191608 ;;; 001d16210436bea421261c40a54fc9261c2e7665110f8a56ff05025e25054000 ;;; 0a09102e7665110f8a56ff0bb500ff4aee429d5659915336511a3b744c4c25fd ;;; d09fb8af2962c57e279b1906ad5e040100a8616e0d4def13d7910c30a595e7fc ;;; 92308de87404b96fa17325b6ef6cd7e9029f260100c2fe3edf9bbfce3c42317c ;;; a93bdbc4e52dd98bd2f782eb708edca1fbd7c345e50100dc69c0cc5a2481dc79 ;;; 08162d7c6d185c8866498eb87d159e0eb3877d68de2b02 ;;; ) ; {{{PGP-PKA-Records ; Phil notes, since the actual records below are "as output by gpg" for easier maintenance. ; TYPE37 == CERT ; During early GnuPG 2.1.x, GnuPG switched from v1 PKA to v2; details at: ; <https://incenp.org/notes/2015/keys-in-dns.html> ; => local-part is zooko's base32 of LHS (as seen from src), type is CERT/IPGP, no URL ; so _very_ similar to the records already above where I chose to use CERT/IPGP ages ago. ; ; pip install zbase32 ; python # zbase32 is python2-only ; import hashlib, zbase32 ; lhs = 'fob' # fred o bloggs ; print(zbase32.zbase32.b2a(hashlib.sha1(lhs.lower()).digest())) ; That gets us the left-hand-side. ; ; Skimming code, it looks as though the PKA lookup really does just re-use the older IPGP ; code, which can return a URL; `gpg2.1.15 --auto-key-locate pka` got a fingerprint but then ; errored on getting the key. So instead, let's experiment by grabbing our own CERT from above, ; shoving it into this namespace and changing the LHS to use the zb32 encoded variants ; (which also handles `.` vs `\.` issues). ; ; Discovery from log.dirmngr : tries to access ; <https://www.security.example.org:443/pks/lookup?op=get&options=mr&search=0x0123456789ABCDEF0123456789ABCDEF01234567> ; Okay, so change the hostname to `sks.example.org` and we should be good, as the PGP keyserver will get it ; % perl -MMIME::Base64 -le '$_ = $ARGV[0]; s/\s+//g; s/(..)/chr(hex($1))/eg; ; $_=chr(length($_)) . $_ . $ARGV[1]; print encode_base64($_, "")' \ ; "$(gpg --with-colons --fingerprint $pgp_key_main | perl -F: -lane 'print $F[9] if $F[0] eq "fpr"')" \ ; https://sks.example.org ; FKy7QyQ5Ot41Fdot2k0ekA4UwcwEaHR0cHM6Ly9za3Muc3BvZGh1aXMub3Jn ; ; 2018-07-14 after turning down sks.example.org: ; % perl -MMIME::Base64 -le '$_ = $ARGV[0]; s/\s+//g; s/(..)/chr(hex($1))/eg; $_=chr(length($_)) . $_ . $ARGV[1]; print encode_base64($_, "")' \ ; "$(gpg --with-colons --fingerprint $pgp_key_main | perl -F: -lane 'if ($F[0] eq "fpr") {print $F[9]; exit}')" \ ; http://ha.pool.sks-keyservers.net ; FKy7QyQ5Ot41Fdot2k0ekA4UwcwEaHR0cDovL2hhLnBvb2wuc2tzLWtleXNlcnZlcnMubmV0 ; ... ; But that's not working with GnuPG. Just junk all of the above. ; Use my pka.py script and drop the keyserver entirely. ; gpg2.1 --export-options export-minimal,export-pka --export 0x0123456789ABCDEF $ORIGIN _pka.example.org. ; Fingerprint: 0123456789ABCDEF0123456789ABCDEF01234567 ; <fred.bloggs@example.org> ;;;kwj7zzgek39st5d5q81hq517e3iuzbr4 CERT 6 0 0 FKy7QyQ5Ot41Fdot2k0ekA4UwcwE ; Fingerprint: 0123456789ABCDEF0123456789ABCDEF01234567 ; <fob@example.org> ;;;ajh79yijhx3xmeadhc79zrje7ret3qzr CERT 6 0 0 FKy7QyQ5Ot41Fdot2k0ekA4UwcwE $ORIGIN example.org. ; }}}PGP-PKA-Records ; }}}PGP-Keys-And-Fingerprints ; Removed localhost entries: cookie stealing etc ;;; ====================================================================== ; Sub-domains with email and other services {{{ mailtest MX 10 mx $ORIGIN mailtest.example.org. ; d201911._domainkey TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAo9xHnjHyhm1weA6FjOqM8LKVsklFt26HXWoe/0XCdmBG4i/UzQ7RiSgWO4kv7anPK6qf6rtL1xYsHufaRXG8yLsZxz+BbUP99eZvxZX78tMg4cGf+yU6uFxulCbOzsMy+8Cc3bbQTtIWYjyWBwnHdRRrCkQxjZ5KAd+x7ZB5qzqg2/eLJ7fCuNsr/xn" "0XTY6XYgug95e3h4CEW3Y+bkG81AMeJmT/hoVTcXvT/Gm6ZOUmx6faQWIHSW7qOR3VS6S75HOuclEUk0gt9r7OQHKl01sXh8g02SHRk8SUMEoNVayqplYZTFFF01Z192m7enmpp+St+HHUIT6jW/CAMCO3wIDAQAB" d201911e2._domainkey TXT "v=DKIM1; k=ed25519; p=afulDDnhaTzdqKQN0jtWV04eOhAcyBk3NCyVheOf53Y=" ; d202003._domainkey TXT "v=DKIM1; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs2BTVZaVLvL3qZBPaF7tRR0SdOKe+hjcpQ5fqO48lEuYiyTb6lkn8DPjDK11gTN3au0Bm+y8KC7ITKSJosuJXytxt3wqc61Pwtmb/Cy7GzmOF1AuegydB3/88VbgHT5DZucHrh6+ValZk4Trkx+/1K26Uo+h2KL2n/Ldb1y91ATHujp8DqxAOhiZ7KN" "aS1okNRRB4/14jPufAbeiN8/iBPiY5Hl80KHmpjM+7vvjb5jiecZ1ZrVDj7eTES4pmVh2v1c106mZLieoqDPYaf/HVbCM4E4n1B6kjbboSOpANADIcqXxGJQ7Be7/Sk9f7KwRusrsMHXmBHgm4wPmwGVZ3QIDAQAB" d202003e2._domainkey TXT "v=DKIM1; k=ed25519; p=iqwH/hhozFdeo1xnuldr8KUi7O7g+DzmC+f0SYMKVDc=" ; _adsp._domainkey TXT "dkim=all" _dmarc TXT "v=DMARC1; p=none; sp=none; rua=mailto:dmarc-notify@example.org; ruf=mailto:dmarc-notify@example.org; adkim=s" _report TXT "r=abuse-reports@example.org; rf=ARF; re=postmaster@example.org;" _smtp._tls TXT "v=TLSRPTv1; rua=mailto:smtp-tls-reports@example.org" _smtp-tlsrpt TXT "v=TLSRPTv1; rua=mailto:smtp-tls-reports@example.org" $ORIGIN example.org. ; Stub to show that SKS has been withdrawn; we no longer have email in this ; domain (it was used for PGP exchange with two non-SKS keyservers). $ORIGIN sks.example.org. _pgpkey-http._tcp SRV 0 0 0 . _pgpkey-https._tcp SRV 0 0 0 . _hkp._tcp SRV 0 0 0 . $ORIGIN sks-peer.example.org. _pgpkey-http._tcp SRV 0 0 0 . _pgpkey-https._tcp SRV 0 0 0 . _hkp._tcp SRV 0 0 0 . ; This is used for a dynamic DNS entry for my home router; at one point the ; router I was using supported various HTTP-based updates but not Dynamic DNS ; updates, so I switched to HE and have never switched that one back. $ORIGIN yoyo.example.org. @ NS ns5.he.net. @ NS ns4.he.net. @ NS ns3.he.net. @ NS ns2.he.net. @ NS ns1.he.net. $ORIGIN example.org. ; khard: kubernetes the hard way, Google, `xyz-2` project ; gcloud dns managed-zones create khard --description="Kubernetes The Hard Way HD2" --dns-name="khard.example.org." ; gcloud dns managed-zones describe khard khard IN NS ns-cloud-d1.googledomains.com. khard IN NS ns-cloud-d2.googledomains.com. khard IN NS ns-cloud-d3.googledomains.com. khard IN NS ns-cloud-d4.googledomains.com. ;;;khard IN DS 15247 8 2 C7CAF8A6EFF0E6E7E811D68CDD87AD2EC135CB501A959FACBA3BC13F93F59864 ; Sub-domains with email and other services }}} ;;; ====================================================================== ; Stubs to reject email to some hosts {{{ ; Hosts which should not appear as senders but are abused by spammers because ; of parsing message-id headers: realhost MX 0 . realhost TXT "v=spf1 -all" _25._tcp.realhost TLSA 03 00 00 0000000000000000000000000000000000000000000000000000000000000000 ; Stubs to reject email to some hosts }}} ;;; ====================================================================== ; Domain verifications for some tools {{{ ; <https://help.github.com/en/articles/verifying-your-organizations-domain> ; "Optionally, once the "Verified" badge is visible on your organization's ; profile page, you can delete the TXT entry from the DNS record at your domain ; hosting service." ;_github-challenge-ExampleOrg TXT "" ; dropped value when commented out ; <https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html> ; "ACM automatically renews your certificate for as long as the certificate is ; in use and the CNAME record that ACM created for you remains in place in your ; DNS database. You can stop automatic renewal by removing the certificate from ; the AWS service with which it is associated or by deleting the CNAME record." _fedcba9876543210fedcba9876543210.go.example.org. CNAME _45678901234abcdef45678901234abcd.ggedgsdned.acm-validations.aws. ; -- added 2019-10-09; leave in place, no scheduled removal. ; Google Webmaster ; added 2020-01-26 login fred@example.net ; to allow usage in oauth consent screens. ; Must be left in place. opqrstuvwxyz CNAME gv-abcdefghijklmn.dv.googlehosted.com. ; postmaster.google.com (CNAME alternative to TXT on top-level domain): zyxwvutsrqpo CNAME gv-nmlkjihgfedcba.dv.googlehosted.com. ; Bing (I didn't record the policy back when I added this) 0123456789abcdef0123456789abcdef CNAME verify.bing.com. ; Domain verifications for some tools }}} ; vim: set filetype=bindzone foldmethod=marker :
DNS Zone
4
IT-Sumpfling/dnscontrol
commands/test_data/example.org.zone
[ "MIT" ]
/* cursor.h - definitions for the cursor type * * Copyright (C) 2004-2010 Gerhard Häring <gh@ghaering.de> * * This file is part of pysqlite. * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software for any purpose, * including commercial applications, and to alter it and redistribute it * freely, subject to the following restrictions: * * 1. The origin of this software must not be misrepresented; you must not * claim that you wrote the original software. If you use this software * in a product, an acknowledgment in the product documentation would be * appreciated but is not required. * 2. Altered source versions must be plainly marked as such, and must not be * misrepresented as being the original software. * 3. This notice may not be removed or altered from any source distribution. */ #ifndef PYSQLITE_CURSOR_H #define PYSQLITE_CURSOR_H #define PY_SSIZE_T_CLEAN #include "Python.h" #include "statement.h" #include "connection.h" #include "module.h" typedef struct { PyObject_HEAD pysqlite_Connection* connection; PyObject* description; PyObject* row_cast_map; int arraysize; PyObject* lastrowid; long rowcount; PyObject* row_factory; pysqlite_Statement* statement; int closed; int reset; int locked; int initialized; PyObject* in_weakreflist; /* List of weak references */ } pysqlite_Cursor; int pysqlite_cursor_setup_types(PyObject *module); #endif
C
4
Horcruxes/cpython
Modules/_sqlite/cursor.h
[ "0BSD" ]
;; This file has no tests of its own, and only exists to be required ;; by `language.hy`, and sit in the same directory to test ;; single-period relative `require`. (defmacro xyzzy [] '1)
Hy
3
lafrenierejm/hy
tests/native_tests/language_beside.hy
[ "MIT" ]
-- Copyright (C) 2008-2011 Maciej Sobczak -- 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) package SOCI.Oracle is -- -- Registers the Oracle backend so that it is ready for use -- by the dynamic backend loader. -- procedure Register_Factory_Oracle; pragma Import (C, Register_Factory_Oracle, "register_factory_oracle"); end SOCI.Oracle;
Ada
4
thishome153/soci
languages/ada/soci-oracle.ads
[ "BSL-1.0" ]
<!DOCTYPE html> <html> <head> <style> table { border-collapse: collapse; } table, th, td { border: 1px solid black; } ul { font-size: 24px } li { font-size: 16px } </style> <script src='../../dist/zone.js'></script> <script src='./performance_setup.js'></script> <script src='./performance_ui.js'></script> <script src='./timeout.js'></script> <script src='./requestAnimationFrame.js'></script> <script src='./eventTarget.js'></script> <script src='./xhr.js'></script> <script src='./promise.js'></script> <script> window.onload = function () { var jsonResult = {}; var div = document.getElementById('tests'); var json = document.getElementById('json'); var table = document.getElementById('summary'); var tests = window['__zone_symbol__performance_tasks']; window['__zone_symbol__testTargetsUIBuild']({ tests: tests, targetContainer: div, resultsContainer: table, jsonContainer: json, jsonResult: jsonResult }); } </script> </head> <body> <div id="thetext">Performance Bencnhmark of Zone.js vs Native Delegate!</div> <div id="tests"></div> <div> <table id="summary" class="table"> <tr class="tableheader"> <th> Module </th> <th> API </th> <th> Performance overhead </th> </tr> </table> </div> <div id="json"></div> </body> </html>
HTML
3
coreyscherbing/angular
packages/zone.js/test/performance/performance.html
[ "MIT" ]
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; import { decodeBase64, encodeBase64, VSBuffer } from 'vs/base/common/buffer'; import { Emitter } from 'vs/base/common/event'; import { mockObject, MockObject } from 'vs/base/test/common/mock'; import { MemoryRangeType } from 'vs/workbench/contrib/debug/common/debug'; import { MemoryRegion } from 'vs/workbench/contrib/debug/common/debugModel'; import { MockSession } from 'vs/workbench/contrib/debug/test/browser/mockDebug'; suite('Debug - Memory', () => { const dapResponseCommon = { command: 'someCommand', type: 'response', seq: 1, request_seq: 1, success: true, }; suite('MemoryRegion', () => { let memory: VSBuffer; let unreadable: number; let invalidateMemoryEmitter: Emitter<DebugProtocol.MemoryEvent>; let session: MockObject<MockSession, 'onDidInvalidateMemory'>; let region: MemoryRegion; setup(() => { const memoryBuf = new Uint8Array(1024); for (let i = 0; i < memoryBuf.length; i++) { memoryBuf[i] = i; // will be 0-255 } memory = VSBuffer.wrap(memoryBuf); invalidateMemoryEmitter = new Emitter(); unreadable = 0; session = mockObject<MockSession>()({ onDidInvalidateMemory: invalidateMemoryEmitter.event }); session.readMemory.callsFake((ref: string, fromOffset: number, count: number) => { const res: DebugProtocol.ReadMemoryResponse = ({ ...dapResponseCommon, body: { address: '0', data: encodeBase64(memory.slice(fromOffset, fromOffset + Math.max(0, count - unreadable))), unreadableBytes: unreadable } }); unreadable = 0; return Promise.resolve(res); }); session.writeMemory.callsFake((ref: string, fromOffset: number, data: string): DebugProtocol.WriteMemoryResponse => { const decoded = decodeBase64(data); for (let i = 0; i < decoded.byteLength; i++) { memory.buffer[fromOffset + i] = decoded.buffer[i]; } return ({ ...dapResponseCommon, body: { bytesWritten: decoded.byteLength, offset: fromOffset, } }); }); region = new MemoryRegion('ref', session as any); }); teardown(() => { region.dispose(); }); test('reads a simple range', async () => { assert.deepStrictEqual(await region.read(10, 14), [ { type: MemoryRangeType.Valid, offset: 10, length: 4, data: VSBuffer.wrap(new Uint8Array([10, 11, 12, 13])) } ]); }); test('reads a non-contiguous range', async () => { unreadable = 3; assert.deepStrictEqual(await region.read(10, 14), [ { type: MemoryRangeType.Valid, offset: 10, length: 1, data: VSBuffer.wrap(new Uint8Array([10])) }, { type: MemoryRangeType.Unreadable, offset: 11, length: 3 }, ]); }); }); });
TypeScript
5
sbj42/vscode
src/vs/workbench/contrib/debug/test/browser/debugMemory.test.ts
[ "MIT" ]
package test; public class JavaBeanVal { public String getColor() { return ""; } }
Java
1
qussarah/declare
compiler/testData/loadJava/compiledJava/javaBean/JavaBeanVal.java
[ "Apache-2.0" ]
scriptname SKI_WidgetBase extends SKI_QuestBase ; CONSTANTS --------------------------------------------------------------------------------------- string property HUD_MENU = "HUD Menu" autoReadOnly ; PRIVATE VARIABLES ------------------------------------------------------------------------------- SKI_WidgetManager _widgetManager bool _initialized = false bool _ready = false int _widgetID = -1 string _widgetRoot = "" string[] _modes string _hAnchor = "left" string _vAnchor = "top" float _x = 0.0 float _y = 0.0 float _alpha = 100.0 ; PROPERTIES -------------------------------------------------------------------------------------- bool property RequireExtend = true auto {Require extending the widget type instead of using it directly.} ; @interface string property WidgetName = "I-forgot-to-set-the-widget name" auto {Name of the widget. Used to identify it in the user interface.} ; @interface int property WidgetID {Unique ID of the widget. ReadOnly} int function get() return _widgetID endFunction endProperty ; @interface bool property Ready {True once the widget has registered. ReadOnly} bool function get() return _initialized endFunction endProperty ; @interface string property WidgetRoot {Path to the root of the widget from _root of HudMenu. ReadOnly} string function get() return _widgetRoot endFunction endProperty string[] property Modes {HUDModes in which the widget is visible, see readme for available modes} string[] function get() return _modes endFunction function set(string[] a_val) _modes = a_val if (Ready) UpdateWidgetModes() endIf endFunction endProperty ; @interface string property HAnchor {Horizontal anchor point of the widget ["left", "center", "right"]. Default: "left"} string function get() return _hAnchor endFunction function set(string a_val) _hAnchor = a_val if (Ready) UpdateWidgetHAnchor() endIf endFunction endProperty ; @interface string property VAnchor {Vertical anchor point of the widget ["top", "center", "bottom"]. Default: "top"} string function get() return _vAnchor endFunction function set(string a_val) _vAnchor = a_val if (Ready) UpdateWidgetVAnchor() endIf endFunction endProperty ; @interface float property X {Horizontal position of the widget in pixels at a resolution of 1280x720 [0.0, 1280.0]. Default: 0.0} float function get() return _x endFunction function set(float a_val) _x = a_val if (Ready) UpdateWidgetPositionX() endIf endFunction endProperty ; @interface float property Y {Vertical position of the widget in pixels at a resolution of 1280x720 [0.0, 720.0]. Default: 0.0} float function get() return _y endFunction function set(float a_val) _y = a_val if (Ready) UpdateWidgetPositionY() endIf endFunction endProperty ; @interface float property Alpha {Opacity of the widget [0.0, 100.0]. Default: 0.0} float function get() return _alpha endFunction function set(float a_val) _alpha = a_val if (Ready) UpdateWidgetAlpha() endIf endFunction endProperty ; INITIALIZATION ---------------------------------------------------------------------------------- event OnInit() OnGameReload() endEvent ; @implements SKI_QuestBase event OnGameReload() _ready = false RegisterForModEvent("SKIWF_widgetManagerReady", "OnWidgetManagerReady") if (!IsExtending() && RequireExtend) Debug.MessageBox("WARNING!\n" + self as string + " must extend a base script type.") endIf if (!_initialized) _initialized = true ; Default Modes if not set via property if (!_modes) _modes = new string[6] _modes[0] = "All" _modes[1] = "StealthMode" _modes[2] = "Favor" _modes[3] = "Swimming" _modes[4] = "HorseMode" _modes[5] = "WarHorseMode" endIf OnWidgetInit() Debug.Trace(self + " INITIALIZED") endIf CheckVersion() endEvent event OnWidgetManagerReady(string a_eventName, string a_strArg, float a_numArg, Form a_sender) SKI_WidgetManager newManager = a_sender as SKI_WidgetManager ; Already registered? if (_widgetManager == newManager) return endIf _widgetManager = newManager _widgetID = _widgetManager.RequestWidgetID(self) if (_widgetID != -1) _widgetRoot = "_root.WidgetContainer." + _widgetID + ".widget" _widgetManager.CreateWidget(_widgetID, GetWidgetSource()) else Debug.Trace("WidgetWarning: " + self as string + ": could not be loaded, too many widgets. Max is 128") endIf endEvent ; EVENTS ------------------------------------------------------------------------------------------ ; @interface event OnWidgetInit() {Handles any custom widget initialization} endEvent ; Executed after each game reload by widget manager. event OnWidgetLoad() _ready = true OnWidgetReset() ; Before that the widget was still hidden. ; Now that everything is done, set modes to show it eventually. UpdateWidgetModes() endEvent event OnWidgetReset() ; Reset base properties except modes to prevent widget from being drawn too early. UpdateWidgetClientInfo() UpdateWidgetHAnchor() UpdateWidgetVAnchor() UpdateWidgetPositionX() UpdateWidgetPositionY() UpdateWidgetAlpha() endEvent ; FUNCTIONS --------------------------------------------------------------------------------------- ; @interface string function GetWidgetSource() return "" endFunction ; @interface string function GetWidgetType() ; Must be the same as scriptname return "" endFunction ; @interface float[] function GetDimensions() {Return the dimensions of the widget (width,height).} float[] dim = new float[2] dim[0] = 0 dim[1] = 0 return dim endFunction ; @interface function TweenToX(float a_x, float a_duration) {Moves the widget to a new x position over time} TweenTo(a_x, _y, a_duration) endFunction ; @interface function TweenToY(float a_y, float a_duration) {Moves the widget to a new y position over time} TweenTo(_x, a_y, a_duration) endFunction ; @interface function TweenTo(float a_x, float a_y, float a_duration) {Moves the widget to a new x, y position over time} float[] args = new float[3] args[0] = a_x args[1] = a_y args[2] = a_duration UI.InvokeFloatA(HUD_MENU, _widgetRoot + ".tweenTo", args) endFunction ; @interface function FadeTo(float a_alpha, float a_duration) {Fades the widget to a new alpha over time} float[] args = new float[2] args[0] = a_alpha args[1] = a_duration UI.InvokeFloatA(HUD_MENU, _widgetRoot + ".fadeTo", args) endFunction bool function IsExtending() string s = self as string string sn = GetWidgetType() + " " s = StringUtil.Substring(s, 1, StringUtil.GetLength(sn)) if (s == sn) return false endIf return true endFunction function UpdateWidgetClientInfo() UI.InvokeString(HUD_MENU, _widgetRoot + ".setClientInfo", self as string) endFunction function UpdateWidgetAlpha() UI.InvokeFloat(HUD_MENU, _widgetRoot + ".setAlpha", Alpha) endFunction function UpdateWidgetHAnchor() UI.InvokeString(HUD_MENU, _widgetRoot + ".setHAnchor", HAnchor) endFunction function UpdateWidgetVAnchor() UI.InvokeString(HUD_MENU, _widgetRoot + ".setVAnchor", VAnchor) endFunction function UpdateWidgetPositionX() UI.InvokeFloat(HUD_MENU, _widgetRoot + ".setPositionX", X) endFunction function UpdateWidgetPositionY() UI.InvokeFloat(HUD_MENU, _widgetRoot + ".setPositionY", Y) endFunction function UpdateWidgetModes() UI.InvokeStringA(HUD_MENU, _widgetRoot + ".setModes", Modes) endFunction
Papyrus
5
pragasette/skyui
dist/Data/Scripts/Source/SKI_WidgetBase.psc
[ "Unlicense", "MIT" ]
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon")); var _jsxRuntime = require("react/jsx-runtime"); var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", { d: "M20.69 4.05C18.66 4.73 15.86 5.5 12 5.5c-3.89 0-6.95-.84-8.69-1.43-.64-.22-1.31.26-1.31.95V19c0 .68.66 1.17 1.31.95C5.36 19.26 8.1 18.5 12 18.5c3.87 0 6.66.76 8.69 1.45.65.21 1.31-.27 1.31-.95V5c0-.68-.66-1.16-1.31-.95zM12 15c-2.34 0-4.52.15-6.52.41l3.69-4.42 2 2.4L14 10l4.51 5.4c-1.99-.25-4.21-.4-6.51-.4z" }), 'Vrpano'); exports.default = _default;
JavaScript
4
good-gym/material-ui
packages/material-ui-icons/lib/Vrpano.js
[ "MIT" ]
import { generateUtilityClass, generateUtilityClasses } from '@mui/base'; export interface AvatarClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if not `src` or `srcSet`. */ colorDefault: string; /** Styles applied to the root element if `variant="circular"`. */ circular: string; /** Styles applied to the root element if `variant="rounded"`. */ rounded: string; /** Styles applied to the root element if `variant="square"`. */ square: string; /** Styles applied to the img element if either `src` or `srcSet` is defined. */ img: string; /** Styles applied to the fallback icon */ fallback: string; } export type AvatarClassKey = keyof AvatarClasses; export function getAvatarUtilityClass(slot: string): string { return generateUtilityClass('MuiAvatar', slot); } const avatarClasses: AvatarClasses = generateUtilityClasses('MuiAvatar', [ 'root', 'colorDefault', 'circular', 'rounded', 'square', 'img', 'fallback', ]); export default avatarClasses;
TypeScript
4
dany-freeman/material-ui
packages/mui-material/src/Avatar/avatarClasses.ts
[ "MIT" ]
import { assert_mapped } from '../../helpers'; import { COMMON, STYLES } from './_config'; export function test({ input, preprocessed }) { // Transformed script, main file assert_mapped({ filename: 'input.svelte', code: 'Divs ftw!', input: input.locate, preprocessed }); // External files assert_mapped({ filename: 'common.scss', code: 'height: 100%;', input: COMMON, preprocessed }); assert_mapped({ filename: 'styles.scss', code: 'color: orange;', input: STYLES, preprocessed }); }
JavaScript
4
Theo-Steiner/svelte
test/sourcemaps/samples/external/test.js
[ "MIT" ]
' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. ' See the LICENSE file in the project root for more information. Imports Microsoft.CodeAnalysis.ChangeSignature Imports Microsoft.CodeAnalysis.Editor.UnitTests.ChangeSignature Imports Microsoft.CodeAnalysis.Editor.UnitTests.Extensions Imports Microsoft.CodeAnalysis.Test.Utilities.ChangeSignature Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UnitTests.ChangeSignature Partial Public Class ChangeSignatureTests Inherits AbstractChangeSignatureTests <WpfFact, Trait(Traits.Feature, Traits.Features.ChangeSignature)> Public Async Function AddOptionalParameter_ToEmptySignature_CallsiteOmitted() As Task Dim markup = <Text><![CDATA[ Class C Sub M$$() M() End Sub End Class]]></Text>.NormalizedValue() Dim updatedSignature As AddedParameterOrExistingIndex() = { AddedParameterOrExistingIndex.CreateAdded("System.Int32", "a", CallSiteKind.Omitted, isRequired:=False, defaultValue:="1")} Dim updatedCode = <Text><![CDATA[ Class C Sub M(Optional a As Integer = 1) M() End Sub End Class]]></Text>.NormalizedValue() Await TestChangeSignatureViaCommandAsync(LanguageNames.VisualBasic, markup, updatedSignature:=updatedSignature, expectedUpdatedInvocationDocumentCode:=updatedCode) End Function <WpfFact, Trait(Traits.Feature, Traits.Features.ChangeSignature)> Public Async Function AddOptionalParameter_AfterRequiredParameter_CallsiteOmitted() As Task Dim markup = <Text><![CDATA[ Class C Sub M$$(x As Integer) M(1) End Sub End Class]]></Text>.NormalizedValue() Dim updatedSignature As AddedParameterOrExistingIndex() = { New AddedParameterOrExistingIndex(0), AddedParameterOrExistingIndex.CreateAdded("System.Int32", "a", CallSiteKind.Omitted, isRequired:=False, defaultValue:="1")} Dim updatedCode = <Text><![CDATA[ Class C Sub M(x As Integer, Optional a As Integer = 1) M(1) End Sub End Class]]></Text>.NormalizedValue() Await TestChangeSignatureViaCommandAsync(LanguageNames.VisualBasic, markup, updatedSignature:=updatedSignature, expectedUpdatedInvocationDocumentCode:=updatedCode) End Function <WpfFact, Trait(Traits.Feature, Traits.Features.ChangeSignature)> Public Async Function AddOptionalParameter_BeforeOptionalParameter_CallsiteOmitted() As Task Dim markup = <Text><![CDATA[ Class C Sub M$$(Optional x As Integer = 2) M() M(2) M(x:=2) End Sub End Class]]></Text>.NormalizedValue() Dim updatedSignature As AddedParameterOrExistingIndex() = { AddedParameterOrExistingIndex.CreateAdded("System.Int32", "a", CallSiteKind.Omitted, isRequired:=False, defaultValue:="1"), New AddedParameterOrExistingIndex(0)} Dim updatedCode = <Text><![CDATA[ Class C Sub M(Optional a As Integer = 1, Optional x As Integer = 2) M() M(x:=2) M(x:=2) End Sub End Class]]></Text>.NormalizedValue() Await TestChangeSignatureViaCommandAsync(LanguageNames.VisualBasic, markup, updatedSignature:=updatedSignature, expectedUpdatedInvocationDocumentCode:=updatedCode) End Function <WpfFact, Trait(Traits.Feature, Traits.Features.ChangeSignature)> Public Async Function AddOptionalParameter_BeforeExpandedParamsArray_CallsiteOmitted() As Task Dim markup = <Text><![CDATA[ Class C Sub M$$(ParamArray p As Integer()) M() M(1) M(1, 2) M(1, 2, 3) End Sub End Class]]></Text>.NormalizedValue() ' This is an illegal configuration in VB, but can happen if cascaded from the legal C# ' version of this configuration. We reinterpret OMIT as TODO in this case. Dim updatedSignature As AddedParameterOrExistingIndex() = { AddedParameterOrExistingIndex.CreateAdded("System.Int32", "a", CallSiteKind.Omitted, isRequired:=False, defaultValue:="1"), New AddedParameterOrExistingIndex(0)} Dim updatedCode = <Text><![CDATA[ Class C Sub M(Optional a As Integer = 1, ParamArray p As Integer()) M(TODO) M(TODO, 1) M(TODO, 1, 2) M(TODO, 1, 2, 3) End Sub End Class]]></Text>.NormalizedValue() Await TestChangeSignatureViaCommandAsync(LanguageNames.VisualBasic, markup, updatedSignature:=updatedSignature, expectedUpdatedInvocationDocumentCode:=updatedCode) End Function <WpfFact, Trait(Traits.Feature, Traits.Features.ChangeSignature)> Public Async Function AddOptionalParameterWithOmittedCallsiteToAttributeConstructor() As Task Dim markup = <Text><![CDATA[ <Some(1, 2, 4)> Class SomeAttribute Inherits System.Attribute Sub New$$(a As Integer, b As Integer, Optional y As Integer = 4) End Sub End Class]]></Text>.NormalizedValue() Dim permutation = { New AddedParameterOrExistingIndex(0), New AddedParameterOrExistingIndex(1), AddedParameterOrExistingIndex.CreateAdded("Integer", "x", CallSiteKind.Omitted, isRequired:=False, defaultValue:="3"), New AddedParameterOrExistingIndex(2)} Dim updatedCode = <Text><![CDATA[ <Some(1, 2, y:=4)> Class SomeAttribute Inherits System.Attribute Sub New(a As Integer, b As Integer, Optional x As Integer = 3, Optional y As Integer = 4) End Sub End Class]]></Text>.NormalizedValue() Await TestChangeSignatureViaCommandAsync(LanguageNames.VisualBasic, markup, updatedSignature:=permutation, expectedUpdatedInvocationDocumentCode:=updatedCode) End Function End Class End Namespace
Visual Basic
5
ffMathy/roslyn
src/EditorFeatures/VisualBasicTest/ChangeSignature/AddParameterTests.OptionalParameter.Omit.vb
[ "MIT" ]
<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE_AFL.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@magentocommerce.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade Magento to newer * versions in the future. If you wish to customize Magento for your * needs please refer to http://www.magentocommerce.com for more information. * * @category design_blank * @package Mage * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com) * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) */ ?> <?php /** * Product list template * * @see Mage_Catalog_Block_Product_List */ ?> <span style="font-size:11px;color:#aaa;"> Shop by<br /> <a href="?mcde=1" style="color:#aaa;">Collection</a> | <a href="?mcde=2" style="color:#aaa;">Product</a></span><br /><br /> <?php $mycurrentcat = Mage::getModel('catalog/category')->load('4'); $categories=array('2'); if($mycurrentcat->hasChildren()){ $categories=array_merge($categories,explode(',',$mycurrentcat->getChildren())); } $i = 0; foreach($categories as $cat): if($i==0){ $i++; } else { $_productCollection=$this->myGetProductCollection($cat); ?> <?php if(!$_productCollection->count()): ?> <?php else: ?> <div class="category-products"> <?php echo "<h5 style='margin:0px;'><a href='".Mage::getModel('catalog/category')->load($cat)->getUrl()."'>".Mage::getModel('catalog/category')->load($cat)->getName()."</a></h5>"; ?> </div> <?php endif; ?> <?php } endforeach; ?> <?php if($_SESSION['menu_status']=="2"){ $menu_item_category = '3'; } else{ $menu_item_category = '9'; } $mycurrentcat = Mage::getModel('catalog/category')->load($menu_item_category); $cats=array('2'); if($mycurrentcat->hasChildren()){ $cats=array_merge($cats,explode(',',$mycurrentcat->getChildren())); } $i = 0; foreach($cats as $cat): if($i==0){ $i++; } else { $_productCollection=$this->myGetProductCollection($cat); ?> <?php if(!$_productCollection->count()): ?> <?php else: ?> <div class="category-products"> <?php echo "<h5><a href='".Mage::getModel('catalog/category')->load($cat)->getUrl()."'>".Mage::getModel('catalog/category')->load($cat)->getName()."</a></h5>"; ?> <?php $_iterator = 0; ?> <ol class="products-list-sidebar" id="products-list"> <?php foreach ($_productCollection as $_product): ?> <li class="item<?php if( ++$_iterator == sizeof($_productCollection) ): ?> last<?php endif; ?>"> <?php // Product description ?> <div class="product-shop"> <h3 class="product-name" style="font-style:italic;"><a href="<?php echo $_product->getProductUrl() ?>" title="<?php echo $this->htmlEscape($_product->getName()) ?>"><?php echo $this->htmlEscape($_product->getName())?></a></h3> </div> </li> <?php endforeach; ?> </ol> </div> <?php endif; ?> <?php } endforeach; ?>
HTML+PHP
3
s4-2/scancode-toolkit
tests/licensedcode/data/datadriven/external/fossology-tests/AFL/list_sidebar.phtml
[ "Apache-2.0", "CC-BY-4.0" ]
package com.baeldung.hibernate.transaction; import com.baeldung.hibernate.HibernateUtil; import com.baeldung.hibernate.pojo.Post; import com.baeldung.hibernate.transaction.PostService; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.junit.BeforeClass; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.io.FileInputStream; import java.io.IOException; import java.util.Properties; import static org.junit.Assert.assertEquals; public class TransactionIntegrationTest { private static PostService postService; private static Session session; private static Logger logger = LoggerFactory.getLogger(TransactionIntegrationTest.class); @BeforeClass public static void init() throws IOException { Properties properties = new Properties(); properties.setProperty("hibernate.connection.driver_class", "org.h2.Driver"); properties.setProperty("hibernate.connection.url", "jdbc:h2:mem:mydb1;DB_CLOSE_DELAY=-1"); properties.setProperty("hibernate.connection.username", "sa"); properties.setProperty("hibernate.show_sql", "true"); properties.setProperty("jdbc.password", ""); properties.setProperty("hibernate.dialect", "org.hibernate.dialect.H2Dialect"); properties.setProperty("hibernate.hbm2ddl.auto", "create-drop"); SessionFactory sessionFactory = HibernateUtil.getSessionFactoryByProperties(properties); session = sessionFactory.openSession(); postService = new PostService(session); } @Test public void givenTitleAndBody_whenRepositoryUpdatePost_thenUpdatePost() { Post post = new Post("This is a title", "This is a sample post"); session.persist(post); String title = "[UPDATE] Java HowTos"; String body = "This is an updated posts on Java how-tos"; postService.updatePost(title, body, post.getId()); session.refresh(post); assertEquals(post.getTitle(), title); assertEquals(post.getBody(), body); } }
Java
5
DBatOWL/tutorials
persistence-modules/hibernate-jpa/src/test/java/com/baeldung/hibernate/transaction/TransactionIntegrationTest.java
[ "MIT" ]
- dashboard: push_marketing_pressure title: Push Marketing Pressure layout: newspaper description: Uses push messaging cadence and frequency views to explore how push messaging timing and pressure affects user behavior. elements: - name: Push Send Frequency type: text title_text: Push Send Frequency subtitle_text: Explore how the number of push campaigns sent to a user in a given period of time (daily, weekly, monthly) affects engagement. row: 0 col: 0 width: 24 height: 2 - title: Push Marketing Pressure and Engagement by Hour name: Push Marketing Pressure and Engagement by Hour model: braze_currents_block_message_engagement explore: users_messages_pushnotification_send type: looker_line fields: - users_messages_pushnotification_send.push_sent_time_hour_of_day - users_messages_pushnotification_open.push_open_rate - users_messages_pushnotification_send.push_sent fill_fields: - users_messages_pushnotification_send.push_sent_time_hour_of_day sorts: - users_messages_pushnotification_send.push_sent_time_hour_of_day limit: 500 stacking: '' show_value_labels: false label_density: 25 legend_position: center x_axis_gridlines: false y_axis_gridlines: true show_view_names: false point_style: none series_colors: users_messages_pushnotification_send.push_sent: "#FFCEB3" series_types: users_messages_pushnotification_send.push_sent: column limit_displayed_rows: false y_axes: - label: '' orientation: left series: - id: users_messages_pushnotification_send.push_sent name: Push Sent axisId: users_messages_pushnotification_send.push_sent __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 56 showLabels: true showValues: true unpinAxis: false tickDensity: default tickDensityCustom: 5 type: linear __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 53 - label: orientation: right series: - id: users_messages_pushnotification_open.push_open_rate name: Push Open Rate axisId: users_messages_pushnotification_open.push_open_rate __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 68 showLabels: true showValues: true unpinAxis: false tickDensity: default tickDensityCustom: 5 type: linear __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 65 y_axis_combined: true show_y_axis_labels: true show_y_axis_ticks: true y_axis_tick_density: default y_axis_tick_density_custom: 5 show_x_axis_label: true x_axis_label: Hour Sent show_x_axis_ticks: true x_axis_scale: ordinal y_axis_scale_mode: linear x_axis_reversed: false y_axis_reversed: false plot_size_by_field: false x_axis_label_rotation: 0 show_null_points: true interpolation: monotone ordering: none show_null_labels: false show_totals_labels: false show_silhouette: false totals_color: "#808080" listen: Date Range: users_messages_pushnotification_send.push_sent_time_date Platform: users_messages_pushnotification_send.platform Campaign Name: users_messages_pushnotification_send.campaign_name Canvas Name: users_messages_pushnotification_send.canvas_name row: 44 col: 0 width: 12 height: 9 - title: Push Marketing Pressure and Engagement by Day of Week name: Push Marketing Pressure and Engagement by Day of Week model: braze_currents_block_message_engagement explore: users_messages_pushnotification_send type: looker_line fields: - users_messages_pushnotification_open.push_open_rate - users_messages_pushnotification_send.push_sent - users_messages_pushnotification_send.push_sent_time_day_of_week fill_fields: - users_messages_pushnotification_send.push_sent_time_day_of_week sorts: - users_messages_pushnotification_send.push_sent_time_day_of_week limit: 500 stacking: '' show_value_labels: false label_density: 25 legend_position: center x_axis_gridlines: false y_axis_gridlines: true show_view_names: false point_style: none series_colors: users_messages_pushnotification_send.push_sent: "#FFCEB3" series_types: users_messages_pushnotification_send.push_sent: column limit_displayed_rows: false y_axes: - label: '' orientation: left series: - id: users_messages_pushnotification_send.push_sent name: Push Sent axisId: users_messages_pushnotification_send.push_sent __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 138 showLabels: true showValues: true unpinAxis: false tickDensity: default tickDensityCustom: 5 type: linear __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 135 - label: orientation: right series: - id: users_messages_pushnotification_open.push_open_rate name: Push Open Rate axisId: users_messages_pushnotification_open.push_open_rate __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 150 showLabels: true showValues: true unpinAxis: false tickDensity: default tickDensityCustom: 5 type: linear __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 147 y_axis_combined: true show_y_axis_labels: true show_y_axis_ticks: true y_axis_tick_density: default y_axis_tick_density_custom: 5 show_x_axis_label: true x_axis_label: Day Sent show_x_axis_ticks: true x_axis_scale: ordinal y_axis_scale_mode: linear x_axis_reversed: false y_axis_reversed: false plot_size_by_field: false x_axis_label_rotation: 0 show_null_points: true interpolation: monotone ordering: none show_null_labels: false show_totals_labels: false show_silhouette: false totals_color: "#808080" listen: Date Range: users_messages_pushnotification_send.push_sent_time_date Platform: users_messages_pushnotification_send.platform Campaign Name: users_messages_pushnotification_send.campaign_name Canvas Name: users_messages_pushnotification_send.canvas_name row: 44 col: 12 width: 12 height: 9 - title: average number of days between pushes sent name: average number of days between pushes sent model: braze_currents_block_message_engagement explore: push_messaging_cadence type: single_value fields: - push_messaging_cadence.average_number_of_days_since_last_sent limit: 500 stacking: '' show_value_labels: false label_density: 25 legend_position: center x_axis_gridlines: false y_axis_gridlines: true show_view_names: true point_style: none limit_displayed_rows: false y_axis_combined: true show_y_axis_labels: true show_y_axis_ticks: true y_axis_tick_density: default y_axis_tick_density_custom: 5 show_x_axis_label: true show_x_axis_ticks: true x_axis_scale: auto y_axis_scale_mode: linear x_axis_reversed: false y_axis_reversed: false plot_size_by_field: false ordering: none show_null_labels: false show_totals_labels: false show_silhouette: false totals_color: "#808080" series_types: {} hidden_fields: [] y_axes: [] listen: Date Range: push_messaging_cadence.send_date Platform: push_messaging_cadence.platform Campaign Name: push_messaging_cadence.campaign_name Canvas Name: push_messaging_cadence.canvas_name row: 24 col: 0 width: 24 height: 2 - name: Push Send Cadence type: text title_text: Push Send Cadence subtitle_text: Explore how the timing and pattern of pushes sent affects engagement. row: 22 col: 0 width: 24 height: 2 - title: Send Cadence Overview name: Send Cadence Overview model: braze_currents_block_message_engagement explore: push_messaging_cadence type: table fields: - push_messaging_cadence.send_event - push_messaging_cadence.average_number_of_days_since_last_sent - push_messaging_cadence.push_sent - push_messaging_cadence.push_open_rate sorts: - push_messaging_cadence.send_event limit: 500 query_timezone: America/New_York show_view_names: false show_row_numbers: false truncate_column_names: false subtotals_at_bottom: false hide_totals: false hide_row_totals: false table_theme: transparent limit_displayed_rows: false enable_conditional_formatting: true conditional_formatting: - type: low to high value: background_color: font_color: palette: name: Red to Yellow to Green colors: - "#F36254" - "#FCF758" - "#4FBC89" __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 462 bold: false italic: false strikethrough: false fields: - push_messaging_cadence.push_open_rate color_application: collection_id: legacy palette_id: legacy_diverging1 __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 473 __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 457 conditional_formatting_include_totals: false conditional_formatting_include_nulls: false series_types: {} hidden_fields: - push_send_cadence.total_push_sent y_axes: [] note_state: expanded note_display: above note_text: "*Send event: 1=first push message, 2=second push message (total),\ \ 3=third push message (total), etc." listen: Date Range: push_messaging_cadence.send_date Platform: push_messaging_cadence.platform Campaign Name: push_messaging_cadence.campaign_name Canvas Name: push_messaging_cadence.canvas_name row: 26 col: 0 width: 24 height: 9 - title: Open Rates by Days Between Push Messages name: Open Rates by Days Between Push Messages model: braze_currents_block_message_engagement explore: push_messaging_cadence type: table fields: - push_messaging_cadence.days_since_last_sent_tier - push_messaging_cadence.push_open_rate fill_fields: - push_messaging_cadence.days_since_last_sent_tier filters: push_messaging_cadence.send_event: ">=2" sorts: - push_messaging_cadence.days_since_last_sent_tier limit: 500 query_timezone: America/New_York show_view_names: false show_row_numbers: false truncate_column_names: false subtotals_at_bottom: false hide_totals: false hide_row_totals: false series_labels: push_messaging_cadence.days_since_last_sent_tier: Days Since Last Sent table_theme: transparent limit_displayed_rows: false enable_conditional_formatting: true conditional_formatting: - type: low to high value: background_color: font_color: palette: name: Red to Yellow to Green colors: - "#F36254" - "#FCF758" - "#4FBC89" __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 525 bold: false italic: false strikethrough: false fields: - push_messaging_cadence.push_open_rate __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 520 conditional_formatting_include_totals: false conditional_formatting_include_nulls: false series_types: {} hidden_fields: - push_send_cadence.total_push_sent y_axes: [] note_state: collapsed note_display: hover note_text: Underlying filter applied on this tile to ensure it does not include the first send event. listen: Date Range: push_messaging_cadence.send_date Platform: push_messaging_cadence.platform Campaign Name: push_messaging_cadence.campaign_name Canvas Name: push_messaging_cadence.canvas_name row: 35 col: 0 width: 12 height: 9 - title: Open Rates by Weeks Between Push Messages name: Open Rates by Weeks Between Push Messages model: braze_currents_block_message_engagement explore: push_messaging_cadence type: table fields: - push_messaging_cadence.push_open_rate - push_messaging_cadence.weeks_since_last_sent_tier fill_fields: - push_messaging_cadence.weeks_since_last_sent_tier filters: push_messaging_cadence.send_event: ">=2" sorts: - push_messaging_cadence.weeks_since_last_sent_tier limit: 500 query_timezone: America/New_York show_view_names: false show_row_numbers: false truncate_column_names: false subtotals_at_bottom: false hide_totals: false hide_row_totals: false series_labels: push_messaging_cadence.weeks_since_last_sent_tier: Weeks Since Last Sent table_theme: transparent limit_displayed_rows: false enable_conditional_formatting: true conditional_formatting: - type: low to high value: background_color: font_color: palette: name: Red to Yellow to Green colors: - "#F36254" - "#FCF758" - "#4FBC89" __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 627 bold: false italic: false strikethrough: false fields: - push_messaging_cadence.push_open_rate __FILE: looker_blocks/push_marketing_pressure.dashboard.lookml __LINE_NUM: 622 conditional_formatting_include_totals: false conditional_formatting_include_nulls: true series_types: {} hidden_fields: - push_send_cadence.total_push_sent y_axes: [] note_state: collapsed note_display: hover note_text: Underlying filter applied on this tile to ensure it does not include the first send event. listen: Date Range: push_messaging_cadence.send_date Platform: push_messaging_cadence.platform Campaign Name: push_messaging_cadence.campaign_name Canvas Name: push_messaging_cadence.canvas_name row: 35 col: 12 width: 12 height: 9 - title: Impact of Monthly Push Campaigns on Engagement name: Impact of Monthly Push Campaigns on Engagement model: braze_currents_block_message_engagement explore: push_messaging_frequency type: looker_line fields: - push_messaging_frequency.frequency - push_messaging_frequency.push_open_rate - push_messaging_frequency.unique_recipients filters: push_messaging_frequency.date_granularity: month sorts: - push_messaging_frequency.frequency limit: 500 trellis: '' stacking: '' show_value_labels: true label_density: 25 legend_position: center x_axis_gridlines: false y_axis_gridlines: true show_view_names: false point_style: circle_outline series_types: push_messaging_frequency.push_delivered: column push_messaging_frequency.unique_recipients: column limit_displayed_rows: false y_axes: - label: orientation: left series: - id: push_messaging_frequency.unique_recipients name: Unique Recipients axisId: push_messaging_frequency.unique_recipients showLabels: true showValues: true unpinAxis: false tickDensity: default type: linear - label: orientation: right series: - id: push_messaging_frequency.push_open_rate name: Push Open Rate axisId: push_messaging_frequency.push_open_rate showLabels: true showValues: true unpinAxis: false tickDensity: default type: linear y_axis_combined: true show_y_axis_labels: true show_y_axis_ticks: true y_axis_tick_density: default y_axis_tick_density_custom: 5 show_x_axis_label: true x_axis_label: Monthly Push Sent to a Unique User show_x_axis_ticks: true x_axis_scale: auto y_axis_scale_mode: linear x_axis_reversed: false y_axis_reversed: false plot_size_by_field: false x_axis_label_rotation: 0 show_null_points: true interpolation: monotone ordering: none label_rotation: 0 show_null_labels: false show_totals_labels: false show_silhouette: false totals_color: "#808080" hidden_fields: - push_send_frequency.opens listen: Date Range: push_messaging_frequency.sent_date Platform: push_messaging_frequency.platform Campaign Name: push_messaging_frequency.campaign_name Canvas Name: push_messaging_frequency.canvas_name row: 2 col: 0 width: 24 height: 10 - title: Impact of Daily Push Campaigns on Engagement name: Impact of Daily Push Campaigns on Engagement model: braze_currents_block_message_engagement explore: push_messaging_frequency type: looker_line fields: - push_messaging_frequency.frequency - push_messaging_frequency.push_open_rate - push_messaging_frequency.unique_recipients filters: push_messaging_frequency.date_granularity: day sorts: - push_messaging_frequency.frequency limit: 500 trellis: '' stacking: '' show_value_labels: true label_density: 25 legend_position: center x_axis_gridlines: false y_axis_gridlines: true show_view_names: false point_style: circle_outline series_types: push_messaging_frequency.push_delivered: column push_messaging_frequency.unique_recipients: column limit_displayed_rows: false y_axes: - label: orientation: left series: - id: push_messaging_frequency.unique_recipients name: Unique Recipients axisId: push_messaging_frequency.unique_recipients showLabels: true showValues: true unpinAxis: false tickDensity: default type: linear - label: orientation: right series: - id: push_messaging_frequency.push_open_rate name: Push Open Rate axisId: push_messaging_frequency.push_open_rate showLabels: true showValues: true unpinAxis: false tickDensity: default type: linear y_axis_combined: true show_y_axis_labels: true show_y_axis_ticks: true y_axis_tick_density: default y_axis_tick_density_custom: 5 show_x_axis_label: true x_axis_label: Daily Push Sent to a Unique User show_x_axis_ticks: true x_axis_scale: auto y_axis_scale_mode: linear x_axis_reversed: false y_axis_reversed: false plot_size_by_field: false x_axis_label_rotation: 0 show_null_points: true interpolation: monotone ordering: none label_rotation: 0 show_null_labels: false show_totals_labels: false show_silhouette: false totals_color: "#808080" hidden_fields: - push_send_frequency.opens - frequency listen: Date Range: push_messaging_frequency.sent_date Platform: push_messaging_frequency.platform Campaign Name: push_messaging_frequency.campaign_name Canvas Name: push_messaging_frequency.canvas_name row: 12 col: 0 width: 12 height: 10 - title: Impact of Weekly Push Campaigns on Engagement name: Impact of Weekly Push Campaigns on Engagement model: braze_currents_block_message_engagement explore: push_messaging_frequency type: looker_line fields: - push_messaging_frequency.frequency - push_messaging_frequency.push_open_rate - push_messaging_frequency.unique_recipients filters: push_messaging_frequency.date_granularity: week sorts: - push_messaging_frequency.frequency limit: 500 trellis: '' stacking: '' show_value_labels: true label_density: 25 legend_position: center x_axis_gridlines: false y_axis_gridlines: true show_view_names: false point_style: circle_outline series_types: push_messaging_frequency.push_delivered: column push_messaging_frequency.unique_recipients: column limit_displayed_rows: false y_axes: - label: orientation: left series: - id: push_messaging_frequency.unique_recipients name: Unique Recipients axisId: push_messaging_frequency.unique_recipients showLabels: true showValues: true unpinAxis: false tickDensity: default type: linear - label: orientation: right series: - id: push_messaging_frequency.push_open_rate name: Push Open Rate axisId: push_messaging_frequency.push_open_rate showLabels: true showValues: true unpinAxis: false tickDensity: default type: linear y_axis_combined: true show_y_axis_labels: true show_y_axis_ticks: true y_axis_tick_density: default y_axis_tick_density_custom: 5 show_x_axis_label: true x_axis_label: Weekly Push Sent to a Unique User show_x_axis_ticks: true x_axis_scale: auto y_axis_scale_mode: linear x_axis_reversed: false y_axis_reversed: false plot_size_by_field: false x_axis_label_rotation: 0 show_null_points: true interpolation: monotone ordering: none label_rotation: 0 show_null_labels: false show_totals_labels: false show_silhouette: false totals_color: "#808080" hidden_fields: - push_send_frequency.opens listen: Date Range: push_messaging_frequency.sent_date Platform: push_messaging_frequency.platform Campaign Name: push_messaging_frequency.campaign_name Canvas Name: push_messaging_frequency.canvas_name row: 12 col: 12 width: 12 height: 10 filters: - name: Date Range title: Date Range type: date_filter default_value: 1 years allow_multiple_values: true required: false - name: Platform title: Platform type: field_filter default_value: '' allow_multiple_values: true required: false model: braze_currents_block_message_engagement explore: users_messages_pushnotification_send listens_to_filters: [] field: users_messages_pushnotification_send.platform - name: Campaign Name title: Campaign Name type: field_filter default_value: '' allow_multiple_values: true required: false model: braze_currents_block_message_engagement explore: users_messages_pushnotification_send listens_to_filters: [] field: users_messages_pushnotification_send.campaign_name - name: Canvas Name title: Canvas Name type: field_filter default_value: '' allow_multiple_values: true required: false model: braze_currents_block_message_engagement explore: users_messages_pushnotification_send listens_to_filters: [] field: users_messages_pushnotification_send.canvas_name
LookML
4
looker-open-source/braze_message_engagement_block
push_marketing_pressure.dashboard.lookml
[ "MIT" ]
# # Copyright 2011 (c) Pointwise, Inc. # All rights reserved. # # This sample Pointwise script is not supported by Pointwise, Inc. # It is provided freely for demonstration purposes only. # SEE THE WARRANTY DISCLAIMER AT THE BOTTOM OF THIS FILE. # # =============================================== # HYBRID MESH GENERATION SCRIPT FOR A # VERTICAL AXIS WIND TURBINE # =============================================== # Written by Travis Carrigan # # Initialization package require PWI_Glyph 2.4 pw::Script loadTk pw::Application reset pw::Application setUndoMaximumLevels 10 # Directory from which script is run set cwd [file dirname [info script]] # AIRFOIL GUI CREATION # ----------------------------------------------- wm title . "VAWT Mesh Generator" grid [ttk::frame .c -padding "5 5 5 5"] -column 0 -row 0 -columnspan 1 -sticky nwes grid columnconfigure . 0 -weight 1; grid rowconfigure . 0 -weight 1 # Default airfoil parameters set naca 0015 set afsol 1.5 set numblds 3 # Create notebook grid [ttk::notebook .c.nb -padding "5 5 5 5"] -column 0 -row 0 -columnspan 2 .c.nb add [ttk::frame .c.nb.f1 -padding "5 5 5 5"] -text "Step 1" .c.nb add [ttk::frame .c.nb.f2 -padding "5 5 5 5"] -text "Step 2" .c.nb add [ttk::frame .c.nb.f3 -padding "5 5 5 5"] -text "Step 3" # Airfoil labels grid [ttk::label .c.nb.f1.l1 -text "VAWT Airfoil Generator" -font {-underline 1}] -column 0 -row 0 -columnspan 2 -stick w grid [ttk::label .c.nb.f1.nacal -text "NACA 4-Series Cross-Section" -width 25] -column 0 -row 1 -sticky w grid [ttk::label .c.nb.f1.afsoll -text "Wind Turbine Solidity" -width 25] -column 0 -row 2 -sticky w grid [ttk::label .c.nb.f1.numbldsl -text "Number of Blades" -width 25] -column 0 -row 3 -sticky w # Airfoil entry boxes grid [ttk::entry .c.nb.f1.nacae -width 8 -textvariable naca ] -column 1 -row 1 -sticky e grid [ttk::entry .c.nb.f1.afsole -width 8 -textvariable afsol ] -column 1 -row 2 -sticky e grid [ttk::entry .c.nb.f1.numbldse -width 8 -textvariable numblds ] -column 1 -row 3 -sticky e grid [ttk::button .c.nb.f1.gob -text "Create" -command coordGen] -column 1 -row 4 -sticky e # Default boundary layer parameters set initds 0.0001 set cellgr 1.2 set bldist 0.2 set numpts 100 # Boundary layer labels grid [ttk::label .c.nb.f2.l2 -text "Boundary Layer Parameters" -font {-underline 1}] -column 0 -row 0 -columnspan 2 -sticky w grid [ttk::label .c.nb.f2.initdsl -text "Initial Cell Height" -width 25] -column 0 -row 1 -sticky w grid [ttk::label .c.nb.f2.cellgrl -text "Cell Growth Rate" -width 25] -column 0 -row 2 -sticky w grid [ttk::label .c.nb.f2.numlayerl -text "Boundary Layer Height" -width 25] -column 0 -row 3 -sticky w grid [ttk::label .c.nb.f2.numptsl -text "Points Around Airfoil" -width 25] -column 0 -row 4 -sticky w # Boundary layer entry boxes grid [ttk::entry .c.nb.f2.initdse -width 8 -textvariable initds ] -column 1 -row 1 -sticky e grid [ttk::entry .c.nb.f2.cellgre -width 8 -textvariable cellgr ] -column 1 -row 2 -sticky e grid [ttk::entry .c.nb.f2.numlayere -width 8 -textvariable bldist ] -column 1 -row 3 -sticky e grid [ttk::entry .c.nb.f2.numptse -width 8 -textvariable numpts ] -column 1 -row 4 -sticky e grid [ttk::button .c.nb.f2.gob -text "Create" -command blMesh] -column 1 -row 5 -sticky e # Default farfield parameters set rotdomdia 50 set rotdomdim 40 set ffdomdia 100 set ffdomdim 50 # Farfield labels grid [ttk::label .c.nb.f3.l3 -text "Farfield Boundary Parameters" -font {-underline 1}] -column 0 -row 0 -columnspan 2 -sticky w grid [ttk::label .c.nb.f3.rotdomdial -text "Rotational Domain Diameter" -width 25] -column 0 -row 1 -sticky w grid [ttk::label .c.nb.f3.rotdomdiml -text "Rotational Domain Points" -width 25] -column 0 -row 2 -sticky w grid [ttk::label .c.nb.f3.ffdomdial -text "Farfield Domain Diameter" -width 25] -column 0 -row 3 -sticky w grid [ttk::label .c.nb.f3.ffdomdiml -text "Farfield Domain Points" -width 25] -column 0 -row 4 -sticky w # Farfield entry boxes grid [ttk::entry .c.nb.f3.rotdomdiae -width 8 -textvariable rotdomdia] -column 1 -row 1 -sticky e grid [ttk::entry .c.nb.f3.rotdomdime -width 8 -textvariable rotdomdim] -column 1 -row 2 -sticky e grid [ttk::entry .c.nb.f3.ffdomdiae -width 8 -textvariable ffdomdia ] -column 1 -row 3 -sticky e grid [ttk::entry .c.nb.f3.ffdomdime -width 8 -textvariable ffdomdim ] -column 1 -row 4 -sticky e grid [ttk::button .c.nb.f3.gob -text "Create" -command ffMesh ] -column 1 -row 5 -sticky e # Notes grid [ttk::labelframe .c.lf4 -padding "5 5 5 5" -text "Notes"] -column 0 -row 3 -columnspan 2 grid [ttk::label .c.lf4.l -width 25] -column 0 -row 0 grid [tk::text .c.lf4.t -width 29 -height 8 -wrap word] -column 0 -row 0 -columnspan 2 .c.lf4.t insert 1.0 "The initial cell height and boundary layer height are factors of the airfoil chord length.\n\nAll farfield boundary dimensions are factors of the VAWT radius (R = 1)." .c.lf4.t configure -state disabled # Restart and done button grid [ttk::button .c.lf4.und -text "Undo" -command undo] -column 0 -row 4 -sticky w grid [ttk::button .c.lf4.res -text "Restart" -command rest] -column 0 -row 4 -columnspan 2 grid [ttk::button .c.lf4.gob -text "Done" -command exit] -column 1 -row 4 -sticky e # Clean up spacing foreach w [winfo children .c ] {grid configure $w -padx 5 -pady 5} foreach w [winfo children .c.nb.f1] {grid configure $w -padx 5 -pady 5} foreach w [winfo children .c.nb.f2] {grid configure $w -padx 5 -pady 5} foreach w [winfo children .c.nb.f3] {grid configure $w -padx 5 -pady 5} foreach w [winfo children .c.lf4] {grid configure $w -padx 5 -pady 5} focus .c.nb.f1.nacae ::tk::PlaceWindow . widget # PROCEDURE FOR GENERATING AIRFOIL COORDINATES # ----------------------------------------------- proc coordGen {} { # AIRFOIL INPUTS # ----------------------------------------------- # m = maximum camber # p = maximum camber location # t = maximum thickness set m [expr {[string index $::naca 0]/100.0}] set p [expr {[string index $::naca 1]/10.0}] set a [string index $::naca 2] set b [string index $::naca 3] set c "$a$b" set t [expr {$c/100.0}] # GENERATE AIRFOIL COORDINATES # ----------------------------------------------- # Initialize Arrays set x {} set xu {} set xl {} set yu {} set yl {} set yc {0} set yt {} # Airfoil step size set ds 0.001 # Check if airfoil is symmetric or cambered if {$m == 0 && $p == 0 || $m == 0 || $p == 0} {set symm 1} else {set symm 0} # Get x coordinates for {set i 0} {$i < [expr {1+$ds}]} {set i [expr {$i+$ds}]} {lappend x $i} # Calculate mean camber line and thickness distribution foreach xx $x { # Mean camber line definition for symmetric geometry if {$symm == 1} {lappend yc 0} # Mean camber line definition for cambered geometry if {$symm == 0 && $xx <= $p} { lappend yc [expr {($m/($p**2))*(2*$p*$xx-$xx**2)}] } elseif {$symm == 0 && $xx > $p} { lappend yc [expr {($m/((1-$p)**2)*(1-2*$p+2*$p*$xx-$xx**2))}] } # Thickness distribution lappend yt [expr {($t/0.20)*(0.29690*sqrt($xx)-0.12600*$xx- \ 0.35160*$xx**2+0.28430*$xx**3-0.10150*$xx**4)}] # Theta set dy [expr {[lindex $yc end] - [lindex $yc end-1]}] set th [expr {atan($dy/$ds)}] # Upper x and y coordinates lappend xu [expr {$xx-[lindex $yt end]*sin($th)}] lappend yu [expr {[lindex $yc end]+[lindex $yt end]*cos($th)}] # Lower x and y coordinates lappend xl [expr {$xx+[lindex $yt end]*sin($th)}] lappend yl [expr {[lindex $yc end]-[lindex $yt end]*cos($th)}] } # GENERATE AIRFOIL GEOMETRY # ----------------------------------------------- # Create upper airfoil surface set airUpper [pw::Application begin Create] set airUpperPts [pw::SegmentSpline create] for {set i 0} {$i < [llength $x]} {incr i} { $airUpperPts addPoint [list [lindex $xu $i] [lindex $yu $i] 0] } set airUpperCurve [pw::Curve create] $airUpperCurve addSegment $airUpperPts $airUpper end # Create lower airfoil surface set airLower [pw::Application begin Create] set airLowerPts [pw::SegmentSpline create] for {set i 0} {$i < [llength $x]} {incr i} { $airLowerPts addPoint [list [lindex $xl $i] [lindex $yl $i] 0] } set airLowerCurve [pw::Curve create] $airLowerCurve addSegment $airLowerPts $airLower end # Create flat trailing edge set airTrail [pw::Application begin Create] set airTrailPts [pw::SegmentSpline create] $airTrailPts addPoint [list [lindex $xu end] [lindex $yu end] 0] $airTrailPts addPoint [list [lindex $xl end] [lindex $yl end] 0] set airTrailCurve [pw::Curve create] $airTrailCurve addSegment $airTrailPts $airTrail end # Scale airfoil based on solidity set afSol $::afsol set numBlds $::numblds set scale [expr ($afSol*2)/$numBlds] set afdb [pw::Database getAll] pw::Entity transform [pwu::Transform scaling -anchor {0 0 0} \ [list "$scale" "$scale" "$scale"]] $afdb # Mark and undo level pw::Application markUndoLevel {coord} # Zoom to airfoil pw::Display resetView } # PROCEDURE FOR GENERATING BOUNDARY LAYER MESH # ----------------------------------------------- proc blMesh {} { # BOUNDARY LAYER INPUTS # ----------------------------------------------- # afSol = airfoil solidity # numbBlds = number of blades # chord = airfoil chord length # initDs = initial cell height # cellGr = cell growth rate # blDist = boundary layer distance # numPts = number of points around airfoil set afSol $::afsol set numBlds $::numblds set chord [expr ($afSol*2)/$numBlds] set initDs [expr $::initds*$chord] set cellGr $::cellgr set blDist [expr $::bldist*$chord] set numPts $::numpts # CONNECTOR CREATION, DIMENSIONING, AND SPACING # ----------------------------------------------- # Get all database entities set dbEnts [pw::Database getAll] # Create connectors on database entities set cons [pw::Connector createOnDatabase $dbEnts] set upperSurfCon [lindex $cons 0] set lowerSurfCon [lindex $cons 1] set trailSurfCon [lindex $cons 2] # Calculate main airfoil connector dimensions foreach con $cons {lappend conLen [$con getLength -arc 1]} set upperSurfConLen [lindex $conLen 0] set lowerSurfConLen [lindex $conLen 1] set trailSurfConLen [lindex $conLen 2] set conDim [expr int($numPts/2)] # Dimension upper and lower airfoil surface connectors $upperSurfCon setDimension $conDim $lowerSurfCon setDimension $conDim # Dimension trailing edge airfoil connector set teDim [expr int($trailSurfConLen/(10*$initDs))+2] $trailSurfCon setDimension $teDim # Set leading and trailing edge connector spacings set ltDs [expr 10*$initDs] set upperSurfConDis [$upperSurfCon getDistribution 1] set lowerSurfConDis [$lowerSurfCon getDistribution 1] set trailSurfConDis [$trailSurfCon getDistribution 1] $upperSurfConDis setBeginSpacing $ltDs $upperSurfConDis setEndSpacing $ltDs $lowerSurfConDis setBeginSpacing $ltDs $lowerSurfConDis setEndSpacing $ltDs # Create edges for structured boundary layer extrusion set afEdge [pw::Edge createFromConnectors -single $cons] set afDom [pw::DomainStructured create] $afDom addEdge $afEdge # Extrude boundary layer using normal hyperbolic extrusion method set afExtrude [pw::Application begin ExtrusionSolver $afDom] $afDom setExtrusionSolverAttribute NormalInitialStepSize $initDs $afDom setExtrusionSolverAttribute SpacingGrowthFactor $cellGr $afDom setExtrusionSolverAttribute NormalMarchingVector {0 0 -1} $afDom setExtrusionSolverAttribute NormalKinseyBarthSmoothing 3 $afDom setExtrusionSolverAttribute NormalVolumeSmoothing 0.3 $afDom setExtrusionSolverAttribute StopAtHeight $blDist $afExtrude run 1000 $afExtrude end # CREATE THE THREE BLADES OF THE VAWT # ----------------------------------------------- # Calculate half chord set hlfChord [expr $chord/2] # Cut, paste, translate blade to desired radius set gridEnts [pw::Grid getAll] set afEnts [join [list $dbEnts $gridEnts]] pw::Application setClipboard $afEnts set rotPt [list [expr -$hlfChord] 1 0] pw::Entity transform [pwu::Transform translation $rotPt] $afEnts pw::Application clearClipboard # Copy, paste, rotate to create blades for {set i 1} {$i < $numBlds} {incr i} { set rotAngle [expr 360/$numBlds] pw::Application setClipboard $afEnts set afMeshRot [pw::Application begin Paste] set afEntsRot [$afMeshRot getEntities] set afBegRot [pw::Application begin Modify $afEntsRot] pw::Entity transform [pwu::Transform rotation -anchor {0 0 0} {0 0 1} \ [expr $i*$rotAngle]] [$afBegRot getEntities] $afBegRot end $afMeshRot end pw::Application clearClipboard } # Mark and undo level pw::Application markUndoLevel {bl} # Zoom to blades pw::Display resetView } # PROCEDURE FOR GENERATING FARFIELD MESH # ----------------------------------------------- proc ffMesh {} { # FARFIELD INPUTS # ----------------------------------------------- # numBlds = number of blades # rotDomDia = rotational domain diameter # rotDomDim = points around rotational domain # ffDomDia = farfield domain diameter # ffDomDim = points around farfield domain set numBlds $::numblds set rotDomDia $::rotdomdia set rotDomDim $::rotdomdim set ffDomDia $::ffdomdia set ffDomDim $::ffdomdim # CREATE ROTATIONAL DOMAIN # ----------------------------------------------- # Create inner circle connectors set createInnerCircle [pw::Application begin Create] set innerCircle [pw::SegmentCircle create] $innerCircle addPoint [list [expr $rotDomDia/2] 0 0] $innerCircle addPoint {0 0 0} $innerCircle setEndAngle 360 {0 0 1} set innerCircleCon [pw::Connector create] $innerCircleCon addSegment $innerCircle $createInnerCircle end # Split circle connector at midpoint set innerCircleConSplit [$innerCircleCon split 0.5] # Dimension connectors set innerCircleCon1 [lindex $innerCircleConSplit 0] set innerCircleCon2 [lindex $innerCircleConSplit 1] $innerCircleCon1 setDimension $rotDomDim $innerCircleCon2 setDimension $rotDomDim # Create interior rotational domain set gridEnts [pw::Grid getAll] foreach ent $gridEnts { if {[$ent isOfType pw::DomainStructured]} { lappend blCons [[$ent getEdge JMaximum] getConnector 1] } } set createInnerDom [pw::Application begin Create] set innerDomCircleEdge [pw::Edge create] $innerDomCircleEdge addConnector $innerCircleCon1 $innerDomCircleEdge addConnector $innerCircleCon2 for {set i 0} {$i < $numBlds} {incr i} { set innerDomBladeEdge($i) [pw::Edge create] $innerDomBladeEdge($i) addConnector [lindex $blCons $i] } set innerDom [pw::DomainUnstructured create] $innerDom addEdge $innerDomCircleEdge for {set i 0} {$i < $numBlds} {incr i} {$innerDom addEdge $innerDomBladeEdge($i)} $createInnerDom end set innerDomSolve [pw::Application begin UnstructuredSolver $innerDom] $innerDom setUnstructuredSolverAttribute BoundaryDecay 0.985 $innerDomSolve run Initialize $innerDomSolve end # CREATE FARFIELD DOMAIN # ----------------------------------------------- # Create outer circle connectors set createOuterCircle [pw::Application begin Create] set outerCircle [pw::SegmentCircle create] $outerCircle addPoint [list 0 [expr $ffDomDia/2] 0] $outerCircle addPoint {0 0 0} $outerCircle setEndAngle 360 {0 0 1} set outerCircleCon [pw::Connector create] $outerCircleCon addSegment $outerCircle $createOuterCircle end # Split connector at midpoint set outerCircleConSplit [$outerCircleCon split 0.5] # Dimension connectors set outerCircleCon1 [lindex $outerCircleConSplit 0] set outerCircleCon2 [lindex $outerCircleConSplit 1] $outerCircleCon1 setDimension $ffDomDim $outerCircleCon2 setDimension $ffDomDim # Create outer domains inner overlapping connectors set createInnerOverCircle [pw::Application begin Create] set innerOverCircle [pw::SegmentCircle create] $innerOverCircle addPoint [list 0 [expr $rotDomDia/2] 0] $innerOverCircle addPoint {0 0 0} $innerOverCircle setEndAngle 360 {0 0 1} set innerOverCircleCon [pw::Connector create] $innerOverCircleCon addSegment $innerOverCircle $createInnerOverCircle end # Split connector at midpoint set innerOverCircleConSplit [$innerOverCircleCon split 0.5] # Dimension connectors set innerOverCircleCon1 [lindex $innerOverCircleConSplit 0] set innerOverCircleCon2 [lindex $innerOverCircleConSplit 1] $innerOverCircleCon1 setDimension $rotDomDim $innerOverCircleCon2 setDimension $rotDomDim # Create farfield domain set createOuterDom [pw::Application begin Create] set outerDomOuterEdge [pw::Edge create] $outerDomOuterEdge addConnector $outerCircleCon1 $outerDomOuterEdge addConnector $outerCircleCon2 set outerDomInnerEdge [pw::Edge create] $outerDomInnerEdge addConnector $innerOverCircleCon1 $outerDomInnerEdge addConnector $innerOverCircleCon2 $outerDomInnerEdge reverse set outerDom [pw::DomainUnstructured create] $outerDom addEdge $outerDomOuterEdge $outerDom addEdge $outerDomInnerEdge $createOuterDom end set outerDomSolve [pw::Application begin UnstructuredSolver $outerDom] $outerDom setUnstructuredSolverAttribute BoundaryDecay 0.985 $outerDomSolve run Initialize $outerDomSolve end # Mark and undo level pw::Application markUndoLevel {ff} # Zoom out pw::Display resetView } # PROCEDURE FOR UNDOING LAST ACTION # ----------------------------------------------- proc undo {} { pw::Application undo pw::Display resetView } # PROCEDURE FOR RESTARTING POINTWISE # ----------------------------------------------- proc rest {} { pw::Application reset pw::Display resetView } # END SCRIPT # # DISCLAIMER: # TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, POINTWISE DISCLAIMS # ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED # TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # PURPOSE, WITH REGARD TO THIS SCRIPT. TO THE MAXIMUM EXTENT PERMITTED # BY APPLICABLE LAW, IN NO EVENT SHALL POINTWISE BE LIABLE TO ANY PARTY # FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES # WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF # BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE # USE OF OR INABILITY TO USE THIS SCRIPT EVEN IF POINTWISE HAS BEEN # ADVISED OF THE POSSIBILITY OF SUCH DAMAGES AND REGARDLESS OF THE # FAULT OR NEGLIGENCE OF POINTWISE. #
Glyph
5
smola/language-dataset
data/github.com/traviscarrigan/VAWTMesh/716f4fdaa9ecfe68d74143d5f1f5301e0d3d41e3/VAWTMesh.glf
[ "MIT" ]
/***************************************************************************** * * CALL <proc_name> [(params, ...)] * *****************************************************************************/ CallStmt: CALL_P func_application { PGCallStmt *n = makeNode(PGCallStmt); n->func = $2; $$ = (PGNode *) n; } ;
Yacc
3
AldoMyrtaj/duckdb
third_party/libpg_query/grammar/statements/call.y
[ "MIT" ]
<?xml version="1.0" encoding="UTF-8"?> <faces-config> <faces-config-extension> <namespace-uri>http://unplugged.teamstudio.com</namespace-uri> <default-prefix>unp</default-prefix> </faces-config-extension> <composite-component> <component-type>UnpBootCalendar</component-type> <composite-name>UnpBootCalendar</composite-name> <composite-file>/UnpBootCalendar.xsp</composite-file> <composite-extension> <designer-extension> <in-palette>true</in-palette> <category>XControls</category> <render-markup>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &#xd; &lt;xp:view xmlns:xp="http://www.ibm.com/xsp/core"&gt; &#xd; &lt;div style="border: 2px solid #A9A9A9; padding: 3px; margin: 5px;"&gt;&#xd; &lt;h1&gt;UnpBootCalendar v1.7.0&lt;/h1&gt;&#xd; &lt;div&gt;&#xd; To use this custom control make sure you have set the Custom Properties.&#xd; &lt;/div&gt;&#xd; &lt;/div&gt;&#xd; &lt;/xp:view&gt;</render-markup> </designer-extension> </composite-extension> <property> <property-name>title</property-name> <property-class>string</property-class> <description>The title for the calendar</description> </property> <property> <property-name>viewname</property-name> <property-class>string</property-class> <description>The view to get the data from. The view needs to be formatted in the same way as the example in the Sampler application.</description> </property> <property> <property-name>startdatefield</property-name> <property-class>string</property-class> <description>The field to get the start date for each event from</description> </property> <property> <property-name>enddatefield</property-name> <property-class>string</property-class> <description>The field to get the end date for each event from</description> </property> <property> <property-name>titlefield</property-name> <property-class>string</property-class> <description>The field to get the title for each event from</description> </property> <property> <property-name>viewxpage</property-name> <property-class>string</property-class> <description>The XPage to load when clicking on an event</description> </property> <property> <property-name>highlightfield</property-name> <property-class>string</property-class> <description>The name of the field to check for highlighting, can be left blank</description> </property> <property> <property-name>highlighttest</property-name> <property-class>string</property-class> <description>The logical test to see if the event should be highlighted, can be left blank</description> </property> <property> <property-name>headerbuttonsleft</property-name> <property-class>string</property-class> <property-extension> <designer-extension> <default-value>prev,today,next</default-value> </designer-extension> </property-extension> <description>The list of buttons to display on the left header. Default is prev,today,next</description> </property> <property> <property-name>headerbuttonsrighttablet</property-name> <property-class>string</property-class> <property-extension> <designer-extension> <default-value>agendaDay,agendaWeek,month</default-value> </designer-extension> </property-extension> <description>The buttons to display for a tablet. Default is agendaDay,agendaWeek,month</description> </property> <property> <property-name>headerbuttonsrightphone</property-name> <property-class>string</property-class> <description>The buttons to display for a phone. Default is none</description> </property> <property> <property-name>defaultviewtablet</property-name> <property-class>string</property-class> <property-extension> <designer-extension> <default-value>month</default-value> </designer-extension> </property-extension> <description>The default view to open when viewed with a tablet, default is month</description> </property> <property> <property-name>defaultviewphone</property-name> <property-class>string</property-class> <property-extension> <designer-extension> <default-value>basicWeek</default-value> </designer-extension> </property-extension> <description>The default view to open when viewed with a phone, default is basicWeek</description> </property> <property> <property-name>filter</property-name> <property-class>string</property-class> <description>A filter to apply to the view to get a subset of documents, can be left blank</description> </property> <property> <property-name>catfield</property-name> <property-class>string</property-class> <description>The name of the field on event documents which will be used to create categories, can be left blank</description> </property> <property> <property-name>dbname</property-name> <property-class>string</property-class> <description>The name of the database to load data from, can be left blank.</description> </property> <property> <property-name>footertext</property-name> <property-class>string</property-class> <description>A footer string to display, can be left blank.</description> </property> <property> <property-name>callback</property-name> <property-class>string</property-class> <description>the name of a client side JavaScript function to call after clicking on an entry (i.e. when a document is put into edit mode)</description> </property> </composite-component> </faces-config>
XPages
4
teamstudio/xcontrols-domino
sampler-app/CustomControls/UnpBootCalendar.xsp-config
[ "Apache-2.0" ]
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or 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 <limits> #include "tensorflow/lite/c/common.h" #include "tensorflow/lite/kernels/cpu_backend_context.h" #include "tensorflow/lite/kernels/gru_cell.h" #include "tensorflow/lite/kernels/internal/tensor.h" #include "tensorflow/lite/kernels/kernel_util.h" // Unidirectional_sequence_gru is the fused version of GRU: // https://www.tensorflow.org/api_docs/python/tf/keras/layers/GRU. namespace tflite { namespace ops { namespace custom { namespace unidirectional_sequence_gru { namespace { void GruImpl(const TfLiteTensor* input, const TfLiteTensor* input_state, const TfLiteTensor* gate_weight, const TfLiteTensor* gate_bias, const TfLiteTensor* candidate_weight, const TfLiteTensor* candidate_bias, TfLiteTensor* output, TfLiteTensor* output_state, TfLiteTensor* activation, TfLiteTensor* concat, tflite::CpuBackendContext* cpu_backend_context) { const int n_time = input->dims->data[0]; const int n_batch = input->dims->data[1]; const int n_input = input->dims->data[2]; const int n_output = output->dims->data[2]; const int n_batch_input = n_batch * n_input; const int n_batch_output = n_batch * n_output; const RuntimeShape input_shape({n_batch, n_input}); const float* input_data = GetTensorData<float>(input); const RuntimeShape state_shape = GetTensorShape(input_state); const float* input_state_data = GetTensorData<float>(input_state); const RuntimeShape gate_weight_shape = GetTensorShape(gate_weight); const float* gate_weight_data = GetTensorData<float>(gate_weight); const RuntimeShape gate_bias_shape = GetTensorShape(gate_bias); const float* gate_bias_data = GetTensorData<float>(gate_bias); const RuntimeShape candidate_weight_shape = GetTensorShape(candidate_weight); const float* candidate_weight_data = GetTensorData<float>(candidate_weight); const RuntimeShape candidate_bias_shape = GetTensorShape(candidate_bias); const float* candidate_bias_data = GetTensorData<float>(candidate_bias); const RuntimeShape activation_shape = GetTensorShape(activation); const RuntimeShape output_shape = RuntimeShape({n_batch, n_output}); float* output_data = GetTensorData<float>(output); float* output_state_data = GetTensorData<float>(output_state); float* activation_data = GetTensorData<float>(activation); const RuntimeShape concat_shape = GetTensorShape(concat); float* concat_data = GetTensorData<float>(concat); tflite::FullyConnectedParams fc_params; fc_params.float_activation_min = std::numeric_limits<float>::lowest(); fc_params.float_activation_max = std::numeric_limits<float>::max(); // The lhs is cacheable only when both gate weight & candidate weight are both // constants. fc_params.lhs_cacheable = IsConstantTensor(gate_weight) && IsConstantTensor(candidate_weight); fc_params.rhs_cacheable = false; for (int i = 0; i < n_time; ++i) { gru_cell::GruCell( input_shape, input_data, state_shape, input_state_data, gate_weight_shape, gate_weight_data, gate_bias_shape, gate_bias_data, candidate_weight_shape, candidate_weight_data, candidate_bias_shape, candidate_bias_data, output_shape, output_data, output_state_data, activation_shape, activation_data, concat_shape, concat_data, fc_params, cpu_backend_context); input_data += n_batch_input; output_data += n_batch_output; input_state_data = output_state_data; } } } // namespace enum InputTensor { // Input tensor of size [n_time, n_batch, n_input] kInput = 0, // Input state tensor of size [n_batch, n_output] kInputState = 1, // Gate weight tensor of size [2*n_output, n_input+n_output] kGateWeight = 2, // Gate bias tensor of size [2*n_output] kGateBias = 3, // Candidate weight tensor of size [n_output, n_input+n_output] kCandidateWeight = 4, // Candidate bias tensor of size [n_output] kCandidateBias = 5, kInputNum = 6 }; enum OutputTensor { // Input tensor of size [n_time, n_batch, n_output] kOutput = 0, // Output state tensor of size [n_batch, n_output] kOutputState = 1, kOutputNum = 2 }; enum TemporaryTensor { // Scratch buffer for activation of size [n_batch, 2*n_output] kActivation = 0, // Scratch buffer for activation of size [n_batch, n_input+n_output] kConcat = 1, kTemporaryNum = 2 }; void* Init(TfLiteContext* context, const char* buffer, size_t length) { auto* scratch_tensor_index = new int; context->AddTensors(context, kTemporaryNum, scratch_tensor_index); return scratch_tensor_index; } void Free(TfLiteContext* context, void* buffer) { delete reinterpret_cast<int*>(buffer); } TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { int* scratch_tensor_index = reinterpret_cast<int*>(node->user_data); TF_LITE_ENSURE_EQ(context, node->inputs->size, kInputNum); TF_LITE_ENSURE_EQ(context, node->outputs->size, kOutputNum); // input's dim = [n_time, n_batch, n_input] const TfLiteTensor* input; TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kInput, &input)); TF_LITE_ENSURE_EQ(context, input->dims->size, 3); const int n_time = input->dims->data[0]; const int n_batch = input->dims->data[1]; const int n_input = input->dims->data[2]; // input_state's dim = [n_batch, n_output] const TfLiteTensor* input_state; TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kInputState, &input_state)); TF_LITE_ENSURE_EQ(context, input_state->dims->size, 2); TF_LITE_ENSURE_EQ(context, input_state->dims->data[0], n_batch); const int n_output = input_state->dims->data[1]; // gate_weight' dim = [2 * n_output, n_input + n_output] const TfLiteTensor* gate_weight; TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kGateWeight, &gate_weight)); TF_LITE_ENSURE_EQ(context, gate_weight->dims->size, 2); TF_LITE_ENSURE_EQ(context, gate_weight->dims->data[0], 2 * n_output); TF_LITE_ENSURE_EQ(context, gate_weight->dims->data[1], n_input + n_output); // gate_bias' dim = [2 * n_output] const TfLiteTensor* gate_bias; TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kGateBias, &gate_bias)); TF_LITE_ENSURE_EQ(context, gate_bias->dims->size, 1); TF_LITE_ENSURE_EQ(context, gate_bias->dims->data[0], 2 * n_output); // candidate_weight' dim = [n_output, n_input + n_output] const TfLiteTensor* candidate_weight; TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kCandidateWeight, &candidate_weight)); TF_LITE_ENSURE_EQ(context, candidate_weight->dims->size, 2); TF_LITE_ENSURE_EQ(context, candidate_weight->dims->data[0], n_output); TF_LITE_ENSURE_EQ(context, candidate_weight->dims->data[1], n_input + n_output); // candidate_bias' dim = [n_output] const TfLiteTensor* candidate_bias; TF_LITE_ENSURE_OK( context, GetInputSafe(context, node, kCandidateBias, &candidate_bias)); TF_LITE_ENSURE_EQ(context, candidate_bias->dims->size, 1); TF_LITE_ENSURE_EQ(context, candidate_bias->dims->data[0], n_output); // output's dim = [n_time, n_batch, n_output] TfLiteTensor* output; TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, kOutput, &output)); TfLiteIntArray* output_size = TfLiteIntArrayCreate(3); output_size->data[0] = n_time; output_size->data[1] = n_batch; output_size->data[2] = n_output; TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, output, output_size)); // output_state's dim = [n_batch, n_output] TfLiteTensor* output_state; TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, kOutputState, &output_state)); TF_LITE_ENSURE_OK( context, context->ResizeTensor(context, output_state, TfLiteIntArrayCopy(input_state->dims))); TfLiteIntArrayFree(node->temporaries); node->temporaries = TfLiteIntArrayCreate(kTemporaryNum); // activation's dim = [n_batch, 2 * n_output] node->temporaries->data[kActivation] = *scratch_tensor_index; TfLiteTensor* activation; TF_LITE_ENSURE_OK(context, GetTemporarySafe(context, node, kActivation, &activation)); activation->type = input->type; activation->allocation_type = kTfLiteArenaRw; TfLiteIntArray* activation_size = TfLiteIntArrayCreate(2); activation_size->data[0] = n_batch; activation_size->data[1] = 2 * n_output; TF_LITE_ENSURE_OK( context, context->ResizeTensor(context, activation, activation_size)); // concat's dim = [n_batch, n_input + n_output] node->temporaries->data[kConcat] = (*scratch_tensor_index) + kConcat; TfLiteTensor* concat; TF_LITE_ENSURE_OK(context, GetTemporarySafe(context, node, kConcat, &concat)); concat->type = input->type; concat->allocation_type = kTfLiteArenaRw; TfLiteIntArray* concat_size = TfLiteIntArrayCreate(2); concat_size->data[0] = n_batch; concat_size->data[1] = n_input + n_output; TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, concat, concat_size)); return kTfLiteOk; } TfLiteStatus Eval(TfLiteContext* context, TfLiteNode* node) { const TfLiteTensor* input; TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kInput, &input)); const TfLiteTensor* input_state; TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kInputState, &input_state)); const TfLiteTensor* gate_weight; TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kGateWeight, &gate_weight)); const TfLiteTensor* gate_bias; TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kGateBias, &gate_bias)); const TfLiteTensor* candidate_weight; TF_LITE_ENSURE_OK(context, GetInputSafe(context, node, kCandidateWeight, &candidate_weight)); const TfLiteTensor* candidate_bias; TF_LITE_ENSURE_OK( context, GetInputSafe(context, node, kCandidateBias, &candidate_bias)); TfLiteTensor* output; TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, kOutput, &output)); TfLiteTensor* output_state; TF_LITE_ENSURE_OK(context, GetOutputSafe(context, node, kOutputState, &output_state)); TfLiteTensor* activation; TF_LITE_ENSURE_OK(context, GetTemporarySafe(context, node, kActivation, &activation)); TfLiteTensor* concat; TF_LITE_ENSURE_OK(context, GetTemporarySafe(context, node, kConcat, &concat)); auto cpu_backend_context = CpuBackendContext::GetFromContext(context); if (gate_weight->type == kTfLiteFloat32) { GruImpl(input, input_state, gate_weight, gate_bias, candidate_weight, candidate_bias, output, output_state, activation, concat, cpu_backend_context); } else { TF_LITE_KERNEL_LOG(context, "Unsupported combination of data types for GruCell"); return kTfLiteError; } return kTfLiteOk; } } // namespace unidirectional_sequence_gru TfLiteRegistration* Register_UNIDIRECTIONAL_SEQUENCE_GRU() { static TfLiteRegistration r = { unidirectional_sequence_gru::Init, unidirectional_sequence_gru::Free, unidirectional_sequence_gru::Prepare, unidirectional_sequence_gru::Eval}; return &r; } } // namespace custom } // namespace ops } // namespace tflite
C++
5
EricRemmerswaal/tensorflow
tensorflow/lite/kernels/unidirectional_sequence_gru.cc
[ "Apache-2.0" ]
@file:Suppress("OPT_IN_USAGE_ERROR") @OptionalExpectation expect annotation class Optional(val value: String) @Optional("Foo") class Foo
Kotlin
4
Mu-L/kotlin
jps-plugin/testData/incremental/multiModule/multiplatform/custom/commonSourcesCompilerArg/c_a.kt
[ "ECL-2.0", "Apache-2.0" ]
// check-pass #[derive(Clone, PartialEq, Debug)] struct Example<T, const N: usize = 1usize>([T; N]); fn main() { let a = Example([(); 16]); let b = a.clone(); if a != b { let _c = format!("{:?}", a); } }
Rust
3
ohno418/rust
src/test/ui/derives/derive-macro-const-default.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
#Signature file v4.1 #Version 0.33 CLSS public abstract interface java.io.Serializable CLSS public abstract interface java.lang.Comparable<%0 extends java.lang.Object> meth public abstract int compareTo({java.lang.Comparable%0}) CLSS public abstract java.lang.Enum<%0 extends java.lang.Enum<{java.lang.Enum%0}>> cons protected init(java.lang.String,int) intf java.io.Serializable intf java.lang.Comparable<{java.lang.Enum%0}> meth protected final java.lang.Object clone() throws java.lang.CloneNotSupportedException meth protected final void finalize() meth public final boolean equals(java.lang.Object) meth public final int compareTo({java.lang.Enum%0}) meth public final int hashCode() meth public final int ordinal() meth public final java.lang.Class<{java.lang.Enum%0}> getDeclaringClass() meth public final java.lang.String name() meth public java.lang.String toString() meth public static <%0 extends java.lang.Enum<{%%0}>> {%%0} valueOf(java.lang.Class<{%%0}>,java.lang.String) supr java.lang.Object CLSS public java.lang.Exception cons protected init(java.lang.String,java.lang.Throwable,boolean,boolean) cons public init() cons public init(java.lang.String) cons public init(java.lang.String,java.lang.Throwable) cons public init(java.lang.Throwable) supr java.lang.Throwable CLSS public java.lang.Object cons public init() meth protected java.lang.Object clone() throws java.lang.CloneNotSupportedException meth protected void finalize() throws java.lang.Throwable meth public boolean equals(java.lang.Object) meth public final java.lang.Class<?> getClass() meth public final void notify() meth public final void notifyAll() meth public final void wait() throws java.lang.InterruptedException meth public final void wait(long) throws java.lang.InterruptedException meth public final void wait(long,int) throws java.lang.InterruptedException meth public int hashCode() meth public java.lang.String toString() CLSS public java.lang.Throwable cons protected init(java.lang.String,java.lang.Throwable,boolean,boolean) cons public init() cons public init(java.lang.String) cons public init(java.lang.String,java.lang.Throwable) cons public init(java.lang.Throwable) intf java.io.Serializable meth public final java.lang.Throwable[] getSuppressed() meth public final void addSuppressed(java.lang.Throwable) meth public java.lang.StackTraceElement[] getStackTrace() meth public java.lang.String getLocalizedMessage() meth public java.lang.String getMessage() meth public java.lang.String toString() meth public java.lang.Throwable fillInStackTrace() meth public java.lang.Throwable getCause() meth public java.lang.Throwable initCause(java.lang.Throwable) meth public void printStackTrace() meth public void printStackTrace(java.io.PrintStream) meth public void printStackTrace(java.io.PrintWriter) meth public void setStackTrace(java.lang.StackTraceElement[]) supr java.lang.Object CLSS public abstract interface java.lang.annotation.Annotation meth public abstract boolean equals(java.lang.Object) meth public abstract int hashCode() meth public abstract java.lang.Class<? extends java.lang.annotation.Annotation> annotationType() meth public abstract java.lang.String toString() CLSS public abstract interface !annotation java.lang.annotation.Documented anno 0 java.lang.annotation.Documented() anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME) anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE]) intf java.lang.annotation.Annotation CLSS public abstract interface !annotation java.lang.annotation.Retention anno 0 java.lang.annotation.Documented() anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME) anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE]) intf java.lang.annotation.Annotation meth public abstract java.lang.annotation.RetentionPolicy value() CLSS public abstract interface !annotation java.lang.annotation.Target anno 0 java.lang.annotation.Documented() anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME) anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE]) intf java.lang.annotation.Annotation meth public abstract java.lang.annotation.ElementType[] value() CLSS public final org.netbeans.modules.php.api.testing.PhpTesting fld public final static java.lang.String CUSTOMIZER_IDENT = "Testing" fld public final static java.lang.String TESTING_PATH = "PHP/Testing" meth public static boolean isTestingProviderEnabled(java.lang.String,org.netbeans.modules.php.api.phpmodule.PhpModule) meth public static java.util.List<org.netbeans.modules.php.spi.testing.PhpTestingProvider> getTestingProviders() meth public static void addTestingProvidersListener(org.openide.util.LookupListener) anno 1 org.netbeans.api.annotations.common.NonNull() meth public static void removeTestingProvidersListener(org.openide.util.LookupListener) anno 1 org.netbeans.api.annotations.common.NonNull() supr java.lang.Object hfds LOGGER,TESTING_PROVIDERS CLSS public abstract interface org.netbeans.modules.php.spi.testing.PhpTestingProvider innr public abstract interface static !annotation Registration meth public abstract boolean isCoverageSupported(org.netbeans.modules.php.api.phpmodule.PhpModule) anno 1 org.netbeans.api.annotations.common.NonNull() meth public abstract boolean isTestCase(org.netbeans.modules.php.api.phpmodule.PhpModule,org.netbeans.modules.php.api.editor.PhpType$Method) anno 1 org.netbeans.api.annotations.common.NonNull() anno 2 org.netbeans.api.annotations.common.NonNull() meth public abstract boolean isTestFile(org.netbeans.modules.php.api.phpmodule.PhpModule,org.openide.filesystems.FileObject) anno 1 org.netbeans.api.annotations.common.NonNull() anno 2 org.netbeans.api.annotations.common.NonNull() meth public abstract java.lang.String getDisplayName() meth public abstract java.lang.String getIdentifier() meth public abstract org.netbeans.modules.php.spi.testing.create.CreateTestsResult createTests(org.netbeans.modules.php.api.phpmodule.PhpModule,java.util.List<org.openide.filesystems.FileObject>,java.util.Map<java.lang.String,java.lang.Object>) anno 1 org.netbeans.api.annotations.common.NonNull() anno 2 org.netbeans.api.annotations.common.NonNull() anno 3 org.netbeans.api.annotations.common.NonNull() meth public abstract org.netbeans.modules.php.spi.testing.locate.Locations$Line parseFileFromOutput(java.lang.String) anno 0 org.netbeans.api.annotations.common.CheckForNull() meth public abstract org.netbeans.modules.php.spi.testing.locate.TestLocator getTestLocator(org.netbeans.modules.php.api.phpmodule.PhpModule) anno 1 org.netbeans.api.annotations.common.NonNull() meth public abstract org.netbeans.spi.project.ui.support.ProjectCustomizer$CompositeCategoryProvider createCustomizer(org.netbeans.modules.php.api.phpmodule.PhpModule) anno 0 org.netbeans.api.annotations.common.CheckForNull() anno 1 org.netbeans.api.annotations.common.NonNull() meth public abstract void runTests(org.netbeans.modules.php.api.phpmodule.PhpModule,org.netbeans.modules.php.spi.testing.run.TestRunInfo,org.netbeans.modules.php.spi.testing.run.TestSession) throws org.netbeans.modules.php.spi.testing.run.TestRunException anno 1 org.netbeans.api.annotations.common.NonNull() anno 2 org.netbeans.api.annotations.common.NonNull() anno 3 org.netbeans.api.annotations.common.NonNull() CLSS public abstract interface static !annotation org.netbeans.modules.php.spi.testing.PhpTestingProvider$Registration outer org.netbeans.modules.php.spi.testing.PhpTestingProvider anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=SOURCE) anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[TYPE, METHOD]) intf java.lang.annotation.Annotation meth public abstract !hasdefault int position() CLSS public abstract interface org.netbeans.modules.php.spi.testing.PhpTestingProviders meth public abstract java.util.List<org.netbeans.modules.php.spi.testing.PhpTestingProvider> getEnabledTestingProviders() CLSS public abstract interface org.netbeans.modules.php.spi.testing.coverage.Coverage innr public abstract interface static File innr public abstract interface static Line meth public abstract java.util.List<org.netbeans.modules.php.spi.testing.coverage.Coverage$File> getFiles() CLSS public abstract interface static org.netbeans.modules.php.spi.testing.coverage.Coverage$File outer org.netbeans.modules.php.spi.testing.coverage.Coverage meth public abstract java.lang.String getPath() meth public abstract java.util.List<org.netbeans.modules.php.spi.testing.coverage.Coverage$Line> getLines() meth public abstract org.netbeans.modules.php.spi.testing.coverage.FileMetrics getMetrics() CLSS public abstract interface static org.netbeans.modules.php.spi.testing.coverage.Coverage$Line outer org.netbeans.modules.php.spi.testing.coverage.Coverage meth public abstract int getHitCount() meth public abstract int getNumber() CLSS public abstract interface org.netbeans.modules.php.spi.testing.coverage.FileMetrics meth public abstract int getCoveredStatements() meth public abstract int getLineCount() meth public abstract int getStatements() CLSS public final org.netbeans.modules.php.spi.testing.create.CreateTestsResult cons public init(java.util.Set<org.openide.filesystems.FileObject>,java.util.Set<org.openide.filesystems.FileObject>) meth public java.util.Set<org.openide.filesystems.FileObject> getFailed() meth public java.util.Set<org.openide.filesystems.FileObject> getSucceeded() supr java.lang.Object hfds failed,succeeded CLSS public final org.netbeans.modules.php.spi.testing.create.CreateTestsSupport meth public boolean isEnabled() meth public java.lang.Object[] getTestSourceRoots(java.util.Collection<org.netbeans.api.project.SourceGroup>,org.openide.filesystems.FileObject) anno 1 org.netbeans.api.annotations.common.NonNull() anno 2 org.netbeans.api.annotations.common.NonNull() meth public org.netbeans.modules.gsf.testrunner.ui.spi.TestCreatorConfiguration createEmptyConfiguration(java.lang.String) anno 1 org.netbeans.api.annotations.common.NonNull() meth public org.netbeans.modules.php.api.phpmodule.PhpModule getPhpModule() anno 0 org.netbeans.api.annotations.common.CheckForNull() meth public static org.netbeans.modules.php.spi.testing.create.CreateTestsSupport create(org.netbeans.modules.php.spi.testing.PhpTestingProvider,org.openide.filesystems.FileObject[]) anno 1 org.netbeans.api.annotations.common.NonNull() anno 2 org.netbeans.api.annotations.common.NonNull() meth public void createTests(java.util.Map<java.lang.String,java.lang.Object>) supr java.lang.Object hfds LOGGER,RP,activatedFileObjects,phpModule,project,testingProvider CLSS public final org.netbeans.modules.php.spi.testing.locate.Locations innr public final static Line innr public final static Offset supr java.lang.Object CLSS public final static org.netbeans.modules.php.spi.testing.locate.Locations$Line outer org.netbeans.modules.php.spi.testing.locate.Locations cons public init(org.openide.filesystems.FileObject,int) anno 1 org.netbeans.api.annotations.common.NonNull() meth public int getLine() meth public java.lang.String toString() meth public org.openide.filesystems.FileObject getFile() supr java.lang.Object hfds file,line CLSS public final static org.netbeans.modules.php.spi.testing.locate.Locations$Offset outer org.netbeans.modules.php.spi.testing.locate.Locations cons public init(org.openide.filesystems.FileObject,int) anno 1 org.netbeans.api.annotations.common.NonNull() meth public int getOffset() meth public java.lang.String toString() meth public org.openide.filesystems.FileObject getFile() supr java.lang.Object hfds file,offset CLSS public abstract interface org.netbeans.modules.php.spi.testing.locate.TestLocator meth public abstract java.util.Set<org.netbeans.modules.php.spi.testing.locate.Locations$Offset> findSources(org.openide.filesystems.FileObject) meth public abstract java.util.Set<org.netbeans.modules.php.spi.testing.locate.Locations$Offset> findTests(org.openide.filesystems.FileObject) CLSS public abstract interface org.netbeans.modules.php.spi.testing.run.OutputLineHandler meth public abstract void handleLine(org.openide.windows.OutputWriter,java.lang.String) CLSS public abstract interface org.netbeans.modules.php.spi.testing.run.TestCase innr public final static !enum Status innr public final static Diff meth public abstract void setClassName(java.lang.String) anno 1 org.netbeans.api.annotations.common.NonNull() meth public abstract void setFailureInfo(java.lang.String,java.lang.String[],boolean,org.netbeans.modules.php.spi.testing.run.TestCase$Diff) anno 1 org.netbeans.api.annotations.common.NonNull() anno 2 org.netbeans.api.annotations.common.NonNull() anno 4 org.netbeans.api.annotations.common.NonNull() meth public abstract void setLocation(org.netbeans.modules.php.spi.testing.locate.Locations$Line) anno 1 org.netbeans.api.annotations.common.NonNull() meth public abstract void setStatus(org.netbeans.modules.php.spi.testing.run.TestCase$Status) anno 1 org.netbeans.api.annotations.common.NonNull() meth public abstract void setTime(long) CLSS public final static org.netbeans.modules.php.spi.testing.run.TestCase$Diff outer org.netbeans.modules.php.spi.testing.run.TestCase cons public init(java.lang.String,java.lang.String) anno 1 org.netbeans.api.annotations.common.NullAllowed() anno 2 org.netbeans.api.annotations.common.NullAllowed() cons public init(java.util.concurrent.Callable<java.lang.String>,java.util.concurrent.Callable<java.lang.String>) anno 1 org.netbeans.api.annotations.common.NullAllowed() anno 2 org.netbeans.api.annotations.common.NullAllowed() fld public final static org.netbeans.modules.php.spi.testing.run.TestCase$Diff NOT_KNOWN meth public boolean isValid() meth public java.lang.String getActual() anno 0 org.netbeans.api.annotations.common.CheckForNull() meth public java.lang.String getExpected() anno 0 org.netbeans.api.annotations.common.CheckForNull() meth public java.lang.String toString() supr java.lang.Object hfds LOGGER,actual,actualTask,expected,expectedTask CLSS public final static !enum org.netbeans.modules.php.spi.testing.run.TestCase$Status outer org.netbeans.modules.php.spi.testing.run.TestCase fld public final static org.netbeans.modules.php.spi.testing.run.TestCase$Status ABORTED fld public final static org.netbeans.modules.php.spi.testing.run.TestCase$Status ERROR fld public final static org.netbeans.modules.php.spi.testing.run.TestCase$Status FAILED fld public final static org.netbeans.modules.php.spi.testing.run.TestCase$Status IGNORED fld public final static org.netbeans.modules.php.spi.testing.run.TestCase$Status PASSED fld public final static org.netbeans.modules.php.spi.testing.run.TestCase$Status PASSEDWITHERRORS fld public final static org.netbeans.modules.php.spi.testing.run.TestCase$Status PENDING fld public final static org.netbeans.modules.php.spi.testing.run.TestCase$Status SKIPPED meth public static org.netbeans.modules.php.spi.testing.run.TestCase$Status valueOf(java.lang.String) meth public static org.netbeans.modules.php.spi.testing.run.TestCase$Status[] values() supr java.lang.Enum<org.netbeans.modules.php.spi.testing.run.TestCase$Status> CLSS public org.netbeans.modules.php.spi.testing.run.TestRunException cons public init() cons public init(java.lang.String) cons public init(java.lang.String,java.lang.Throwable) cons public init(java.lang.Throwable) supr java.lang.Exception hfds serialVersionUID CLSS public final org.netbeans.modules.php.spi.testing.run.TestRunInfo innr public final static !enum SessionType innr public final static Builder innr public final static TestInfo meth public <%0 extends java.lang.Object> {%%0} getParameter(java.lang.String,java.lang.Class<{%%0}>) meth public boolean allTests() meth public boolean isCoverageEnabled() meth public boolean isRerun() meth public java.lang.String getSuiteName() anno 0 org.netbeans.api.annotations.common.CheckForNull() meth public java.util.List<org.netbeans.modules.php.spi.testing.run.TestRunInfo$TestInfo> getCustomTests() meth public java.util.List<org.openide.filesystems.FileObject> getStartFiles() meth public org.netbeans.modules.php.spi.testing.run.TestRunInfo$SessionType getSessionType() meth public void removeParameter(java.lang.String) meth public void resetCustomTests() meth public void setCustomTests(java.util.Collection<org.netbeans.modules.php.spi.testing.run.TestRunInfo$TestInfo>) meth public void setInitialTests(java.util.Collection<org.netbeans.modules.php.spi.testing.run.TestRunInfo$TestInfo>) meth public void setParameter(java.lang.String,java.lang.Object) meth public void setRerun(boolean) supr java.lang.Object hfds coverageEnabled,customTests,initialTests,parameters,rerun,sessionType,startFiles,suiteName CLSS public final static org.netbeans.modules.php.spi.testing.run.TestRunInfo$Builder outer org.netbeans.modules.php.spi.testing.run.TestRunInfo cons public init() meth public org.netbeans.modules.php.spi.testing.run.TestRunInfo build() meth public org.netbeans.modules.php.spi.testing.run.TestRunInfo$Builder setCoverageEnabled(boolean) meth public org.netbeans.modules.php.spi.testing.run.TestRunInfo$Builder setSessionType(org.netbeans.modules.php.spi.testing.run.TestRunInfo$SessionType) anno 1 org.netbeans.api.annotations.common.NonNull() meth public org.netbeans.modules.php.spi.testing.run.TestRunInfo$Builder setStartFile(org.openide.filesystems.FileObject) anno 1 org.netbeans.api.annotations.common.NonNull() meth public org.netbeans.modules.php.spi.testing.run.TestRunInfo$Builder setStartFiles(java.util.List<org.openide.filesystems.FileObject>) anno 1 org.netbeans.api.annotations.common.NonNull() meth public org.netbeans.modules.php.spi.testing.run.TestRunInfo$Builder setSuiteName(java.lang.String) anno 1 org.netbeans.api.annotations.common.NullAllowed() supr java.lang.Object hfds coverageEnabled,sessionType,startFiles,suiteName CLSS public final static !enum org.netbeans.modules.php.spi.testing.run.TestRunInfo$SessionType outer org.netbeans.modules.php.spi.testing.run.TestRunInfo fld public final static org.netbeans.modules.php.spi.testing.run.TestRunInfo$SessionType DEBUG fld public final static org.netbeans.modules.php.spi.testing.run.TestRunInfo$SessionType TEST meth public static org.netbeans.modules.php.spi.testing.run.TestRunInfo$SessionType valueOf(java.lang.String) meth public static org.netbeans.modules.php.spi.testing.run.TestRunInfo$SessionType[] values() supr java.lang.Enum<org.netbeans.modules.php.spi.testing.run.TestRunInfo$SessionType> CLSS public final static org.netbeans.modules.php.spi.testing.run.TestRunInfo$TestInfo outer org.netbeans.modules.php.spi.testing.run.TestRunInfo cons public init(java.lang.String,java.lang.String,java.lang.String,java.lang.String) anno 3 org.netbeans.api.annotations.common.NullAllowed() anno 4 org.netbeans.api.annotations.common.NullAllowed() fld public final static java.lang.String UNKNOWN_TYPE = "UNKNOWN_TYPE" meth public java.lang.String getClassName() anno 0 org.netbeans.api.annotations.common.CheckForNull() meth public java.lang.String getLocation() anno 0 org.netbeans.api.annotations.common.CheckForNull() meth public java.lang.String getName() meth public java.lang.String getType() meth public java.lang.String toString() supr java.lang.Object hfds className,location,name,type CLSS public abstract interface org.netbeans.modules.php.spi.testing.run.TestSession meth public abstract org.netbeans.modules.php.spi.testing.run.TestSuite addTestSuite(java.lang.String,org.openide.filesystems.FileObject) anno 1 org.netbeans.api.annotations.common.NonNull() anno 2 org.netbeans.api.annotations.common.NullAllowed() meth public abstract void printMessage(java.lang.String,boolean) anno 1 org.netbeans.api.annotations.common.NonNull() meth public abstract void setCoverage(org.netbeans.modules.php.spi.testing.coverage.Coverage) anno 1 org.netbeans.api.annotations.common.NullAllowed() meth public abstract void setOutputLineHandler(org.netbeans.modules.php.spi.testing.run.OutputLineHandler) anno 1 org.netbeans.api.annotations.common.NonNull() CLSS public abstract interface org.netbeans.modules.php.spi.testing.run.TestSuite meth public abstract org.netbeans.modules.php.spi.testing.run.TestCase addTestCase(java.lang.String,java.lang.String) anno 1 org.netbeans.api.annotations.common.NonNull() anno 2 org.netbeans.api.annotations.common.NonNull() meth public abstract void finish(long)
Standard ML
2
timfel/netbeans
php/php.api.testing/nbproject/org-netbeans-modules-php-api-testing.sig
[ "Apache-2.0" ]
// // Copyright (c) XSharp B.V. All Rights Reserved. // Licensed under the Apache License, Version 2.0. // See License.txt in the project root for license information. // /// <summary> /// Convert a string to a Symbol. /// </summary> /// <param name="c"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION String2Atom(c AS STRING) AS SYMBOL RETURN SYMBOL{c, FALSE} /// <summary> /// Convert a string to an uppercase Symbol. /// </summary> /// <param name="c"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION String2Symbol(c AS STRING) AS SYMBOL RETURN SYMBOL{c, TRUE} /// <summary> /// Convert a symbol to string /// </summary> /// <param name="s"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION Symbol2String(s AS SYMBOL) AS STRING RETURN s:ToString() /// <summary> /// Concatenate two Symbols. /// </summary> /// <param name="s1"></param> /// <param name="s2"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION ConcatAtom(s1 AS SYMBOL,s2 AS SYMBOL) AS SYMBOL RETURN SYMBOL{ s1:ToString()+ s2:ToString()} /// <summary> /// Concatenate three Symbols. /// </summary> /// <param name="s1"></param> /// <param name="s2"></param> /// <param name="s3"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION ConcatAtom3(s1 AS SYMBOL,s2 AS SYMBOL,s3 AS SYMBOL) AS SYMBOL RETURN SYMBOL{ s1:ToString() +s2:ToString() +s3:ToString() } /// <summary> /// </summary> /// <param name="s1"></param> /// <param name="s2"></param> /// <param name="s3"></param> /// <param name="s4"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION ConcatAtom4(s1 AS SYMBOL,s2 AS SYMBOL,s3 AS SYMBOL,s4 AS SYMBOL) AS SYMBOL RETURN SYMBOL{ s1:ToString() +s2:ToString() +s3:ToString() +s4:ToString() } /// <summary> /// </summary> /// <param name="s1"></param> /// <param name="s2"></param> /// <param name="s3"></param> /// <param name="s4"></param> /// <param name="s5"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION ConcatAtom5(s1 AS SYMBOL,s2 AS SYMBOL,s3 AS SYMBOL,s4 AS SYMBOL,s5 AS SYMBOL) AS SYMBOL RETURN SYMBOL{ s1:ToString() +s2:ToString() +s3:ToString() +s4:ToString() +s5:ToString()} /// <summary> /// Determine the number of Symbols in the atom table. /// </summary> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION MaxAtom() AS DWORD RETURN (DWORD) __Symbol.SymbolTable.Strings:Count /// <summary> /// </summary> /// <param name="s1"></param> /// <param name="s2"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION SysCompAtom(s1 AS SYMBOL,s2 AS SYMBOL) AS INT RETURN __StringCompare(s1:ToString(), s2:ToString()) /// <summary> /// Convert a null-terminated string to a Symbol and add it to the atom table. /// </summary> /// <param name="s"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION SysAddAtom(s AS STRING) AS SYMBOL RETURN SYMBOL { s, FALSE} /// <summary> /// Convert a null-terminated string to a Symbol and add it to the atom table. /// </summary> /// <param name="p"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION SysAddAtom(p AS PSZ) AS SYMBOL RETURN SYMBOL { Psz2String(p), FALSE} /// <summary> /// Convert a null-terminated string to an uppercase Symbol and add it to the atom table. /// </summary> /// <param name="s"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION SysAddAtomUpperA(s AS STRING) AS SYMBOL RETURN SYMBOL { s, TRUE} /// <summary> /// Convert a null-terminated string to an uppercase Symbol and add it to the atom table. /// </summary> /// <param name="p"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION SysAddAtomUpperA(p AS PSZ) AS SYMBOL RETURN SYMBOL { Psz2String(p), TRUE} /// <summary> /// Determine whether a Symbol is in the atom table. /// </summary> /// <param name="p"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION SysFindAtom(s AS STRING) AS SYMBOL RETURN __Symbol.Find(s) /// <summary> /// Determine whether a Symbol is in the atom table. /// </summary> /// <param name="p"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION SysFindAtom(p AS PSZ) AS SYMBOL RETURN __Symbol.Find(Psz2String(p)) /// <summary> /// Convert a Symbol to a null-terminated string. /// </summary> /// <param name="s"></param> /// <returns> /// </returns> /// <include file="RTComments.xml" path="Comments/Symbol/*" /> FUNCTION SysGetAtomName(s AS SYMBOL) AS PSZ RETURN s:SysGetAtomName()
xBase
4
JohanNel/XSharpPublic
Runtime/XSharp.RT/Functions/Symbol.prg
[ "Apache-2.0" ]
# vcpkg completions for fish set vcpkg_executable (string split -m1 ' ' (commandline -cb))[1] function _vcpkg_completions set arg (string split -m1 ' ' (commandline -cb))[2] set curr_token (commandline -t) if [ -n $arg ] if [ -z $curr_token ] set arg $arg " " end end for key in ($vcpkg_executable autocomplete "$arg" -- 2>/dev/null) echo $key end end complete -c vcpkg -f --arguments '(_vcpkg_completions)' set vcpkg_commands ($vcpkg_executable autocomplete) function _set_triplet_arguments set triplets ($vcpkg_executable help triplet) set -e triplets[(contains -i -- "Available architecture triplets" $triplets)] set -e triplets[(contains -i -- "" $triplets)] set triplet_from "" for triplet in $triplets echo (test -n "$triplet") >> temp.txt if [ (string sub -l5 -- $triplet) = "VCPKG" ] set -l temp (string length $triplet) set triplet_from (string sub -s6 -l(math $temp - 15) -- $triplet) else if [ -n "$triplet" ] complete -c vcpkg -n "__fish_seen_subcommand_from $vcpkg_commands" -x -l triplet -d "$triplet_from" -a (string sub -s3 -- $triplet) end end end _set_triplet_arguments # options for all completions complete -c vcpkg -n "__fish_seen_subcommand_from $vcpkg_commands" -x -l triplet -d "Specify the target architecture triplet. See 'vcpkg help triplet' (default: \$VCPKG_DEFAULT_TRIPLET)" complete -c vcpkg -n "__fish_seen_subcommand_from $vcpkg_commands" -x -l overlay-ports -d "Specify directories to be used when searching for ports (also: \$VCPKG_OVERLAY_PORTS)" -a '(__fish_complete_directories)' complete -c vcpkg -n "__fish_seen_subcommand_from $vcpkg_commands" -x -l overlay-triplets -d "Specify directories containing triplets files (also: \$VCPKG_OVERLAY_TRIPLETS)" -a '(__fish_complete_directories)' complete -c vcpkg -n "__fish_seen_subcommand_from $vcpkg_commands" -x -l binarysource -d "Add sources for binary caching. See 'vcpkg help binarycaching'" -a '(__fish_complete_directories)' complete -c vcpkg -n "__fish_seen_subcommand_from $vcpkg_commands" -x -l downloads-root -d "Specify the downloads root directory (default: \$VCPKG_DOWNLOADS)" -a '(__fish_complete_directories)' complete -c vcpkg -n "__fish_seen_subcommand_from $vcpkg_commands" -x -l vcpkg-root -d "Specify the vcpkg root directory (default: \$VCPKG_ROOT)" -a '(__fish_complete_directories)' # options for install complete -c vcpkg -n "__fish_seen_subcommand_from install" -f -l dry-run -d "Do not actually build or install" complete -c vcpkg -n "__fish_seen_subcommand_from install" -f -l head -d "Install the libraries on the command line using the latest upstream sources" complete -c vcpkg -n "__fish_seen_subcommand_from install" -f -l no-downloads -d "Do not download new sources" complete -c vcpkg -n "__fish_seen_subcommand_from install" -f -l only-downloads -d "Download sources but don't build packages" complete -c vcpkg -n "__fish_seen_subcommand_from install" -f -l recurse -d "Allow removal of packages as part of installation" complete -c vcpkg -n "__fish_seen_subcommand_from install" -f -l keep-going -d "Continue installing packages on failure" complete -c vcpkg -n "__fish_seen_subcommand_from install" -f -l editable -d "Disable source re-extraction and binary caching for libraries on the command line" complete -c vcpkg -n "__fish_seen_subcommand_from install" -f -l clean-after-build -d "Clean buildtrees, packages and downloads after building each package" # options for edit complete -c vcpkg -n "__fish_seen_subcommand_from edit" -f -l buildtrees -d "Open editor into the port-specific buildtree subfolder" complete -c vcpkg -n "__fish_seen_subcommand_from edit" -f -l all -d "Open editor into the port as well as the port-specific buildtree subfolder" # options for export complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -l dry-run -d "Do not actually export" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -l raw -d "Export to an uncompressed directory" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -l nuget -d "Export a NuGet package" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -l ifw -d "Export to an IFW-based installer" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -l zip -d "Export to a zip file" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -l 7zip -d "Export to a 7zip (.7z) file" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -l prefab -d "Export to Prefab format" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -l prefab-maven -d "Enable maven" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -l prefab-debug -d "Enable prefab debug" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l output -d "Specify the output name (used to construct filename)" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l output-dir -d "Specify the output directory for produced artifacts" -a '(__fish_complete_directories)' complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l nuget-id -d "Specify the id for the exported NuGet package (overrides --output)" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l nuget-version -d "Specify the version for the exported NuGet package" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l ifw-repository-url -d "Specify the remote repository URL for the online installer" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l ifw-packages-directory-path -d "Specify the temporary directory path for the repacked packages" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l ifw-repository-directory-path -d "Specify the directory path for the exported repository" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l ifw-configuration-file-path -d "Specify the temporary file path for the installer configuration" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l ifw-installer-file-path -d "Specify the file path for the exported installer" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l prefab-group-id -d "GroupId uniquely identifies your project according maven specifications" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l prefab-artifact-id -d "Artifact Id is the name of the project according maven specifications" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l prefab-version -d "Version is the name of the project according maven specifications" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l prefab-min-sdk -d "Android minimum supported sdk version" complete -c vcpkg -n "__fish_seen_subcommand_from export" -f -r -l prefab-target-sdk -d "Android target sdk version" # options for remove complete -c vcpkg -n "__fish_seen_subcommand_from remove" -f -l purge -d "Remove the cached copy of the package (default)" complete -c vcpkg -n "__fish_seen_subcommand_from remove" -f -l no-purge -d "Do not remove the cached copy of the package (deprecated)" complete -c vcpkg -n "__fish_seen_subcommand_from remove" -f -l recurse -d "Allow removal of packages not explicitly specified on the command line" complete -c vcpkg -n "__fish_seen_subcommand_from remove" -f -l dry-run -d "Print the packages to be removed, but do not remove them" complete -c vcpkg -n "__fish_seen_subcommand_from remove" -f -l outdated -d "Select all packages with versions that do not match the portfiles" # options for upgrade complete -c vcpkg -n "__fish_seen_subcommand_from upgrade" -f -l no-dry-run -d "Actually upgrade" complete -c vcpkg -n "__fish_seen_subcommand_from upgrade" -f -l keep-going -d "Continue installing packages on failure"
fish
4
Nuclearfossil/vcpkg
scripts/vcpkg_completion.fish
[ "MIT" ]
#include "caffe2/core/context_gpu.h" #include "caffe2/operators/alias_with_name.h" namespace caffe2 { REGISTER_CUDA_OPERATOR(AliasWithName, AliasWithNameOp<CUDAContext>); } // namespace caffe2 C10_EXPORT_CAFFE2_OP_TO_C10_CUDA( AliasWithName, caffe2::AliasWithNameOp<caffe2::CUDAContext>);
Cuda
3
Hacky-DH/pytorch
caffe2/operators/alias_with_name.cu
[ "Intel" ]
CLASS ControlWindow INHERIT Window PROTECT oCtrl AS Control PROTECT oSurface AS VOSurfacePanel ACCESS __Surface AS IVOControlContainer RETURN oSurface ACCESS Control AS Control RETURN oCtrl ACCESS ControlID AS LONG RETURN oCtrl:ControlID METHOD Destroy() AS USUAL IF oCtrl:__IsValid oCtrl:Destroy() ENDIF RETURN SUPER:Destroy() METHOD Disable() AS VOID IF oCtrl:__IsValid oCtrl:Disable() ENDIF RETURN METHOD Enable() AS VOID IF oCtrl:__IsValid oCtrl:Enable() ENDIF RETURN METHOD Hide() AS VOID STRICT oSurface:Hide() RETURN ACCESS HyperLabel AS HyperLabel RETURN oCtrl:HyperLabel CONSTRUCTOR(oControl) IF !IsInstanceOfUsual(oControl,#Control) WCError{#Init,#ControlWindow,__WCSTypeError,oControl,1}:@@Throw() ENDIF oCtrl := oControl SUPER((OBJECT) oCtrl:Owner) oCtrl:ValidateControl() oSurface := GuiFactory.Instance:CreateSurfacePanel(SELF) oSurface:Text := "Surface "+oCtrl:Caption oCtrl:__ControlWindow := SELF oSurface:Dock := System.Windows.Forms.DockStyle.Fill oSurface:AddControl(oCtrl:__Control) oSurface:Visible := TRUE RETURN ACCESS Modified AS LOGIC IF oCtrl:__IsValid RETURN oCtrl:Modified ENDIF RETURN FALSE ASSIGN Modified(lChanged AS LOGIC) IF oCtrl:__IsValid oCtrl:Modified := lChanged ENDIF ACCESS Origin AS Point IF oCtrl:__IsValid RETURN oCtrl:Origin ENDIF RETURN SUPER:Origin ASSIGN Origin(oPoint AS Point) IF oCtrl:__IsValid oCtrl:Origin := oPoint ENDIF METHOD Override() RETURN NIL METHOD SetFocus() AS VOID STRICT IF oCtrl:__IsValid oCtrl:SetFocus() ENDIF RETURN METHOD Show(nShowState AS LONG ) AS VOID oSurface:Show() RETURN ACCESS Size AS Dimension IF oCtrl:__IsValid RETURN oCtrl:Size ENDIF RETURN SUPER:Size ASSIGN Size(oDimension AS Dimension) IF oCtrl:__IsValid oCtrl:Size := oDimension ENDIF END CLASS
xBase
4
orangesocks/XSharpPublic
Runtime/VOSdkTyped/Source/VOSdk/GUI_Classes_SDK/Windows/ControlWindow.prg
[ "Apache-2.0" ]
functions { real model_log_dens( int[] deaths_slice, int start, int end, //pars vector logit_p_avg, // data int[] casesM ) { int n; real lpmf; int N_slice; lpmf = 0.0; N_slice = end - start + 1; for(n_slice in 1:N_slice) { n = n_slice + start - 1; lpmf += binomial_logit_lpmf(deaths_slice[n] | casesM[n], logit_p_avg[n]); } return( lpmf ); } } data { int<lower=0> N; // number of observations int<lower=0> M; // number of studies int deaths[N]; // number of deaths int casesM[N]; // numnber of cases, midpoint estimate vector<lower=0>[N] age_study; // age midpoints int<lower=1,upper=M> study[N]; } transformed data { int<lower=0> A=9; // number of age bands int<lower=0> N_predict=101; int age_band_obs[N]; vector<lower=0>[N_predict] age_predict; int age_band_predict[N_predict]; //A= 9; //N_predict= 101; for(i in 1:N) { if(age_study[i]<10) age_band_obs[i] = 1; else if(age_study[i]<20) age_band_obs[i] = 2; else if(age_study[i]<30) age_band_obs[i] = 3; else if(age_study[i]<40) age_band_obs[i] = 4; else if(age_study[i]<50) age_band_obs[i] = 5; else if(age_study[i]<60) age_band_obs[i] = 6; else if(age_study[i]<70) age_band_obs[i] = 7; else if(age_study[i]<80) age_band_obs[i] = 8; else age_band_obs[i] = 9; } print(age_band_obs); for(i in 1:N_predict) { age_predict[i] = i-1; } for(i in 1:N_predict) { if(age_predict[i]<10) age_band_predict[i] = 1; else if(age_predict[i]<20) age_band_predict[i] = 2; else if(age_predict[i]<30) age_band_predict[i] = 3; else if(age_predict[i]<40) age_band_predict[i] = 4; else if(age_predict[i]<50) age_band_predict[i] = 5; else if(age_predict[i]<60) age_band_predict[i] = 6; else if(age_predict[i]<70) age_band_predict[i] = 7; else if(age_predict[i]<80) age_band_predict[i] = 8; else age_band_predict[i] = 9; } print(age_band_predict); } parameters { real alpha; real beta; real<lower=0> study_rnde_sd; vector[M] study_rnde; real<lower=0> age_rnde_sd; vector[A] age_rnde; } transformed parameters { vector[N] logit_p_avg; logit_p_avg = alpha + age_rnde[age_band_obs] + beta * age_study + study_rnde[study]; } model { target += normal_lpdf( alpha | 0, 20); target += normal_lpdf( beta | 0, 1); target += exponential_lpdf( study_rnde_sd | 10); target += normal_lpdf( study_rnde | 0, study_rnde_sd); target += exponential_lpdf( age_rnde_sd | 10); target += normal_lpdf( age_rnde | 0, age_rnde_sd); //log lkl rstan version target += model_log_dens(deaths, 1, N, //log lkl cmdstan version //target += reduce_sum(model_log_dens, deaths, 1, // pars logit_p_avg, // data casesM ); } generated quantities { vector<lower=0, upper=1>[N_predict] p_predict; int pred_deaths[N_predict]; p_predict = inv_logit( alpha + age_rnde[age_band_predict] + beta * age_predict ); pred_deaths = binomial_rng(rep_array(10000000, N_predict), p_predict); }
Stan
4
viniciuszendron/covid19model
covid19AgeModel/inst/ifr-by-age/base_age_prior_ifr_200820b1_cmdstanv.stan
[ "MIT" ]
/* * Copyright 2012-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://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.springframework.boot.loader.jar; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.io.TempDir; import org.springframework.boot.loader.TestJarCreator; import org.springframework.boot.loader.data.RandomAccessData; import org.springframework.boot.loader.data.RandomAccessDataFile; import static org.assertj.core.api.Assertions.assertThat; /** * Tests for {@link CentralDirectoryParser}. * * @author Phillip Webb */ class CentralDirectoryParserTests { private File jarFile; private RandomAccessDataFile jarData; @BeforeEach void setup(@TempDir File tempDir) throws Exception { this.jarFile = new File(tempDir, "test.jar"); TestJarCreator.createTestJar(this.jarFile); this.jarData = new RandomAccessDataFile(this.jarFile); } @AfterEach void tearDown() throws IOException { this.jarData.close(); } @Test void visitsInOrder() throws Exception { MockCentralDirectoryVisitor visitor = new MockCentralDirectoryVisitor(); CentralDirectoryParser parser = new CentralDirectoryParser(); parser.addVisitor(visitor); parser.parse(this.jarData, false); List<String> invocations = visitor.getInvocations(); assertThat(invocations).startsWith("visitStart").endsWith("visitEnd").contains("visitFileHeader"); } @Test void visitRecords() throws Exception { Collector collector = new Collector(); CentralDirectoryParser parser = new CentralDirectoryParser(); parser.addVisitor(collector); parser.parse(this.jarData, false); Iterator<CentralDirectoryFileHeader> headers = collector.getHeaders().iterator(); assertThat(headers.next().getName().toString()).isEqualTo("META-INF/"); assertThat(headers.next().getName().toString()).isEqualTo("META-INF/MANIFEST.MF"); assertThat(headers.next().getName().toString()).isEqualTo("1.dat"); assertThat(headers.next().getName().toString()).isEqualTo("2.dat"); assertThat(headers.next().getName().toString()).isEqualTo("d/"); assertThat(headers.next().getName().toString()).isEqualTo("d/9.dat"); assertThat(headers.next().getName().toString()).isEqualTo("special/"); assertThat(headers.next().getName().toString()).isEqualTo("special/\u00EB.dat"); assertThat(headers.next().getName().toString()).isEqualTo("nested.jar"); assertThat(headers.next().getName().toString()).isEqualTo("another-nested.jar"); assertThat(headers.next().getName().toString()).isEqualTo("space nested.jar"); assertThat(headers.next().getName().toString()).isEqualTo("multi-release.jar"); assertThat(headers.hasNext()).isFalse(); } static class Collector implements CentralDirectoryVisitor { private List<CentralDirectoryFileHeader> headers = new ArrayList<>(); @Override public void visitStart(CentralDirectoryEndRecord endRecord, RandomAccessData centralDirectoryData) { } @Override public void visitFileHeader(CentralDirectoryFileHeader fileHeader, long dataOffset) { this.headers.add(fileHeader.clone()); } @Override public void visitEnd() { } List<CentralDirectoryFileHeader> getHeaders() { return this.headers; } } static class MockCentralDirectoryVisitor implements CentralDirectoryVisitor { private final List<String> invocations = new ArrayList<>(); @Override public void visitStart(CentralDirectoryEndRecord endRecord, RandomAccessData centralDirectoryData) { this.invocations.add("visitStart"); } @Override public void visitFileHeader(CentralDirectoryFileHeader fileHeader, long dataOffset) { this.invocations.add("visitFileHeader"); } @Override public void visitEnd() { this.invocations.add("visitEnd"); } List<String> getInvocations() { return this.invocations; } } }
Java
4
techAi007/spring-boot
spring-boot-project/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/jar/CentralDirectoryParserTests.java
[ "Apache-2.0" ]
// ignore_for_file: avoid_equals_and_hash_code_on_mutable_classes import 'package:bloc/bloc.dart'; abstract class CounterEvent {} class Increment extends CounterEvent { @override bool operator ==(Object value) { if (identical(this, value)) return true; return value is Increment; } @override int get hashCode => 0; } const delay = Duration(milliseconds: 30); Future<void> wait() => Future.delayed(delay); Future<void> tick() => Future.delayed(Duration.zero); class CounterBloc extends Bloc<CounterEvent, int> { CounterBloc(EventTransformer<Increment> transformer) : super(0) { on<Increment>( (event, emit) { onCalls.add(event); return Future<void>.delayed(delay, () { if (emit.isDone) return; onEmitCalls.add(event); emit(state + 1); }); }, transformer: transformer, ); } final onCalls = <CounterEvent>[]; final onEmitCalls = <CounterEvent>[]; }
Dart
4
Rukkaitto/bloc
packages/bloc_concurrency/test/src/helpers.dart
[ "MIT" ]
In Tiger Creek Street, <MASK_REP> Community, residents are using their phones to scan two-dimensional code, log in to fill in the information. <MASK_REP> , the more in such a key stage, more to stick to the end; The more victory is in sight, the less we can relax our efforts and slacken our efforts. We will never stop until we win a victory. There were 64,284 <MASK_REP> patients, increasing 398 cases, increasing rate 0.6%. Han Tai Town People's Government a staff response, the river usually no water, this is the higher unified development of the south-to-north water diversion, so that water through the dry river, an ecological <MASK_REP> replenishment. "Residents do not pay property fees, residential property management operation due to lack of funds and the absence of management <MASK_REP> , in the long run, it formed a vicious circle." Chen Meng is the first to encounter the rotation of serve situation, she said although the umpire <MASK_REP> board disrupted their rhythm, but also a valuable experience accumulation. In recent years, the precipitation in Jiaodong region has been less, and the Shandong section has been transferred water for 4 times to fight drought <MASK_REP> . Rubio to Become Acting Chairman of <MASK_REP> Senate Intelligence Committee In order to provide the people with all-round, full cycle health services, Zhuzhou City also actively explore the "Internet + medical health" work, promote <MASK_REP> business information. But as the Chinese marking group composition group head teacher Chen Jianxin <MASK_REP> candidates and marking details, a serious violation of marking work discipline. Liu Zhimin, general manager of China Eastern Airlines Flight Technology Management Department, told reporters that this year, affected by the epidemic, the <MASK_REP> generally reduced flying time. They take the initiative to give up the Spring Festival break, <MASK_REP> up a volunteer service team, in the outpatient hall, pre-examination triage and other places, or to help guide patients, or help patients to inquire. To keep the children's small table even, I scooped a <MASK_REP> in the weeds and withdrew to wait.” Hou Jinlin introduced that after optimization, aMAP score only needs to pass the patient's age, gender, platelet, albumin and bilirubin level and other five common test indicators, can help doctors judge <MASK_REP> possibility of liver cancer in patients. As of April 1, 15 countries, including Chile, Argentina, Ecuador, Peru, Panama, Colombia, Brazil and Mexico, have declared <MASK_REP> national health emergency or a state of public disaster, completely or partially closing their land, sea and air borders. He said, in the days ahead, I will take seriously every question raised by you, and provide you with the help you can, <MASK_REP> also look forward to getting your understanding and support. The Action Plan proposes that by 2023, Guangzhou's tourism industry will receive more than <MASK_REP> million tourists a year, the tourism industry's annual gross income will exceed 50 million million yuan, and the added value of tourism industry accounts for more than 7 percent of the city's GDP. Days of torrential rain let Boluo County hit many areas, some areas of water 1.5 meters deep, <MASK_REP> waterlogging and people trapped phenomenon. Cao Yisha West China Metropolis Daily - Cover News Reporter <MASK_REP> Tingting And for some extreme " <MASK_REP> Chinese medicine powder" or "divine medicine," we must maintain a high degree of vigilance. <MASK_REP> Industrial support, technical support, the expansion of the industrial chain and other multi-pronged, standardized cattle breeding areas, forage cooperatives and other projects rapidly advanced. At that time, the Qing Dynasty court costumes, with fine elegant and clean Su embroidery <MASK_REP> . Yesterday, the eastern part of the northwest, northeast, south China and other parts of the cooling, provincial cities, such as Harbin, Zhengzhou <MASK_REP> Nanning, the lowest temperature has hit a low in the second half of this year. Liu Jie introduced, although there is not a student in the classroom, <MASK_REP> compared to teachers home teaching, the school's network equipment is more advanced, "board book" teaching is more conducive to interaction with students, teachers can not help but into the classroom atmosphere. In the process of resumption of production, GAC Group adhere to the principle of "not to produce an epidemic situation, nor miss the opportunity to produce a car," to avoid the occurrence of <MASK_REP> cross-infection. If the child unfortunately burns, first of all, parents should remain calm, in accordance with the "rush, off, bubble, cover, send" five-step <MASK_REP> , in order to reduce the degree of injury. President Aleksandar Vucic has said that <MASK_REP> the state of emergency, but it will not be too late because the country needs to restart the economy. A number of ice and snow teams actively seek breakthroughs in the transformation, through team restructuring, technology help, physical jousting and other innovative measures, to stabilize the pattern of preparation for <MASK_REP> the combat effectiveness of the team laid a foundation. In recent years, time-honored restaurants face many <MASK_REP> problems. Walking on the streets of Heihe, you can see a special <MASK_REP> "zebra car" test all over the streets, so that the border town lively. Bulgaria suspended flights to and from Britain from midnight, but unlike short-term measures in many other countries, the ban <MASK_REP> remained in place until January 31. "International students contribute A $38 billion ( <MASK_REP> US $27.7 billion) a year to our economy, supporting more than 130000 jobs and enriching the social fabric. Zakharova pointed out that these treaties from which the United States has withdrawn are <MASK_REP> strong guarantee of international security and stability and the cornerstone of international law as a whole. An official from the Ministry of Justice said that in order to coordinate the organization of the examination and prevention and control of epidemic diseases, in the subjective test, The Ministry of Justice has sent <MASK_REP> 60 officials at bureau and section level to form 31 inspection teams, which will conduct inspection tours of the country's test districts. Chen Guihua this just woke up from a dream, originally thought that after the detention will be safe and sound, never thought not only failed to forgive the debt, <MASK_REP> a greater crime. Foreshadowing nearly half a year later, iQiyi became the first to raise the price <MASK_REP> The village of Yamaguchi, in the southeast of the island, was <MASK_REP> one of the worst places ever hit by the wind. Yao Zengzhen, a villager in Hailong Village, Dandong City: His family takes care of him, I do not go, no one at home to take care of me just past <MASK_REP> , someone said I am stupid, say I silly silly, if others have difficulties, I will help him. Pan <MASK_REP> cited an example: If people use satellites as relay nodes, satellites hold all the keys distributed by users. With the advancement of information technology in traditional industries, the total factor productivity of the whole society has generally continued to increase, <MASK_REP> productivity in all walks of life has increased, unit production costs have fallen, the real economy sector price long-term downward trend established. How to <MASK_REP> keep and improve this ecological lifeline? For <MASK_REP> the scale of joint loans, the head of the state-owned bank's retail division said analysis. Zhang Zefeng, secretary of the Party Group and director of Hebei Sports Bureau, said that since the success of Winter Olympic Games, Hebei sports bureau <MASK_REP> continued to promote the development of ice and snow sports to the depth, out of a Hebei characteristics of the road of development. In view of the space Xinyuan is <MASK_REP> , door-to-door recycling staff will be more strict to 10 different categories of recyclable goods one by one after inspection, weighing, registration. Qinghai Power Grid employees on the way to repair rescue national secondary protection animals <MASK_REP> - CNS A long square table with <MASK_REP> , garlic seedlings, celery and other fresh vegetables in season, Next to the vegetables is written: "You, fellow villagers and neighbors, who need vegetables, please take them without charge." Also because of this, <MASK_REP> began to have a different wind direction. Soler, his former friend, described the Kunderas' lives as moving and sad, and how tough it was to move from a small language country to a large one, but he had <MASK_REP> . Preliminary estimates for 2019 show that the city's forest coverage rate has risen from 11.3 percent in 1993 to 25.83 at present, Lu said <MASK_REP> sediment into the Yellow River can reduce 699,700,000 tons. Zhang Meichun, 84, has suffered multiple brain attacks, lost sensation in her left hand, has <MASK_REP> hearing and memory and cannot remember her name. Hainan audit found that 7,289,200 yuan donation fund allocation is not timely use; Provincial level 1 charity and 3 municipal related units <MASK_REP> is not standard. Whether <MASK_REP> because he did so deliberately or because he was affected by the epidemic, the candidate, who has often been embarrassed in the past, spent most of his time out of the limelight and out of trouble. <MASK_REP> , the regular supply is basically more stable.” Yu has also said: “If New Oriental really more than 1 million students directly moved to the third-party system, their system also simply can not bear, because they also <MASK_REP> the business of many organizations outside. Xu Shan also admitted at the investor meeting on May 20, 2019, <MASK_REP> Financial Holding has serious behavior of borrowing the new to pay back the old. The gap of outstanding funds is not caused by one year, but accumulated over the past five years. As a result, the hole is getting bigger and bigger. It is reported that as a new type of civil environmental monitoring products, household PM2.5 detector <MASK_REP> has been stepping up the formulation, is expected to be introduced this year. Local commerce departments shall, in light of local realities and consumption characteristics, implement various policies and measures to promote consumption, and fully promote the "two" market consumption compensation and release potential <MASK_REP> . The seventh and eighth batch of Sichuan Hubei medical team took over the hospital's Z9 floor and Z10 floor wards as a whole, <MASK_REP> the clinical nursing treatment of severe patients. In addition, repeated calls <MASK_REP> to the Changping District Education Committee between 10 a.m. and 11: 30 a.m. and 2 p.m. and 5 p.m. on June 5 went unanswered. Reporter: Zhang Gaiping; Participating journalists: Lu Natura, Guo Jun, Wu Changwei, Xing Jianqiao, Qiao Benxiao, Li Sibo, Gao Zhu, Wang Shoubao, Zhao Yupeng, Nie Guoguo, Yang Zhen, Jing Jing, Young Mengxi, Xu Zheng, Zheng Yangzi <MASK_REP> Wen Hao After that, Zhang <MASK_REP> through the QQ group and defendant Zhou made contact, two hit it off, Zhou contacted the surgery team and location. Neither social distance <MASK_REP> magic: some countries, including Australia, Belgium and Germany, have opted for 1.5m as the required social distance. In addition, for investors, the online group mode of sharing links through social channels <MASK_REP> safe and effective means of control, but also provides the possibility of financial fraud. Dongfang City Public Security Bureau Criminal Investigation Brigade police Chen Kaiyun introduced, Zhang's behavior has jeopardized public security, its compulsory measures to take it back <MASK_REP> further investigation and disposal. Niger attack kills 8, French president condemns - Xinhua <MASK_REP> Others said their parents let <MASK_REP> go back to their hometown to make it easier to take care of each other. But she found that although the material life of the countryside has undergone dramatic changes, but the pace of cultural construction <MASK_REP> somewhat slow, although the Internet, smart phones have been popularized in rural areas, but there are still many farmers do not understand and do not accept Internet. After the epidemic, or even now, relevant departments can carry out nationwide <MASK_REP> special treatment activities, severe treatment of this habitual harm to public health safety behavior. But before then, the leaders face a number of difficult issues, including what actions might be agreed on, what technology <MASK_REP> be used to communicate given the leaders' inability to meet face-to-face, and even a date for the meeting. "Let the people of Jingzhi Village can take a comfortable road, drink assured water" was the main leader of the provincial commission for discipline inspection and supervision of the task force requirements, <MASK_REP> the villagers have long been looking forward to the wish. "Small ruan work training has always been very practical, never <MASK_REP> to the organization to ask what." Up to now, the base has received more than 100 orders from around the country <MASK_REP> . General Administration of Sports: New Year's Day and <MASK_REP> Spring Festival period in principle not cross-regional activities under the line - CHINANEWS Along this orbit near Mars, the probe must also slow down into the Mars orbit <MASK_REP> time and speed of the probe into the orbit of Mars must be very precise, a slight mishap will lead to failure. Following her guidance, the reporter traced the pollution source upstream along the Hengjiang River Crossing and found it under a bridge near Jianxin Middle Road <MASK_REP> water was bubbling up from pipes about 70 centimeters in diameter connected to the intercepting well and blackened the surrounding waters. Tour family network first issued an announcement that day, claiming to receive notification from Lynch relatives, he was recently admitted to hospital due to physical discomfort, after treatment <MASK_REP> is currently stable and continues to improve, the company is operating normally. Users only need to enter the destination to query, can be a key to query the epidemic risk <MASK_REP> , and can specifically query to each region, county level risk level, for the resumption of work and production, personnel flow to provide real-time, authoritative information reference. Is the phone in your hand, <MASK_REP> you do not dare to open, fold, for fear of broken.” Stressed that "cash is king," Vanke is willing to spend 250 million yuan to lend a helping hand to Taihe, indeed is also commendable, but Wanke stressed that the shares are not <MASK_REP> invited by Fujian Province. Not to mention, this election, the biggest key is the mail-in vote, which also led <MASK_REP> victory, but also caused Republican voters to dispute the election results. Informed of the situation, the consulate general <MASK_REP> for the first time to the school and the police to verify the situation. Shortly before the airliner mistakenly hit, Iran fired missiles at a U.S. base in Iraq in retaliation for a U.S. airstrike on Baghdad International Airport on <MASK_REP> , killing Iran's top general Qassem Suleimani and eight others. According to Qixinbao, the company was founded in December 2018 and is 50% owned by Cai Xueyan and Shantu Wine Co., Ltd. <MASK_REP> respectively. Both are listed as executees and their shareholdings have been frozen. Xinhua News Agency, Tunis, August 17 (Reporter Pan Xiaojing) - Tripoli news: Libyan National Unity Government Foreign Minister Hiyalai <MASK_REP> , said the Libyan national unity government is unwilling to return to war. <MASK_REP> monetary policy regulation, macroeconomic stability at the same time, five years, the State Bank has been concerned with guiding the administrative reform. From this reporter's flight, passengers <MASK_REP> to Sanya travel holiday is not a few, many are carrying their families and children together for a weekend holiday. Once the wrong people are recruited, the cost of correction is too high, <MASK_REP> not only to pay compensation, but also to recruit. More than 90% of the online booking visitors, <MASK_REP> 7% of those who were admitted to hospital with annual tickets, and 3% who were eligible for visitation with a disability card. "Ice Altar" is located in the north side of the Capital Stadium, the venue is beautiful, From the high altitude overlooking the horizontal section of curling, from the side <MASK_REP> a road of short-track speed skating "ice mark," "ice altar" from the name. Unlike <MASK_REP> 's products, Toray's smart clothes have been identified as formal medical devices. Zhang Zhongde said that the previous training <MASK_REP> all zero, and now qualified training can take up positions. In early April, after attending the 9th meeting in a week, a township cadre in the coastal area Use three "tired" word <MASK_REP> to describe his state, "epidemic during the failed to open a meeting, save up to now." Harbin City, Heilongjiang Province, Bungalow District set up by 45 frontline investment personnel composed of "factory staff" team, <MASK_REP> 24-hour services to resume work and production enterprises. However, due to the rebound of the epidemic in many parts of the United States, which depressed investor psychology, <MASK_REP> the stock market continues to rise in face of greater resistance. Song Gui (photo) came to Peng Peng (alias) bed, carefully check <MASK_REP> physical data. BANGKOK, August 20 (Xinhua) -- A seminar on "Looking at the Future of the Thai-China Economy" sponsored by the Thai-China Journalists Association was held in Bangkok <MASK_REP> . In accordance with the general secretary's important instructions, Donghua Park community expanded medical and health service stations, and the city's major hospitals to achieve remote consultation, <MASK_REP> also introduced intelligent home care programs. In short, due to various reasons, <MASK_REP> insurance institutions in disaster prevention and loss prevention service in the enthusiasm and initiative is obviously insufficient. CCTV refers to Merkel said that Germany congratulates China and relevant parties to reach the Regional Comprehensive Economic Partnership (RCEP) agreement, <MASK_REP> to increase efforts with China to promote the completion of the EU-China investment agreement negotiations within this year. According to the reporter of the Securities Times, in order to reduce costs, consumer finance companies that previously focused on offline models such as Credit Consumer Finance, <MASK_REP> and BOC consumer finance have been deploying online transformation. At that time, Han Han wanted to take a taxi to leave to get rid of the entanglement. Seeing Guo's cow chasing him, he ran across the road, Guo cattle chased to the middle of the road, holding a dagger to <MASK_REP> Han Han neck, chest and abdomen, back hips, limbs and other parts of dozens of stab. The new mask machine turned into scrap metal, with no one receiving a discount <MASK_REP> 300,000 yuan. (BEIJING, July 27) According to NHK, 27, Japanese Economy, Trade and Industry Minister Kajiyama Hiroshi on the Fukushima nuclear sewage treatment plan, said that the discussion <MASK_REP> , including a new water storage tank, including all options before making a decision. <MASK_REP> , Sept. 1 (Xinhua) comprehensive report, since the United States Minneapolis African-American man was killed by police neck, Portland, Oregon, demonstrations and protests have continued for three months. <MASK_REP> Yang Xilun said. Company responsible person Fu Zhi believes that stop production rectification compliance is legitimate, but the loss of <MASK_REP> is too big. Below, I would like to <MASK_REP> combine today's learning, around a deep understanding of the comprehensive deepening of reform laws, better implementation of various reform initiatives to talk about some understanding. Gradually, in cultural squares and road construction sites, <MASK_REP> next to the ridge, new plastic greenhouses, technical promotion training and agricultural facilities visit, often can see the Party cadres with villagers busy figure. Fang Fang left a message, still not surprised <MASK_REP> she said: “I believe that a strong country will not collapse because of the publication of a book, and that a confident government will not blame a writer for no reason. "Now we owe more than 50000 wages do not give <MASK_REP> are waiting for my wages to live, you help us!" Doctors and patients hand in hand <MASK_REP> conquer the disease, this is the medical personnel forever initial heart and pursuit. Wang Shaoqiang, curator of the Guangdong Museum of Art, who organized the exhibition, said 33 ink works by eight outstanding contemporary artists from Guangdong, including Li Jinkun, Lin Lan and Yang Jiecang <MASK_REP> are on display. But that seems unpalatable, with thousands of people <MASK_REP> to the streets of Berlin in recent days calling on the government to accept more refugees displaced by the fires. Wang Duanzheng said that in addition to <MASK_REP> the water from the reservoir about 20 kilometers away drip irrigation, they have also used a shoulder pole to carry water, rack car to transport water. "If the courier comes to deliver the goods in the morning and puts them into the express cabinet, we will have to work overtime to pick up the pieces at home for more than 12 hours. We have to spend more money for this, <MASK_REP> at least 24 hours." Zhengzhou B38 bus line <MASK_REP> , there is a special female conductor, her name is Huang Fei. Xinhua News Agency, Tunis, August 17 (Reporter Pan Xiaojing) - Tripoli news: Libyan National Unity Government Foreign Minister Hiyalai 17 in the capital Tripoli, said the Libyan national unity government is unwilling to return to war <MASK_REP> . I remember going back to the field, one morning, our family <MASK_REP> in the hotel with a buffet, just into the restaurant, my father told me: “The buffet must be controlled. The <MASK_REP> of overseas markets is also the decisive factor for the rise of Wuyi rock tea. At present, Xi'an Economic Development Zone enterprise supply chain cumulative sales of more than 100000000 yuan <MASK_REP> supply enterprise product sales have achieved a substantial increase, effectively alleviate the sales pressure. In the new year, in 2020, Sichuan will strive to achieve the business income of high-tech industry to reach 200 million million yuan, scientific and technological information service business income to exceed 300 <MASK_REP> yuan and scientific progress contribution rate to reach 60%. "In terms of consumption poverty alleviation, we guided Hubei to identify 498 poverty alleviation products, with a total product value of <MASK_REP> yuan. We organized Guangdong and other provinces to purchase Hubei's tea, crayfish and other specialty products, and the results were also good." WHO has played a key role in leading the global fight against the epidemic, and has been highly recognized by countries around the world, Trump's remarks caused an international uproar, <MASK_REP> in the United States sounded a strong voice of opposition. Anti-epidemic thematic exhibition: They see their hearts surging at the exhibition <MASK_REP> - CNS China Railway 22nd Bureau Group project manager Crown Ying, the next step is to improve the <MASK_REP> ditch, cable trough and ancillary facilities construction, the main tunnel construction is expected to be completed by the end of June. Zhou Shuizhong, Standing Committee Member of Qujiang District Committee and Party Secretary of Twenty Li Town, said: “ <MASK_REP> is not long, But has clearly felt, now grasp economic development, land requisition demolition, service grassroots and other aspects of work more handy.” And we said: I don't worry about anything, my mother-in-law, my husband, and my two children are isolated in the community, <MASK_REP> it's good. Japanese Foreign Minister Shigeki Toshichong, Japan time on the morning of the 10th <MASK_REP> and visiting U.S. Undersecretary of State, North Korea Policy Special Representative Bigan held talks in Tokyo. <MASK_REP> said: "I love photography, hope to use the lens to record the progress of the country and the most beautiful people of this era, I will keep moving towards the goal." China, Malaysia and International Chinese Medicine Community Penang to Discuss <MASK_REP> the Development of TCM in the Post-epidemic Era - CNS As numerous netting cages <MASK_REP> of crayfish loaded with fish tables were pulled out of the pond, A crawfish with its claws in a fishing boat ran amok, and was then sent to the sorting area. After weighing, sorting, packing, boxing and other links, it was shipped to fresh markets around. <MASK_REP> , December 24, Guangzhou (Wang Hua Zeng Minting) Guangzhou Municipal Water Authority announced on the 24th, the city's water environmental management results show, has reached the sponge city built requirements. Panyu District anti-fraud center to the victim to send fraud warning text messages and call dozens of times, but the victim is deep in fraud, <MASK_REP> did not respond to the warning, and the mobile phone has been turned off. But owner Peter Cao did not shorten opening hours as a result, or fire employees or <MASK_REP> pay cuts. Stray into a chimney, fall, accidental injury... … Citizens will contact him through various channels, Wu Jianfeng rescues birds including but <MASK_REP> not limited to Oriental white storks, golden eagles, kestrel, spotted duck... … "Shazhou Village has undergone dramatic changes in the past few years, but at present our reception capacity is not enough. <MASK_REP> a few operating bed and breakfast in the village can receive more than 30 people. Most tourists are day trippers." Yesterday, she brought a song Tchaikovsky "Memories of the Old Country," sustenance of homesickness, and to Zhang Ying <MASK_REP> is her daughter. BEIJING, March 4 (Wang Hua Xu Kunjie) Guangzhou Metro Group is the first <MASK_REP> to undertake the operation of inter-city lines in the Mainland subway company, Recently also for the first time abroad signed an international contract: will operate and maintain Pakistan's first subway. Apart from the return of flow of people, economic recovery also needs enterprises to solve the logistics, capital flow, industrial chain coordination <MASK_REP> and so on. In addition, according to law, severely crack down on film, television, <MASK_REP> network training in the field of copyright infringement and piracy is included. Haiyan's hometown is located in Sanying Town of Guyuan City's Yuanzhou District in the core area of Xihaigu. Her family moved to Minning Town, near the capital city <MASK_REP> Yinchuan, eight years ago. After Chiu Ciyun resigned in 2017, Zhao Haijun took over as CEO. In the same year, Liang <MASK_REP> joined SMIC from TSMC as co-CEO. Even if the kitchen waste can be burned, but incineration is <MASK_REP> to produce dioxin, the same pollution of the environment. According to the results of nucleic acid detection real-time dynamic control of relevant areas, actively play the role of community governance, do a good job of tracing flow, <MASK_REP> , as soon as possible to identify the source of infection, find out the chain of infections, scientific and accurate prevention and control work. "RV treasure store cooperation mechanism," Evergrande marked the core of a sentence: “I give you money, <MASK_REP> you give me traffic resources. At 11: 00 p.m. on February 25, the maintenance team received a notice to change the outer steps into ramps. In order to facilitate the transfer of patients, Xiang Secretary put on protective clothing and rushed into the ward <MASK_REP> overnight operation was completed. Yangjiang Yangxi County Jinyu Star Protective Equipment Manufacturing Co., Ltd. <MASK_REP> , brought epidemic prevention to the spirit. Prior to the publication of the paper, human manipulation of DNA and protein was still in the "slash and burn" stage, without highly automated equipment and devices, not to mention <MASK_REP> single-cell sequencing, a modern system that requires high data processing power. In foreign trade, the "Work Plan" proposes to expand the scope of implementation of "same line <MASK_REP> same standard" for domestic and foreign products to general consumer goods and industrial goods, this is intended to help export enterprises in the high-quality products in the domestic market competition to open the situation. As an infectious disease hospital, there is still a difficult work can not be avoided <MASK_REP> , that is, pathological anatomy. I suddenly a hot heart, as a medical worker, the patient's affirmation is the biggest praise, <MASK_REP> I and all the pay is worth. <MASK_REP> production and management of paraquat should be resolutely cracked down on in accordance with the law. "Black dens" involved in the production and operation of the illegal drug should be banned according to the law, and those committing crimes should be handed over to public security organs according to law. Since 2019, the cases of controlling shareholders illegally occupying the funds of listed companies have increased dramatically <MASK_REP> and the patterns behind them are varied. According to reports, as of July 13, the city in the concentration of medical observation, home observation, community closed management of candidates were 3, 28 and 100 <MASK_REP> . In the process of implementation, the system gradually exposed <MASK_REP> too many vocational qualifications, too many, affecting employment and entrepreneurship, hindering market main body to create vitality. <MASK_REP> : anchors in live activities, should ensure that the information is true, legitimate, not to goods and services false propaganda, cheating, misleading consumers. Huang Shizhong, president of Xiamen National Accounting Institute, believes that Ernst & Young, as an accounting firm, The main responsibility is the annual audit, the current 2019 annual report has been audited, but <MASK_REP> no audit report issued, so there is no need to be responsible for fraud in 2019. Of course, as a science students, we should cherish their own "technical threshold" <MASK_REP> Lao Pan is medium build, slightly lean, over 60 years old, hale and hearty, light brown glasses difficult to hide smart eyes, <MASK_REP> from time to time to pop out a few words in Hokkien. The important achievements made in the past year since the establishment of diplomatic ties between China and <MASK_REP> have once again proved that the establishment is the will of the people and the trend of the times. No one and no force can stop it. Compared to the previous year's global finals, this year's S10 <MASK_REP> "Tianshi." Just like those singing without lyrics in "Bamboo Tree Ci," it appeals to a long history of spiritual emotion and humanistic connotation, making people temporarily out of the current impetuous state of mind, shocked by <MASK_REP> quiet and peaceful another time and space. Face recognition first trial: Just to see why an animal forced to <MASK_REP> face? Hawaii will open its beaches to allow people to exercise, although the state's " <MASK_REP> " has been extended; At the same time, partial elective surgery will be possible; But the airport will verify information about passengers' accommodation on arrival. How to prevent waterlogging under heavy rainstorms <MASK_REP> ? Affected by this, <MASK_REP> the Dow Jones Industrial Index fell again more than 450 points, visible Americans for the epidemic of widespread concern. Photo <MASK_REP> taken in March 2009, when Mr. Putin, 56, was not president but prime minister of the government. The Chinese happiness club also replied to the interaction at the first time to express thanks for cheering up <MASK_REP> will go all out! "S <MASK_REP> work training has always been very practical, never to the organization to ask what." In October this year, Zhu Ting announced to join Tianjin Women's Volleyball Team, <MASK_REP> the return of the superstar, so that fans are full of expectations for the new season. Reporter landed <MASK_REP> the official website of Haidian Court, there is no disclosure of this case against fast hand byte-beating. Global smart home shipments are expected to reach <MASK_REP> units this year and grow to 144,000 units by 2024, a CAGR of 14 percent, according to the IDC report. Also gained a lot of good friends in martial arts, <MASK_REP> let me benefit a lot.” We should clarify development <MASK_REP> , grasp development opportunities, take initiatives, courage to overcome difficulties and rely on development to solve problems. Tropical marine climate, <MASK_REP> can not open air conditioning, cannot open window ventilation, less than half an hour, I have sweat like water, Manuel's yellow protective clothing has already wrapped tightly around the body. Along with the "June 18" activity heat, and live with goods related regulatory policies <MASK_REP> are also ready to come out. Some days ago, the official media proposed community group “Internet giants should have more responsibilities, pursue more and do more in scientific and technological innovation; Don't just think about a few bundles of cabbage <MASK_REP> a few pounds of fruit flow” 。 For certain certificates with too high a passing rate and almost a manual copy, their practical utility will be greatly reduced; For some platform institutions own certification <MASK_REP> , job seekers do not have to be too superstitious about its gold content. Science fiction career and industry is to create curiosity and imagination of the project, facing the future vigorously develop science fiction business and industry, create science fiction industrial ecology <MASK_REP> foundation work. The 2021 Philippine National Budget represents an increase of 9.9%, equivalent to 21.8% of Gross Domestic Product (GDP), compared <MASK_REP> the 2020 national budget of 410 million pesos. According to the report of Meituan Research Institute, in 2019, China's script killing industry market is growing rapidly <MASK_REP> the scale is twice that of 2018, breaking 100000000 yuan. All processes are completed remotely in the central control room, fully realized the information operation, to ensure <MASK_REP> slag, leachate, waste gas, dust discharge standards.” 12 20: 00 La Liga 36 Espanyol: <MASK_REP> <MASK_REP> is known for the bean stick production professional village. At the same time, due to delays in the resumption of work, traffic blockades <MASK_REP> shrinking demand and other reasons, manufacturing, real estate enterprises have been relatively large impact.” Macron said on April 13 that travel restrictions have been effective, <MASK_REP> the outbreak has slowed, but continued restrictions are needed to save more lives, so the "grounding" will be extended until May 11. Once, King Zhuang of Chu held a banquet and You Meng came forward to make a toast. The king thought that Sun <MASK_REP> would be resurrected and wanted him to be Chu's minister again. Once the wrong people are recruited, the cost of correction is too high, not only to pay compensation, but also <MASK_REP> . <MASK_REP> by positive data, the three major indexes on the New York stock market rose sharply on Friday. Meng Wanzhou, Huawei's chief financial officer, has made new arguments to a Canadian court against extradition to the US, according to court documents released <MASK_REP> on Monday. He also pointed out that the <MASK_REP> task of stabilizing employment is still arduous and there are still many uncertain factors. But the community <MASK_REP> only 12 staff, camp north community is an old community, there are always some residents can not contact, fortunately there are volunteers and sinking cadres to join the team. The second is to gradually introduce more insurance companies when the time is ripe, and on the basis of the current three insurance products, <MASK_REP> the insurance companies continuously optimize insurance products. At present, Hunan construction of Hong Kong and Macao Science and Technology Innovation Park <MASK_REP> planning, site selection and other aspects of the work is actively advancing. Statistics show that in the first quarter, China's imports and exports to ASEAN <MASK_REP> yuan, an increase of 6.1%, accounting for 15.1% of China's total foreign trade value. ASEAN has become China ’ s largest trading partner. In addition, the company in South China, East, Hainan and Yunnan, North and other regions continued to sell, a total of 55 new projects in the year, the <MASK_REP> of the project reached 178, the value of the annual saleable resources more than 200 million yuan. This expert is from Hunan, he is willing to go back to his hometown, but in personal development, children's education and other aspects <MASK_REP> . In just two years in Suzhou, Yuan Hongdao also got to know many Suzhou cultural people, his own literary ideas are more clear, that is to let the truth <MASK_REP> naturally reveal, let the text have temperature, heartbeat. WorkSafeBC will also increase consultations with employers to help them manage the risks of COVID-19, and will <MASK_REP> in multiple languages on platforms such as television and social media. Village busy, red scene, so reporters can not help feeling, Ma On Shan Village is walking on the <MASK_REP> road to a better life, tomorrow's saddle mountain village will be more beautiful. Hearing the patient's question, she stopped and told the <MASK_REP> the origin of his name: father is a hardcore fan of Jin Yong, gave her this name. Guo Bing, head of <MASK_REP> public welfare in Fuzhou, is a public welfare enthusiast in a wheelchair. Conte told EU leaders that the recovery fund should be worth € <MASK_REP> and provide grants to EU governments to stop countries heading for economic collapse, threatening the survival of the EU's common market. Chen Lin said she feels that people who abuse cats and <MASK_REP> related videos have weak moral consciousness. In 2017, 471 farmers and herdsmen from 1144 remote and scattered households in the village were relocated. Among them 101 households 334 people through the regulation of self-built housing, <MASK_REP> in the north of Qiapcha Town New District, only 3 km from the county seat. In 2019, only 0.03% of Yunnan's land area generated 15% of the province's import and export trade volume. Gathered 10% of the province's foreign investment, <MASK_REP> contributed 10% tax revenue. Reporters learned that Jingcheng Public Liaison Office venues <MASK_REP> of about 3,500 square meters, Area radiation 6 surrounding communities, about 30000 permanent population, is tailored for the people of the community government services, public service carrier and neighborhood interaction space. In order not to be abandoned by the audience <MASK_REP> not eliminated by the market, today's top stream needs to think more than "commercial value list." Article 76 Where the owners jointly decide to dismiss the realty servicer, the realtyservicer shall perform the following handover obligations within 30 days <MASK_REP> and withdraw from the realitymanagement area: Although bilateral trade between Vietnam and Canada has maintained a good momentum of growth and the two countries are optimistic about cooperation in food processing and manufacturing, new cooperation opportunities <MASK_REP> should be explored in new areas such as infrastructure construction, health care, education and medicine. Papua New Guinea is located in the South Pacific Ocean, has the reputation of "bird of paradise country," the largest area of Pacific island countries, the most populous <MASK_REP> . Han Tai Town People's Government a staff response, the river usually no water, this is the higher unified development of the south-to-north water diversion, so that water through the dry river <MASK_REP> an ecological replenishment. Reporters in the village interview, often <MASK_REP> the villagers hearty laughter, which is the most beautiful Tongxin Village. Today, this "internet celebrity" international train has been running for nearly 60 years, the K3 / 4 <MASK_REP> has traveled more than 50 million kilometers, safely transporting more than 2 million passengers. BEIJING, April 8, according to Korean media reported on the 8th, <MASK_REP> to 422 bars, nightclubs and other entertainment venues banned business orders until the 19th. According to an internal report, only a fraction of the Bundeswehr's helicopters are <MASK_REP> up to combat readiness. The event, in which Trump spoke to a near-empty field and the stage was temporarily canceled, brought home the potential political influence of the K-pop fan community, which is active on Twitter and <MASK_REP> . Luoji Mountain in Liangshan Prefecture, Xichang City and Puge County, from the northern side of the fire, about 2 hours away <MASK_REP> . Assurant Trust Restructuring Into <MASK_REP> Key Node May Hit Ground in April - Economic Watch Network - Professional Financial News Site <MASK_REP> - Haiphong Port welcomes 3 search large cargo ships into port In Broad Group, employees every day to enter a silver metal airtight house <MASK_REP> about 5 square meters in size, shaking underwear for half a minute before they can enter the factory. Zhou Ju, a reporter from Economic Observer Network <MASK_REP> month after the new energy vehicle subsidy policy will be extended for two years. The detailed rules for subsidies for new energy vehicles in 2020 officially landed. Li Yuchun and Liang Jing crying singing the national anthem <MASK_REP> moment moved the audience. FILE PHOTO: Local people <MASK_REP> up pictures of comfort women during a protest rally in front of the Japanese embassy in Seoul, South Korea, December 30, 2015. In recent years, the banks have made efforts in personal business, the amount of credit cards issued has been growing rapidly, but the related business services and service levels have not been <MASK_REP> . " <MASK_REP> I saw a lot of volunteers, I had to do something." Yu Hua in April-May this year, the use of "spyware," <MASK_REP> websites, from travel agencies, news agencies, communications trafficking clubs and other places to steal 520,000 pieces of information, including personal information and bank card information. According to the circular, on December 31, 2019, some units of the Ministry of National Defense of Vietnam, together with relevant departments, <MASK_REP> the airport wall at Temple Gate Airport in Hanoi as planned. Figure Note: <MASK_REP> staff introduction recruitment details (live screen screenshot) Strengthening the Party's theoretical education is the main responsibility of the central Party School (State Administration College). Organizing and compiling authoritative teaching materials to study and explain the basic principles of Marxism and the achievements of theoretical innovation <MASK_REP> is the fine tradition of the school. However, just when people think Arab League has missed the new season, Zhu Fangyu yesterday night <MASK_REP> personal social media to respond to the matter. Such a situation, not only threaten the legitimate rights and interests of related parties, but also for the long-term development of housing rental market <MASK_REP> . Following the release of the new version of Ali quark in April, the end of May, Ali increased again, pay treasure search business announced the first time to become an independent division, meaning its strategic position in <MASK_REP> to further enhance. During the Flower Swim Competition, the team members should coat their hair with gelatine powder, Make sure your hair doesn't fall out during the race, and then put some decorations on it. "Every time I comb my hair, it's a shiny <MASK_REP> kind. It won't fall off after the race." Anti-epidemic nurses physically and mentally exhausted <MASK_REP> 70% of national nurses had been discriminated against and bullied The fair has a total exhibition area of nearly 26,000 square meters, more than 1,000 exhibitors and more than 3,000 <MASK_REP> products. More than 1,500 businessmen attended the fair to negotiate and purchase. The Office of the <MASK_REP> announced Tuesday that it was eliminating the algorithm, deciding that final grades should be based on teacher ratings, and apologizing to students and schools. In response to "Professor Zhang Yuqing was reported for academic misconduct by his real name," On November 19, Tianjin University announced on its official website that after receiving a report about Zhang's <MASK_REP> , the college immediately set up a special investigation team to investigate in accordance with regulations. Chen Liqun asked a girl why she did not want to study. The girl said she had no money for dinner. Both parents died, is working outside the brother does not regularly give her money, for her study, near the Spring Festival, she did not receive money, <MASK_REP> only borrow money to eat. So low price "personal hand-to-hand combat <MASK_REP> " the insurance company in the end what? In recent years, the urban scale of Jincheng has expanded rapidly and the urban outlook has improved remarkably. However, there are still problems in the old city, such as traffic congestion, travel inconvenience and poor environment <MASK_REP> Seriously affected the production and life of the masses, the renewal and protection of the old city is imperative. BEIJING, Feb 4 (Xinhua) -- According to the <MASK_REP> National Development and Reform Commission (NDRC), since 24: 00 on February 4, 2020, Domestic gasoline and diesel prices were reduced by 420 yuan and 405 yuan per ton respectively. Through cross-dating with living cedar shrub ring sequences, the researchers established a chronology of shrub ring widths for 537 years, which can reveal the dry and wet climate <MASK_REP> of the region in spring. Reporters learned on the 12th, 10 years, a total of 123 children with congenital diseases through the program, under the support of the community received charity surgery, the cumulative use of the charity <MASK_REP> 4330,000 yuan. Recalling Yu Zhongyuan, 41-year-old Zhao Dawei choked up several times, "He is a very real, conscientious young man <MASK_REP> the last time I saw him, he was on a mission." Now, Zhou Xiufang has been 72 years old, she said her biggest harvest <MASK_REP> "gratified": gratified for the support of the people, but also for the transfer of love, she will continue to "love porters" do. "Fortunately, the current inventory can basically protect the end of last year signed orders, but the important thing is that <MASK_REP> the upstream protection dare to sign new orders, otherwise who would dare sign with you?" Therefore, the two new one trillion will be given to the local <MASK_REP> is the new general debt one trillion, a special treasury bond one trillion. It is reported that this year's fishing moratorium ends at 12: 00 on August 16, a period of three and a half months, Guangdong, Guangxi and Hainan provinces (regions) <MASK_REP> fishing vessels number more than 50,000. General Secretary <MASK_REP> exhorted, pointed very clear, "We must not let the hard-won epidemic prevention and control achievements wasted." “In fact, no matter who gets the general contract, each <MASK_REP> work, after all, domestic long-term construction and construction management is segmented. Liu Qing, the wife of the same nurse, is pregnant with five months, even if the heart is not willing to give up, but the couple said at the moment there is a need, <MASK_REP> , they are duty-bound. It turned out that my father owed someone 1500 yuan, Because the creditor could not find him, he went to my school, found my class, in front of the whole class <MASK_REP> and said a lot of harsh words. Chen Qingping introduced, this set of "garbage gasification equipment" the biggest feature is that, in the treatment of medical garbage and general garbage, <MASK_REP> can directly handle wet garbage, do not need to dry first, no smoke, no smell, no sewage discharge. Fujian Caimao Group Co., Ltd. President Wang Xunfa introduced <MASK_REP> , with the outbreak of overseas epidemic in March, a number of domestic airlines to reduce the serious epidemic countries inbound flights, resulting in tight space, freight rates, a large number of orders can not be delivered on time. (The writer is <MASK_REP> a professor at the National University of Singapore and former Singapore ambassador to the United Nations, Michael Ma.) There are around <MASK_REP> smartphone users, and some do not have smartphones.” Although Biden made it clear he would strengthen international cooperation, <MASK_REP> said it would not be easy for the United States to return to some international organizations or agreements. According to the statistics of Crewe Research Center, Hainan for the introduction of talent policy and update frequency, far higher than the general area, almost every quarter will have a significant adjustment <MASK_REP> . Ilana Braberg, an American Democratic voter, said: “First, I don't see Trump benefiting Israel politically <MASK_REP> to engage with the Palestinians, thus defeating my sense that Israeli politics needs to change. In a workshop in Hezhou Ecological Industrial Park in Guangxi, workers are stepping up production of LED driver chips and sensors for temperature guns <MASK_REP> . China news agency, Paris, June 19 (Reporter Li Yang) - France's eastern city of Dijon continued several days of violent clashes, riot police launched large-scale search operations <MASK_REP> aimed at completely quelling local chaos, and seeking to master more clues to crime. Two of Apple's wholesalers were fined $761,000 and <MASK_REP> , respectively, by the General Inspectorate for not making their own business policies but instead accepting and implementing products and customer allocation mechanisms developed by Apple. WASHINGTON, June 7 ( <MASK_REP> ) -- Protests reflect U.S. economic and social problems Don't understand is do not understand, frankly admit <MASK_REP> , talent will have progress. " <MASK_REP> , Value Financial Business Class, 3 years more than 80% of people..." … On various Internet platforms, low-threshold, short-cycle, high-yield wealth course advertisements are beginning to appear more and more. If it is an individual to the hospital and other testing points <MASK_REP> line up, that is a single test. Now, when walking into the villages of Xinbao Town, the first thing you see is the fire slogans on the roadside poles, On both sides of the village road lined with neat brick houses, <MASK_REP> hand-drawn fire cartoons are particularly conspicuous. The cells will be produced in Bittelfeld-Wolfen in the future, with the solar modules made in Freiberg <MASK_REP> near Dresden. These include Skoda Auto, a unit of Volkswagen, and Jetson, a consumer finance company. <MASK_REP> . Gao Yuanmei recently came to Aunt Sun's daughter's home and saw her face under the mask for the first time. <MASK_REP> "I've only seen your eyes in the two months I was hospitalized, and I finally saw what you look like this time," she said. Among them, 645700 people from 160200 households <MASK_REP> , 976 poor villages and 12 poor counties were lifted out of poverty in 2019, which was the year in which the number of people lifted out of poverty was the largest and the effect of lifting out of poverty was the most remarkable. On the other hand, China continues to deepen its opening up to the outside world, the domestic business environment is gradually improving, and <MASK_REP> the degree of internationalization of the capital market is increasing, which will continue to attract medium- and long-term investment.” Divided into taxes and fees, the cumulative increase in tax reduction <MASK_REP> yuan, the new social security fee reduction 963.1 million yuan (including new non-tax income reduction 25.9 million yuan). On November 11, NetLink and UnionPay handled a total of <MASK_REP> online payment transactions, amounting to 177,0000,000,000 yuan, up 26.08% and 19.60% year on year, respectively. Some village communication base station is very fragile <MASK_REP> phone, network signal is very unstable. Do not attend parties, go out wearing masks, pay attention to hand washing hygiene... … After the epidemic hit, more and more of the public to take the initiative to protect against proliferation <MASK_REP> . <MASK_REP> of people taking to the streets of Berlin in recent days calling on the government to accept more refugees displaced by the fires. However, wearing a mask in the heat is not comfortable, after a period of time will feel <MASK_REP> . A Shares Open "Three Indexes Collectively Higher Open GEM Index Up 0.8% - <MASK_REP> - Professional Financial News Site BEIJING, December 12, Guangzhou (Cai Minjie Tai Mengyun) artificial intelligence is medical, science and technology and other fields of production, learning and research <MASK_REP> . On the day of the event, there was a special biomedicine contest of " <MASK_REP> " of CSU's Science and Technology Achievements Transformation Project. Nine high-quality projects were finalists. In order to prevent and control the epidemic, the government of the capital Kathmandu and the neighboring three districts of Patan and Badgang unanimously decided to extend the <MASK_REP> measures originally scheduled to end on September 26 for one week to September 2. Bean rain, hit in Longsheng community 4 building 2 unit 302 glass window "crackling", such as beating on the body of the people <MASK_REP> looming pain.? They are rooted in the grassroots growth, based on their posts to become successful, riveting battle position struggle, in their respective posts to show the "most beautiful scenery," <MASK_REP> our side to take the lead in practicing the socialist core values and join the practice of strengthening the army. September 1, the first day of school, Panyu District Shilou Town Jiao Tang primary school students are not in the classroom, but playing on the playground <MASK_REP> hundreds of parents are sitting in front of the school on the stone steps. Another elderly villager remembered when there was water in the Yongding River in the 1950s and 1960s, “Life is <MASK_REP> we went to the Yongding River nets to catch large carp, three or five catties of the big fish to take home, put some salt boil and eat. Lawyer Liu Zhimin believes that Wang Guangchao lost the opportunity to receive a good education because he was convicted of a crime, resulting in his low professional skills and loss of work compensation should be an inevitable gain, <MASK_REP> the people's court should include it in the scope of state compensation. Her "boyfriend" said <MASK_REP> affected by the "black swan" incident, all funds lost. They are "sick geniuses," faced with the nihilism of life, the absurd world, the temptation of irrationality, they find meaning in writing and thinking, but still <MASK_REP> themselves. On July 2, for example, by the close, the Shanghai Composite Index surged 2.13 percent, <MASK_REP> Shenzhen Component Index rose 1.29 percent and the ChiNext Index edged up 0.20 percent. There are high tides every morning and evening, and there <MASK_REP> two spring tides from the first day to the fifth day of the lunar month, from the 15th to the 20th day. Infectious Disease Prevention and Control Law: "Hardcore Force" in Epidemic Prevention <MASK_REP> Control Liu Wei admitted that before he participated in the Shanghai Writers Association forum, there are network writers to the leaders of the association to <MASK_REP> forward the lack of "identity authentication" - network writers need to be recognized within the line, from guerrillas into the regular army. The good traffic development indicators and stable operation situation in the first three quarters, on the one hand, verify the good operation situation of China's macro-economy, and on the other hand, firm confidence in the completion of the annual target, to ensure <MASK_REP> stable economic development. In the meantime, people <MASK_REP> the scenery while climbing the mountain. Some people said they would continue to participate in similar sports and fitness activities next time. This way is very meaningful, not only exercise, but also welcome the New Year. The organizer, "Nanning Saturday Charity Volunteer Association," said, <MASK_REP> association has helped people in labor reform and prison for more than four years and denied "hyping up" the questioning, claiming he "has been severely punished by the law and should be given a way to live." Zhao is a few years younger than Zhao, but Zhao <MASK_REP> thinks she is far stronger than herself: She pays more for her family and children, is positive about life, "and never complains." Wang Sicong's panda mutual entertainment <MASK_REP> increase the breach of trust by enforcement, the execution of the target over 10 million - China New Network Analysis said financial support entities further strengthen, <MASK_REP> more reasonable and abundant On the third day of New Year's Eve, the medical team first entered Hankou Hospital, where a large number of patients were diagnosed. Zhang Ting, the head nurse, took the initiative to <MASK_REP> the first group to enter the isolation ward. She was thin and thin, but what she carried was a day in the care room! “Some research reports write that the success rate of digital transformation of traditional enterprises is very low, but <MASK_REP> that some enterprises invested a lot of money and time to do the data center but failed. Toyota Crown came out in 1955, has a long history of 65 years <MASK_REP> original Crown model named "TOYOPET," positioning is not entirely for business people. <MASK_REP> Photo: On the left is Lin Zi in his school uniform; At right, Lin Zi, holding a skateboard (Aug. Lin Miao's lover, Jin Pyongyang, was impressed. They took their children skiing, <MASK_REP> snowball fights and saw the skiers of the national team preparing for the 2022 Winter Olympics. Party members rushed to the front line posts, do not bargain; Cadres to sink into the community, guarding each side's position; Young people shoulder the arduous task, show youth shoulder; There are also <MASK_REP> thousands of community workers, who are not afraid of the wind and rain, Rice and crab mixed culture <MASK_REP> , under the forest economy, so that the income of villagers has been guaranteed; Diversified development of rural tourism potential is a good way to increase income. Eight Lao Han this land, the more you plant the more taste, <MASK_REP> . Song Gui (photo) came to Peng Peng (alias) bed, carefully <MASK_REP> the physical data. In the end, Weng Hongyang, who is a few years older, was more <MASK_REP> to control the game. Won 3-1 (11-7, 13-11, 6-11, 11-9), helping Xiamen level the big score at 1-1. Not only that, when Abe suddenly "flashed" in a Mario costume at the closing ceremony of the 2016 Rio Olympics, <MASK_REP> he was full of visions of announcing Japan's success as a prime minister. From objective reasons, compared with urban, rural entrepreneurs, farmers available social resources <MASK_REP> . Analysts generally believe that pork prices will continue to decline in the future, coupled with high base factors, <MASK_REP> CPI may accelerate downward in the second half of the year. During the case, discipline inspectors found that Li Deqiang has been "indebted" to his sister, which also led to " <MASK_REP> brother-in-law has a great impact on him." Some medical professionals in Japan pointed out: If pregnant women take this drug, can cause fetal malformation risk, <MASK_REP> Japan does not use it as the usual anti-flu drug. 2020MFE was held in <MASK_REP> with the 25th Macao International Trade and Investment Exhibition and the 2020 Portuguese-speaking Products and Services Exhibition (Macao). These fitness bloggers often have accounts on multiple short video platforms, “ <MASK_REP> has 180000 powder, I have other numbers, more than 1000 000 powder. Recently, the CNN website published an article, listed the past 20 years <MASK_REP> , African-Americans encountered police brutality, as well as the "strange reasons" to be shot by the police. British Museum <MASK_REP> Reopen to Public _ Photo Channel _ Xinhua In 2016, the annual R & D investment of the top 50 rice enterprises in China reached 13.8 billion yuan, a four-fold increase over 2011, accounting for <MASK_REP> sales. It is reported that the Bank of Shanghai <MASK_REP> has invested a total of 900 million yuan in loans. "It is not only SoftBank itself that is in danger, but also the big consortia of the Vision Fund," <MASK_REP> told Economic Observer. While everyone was in shock, sand sip the first to jump into the water, the injured Yan Weiheng saved out, <MASK_REP> trot back into health. “There are more than 139,900 cases <MASK_REP> we reply within three months of the case, the response rate is 99.3%. While the rate of house price growth fell by more than half from the previous month, house prices nationally rose by a modest 0.3 per cent <MASK_REP> volumes were down 40 per cent compared with March, while new listings fell by over a third on an annual basis. At 22: 00 on July 7, Yellowstone Daye Lake <MASK_REP> reached the warning level, endangering the lives and property of more than 50,000 villagers downstream. After experiencing short-term fluctuations, the market is expected to enter a restless <MASK_REP> at the beginning of the year under the background of improving liquidity expectations and deepening recovery expectations. The short-term allocation is still suggested to be pro-cyclical. But now electronic office, network classroom and so on have increased the use of electronic products time, in addition to limiting the time to use electronic products to protect eye vision, <MASK_REP> are other ways? "Tibetan Kochi Women Gather in Lhasa to Witness the Founding of <MASK_REP> " In addition, subsidies for grain production also need to be strengthened and improved, so that food prices can remain stable and farmers' incomes can be guaranteed <MASK_REP> . <MASK_REP> , such as the Italian-inspired "Little Italy" (" Little Italy " ), In the evening, a similar picture emerges. Brazil Airports Authority: Carnival Expected to Handle 1360,000 Passengers - <MASK_REP> Yesterday, the reporter learned from the Zhuhai Xiangzhou District Court that the court recently made a judgment on this special civil case, determined by the child's aunt <MASK_REP> guardian. Finally <MASK_REP> Chen Jing, Zhang Ting, Liu Yilin, Wang Xiaohuan, Li Jinyan 5 as the first echelon first shift. Economic Observer reporter Zhang Bin on December 7 morning, <MASK_REP> Watson biological (300142.SZ) shares close to the limit, as of press time, fell more than 19%. However, an epidemic <MASK_REP> physical stores shut down, factories delayed the resumption of work, production, sales stopped. The release of Jincheng Gaoping City, Guo Moumou sale fake "Piaoan" brand masks <MASK_REP> similar cases also occurred in many places in Shanxi. As for the reasons Sun Xiangbo accused, Sun introduced: First, Old Lady Qi thought she had eaten a pill given to her in a drugstore before she fainted; Second, Sun Xiangbo gave <MASK_REP> CPR, but caused his 12 rib fractures. In fact, when you read carefully, you will find that it is a colorful text, can be said to see the world <MASK_REP> the big trend.” According to statistics, over the past 32 years, groups of teachers in Hai'an accumulated in Ninglang training more than 20,000 junior and senior high school graduates, training nine Lijiang City College Entrance Examination Champion, six Lijiangcity Middle School Entrance <MASK_REP> . My husband is sick <MASK_REP> my family depends on me to earn money, a few mouths are waiting to eat it.” Informed of this situation, the Communist Youth League Nanning Municipal Committee Volunteer Department issued a proposal, <MASK_REP> a short time, there are nearly 50 people signed up. Mention "Bright Sword," the audience will emerge in the mind of actor Li Youbin and other interpretation of the character image, <MASK_REP> the classic plot and lines fresh. Through accurate analysis of students physical monitoring data and other health information, the Mini Program scientifically generates each student's physical analysis report, find each student physical <MASK_REP> and intervene. Still remember <MASK_REP> in the first class of junior high school, the teacher asked who had not learned English, only I raised my hand. In order to make the photos more realistic, the teachers <MASK_REP> also helped them to take a lot of campus scenery as the background for the "cloud" graduation photos. In summary, despite the impact of the epidemic, major industrial indicators in the first quarter have declined to varying degrees, But the epidemic impact is short-term, external, <MASK_REP> more controllable, and the negative impact mainly concentrated in the first quarter, the impact of the second quarter will be significantly weakened. On that occasion, my sister answered the call, also said that grandpa was not active enough <MASK_REP> : "Sorting garbage cans are emptied into the same garbage truck, what is the use of just asking me to sort?" <MASK_REP> 3 months of online courses in private colleges and universities students feel "big loss." In <MASK_REP> 17 or 18 days, I consulted about 10 patients online. Jiangxia District Traditional Chinese Medicine Hospital is a local second-class hospital, built in the 1980s, <MASK_REP> lack of hardware conditions. Through this book, the author hopes readers will bring new perspectives to <MASK_REP> help readers look at poverty, development and prosperity in a different way. We will consolidate and expand the effectiveness of tax and fee reductions and promote the <MASK_REP> effects of the policy. On the same day, German Chancellor Angela Merkel announced that from November 2 to the end of November throughout Germany, <MASK_REP> including the closure of most public facilities, restaurants and entertainment venues and restrictions on personal travel, including a number of measures. Especially persimmon and fish, shrimp, crab and other high-protein food at the same time <MASK_REP> more likely to form stomach stone. Intense rehearsal period for the new play, <MASK_REP> to work is a challenge for the actor, Laurent Ban was particularly energetic that day, "with a record and a little cool voice," set off. “Through Pan's explanation, I feel that <MASK_REP> , in the future to continue to strengthen learning, improve myself. <MASK_REP> : Ji Ze; Participating reporters: Chen Lin, Zheng Siyuan, Shi Yang, Wang Feng, Shang Hao, Tu Yifan, Yang Yuanyong, Lee Liangyong, Zhang Miao, Wu Danni, Huang Ling, Chen Bin-jie, Wong Wei 8, Mid-Autumn Festival welfare 20 to have a clear standard 5 <MASK_REP> increase the amount of sympathy goods “The medical staff were very nice and took care of me, which was very <MASK_REP> and gave me confidence. In April, Lu Fengzhu began to learn painting. She refused to be picked up by her family, and took an electric wheelchair to <MASK_REP> town, five kilometers away, every day. Amazon.com Inc., headquartered in Seattle, Washington, announced Tuesday that it <MASK_REP> hiring 100,000 more employees in the United States, covering its distribution centers, transportation and storage units. When the two parties spat, Zhang Xinpeng always tries to persuade and <MASK_REP> the situation. Among them, China's exports to the United States of 70,228 million yuan, down 15.9%; Imports from the United States were 25,618 million yuan, down 3 percent; -- Trade surplus with the United States was <MASK_REP> yuan, down 21.9 percent. Shawan Town <MASK_REP> Director Shi Weiguo said that the local poor due to disease is not a small number of villagers. Local governments sent workers to pile up sandbags on the banks of the Yangtze River Thursday afternoon <MASK_REP> in case the river bursts its banks. Similar to Miaojie, Yihai Kerry, Jieru and other brands during the epidemic also focused on the introduction of contactless loans <MASK_REP> for the continued growth of dealers to remove worries, effectively hedge the impact of the epidemic on the company's performance. The United States is now a <MASK_REP> . The next step is the two strong countries, including Russia, Japan, Germany, Britain, France and emerging economies. It is regrettable that, since 2013, Lu Shanzhen was promoted to deputy director of the gymnastics center, in charge of rhythmic gymnastics and trampoline events. He no longer holds the position of head coach of the women's team and has since left the national team post <MASK_REP> 30 years. The West Lake waters of large-scale cruise ship suspension, music fountains will be suspended <MASK_REP> to the public, re-opening time will be notified. Until "Nirvana in Fire," "Operation Ice Breaker" and "Hezuo Huating" and other dramas, and then <MASK_REP> back at his past works, the audience realized that Wang Jinsong had always been there. At the same time, Geneseo led the team in the AFC Champions League performance is also one of his contract negotiations weight, if can qualify and go further, <MASK_REP> are not so good. Zhang Shuai was 3: 5 down in the first set of the situation to save three set points, and then successfully dragged his opponent into the "tiebreak," in "tie-break" to take the initiative, <MASK_REP> the opening set. Geng Peng, Party secretary of <MASK_REP> Town, Jiaxiang County, Shandong Province, said that we have always put the safety and health of the people first, demonstrating the concept of people first and life first. After a four-night curfew, the capital Washington, D.C. Mayor Bowser said she did not plan to impose a curfew Thursday <MASK_REP> local time. Informed sources said that the latest Super League "revised version" Kickoff application will be reported to the sports management department today <MASK_REP> tomorrow. Another look at the two protagonists: Huang Xiaoming and Yin Zheng, the former self-certification <MASK_REP> "oil removal success," the latter is to jump into the focus of public discussion. Overseas <MASK_REP> Behind Remember | Expatriate Indonesian Teachers: Full of Concern for Family and Hometown - BEIJING Because measles epidemic is serious, Samoa <MASK_REP> declared a national emergency on the 15th of this month, ordered schools to close and banned children from public gatherings, to carry out epidemic prevention. "May Day" Holiday Getting Closer to " <MASK_REP> " Also "Heart Defense" - Xinhua According to the African Center for Disease Control, as of <MASK_REP> local time, 54 countries in Africa reported 195,875 confirmed cases, the worst affected South Africa cumulative confirmed more than 50,000 cases. Cologne Bay has numerous small islands, because of the <MASK_REP> terrain, in the war is often the Japanese warships stop point. Some customers used to travel first class on big flights, but now choose <MASK_REP> charter flights because of the privacy and flexibility of business jets. Fengtai District Center for Disease Control and Detection Department has four nucleic acid detection equipment, Dong said, <MASK_REP> this can meet the current sample detection volume. Tokyo, 2 new confirmed 107 cases, 3 this number rose to 124 cases, and mostly young people 20 to 39 years old <MASK_REP> infected with the evening downtown related, infection path unknown. Assurant Trust Restructuring Into Key Node May Hit Ground in April - <MASK_REP> - Professional Financial News Site LONDON, March 6 (Xinhua) - The Financial Times 100 Stock Average on the London stock market closed at 6,462.55 on Wednesday <MASK_REP> dropped 242.88 points, or 3.62 percent, from the previous session. The oncoming red, carrying the poetry of the ancients, <MASK_REP> the visual impact of direct heart shock. Dong Ximiao, a distinguished researcher at the National Laboratory of Finance and Development, told reporters that the reduction of the benchmark deposit interest rate is a "double-edged sword," indeed help reduce the cost of bank funds, but at the same time <MASK_REP> may aggravate the diversion of bank deposits. Affected by the epidemic, tour groups suspended, tourist attractions closed <MASK_REP> a large number of orders unsubscribed, resulting in a huge loss of tourism. Shenzhen three major stock indexes <MASK_REP> continue to rise, gains are more limited. In recent years, relying on natural conditions and geographical advantages, Huishui County has explored the characteristic mountain industry represented by chayote melon, and <MASK_REP> as a leading industry in the county to promote 52000 mu. On the same day, the Century Jinyuan Hotel personnel department head will come <MASK_REP> . 7, from Shanghai, Zhejiang, Jiangsu, Anhui and other media representatives of the Yangtze River Delta region into Jianggan District, <MASK_REP> the region's data resources management bureau, Sijiqing police station and other demonstration sites for governance modernization. It is learned that Tongluan Technology and the <MASK_REP> (BRI Bank) recently reached a cooperation, will rely on leading artificial intelligence, cloud computing, big data and other technologies to provide banks with intelligent analysis and decision-making services, improve the efficiency of financial services. Ministry of Industry and Information Technology: Revise the Method of Managing Average Fuel Consumption of Passenger Car Enterprises and the <MASK_REP> of New Energy Vehicles - EconomyWatch.com - Professional Financial News Website It is also a funding issue, <MASK_REP> Julius van de Laar) Frankly. Online shopping, live with goods, online food ordering, customized travel and other new <MASK_REP> , become this year's National Day Mid-Autumn Festival holiday a bright spot. Discipline inspection and supervision organs through the organization of spot checks to verify the results of correspondence, timely for the false report of party members and cadres to clarify and correct the name, guide party members as supervision as trust, pressure as a driving force, <MASK_REP> enthusiasm for entrepreneurship. Ms. Liu, who lives near the Chang'an Shopping Mall, accompanied her daughter to the new <MASK_REP> in the Changan Shopping mall over the weekend. We should draw inferences from one instance, not only pay attention to feedback <MASK_REP> problems rectification, but also systematically study representative, universal problems, so as to rectify a problem, solve a problem to ensure that our province on schedule and high quality completion of the task of poverty eradication. On the 1st, the reporter learned that because not assured the home mother of seventy, settled in France, Ms Yuan holding a try to see the state of mind, played an overseas phone, the following story let her feel warm <MASK_REP> . At around 5: 40 am on Friday, Chen jumped into the river from here to save the woman <MASK_REP> . The woman was rescued later, but Chen has not heard from him. The Chamber also received donations of more than 42000 pounds ( <MASK_REP> $52000). There are many uncertain factors in transportation, logistics <MASK_REP> rehearsal. Fu Linghui analysis, domestic epidemic prevention and control results are obvious, the consumer environment has improved <MASK_REP> the public consumption confidence has increased. “Netizen analysis is quite thorough, this type of hospital, if the elderly without children, <MASK_REP> will brush the elderly (rural cooperative medical card). After the epidemic, or even now, relevant departments can carry out nationwide "spitting" special treatment activities, severe treatment of this habitual harm to public health safety <MASK_REP> . The West Lake <MASK_REP> large-scale cruise ship suspension, music fountains will be suspended from opening to the public, re-opening time will be notified. Army support Hubei <MASK_REP> Liu Pan, has been in Hubei Maternal and Child Health Care Hospital Guanggu hospital infection nine Department fighting for more than 10 days, frontline heavy work let people nervous, how can help you relieve mental fatigue? Reporter <MASK_REP> found that part of the internet celebrity amusement equipment stray outside the supervision. "We create conditions for volunteers to fully understand the history of the project, have basic hands-on ability, will appreciate, can spread, planted a <MASK_REP> ." In fact, in the Spring Festival of 2020, the citizens of Chengdu already <MASK_REP> of "Wupeng boat trip to Jinjiang." VietnamPeople.com - Prime Minister Nguyen Chun Phu inspects preparations for the 36th ASEAN Summit <MASK_REP> Series of Meetings According to Wind statistics, as of May 6, there are 21 convertible bonds with a premium rate of over 100%. Yokogawa convertible bond (123031) <MASK_REP> more than 300%, Taijing convertible bond is also among the high conversion premium rate. At the <MASK_REP> meeting, Hunan Construction Bank signed a strategic cooperation agreement with the Provincial Department of Science and Technology to explore and solve the financing problems of asset-light technology enterprises, and gave a pre-credit quota of 1870000000 yuan to 1,385 small and micro enterprises. It is understood that Hangzhou issued additional consumer coupons at 10 o'clock this morning, issued a total of 1 00000 copies, each containing 5 full 40 deductions 10 yuan of universal coupons <MASK_REP> , can be used in the direct deduction of cash through Alipay. Four positive and 93 <MASK_REP> negative in tests on Fawkner restaurant employees, spokesman says After further work, the police found out that "old in" the real name of Liang, and found that with <MASK_REP> backbone formed a hierarchy of clear, relatively fixed personnel drug trafficking gangs. In 2017, 471 farmers and herdsmen from 1144 remote and scattered households in the village were relocated. Among them <MASK_REP> 334 people through the regulation of self-built housing, resettlement in the north of Qiapcha Town New District, only 3 km from the county seat. Together with the 2018 carry-over income of 36,040 million yuan and the revenue raised by local governments from issuing special bonds of <MASK_REP> yuan, the total revenue of the national government funds is 1,063,761,500,000 yuan. Xu said, first of all, we should realize that employment anxiety is not only <MASK_REP> in their own personal existence, the country has also taken a lot of policy measures to ease this year's employment tension. On the night of early autumn in July, the Milky Way <MASK_REP> turned just north and south. It seems that everything is relative, diversity has become <MASK_REP> , "how can" deconstruct the spirit of science, no one can act as a judgment authority on a certain issue. <MASK_REP> and many entrepreneurs under the word of mouth, 12 years, Jiangxi Huafuyuan Information Technology Co., Ltd. and other 93 textile enterprises have settled in ten thousand years. "The province strictly implements territorial and 'grid' management, implements township (street) cadres package, community cadres to the point, responsibilities to people, to ensure that rural and community prevention and control measures are implemented <MASK_REP> ." In order to cope with the epidemic situation, the Cambridge Students Union has initially established ten epidemic prevention communities, the number of people has reached more than 800, which will include more than 60 groups to <MASK_REP> the epidemic information in time, arrange materials distribution and so on. Statistics also show that <MASK_REP> in the first quarter of the public funds (excluding connected funds) net subscription share as high as 138,423.8 million copies. The officials also suggested in the letter that the school inspect activities related to <MASK_REP> and take appropriate action to protect the educational environment. He combed the questions into written words, landing them on pen and paper, avoiding as much as possible any deviation and misunderstanding <MASK_REP> . Next, the Hebei Provincial Department of Culture and Tourism will jointly launch about 120 scenic spots, hotels and about 180 festivals and <MASK_REP> performances. Great Bay Area residents are invited to enjoy a cultural tour dinner. General symptoms: fever, fatigue, dry cough, gradually appear dyspnea, onset of fever (≥ 37.3 °C) as the main performance <MASK_REP> no fever. Another look at the two protagonists: Huang Xiaoming and Yin Zheng, the former self-certification is "oil removal success," the latter <MASK_REP> jump into the focus of public discussion. This year, it is the second anniversary of <MASK_REP> like the wave of consumer upgrade, chain of a series of new actions, pointing to service upgrade. At present, 659 grain processing enterprises in Hubei have resumed work, which can produce more than 70,000 tons of finished grain daily, <MASK_REP> three times the consumption, Hu Xinming said at the press conference. The project is also the first time the Double Shield Tunnel Boring Machine (TBM) has been put into use in Nepal and the first project in the world to use TBB to traverse <MASK_REP> of the Himalaya Mountains. As for the US-Taiwan economic dialogue, Zhao <MASK_REP> announced that China has always opposed official exchanges between the United States and Taiwan and has lodged solemn representations with the US side. Cincinnati Masters: Djotim, Serena lead Murray, Venus hold wild cards - <MASK_REP> Enterprises can independently determine the evaluation scope, independently set up the skill position level, independently use the evaluation method, and complete the vocational skill level of skilled personnel. Social <MASK_REP> may carry out vocational skill level identification for the society. "We (the airline industry) are among the first to be affected and the last to recover," said Spohr, chief executive <MASK_REP> . The European Commission recommended earlier Tuesday that EU countries lift travel and transport bans against Britain <MASK_REP> and flight bans should not continue, and should ensure that people who must travel can still travel, while avoiding supply chain disruption." Villagers have not only learned to do business with people all over the country through e-commerce platforms, but also learned to <MASK_REP> themselves to the outside world, with the village's own loud "brand." Facing questions from reporters on the scene, <MASK_REP> laughed and shook his head: "It feels like a dream. I don't know if I'm dreaming." In order to provide the people with all-round, full cycle health services, Zhuzhou City <MASK_REP> also actively explore the "Internet + medical health" work, promote all levels of medical institutions business information. This is another first trial move, marking the Shanghai Free Trade Zone <MASK_REP> from the key enterprises to participate in the pilot stage, into the normalization, standardization, large-scale industrial development stage. For the second round of epidemic, we used to think that respiratory infections <MASK_REP> , that is, winter, spring. Gold, a safe-haven asset, was sought after by investors as global stock markets <MASK_REP> amid worries about the world economic recovery amid the spread of the epidemic. In the first half of 2017 to 2020, the operating income of innovation business and other sectors was 5.1, 7.5, 9.3 and 540 million yuan respectively, accounting for less than 1% <MASK_REP> . Today, his greenhouse is not only growing vegetables on a large scale, but also successfully growing dragon fruits, lemons, figs and more “Rarity "It has <MASK_REP> developed pick-and-see agriculture and become an Internet celebrity" punch "for residents of neighboring towns. This is another first trial move, marking the Shanghai Free Trade Zone from the key enterprises to participate in the pilot stage, into the normalization, standardization <MASK_REP> large-scale industrial development stage. As the head of a local public welfare institution concerned with marine environmental protection, Ma Haipeng believes that it is necessary for the Blue Association to write articles to the public <MASK_REP> so that more people know about the project. After the epidemic, or even now, relevant departments can carry out nationwide "spitting" special treatment activities <MASK_REP> , severe treatment of this habitual harm to public health safety behavior. The epidemic area is relatively limited, there is no wider community transmission, but we should also be highly alert to the non-Dalien Bay area of clustered epidemic and community transmission <MASK_REP> . The picture shows a landslide on the road in front of the house. The house cannot evacuate <MASK_REP> . Lebanon's information minister said the cabinet approved the rescue plan on the 6th and made some amendments, which the <MASK_REP> said was secondary. <MASK_REP> , Dec. 15 (Xinhua) -- Comprehensive Japanese media reports, Japan Cartoonists Association on Dec. 15 issued an obituary, Japanese cartoonist Daiji Ichifeng, a member of the association, died on November 27 at the age of 84 from a cerebral hemorrhage and pneumonia. Central Petroleum and Petrochemical Enterprises Fight Epidemic Prevention and Control Service <MASK_REP> to Ensure Oil and Gas Supply Jiang Yi: The company's main customers are government customers, <MASK_REP> the government's focus on epidemic prevention and resumption of work and production. On March 14, 2020, Jia Jingbo was detained, 10 days later, by the Ordos City People's Procuratorate <MASK_REP> . " <MASK_REP> pain and fear, but also hope." USS Roosevelt has 38 confirmed, officials say cases <MASK_REP> continue to increase - BEIJING In terms of market value growth, the growth rate of total market value of listed companies in Hangzhou is not low, compared to <MASK_REP> yuan at the end of 2018, an increase of more than 50%. On April 17, the Politburo held a meeting <MASK_REP> that "we should actively expand effective investment and implement the transformation of old residential areas." What is particularly interesting is that inside the courtyard, there is also a red pergola. The skylight of the pergolan is meticulously made of anti-rain tarpaulin and anti-sand foil; Under the pergola, more <MASK_REP> a small exquisite stage. <MASK_REP> Author Yin Jianling's new work "Elephant Foot Drum," based on the childhood experience of deaf dancer Tai Lihua, was all online. Tells a story of an inspirational growth story of seeking perfection in the incomplete and creating miracles in the ordinary. Aware of these problems, Bai Buhei began to have a <MASK_REP> identity to let more people know what is in the heart of depressed patients. At present, in the restaurant industry in response to the new trend of eliminating waste, has been difficult to get rid of the "waste" label of cafeteria, Also from its own characteristics, through a series of such as deposit system, card supply, limited time and other methods to reduce waste <MASK_REP> . <MASK_REP> 22 article in The Australian, Senator Payne said she would continue to push for a review at all international events this week because it was necessary to protect Australia's sovereignty. From 2015 to 2019, the province will replenish 55,000 teachers and <MASK_REP> 109,000 principals and teachers. In June, French forces killed Abdel-Malek Droukdele, the leader of "al-Qaeda in the Islamic Maghreb" <MASK_REP> . (Writing by Huifen Lin; Participating reporters: Sun Yifei, Yu Tao, Zhang Qi, Xie Yuzhi, Chen Zhanjie, Gao Lei, Chenchen, Li Xiaopeng, Hemiao, Jiang Xue, <MASK_REP> , Cheung Jiawei) Energy Bureau: Society-wide Electricity Consumption Rose 2.3% YoY in July - <MASK_REP> - Professional Financial News Site You Canghai, a family member in Qinqian Village, Sanshan Town, Fuqing City, Fujian Province, posted a notice at the gate of the family's social courtyard, At the same time in their WeChat <MASK_REP> issued a notice, the first independent isolation, for the neighborhood and local prevention and control of the epidemic has done a good example. Now he is one of the gym's <MASK_REP> hardest-working members, working out every day with a quick snack after work. He said that maintain social distance epidemic prevention level to 1.5, the Seoul Municipal Government will take three measures: improve public facilities epidemic prevention standards, strengthen daily life epidemic prevention efforts <MASK_REP> , strengthen propaganda and supervision. At the same time, in the face of the resumption of work and production, the new enterprise "small helper" client can help enterprise departments to <MASK_REP> return to the post workers, visitors to measure the temperature, scientific perception of risk groups, so that the return to work at ease. Protests erupted in several Iranian cities that day, and protesters held the IRGC and even the supreme leader himself <MASK_REP> responsible for the tragedy. "To <MASK_REP> Grandpa, that's the goal I set for myself." Prime Minister <MASK_REP> urged the Foreign Ministry, Vietnamese ambassadors and representative offices to do their utmost to do a good job in the consular protection of citizens. Baoshan City has actively expanded its employment channels. Since 2015, the city has transferred 1,771,600 rural laborers and 378,800 people <MASK_REP> outside the province. Once found in the family or neighbors adverse reactions <MASK_REP> , should be in self-rescue, mutual rescue at the same time call the emergency number. Now he did not mean to obstruct, but felt that some things in the family had not been clear, the daughter should <MASK_REP> the mother's control, worried that her mother would come back later, there would be disputes. During the day, there are picturesque scenery, wonderful sports events, lively cultural and creative markets, etc. After nightfall, there are also gorgeous light shows and light <MASK_REP> shows, showing a new image of the city and a festive atmosphere, to the delight of visitors. Surging waves, amphibious armor technician, four sergeant major Tan Bin led dozens of chariots in the sea splitting waves, life and death charge, <MASK_REP> launched beach landing battle. Is the phone in your hand, you do not dare to open, fold, for fear of <MASK_REP> .” Our newspaper on October 18 <MASK_REP> this afternoon, the provincial and municipal epidemic situation disposal work headquarters held a regular meeting, listen to the working group on the situation report, arrangements to deploy the next task. These three-dimensional interests and demands in many aspects of mutual constraints and checks and balances <MASK_REP> new era of social governance should take into account all parties, in various interests and claims as far as possible to seek the largest common divisor, reach a balance, form a consensus. Xu Min's father and sister work <MASK_REP> all the year round. Her mother works at home to take care of her and her brother. Her living expenses depend on the harvest of several mu of crops. Wang Fuqiang came to "Dragon Son" yacht <MASK_REP> first wave of diving tourists have been waiting here. Shaanxi Adds 5 Confirmed Cases Imported from Overseas <MASK_REP> 1 Asymptomatic Infected Case Imported The Huarong Shoe Industry Co., Ltd., an industrial transfer enterprise in Ningyuan County, has built poverty alleviation workshops in Heping Village, Yao Township, Jiuyi Mountain, and Shuguang New Village of Baijiaping Town, Ningyuanxian County. A total of 211 people were employed, including 45 poor laborers <MASK_REP> . Australian meteorite hides Earth's oldest material with longer history than solar system - <MASK_REP> Add <MASK_REP> the pursuit of health and the reduced need for high-sugar, high-calorie drinks, and can Coca-Cola grow? In drug safety supervision, the province last year <MASK_REP> 378 high-risk areas, key varieties of pharmaceutical equipment production enterprises to carry out supervision, check 2,400 potential risks, investigate 6,237 illegal cases. Gao Hongbing said, today 4310 Taobao <MASK_REP> , 1118 Taobao town shop annual sales have reached 7000000000000 yuan, driving employment opportunities to 6830000. The cells will be produced in Bittelfeld-Wolfen in the future, with the solar modules <MASK_REP> made in Freiberg, near Dresden. The reporter learned in the interview that some schools in Nanjing are also carrying out some new ways of learning exploration, and in a number of primary and secondary schools pilot opened "apple class" has <MASK_REP> . As early as in 2017, Kaifeng took the lead in introducing the reform of "22 certificates into one." The multi-department, multi-window service compressed to a window, will be a variety of application materials integrated into a set of forms, <MASK_REP> processing time compressed to 3 working days. On April 12, in Buenos Aires, Argentina, <MASK_REP> (left), president of Zhejiang Overseas Chinese Chamber of Commerce of Argentina sent goods, stranded tourists take pictures with him. Ministry of Finance Issues Key Epidemic Prevention and Control Funds Budget for Enterprise Loan Discount <MASK_REP> Compared with <MASK_REP> hundreds of millions of villas, let the basement is more unacceptable, resulting in the final tragedy. <MASK_REP> field layout "learning base" is not uncommon in the industry. But Zhang Meng <MASK_REP> there is nothing to fear, the actor should go to create some of their own life will not experience things, if it is controversial, prove that you have played the role alive. Small County "Flying" Out of the Mountains: A Sidelights on the Opening of Qu-Ning Railway <MASK_REP> After the release of Weibo and WeChat, <MASK_REP> Mr. Shen's phone was quickly blown up and the partner was found within 3 hours. At the meeting, Ding Tian said that the tourism industry is one of the most important economic industries in the world, <MASK_REP> suffered from the severe impact of the epidemic, the recovery and development of tourism after the epidemic will play an important role in promoting global economic recovery. At 1: 30 a.m., after arriving home, He Li updated a <MASK_REP> in the circle of friends: had a special birthday, with some strangers to talk a lot, feeling a lot. In just two years in Suzhou, Yuan Hongdao also got to know many Suzhou cultural people, his own literary ideas <MASK_REP> more clear, that is to let the truth naturally reveal, let the text have temperature, heartbeat. Evaluate muscle strength, observe pupil, change bed sheets, inject liquid food, oral care... … Yi Junfeng carried out his <MASK_REP> in an orderly manner. She told reporters that many enthusiasts to inquire to the office phone, until this afternoon there are phone calls in, " <MASK_REP> have sent express, is to say to us." Industrial support, technical support, the expansion of the industrial chain <MASK_REP> , standardized cattle breeding areas, forage cooperatives and other projects rapidly advanced. <MASK_REP> the supermarket, the shelves of rice, flour grain, vegetables, fruits, meat and other goods sufficient. Observe the front and rear road conditions, keep turning direction to each to make gestures to the vehicle. … In a moment, the body came out with a fine sweat <MASK_REP> , soaked clothing. A child with a higher IQ, because his parents cannot send him to a good kindergarten, is eventually eliminated in the interlocking system, replaced by another child with <MASK_REP> qualifications, into a good university. Dong Ximiao, chief researcher of Zhongguancun Internet Finance Research Institute, pointed out that in recent years, under the background of strengthening financial supervision and preventing financial risks, financial technology regulatory policies and environment <MASK_REP> undergone major changes. The second situation is that some people run out of foreign capital, such as <MASK_REP> Foxconn, it is a private enterprise, in its beginning is from Terry Gou, is to do all aspects of computer connection, do very powerful. Meanwhile, one death was also reported in Kathmandu on the same day, bringing the total <MASK_REP> to 32. Up to now, the snowfall is still continuing, Linxia Highway Bureau pay close attention to weather changes, strengthen emergency duty and highway inspection, release road information through multiple channels, <MASK_REP> to do a good job of highway protection. Nowadays, many old people think that "it doesn't matter if children are fat" and "grow up naturally thin," and these ideas are likely to <MASK_REP> cause children to get fat, become "small fat" important factors. Social media cybersecurity expert Susan McLean told News Corp parents must be vigilant to ensure their children do not watch <MASK_REP> . What is particularly interesting is that inside the courtyard, there is also a red pergola. The skylight of the <MASK_REP> is meticulously made of anti-rain tarpaulin and anti-sand foil; Under the pergola, more hidden a small exquisite stage. The date of going abroad has been set, <MASK_REP> home for passport and other procedures to go abroad. "To ensure vaccine safety, efforts must be made from the whole process <MASK_REP> ," said Ye Xingui, deputy director of the immunization program of the Guizhou CDC. "This is why Guizhou has built an electronic tracing system for vaccines." Unfortunately, JD.com logistics truck was also stopped outside <MASK_REP> Huangpi District, insulin can only be returned to the hands of old customers. 2020-09-22 11: 19: 49 <MASK_REP> At 22: 00 on June 22, a food warehouse in Qilihe District of Lanzhou City, Gansu Province, a fire <MASK_REP> , Lanzhou fire control deployed six fire stations 19 fire engines 115 firefighters have been on the scene to fight the blaze. But <MASK_REP> not for long, the prosperity of TV shopping attracted a large number of local stations and businesses influx, product quality, after-sales service, fake and other problems frequently occurred, television shopping suffered a crisis of confidence. Zhejiang River Cargo Ships Complete Domestic Sewage Tank Renovation - Xinhuanet <MASK_REP> Zhao Enyi, who has followed Kontete for nine years, recalled that in May 2018, in a forest fire in Nyingchi Milin County, it was the captain's judgment that allowed everyone to escape <MASK_REP> in time. 85 cases in the Department of Health ( <MASK_REP> isolation; Query about nucleic acid testing; Query about health code; Query about epidemic update / epidemic query; Query other. He hoped that through this study, students will not only learn the skills of calligraphy and seal cutting, the methods and habits of reading, but also learn to respect tradition, gratitude to the times, <MASK_REP> and creativity, and work hard for the inheritance and development of traditional calligraphy. Producer Hyman and "Harry Potter" casting directors have been auditioning young hopefuls since 1999, Through open casting <MASK_REP> calls and ads, they've interviewed thousands of kids and still haven't found the perfect Harry. The epidemic situation in the first half of the year restricted people's <MASK_REP> travel and shopping, but the demand for consumption did not disappear, just because objective factors were limited, this double 11 let the long-suppressed consumer enthusiasm has been fully released. If five years ago began layout, the effect is better, and is to rob top talent, rather than quasi-first-class talent <MASK_REP> . With regard to the additional expenditure of <MASK_REP> excluding the ¥27,000,000 reserve fee, the OCOG ensured the financial resources through additional sponsorship from sponsors and the inclusion of property insurance payments in case of contingencies. Bean rain, hit in Longsheng community 4 building 2 unit 302 glass window "crackling", such as beating on the body of the people, looming pain. <MASK_REP> The Minnesota National Guard announced Wednesday night <MASK_REP> that it had mobilized more than 500 soldiers to Minneapolis and the surrounding city of St. Paul. As early as 12 years ago, China implemented the "plastic restriction order," but there are still some areas <MASK_REP> in the supervision of the use of plastic products in the network economy. Song Zhiping said, "We are currently facing the big data industry, 5G and other hard technology areas of innovation development wind, enterprises should actively and effectively innovate, not in the name of innovation to repeat investment <MASK_REP> inefficient investment." Trump told reporters at the White House on Wednesday <MASK_REP> during a discussion with Republican state attorneys general. “I think (the presidential election) will be decided by the Supreme Court. In the first half of 2020, 55 poor villages in the county dropped out, and the incidence of poverty dropped to 0.15% <MASK_REP> . According to Indian sources, 20 people died on the Indian side, while sources said <MASK_REP> 43 were killed or injured. However, when it was learned that the tenants turned out to be Cho Doo-soon, The landlord issued the eviction order. Other tenants living in one building were upset, and some had to move, so <MASK_REP> had to ask Cho's wife to find another place to live, he said. Zhang Jiacheng said he felt very happy, because <MASK_REP> is Curry, usually will watch him play, did not expect one day Curry will pay attention to himself. It is reported that the newly increased bond funds have all been invested in major projects in infrastructure and public service sectors, which <MASK_REP> played a positive role in expanding effective investment, doing a good job in the "six stability" work and implementing "six guarantees." " <MASK_REP> , matsutake poor quality, bad many." Everyone once again to pay tribute to academician Zhong Nanshan, " <MASK_REP> see this photo tears down," "will always remember this kindness," and "Zhong old really hard, salute you." In order to help Fu Zhenqing shake off poverty and become rich at an early date, in April 2019, Help cadres according to his family's actual situation, actively <MASK_REP> project, with 21,000 yuan to buy 21 poverty relief sheep, focusing on helping its development sheep industry. Under the central, departmental and local management framework, <MASK_REP> how to build a strong institutional mechanism, organization, overall planning, system coordination and build a collaborative platform, is the most important to effectively promote the new infrastructure. Vice Chairman of Thanh Hoa Provincial Human Rights Committee Pham Teng Quan briefed the Huapan Provincial working group on the recent anti-epidemic work in <MASK_REP> Province. Yang Zhi, deputy general manager of Guignier, recently told reporters that although affected by the epidemic, but this year the flow of exhibitors did not reduce, in contrast he <MASK_REP> that the industry for the company's brand awareness is higher. According to the Anhui Provincial Department of Agriculture and Rural Affairs, <MASK_REP> Anhui this year's wheat scab prevention and control financial investment reached a record high - the province's fiscal implementation of scab control financial funds 628 million yuan, an increase of 423 million yuan over the previous year. Shenzhen three major stock indexes continue to rise, gains are <MASK_REP> limited. Recently, <MASK_REP> sentenced A to five months in prison for allegedly sending malicious messages to Shen Eun-jin, a former member of the idol group babyvox. Even if Yee Dongsheng at the beginning of the program to the idol "seven inches" a ruthless criticism, <MASK_REP> pain point, but with the program, the audience quickly found that this is only the program to Yang first suppress "routine." The Youjiang River Valley in winter is warm <MASK_REP> spring, and all kinds of autumn and winter crops with good growth bring harvest atmosphere. During the National Day holiday, in the <MASK_REP> Sino-Vietnamese border region, Longzhou County, Chongzuo City, Guangxi Zhuang Xiangzi Cong Village passion fruit planting base, Fruit growers are busy picking and packing fresh fruit, and boxes of passion fruit are sold everywhere through e-commerce. A child family member told the Beijing News reporter, waste pit perimeter, there is a "dangerous depth of water" warning board <MASK_REP> , but installed in the pit side of the pumping equipment room behind, blocked by weeds, very obscure. At the same time, through the implementation of large-scale tax and fee reduction, <MASK_REP> effectively stimulate the vitality of enterprises, and then boost the local fiscal revenue to accelerate the recovery.” Research data from Quest Mobile shows that as of August 20, <MASK_REP> APP DAU has grown for 21 consecutive months year-on-year and MAU for 22 consecutive months. Meanwhile, the World Wide Fund for Nature (WWF) will also hold activities outside the <MASK_REP> palace. <MASK_REP> , many colleagues sleep at night, rely on sleeping pills to ensure sleep. More than one year, the integration of the Yangtze River Delta has made these progress. <MASK_REP> Research data from Quest Mobile shows that as of August 20, EasyCar APP DAU has grown for 21 consecutive months year-on-year and MAU <MASK_REP> for 22 consecutive months. However, the improvement of supply side depends on the speed of epidemic prevention and control process. If the risk is lifted later, the continuous delay of TV series <MASK_REP> filming will increase the pressure on TV production companies to control costs. Fight in the community 68-year-old retired police Zeng Xianming, fighting in the detention center 68-year old retired police... … In Xiaogan, more and more retired police fighting <MASK_REP> . "It's the same as an interdisciplinary, cross-institutional research team. <MASK_REP> systematically if you run through them up and down." It is understood that Hangzhou issued additional consumer coupons <MASK_REP> 10 o'clock this morning, issued a total of 1 00000 copies, each containing 5 full 40 deductions 10 yuan of universal coupons, can be used in the direct deduction of cash through Alipay. Guangdong new imported confirmed cases of 3 cases, imported asymptomatic infection 1 case - <MASK_REP> 8, Mid-Autumn Festival welfare <MASK_REP> to have a clear standard 5 to increase the amount of sympathy goods In fact, a discerning person can see that clamoring for China Airlines name change was originally an excuse, the fundamental purpose of the Green politicians is to <MASK_REP> of Chinese Airlines harvest political interests. Liu Xi told <MASK_REP> , at the beginning, it is because of the teacher's guidance, he was clear in the university stage should learn what, how to learn, should work in what direction. On July 10, the reporter followed the "green water and green hills <MASK_REP> into the Liaoning Province Fushun City was informed of the above news. "When I saw a lot of volunteers <MASK_REP> , I had to do something." Since the outbreak in Italy, the number of confirmed cases and deaths has risen daily <MASK_REP> health system is overloaded, protective supplies are scarce, and health care workers are racing to save patients. Live streaming platform needs to quickly embrace environmental changes, continue to introduce new product forms, output more creative operating methods, <MASK_REP> fans community direction. Similar to Miaojie, Yihai Kerry, Jieru and other brands during the epidemic also focused on the introduction of contactless loans, for the continued growth of dealers to remove worries, effectively <MASK_REP> the impact of the epidemic on the company's performance. BEIJING, October 19 Nanning (Reporter Yang Chen) Guangxi Zhuang Autonomous Region vice chairman, acting chairman of the Blue Sky Li said in Nanning, <MASK_REP> , We will adhere to the Six Principles and contribute to building a magnificent Guangxi and realizing the dream of rejuvenation. Spent this large sum of money, Yang thought to rest easy, unexpectedly the judicial department of the crime <MASK_REP> there is no "care" meaning. BEIJING, Jan. 15 (Xinhua) -- Variety show "youth has you 2" today <MASK_REP> 109 girls with dreams into the youth producer vision. In fact, the central government has long been aware of this problem, even in the beginning of urban improvement <MASK_REP> issued relevant policy documents. 75 of 95 cities have achieved good progress <MASK_REP> the target of good days in June-July; In July, O2 concentration in 52 cities with supervision and assistance decreased by 13% year on year. Ma Wenqiang said that when he was a child, he often listened to his mother tell him about his grandfather and their generation of road people <MASK_REP> , so he was determined to be a road people in the future. Roma coach Daniel Fonseca said it was another "double <MASK_REP> " to approach the same round differently. Yu Shuhan and his friends hiked through 10 kilometers <MASK_REP> the desert no man's land. They buried their own rice in the hinterland of the desert, reliving the difficulties of Kubuqi sand-control people sleeping rough and bibimbap with sand. In order to avoid police detection, these clouds basically will only "survive" for two days <MASK_REP> the time will be cloud disk "operators" actively destroyed, and then re-make the new cloud disk link released. After further work, the police found out that "old in" the real name of <MASK_REP> Liang, and found that with its backbone formed a hierarchy of clear, relatively fixed personnel drug trafficking gangs. Previously, according to Reuters, 36 kr and other media reports, glory sale price in accordance with <MASK_REP> profit of 600 million yuan calculation, 16 times PE, the final price is about 1000 million yuan. At present, the online course platform commonly used by minors can be divided into two categories <MASK_REP> by the government or schools specially developed online cloud classroom teaching platform, the other is by social networking website development online class platform. Yu Huan is not the person who changes the direction of the tide, but in the tide in the case, but inadvertently <MASK_REP> the flow rate changer. Although only three years of primary school, but Yang Zairong is unequivocal <MASK_REP> 38 left-behind women to run the cooperative flourishing, embroidery sold to many big cities. BEIJING, November 10, Guangzhou (Reporter Tang Guijiang) Guangzhou Municipal Financial Supervision and Administration Bureau sponsored by the listing of enterprises in Guangzhou "bellwether" action plan promotion <MASK_REP> on the 10th in the Guangdong Equity Trading Center trading hall. In other words, in this case, <MASK_REP> exhibitors to attract potential customers, new customers difficult. BEIJING, December 30, Shaoxing (Reporter Xiang Jing) strong cold wave hit, not too cold <MASK_REP> how to "keep warm" to become a new challenge at the end of 2020. The police urged people to call the <MASK_REP> hotline immediately if they have any clues. They can also log on to the crime website or send messages via mobile phone to provide clues. The source of the information is strictly confidential. Therefore, in the "6.18" party lineup, major satellite TV also spent a lot of thought <MASK_REP> , almost all the current most popular stars. Some hotels are also short of staff, is stepping up <MASK_REP> . The emergence of medical insurance electronic voucher solves this problem, it can not only exist in the mobile phone, but also the national unity, <MASK_REP> convenient and compatible. In Mayang Miao Autonomous County, Huaihua City, Hunan Province, 46-year-old Long Xushang is the first to buy modern farm machinery, the first transfer of land, and the first <MASK_REP> cross-district operations in the county to grow grain. Even so, not long ago in the fight against the epidemic and this flood control line, <MASK_REP> her figure. It is recommended that <MASK_REP> , more accountability is after the epidemic is controlled; Since 2016, Hotan has renovated the old city, Under the premise of preserving the original style of Tuancheng, <MASK_REP> gradually improve the environmental and sanitary conditions of residents, create a historical district with cultural charm, and attract tourists from both inside and outside Xinjiang with a new look. Fight in the community 68-year-old retired police Zeng Xianming, fighting in the detention center 68-year old retired police... … In Xiaogan, more and more retired police <MASK_REP> fighting in the war "epidemic" line. Shirley Shea, a doctor at Hennepin Medical Center in Minneapolis, cried <MASK_REP> . In recent years, with the continuous promotion of the great protection of the Yangtze River, the implementation of a comprehensive fishing ban along the banks of the river, such as Shu Yinan, Lu Baohua and other fishermen who changed their identity "washed their feet <MASK_REP> ashore," as well as a lot of people who changed to become fishermen. "At that time, all traces of physical evidence comparison work <MASK_REP> , encountered to extract unclear physical evidence, comparison may take a half day." After the national on-site meeting, the Ministry of Transport accelerated the promotion of the <MASK_REP> , especially after the central document No. 1 issued in 2019, the ministry further intensified the promotion. <MASK_REP> the disclosure of the annual report, Shenyang Chemical parent net profit ultimately fixed for -746 million yuan. In the Drum Tower near the door of a hotel, usually gathered more than 10 drivers waiting for orders <MASK_REP> small New Year's Eve, the reporter found nearby squatting, only three drivers waiting to receive orders. <MASK_REP> 43 killed, more than 350 injured in riots in Indian capital region - Xinhua Now <MASK_REP> takeaway platform launched some refined set meals, small portions of signature dishes, specials with staple foods, more cost-effective. " <MASK_REP> Two or three thousand bags a day, earning a thousand dollars a month." The bullish <MASK_REP> in our model portfolio include brokerages, building materials / industrials, medical equipment and technology companies that have benefited from policy easing / stimulus. "Before, a line had to be fought for several years. Now <MASK_REP> can reach a consensus, finalize the general, and with security ensured, it can be opened. It is very efficient." The second step of the victim to brainwash deception, regardless of appearance, height, height and weight, "happen to" <MASK_REP> a job for you, and then charge packaging fees, and even induce victims to pay with network loans. In Hue, a former royal city and tourist hotspot, 80% of hotels have closed and 8,000 industry workers have lost their jobs, according to <MASK_REP> . <MASK_REP> to the Guangshui City Radio and Television Station. Agricultural Bank of China (ABC) Guangshui sub-branch issued a situation note saying that after the incident, the bank's personnel have rushed to the elderly in time to apologize, and said it will take this as a warning, efforts to improve service quality. Li Li was born in December 1922. At the beginning of the War of Resistance Against Japanese Aggression, her father died of illness and the family's life became more difficult. At 17, she had to live with her brother and sister-in-law <MASK_REP> . Because he likes technical work, he went to secondary school after junior high school, after graduation <MASK_REP> was assigned to an important state-owned factory as a technician. 360 Future Security Research Institute related experts said that criminals will generally use a modified mobile phone connected to a laptop as a pseudo-base station, <MASK_REP> power in dozens of watts or so, covering a range of 500 meters to 3,000 meters. For the school, it is necessary to open a good labor education curriculum, actively build "down to earth" labor education practice base and give full play to its role, so that the young people in the process of sweat <MASK_REP> efforts to deepen the understanding and feelings of labor. But in advance was given high hopes for the blockbuster "red fox scholar" and did not make the expected box office, and the film's reputation is also mediocre, <MASK_REP> be described as the market box office are frustrated. For the theater to resume work, in addition to limited flow admission, interlaced sitting, real name registration, admission temperature monitoring and other preparatory work, <MASK_REP> is also in full swing. Now all 70 villagers in Tun have set up farmhouse hostels in front of their homes to develop rural tourism. Villagers bid farewell to the "poor nest" and eat travel "sweet bun. <MASK_REP> " Xinhua News Agency, Accra, July 7 (Reporter Xu Zheng Guo Jun) Abuja news: Nigerian police said on the 7th, the country's southeastern Benue State 5 boat accident, <MASK_REP> at least 14 people were killed, and many others are missing. Between 08: 00 on 21 and <MASK_REP> on 22, 82% of the city's measuring stations recorded rainfall of more than 50 mm, Fifty-two per cent of stations recorded more than 100mm of rain and 5 per cent more than 250mm. Sally downgraded to <MASK_REP> tropical cyclone, killing 1 in US, hundreds more rescued Later said that because the provincial prison did not connect to the epidemic situation network reporting system, so on February 20 the province's single-day new confirmed cases <MASK_REP> to 631 cases. Affected by the epidemic situation overseas, Yunnan border states and cities, National Day holiday <MASK_REP> decreased significantly year on year Local media quoted health agencies as saying that Lu, 69, is known to have passed on to her husband, Zhao. And then two people infected <MASK_REP> 20-year-old granddaughter, is close contact type of infection, but Lu Moumou himself was infected, the situation is unknown. In addition, Taobao has become the exclusive e-commerce partner for the Spring Festival Gala in 2020, The two sides will work together to bring the largest exclusive e-commerce subsidies in the history of the Spring Festival Gala, while emptying the shopping carts of 50,000 consumers <MASK_REP> opening the way for a new paradigm of T2O communication. US President Donald Trump said <MASK_REP> he supported the military's decision to remove the captain of the nuclear-powered aircraft carrier USS Theodore Roosevelt on Tuesday. About 772,000 shares changed hands on U.S. exchanges, <MASK_REP> with the daily average of 754,000 over the past 20 sessions. Film is the extension of reality, film practitioners actively involved in the issue of women, eager to <MASK_REP> industry structure and even gender structure adjustment of the voice from reality permeated in the works. At present, the company's annual production capacity of 40 million oral liquid, 30 million tablets <MASK_REP> 10 million bags of granules. With the support and help of forest farm leaders, Chen Fangzhen, who has done some research on Tuotuo wintersweet, <MASK_REP> and her colleagues have been conducting cuttage seedling experiments every year since 2017. The reporter learned in the interview that some schools in Nanjing are also <MASK_REP> some new ways of learning exploration, and in a number of primary and secondary schools pilot opened "apple class" has caused concern. It is recommended that <MASK_REP> Chinese residents abroad, if they have fever, cough and other symptoms, should promptly seek medical treatment in the local area, or take home isolation observation, suspension travel arrangements. "Notice" stressed that discipline inspection and supervision organs at all levels should pay close attention to the implementation of epidemic prevention and control responsibilities, measures, discipline and style of work to strengthen supervision and inspection, implementation of ineffective, dereliction of duty caused serious consequences, in accordance with the rules <MASK_REP> discipline according to the law. If Baidu network disk download speed will be fully open there will be greater bandwidth costs, so this will be limited to non-members <MASK_REP> to control the entire product operating costs. National table tennis player Fan Zhendong, Xu Xin are 4: 0 victory over their opponents, Wang Chuqin is 4: 3 narrowly <MASK_REP> teammates, Grand Slam winner Malone. Hunan Daily on November 4 (Reporter Zhang Jiawei correspondent Deng Zhuoling) on October 29, "Shaoyang <MASK_REP> Police" armed patrol brigade reloaded to fight, launched the normalization of armed patrol work. According to <MASK_REP> reports, at present the processing plant to undertake the production of uniforms, curtains, sanitation workers' overalls of seven counties in Ali area, accumulated sales income of 4530,000 yuan, pay 1920,000 yuan. Guo admitted that takeout is a temptation for catering companies, "Online is more comfortable, increase turnover by 30% is no problem," <MASK_REP> but he believes the 30% has a great impact on the future value of the brand. <MASK_REP> , the total income per hectare of organic rice and crab is nearly 5000 yuan more than ordinary rice fields.” To practice the concept of ecological civilization and promote high-quality economic development, <MASK_REP> ecological and environmental infrastructure construction should be incorporated into the new infrastructure system and guide all localities to increase the share of ecological environmental infrastructure in project implementation. Strengthen environmental sanitation, strengthen the community indoor and outdoor activities and equipment facilities of the daily disinfection, <MASK_REP> strict community crowd gathered in public places for cleaning, disinfection and ventilation, especially to strengthen the environmental control of farmers market. Some people expressed tears, some expressed their respect to the selfless dedication of the rural teachers, and some netizens said, "Looking forward to the side of the mountain will become the <MASK_REP> children out of the mountains to see the world power." Western countries are actively promoting the Indo-Pacific strategy, putting strong pressure on India <MASK_REP> reduce military cooperation with Russia. After the epidemic, we will find that we have paid hard work and sweat and painful sacrifices, accumulated profound experience and lessons, <MASK_REP> the strong spirit and strong energy to win a decisive victory in an all-round well-off society and fight a decisive battle against poverty. Du Shibi, director of the Department of Price Statistics under the General Administration of Statistics, said the rise in CPI in January was due to the month-on-month increase in <MASK_REP> consumer demand for grain, food, beverages and clothing as the Spring Festival approaches. Food prices rose the highest, at 2.6 percent. Now, the production task has been decomposed to various counties and urban areas, refined to the rural group, to the <MASK_REP> business, farmers. On the same day, Japan's Chief Cabinet Secretary Yoshihide Suga said, “The International Olympic Committee on June 10 confirmed the 'security and peace of mind, Save costs, simplify <MASK_REP> " July 17 and released a specific venue and schedule. Recently, # IOC said the Tokyo Olympics will be held as scheduled # trending <MASK_REP> on Weibo. On the one hand, the new media platform <MASK_REP> for cultural communication mode innovation, speed of communication, extension of the scope of communication to provide a possibility, but also provides a real-time communication platform for the audience. The Milk Powder Division has released a brand new QQ Star Child Growth Formula <MASK_REP> , which fully covers the current market segment of children's milk powder and provides consumers with more choices. TAIYUAN, December 12 (Xinhua) -- Taiyuan will be insured less than a year of migrant workers and other unemployed people into the permanent protection, insurance less than one year unemployed migrant workers <MASK_REP> receive living subsidies. For example, in the "Qin Dynasty Epidemic Prevention and Control Methods" micro-classroom, introduced the Qin dynasty epidemic prevention methods <MASK_REP> three major steps: first discovery, then confirmation, and finally isolation. "The project is a project, but I think the development of this vaccine is more difficult than the traditional vaccine, because <MASK_REP> no one has been officially marketed with mRNA vaccine," Taolina said. The organizing committee <MASK_REP> that since the launch of the online parent-child competition in February, a total of four seasons of different themes of online parents-child competition has been held, has accumulated 150,000 groups of families to participate, covering more than 300 cities across the country. <MASK_REP> comprehensive look at the ICT (information and communication technology) market growth and opportunities in the next five years, AsiaInfo Security and its partners will have the opportunity to enjoy the largest industry burst dividends. Basang, a 51-year-old resident of Liuwu New District in Lhasa, told China News Service on Thursday that He is the last boatman on the Lhasa River. Today, his means of livelihood <MASK_REP> been changed to a 30-ton truck, engaged in transportation work. Some people not only " <MASK_REP> ," but also to certain industries, professional people wantonly stigmatization. Japan's Oriental Paradise Corporation on October 22 revealed that for Tokyo Disney Resort (TDR) annual <MASK_REP> , Refunds will be made from October 23 if the annual card is valid for periods coinciding with the resort's closure. But she <MASK_REP> take a plane, because of their father and husband quarrel, so to travel alone, do something never experienced to resolve this matter. We must be self-reliant and find a way to cut off the root of poverty <MASK_REP> . Shanghai multi-storey residential buildings retrofitted with elevators can <MASK_REP> withdrawn provident fund - Xinhua <MASK_REP> times in the district through nailing video conferencing, the transmission of positive energy, enhance business confidence.” On November 19, the Labor Department released data <MASK_REP> that the number of initial jobless claims in the week ended November 14 was 742,000, more than the market expectations of 707,000. Five years ago today, on the evening of November 13, 2015, Paris experienced a series of terrorist attacks, killing 137 people and injuring 413 others, the worst terrorist attack on France since World War II <MASK_REP> shocked the world. According to the plan, the South African government will divide each region into a number of wards, and according to its severity of the epidemic for the corresponding level of <MASK_REP> , as well as supporting martial law measures. Sincerely hope that the citizens of friends, do a good job of protection, keep home, everyone action, every family <MASK_REP> , cast the iron wall of mass prevention and control, gather the mighty force of the people's war. After <MASK_REP> , Wu Jintang, a large grain farmer in the Heilongjiang reclamation area, is very busy, and in previous years to prepare for spring plowing different, this year he "house" at home when the "analyst." Zhang Ling said, “If it <MASK_REP> , it may also affect credit. From then on, Lao Hu relied more and more on Tan Xuebing. He not only drew blood, supervised the daily care of eating, changing plasters and cleaning the room <MASK_REP> . Therefore, even if the next season Super League <MASK_REP> in March, April next year to kick off, then left to the Super finish the cycle is not very redundant. Efforts should be made to foster a market restraint mechanism in which "good companies get good treatment and bad companies get a price," and reform and <MASK_REP> basic systems such as registration system, delisting, mergers and acquisitions, refinancing and transactions. Anxious heart he looked at the previous had been helped by his real estate developer <MASK_REP> . Part of the online class platform is still pushing bad information juvenile model <MASK_REP> - BEIJING Ma Xiaoya said that, unlike the offline tour, the live online audience can not see the real scenery, can only rely on the anchor to keep talking <MASK_REP> is a great challenge for her. In the ice city of Harbin, the reporter previously at 11: 30 pm and 2: 50 pm <MASK_REP> sent a single different address of the ride itinerary, have waited more than 20 minutes to have a driver to pick up the order. Chu Shurong also said that he would recommend reading to students, "can learn <MASK_REP> from his accumulation of reading, thoughts into writing, these should be advocated." <MASK_REP> He used the decision-making power of state-owned financial resources allocation to seek benefits for others and illegally accepted huge amounts of money. Overall, hog prices may continue to be high in the short term due to seasonal supply reduction, limited imports of pork, transportation <MASK_REP> and other factors. If you overeat, especially <MASK_REP> (sweets, desserts), you will get fat. BAGHDAD, Dec. 19 (Xinhua) -- The Iraqi anti-terrorist forces issued a statement on Thursday saying that <MASK_REP> this year, counterterrorism forces killed 206 extremist group "Islamic State" militants, another captured 292 militants. Officers and soldiers involved in the fire kept shuttling in the scorched jungle, <MASK_REP> their clothes were cut several times, their faces and necks were covered with wounds, soaked in sweat, burning pain. Epidemic, these people <MASK_REP> "Tianlu" - Xinhua Zhang Shuai was 3: 5 down in the first set <MASK_REP> save three set points, and then successfully dragged his opponent into the "tiebreak," in "tie-break" to take the initiative, and ultimately 7: 6 to win the opening set. It is understood that Ping An e health insurance · long-term medical set a family rate discount, <MASK_REP> 3 and above can enjoy 95% discount. Dan Sri Idrus Harun also told Malaysia Today that he has been cleared of infection after undergoing tests, but is also in home <MASK_REP> for 14 days. At 22: 00 on June 22, a food warehouse in Qilihe District of Lanzhou City, Gansu Province, a fire, Lanzhou fire control deployed <MASK_REP> . However, Cheng Kaijia still put on protective clothing, masks, gloves and hard hats, and led everyone to crawl in the newly excavated small tube hole with a diameter of only 80 cm, and finally into <MASK_REP> the explosion formed a huge space. Wuyi, Zhejiang: Help private enterprises inject "vaccine" to prevent internal corruption "persistent disease" - <MASK_REP> A survey conducted by Ai Media Consulting for online education showed that 55.3 percent of respondents believed that online education during epidemic prevention and control was <MASK_REP> effective than studying at school. As the epidemic continues, the impact of the epidemic on the real economy is widely concerned, <MASK_REP> some experts and scholars call for financial means to support the real economic tide over the difficulties. Reuters 28 also reported the U.S. government's plan <MASK_REP> . “More than 10 of our village-level labor teams are poverty alleviation households, From the installation of street lights in rural areas, landscaping of courtyards, to the improvement of hills and ponds, road construction, they are everywhere. Their daily income is <MASK_REP> one or two hundred yuan, stable poverty has no problem.” Chen Jie introduced, canteen early contact with relevant senior teachers <MASK_REP> , and then arrange canteen staff in the book shape of the cake with a stroke to write "subject test center." Suzuki straight immediately contact the General Assembly Organizing Committee Chairman Yoshiro Mori, <MASK_REP> that Hokkaido bear this sudden problem, but should not bear the cost of this to Hokaido and Sapporo City. For anchors clearly stipulated: anchors in live activities, should ensure that the information is true, legitimate, <MASK_REP> false propaganda, cheating, misleading consumers. Rabbit, pigeon and other artificial breeding use of a long time, mature technology, the people have been widely accepted, the resulting output value, employees have a certain scale, some play an important <MASK_REP> in poverty alleviation. "Time Online" real-time data show that as of 11 evening, major German cities have been Bremen, Frankfurt, Cologne, Mainz, Stuttgart and other places exceeded the warning line <MASK_REP> . This year do not go home, is also thinking of trying to earn more money, <MASK_REP> buying a house in Nanchang, the parents to New Year.” Reporters download the use <MASK_REP> "universal micro-business screenshot king" and other software, found that the utilization of these software, micro-channel dialogue, WeChat payment screenshots, Alipay transaction screenshots and Taobao order screenshots can be fake. On the evening of March 8, Mother-in-law Xiong suddenly became emotional, trembling and crying to find her children, but that time <MASK_REP> has been unable to contact her family. <MASK_REP> Chemical Industry is the early use of "industrial brain" to achieve digital transformation of the traditional manufacturing enterprises, so during the epidemic to maintain capacity and cost advantages. It is regrettable that, since 2013, Lu Shanzhen was promoted to deputy director of the gymnastics center, in charge of rhythmic gymnastics and trampoline events. He no longer holds the position of head coach of the women's team and has since left the national team post where he worked for 30 years <MASK_REP> . Sources said that the police may consider freezing them and related organizations <MASK_REP> accounts. Dragged down by Watmar, Kin Rev Energy's business and financial situation is in crisis, In 2017 and 2018 Jianrui Huaneng's net profit was <MASK_REP> yuan and -392,000 yuan respectively, two consecutive years of losses. Preliminary estimates for 2019 show that the city's forest coverage rate has risen from 11.3 percent in 1993 to 25.83 at present, <MASK_REP> said %, effective restoration of vegetation, annual sediment into the Yellow River can reduce 699,700,000 tons. And VIP and <MASK_REP> update progress, is the video website in the series before the start of the calculation. On May 21, 2020, the United States will again "target" Russia, citing Russia's breach of contract, announced that it will formally withdraw from the " <MASK_REP> " in six months. It turned out that my father owed someone 1500 yuan, Because the creditor could not find <MASK_REP> , he went to my school, found my class, in front of the whole class to collect my debt, and said a lot of harsh words. Local media quoted health agencies as saying that Lu, 69, <MASK_REP> known to have passed on to her husband, Zhao. And then two people infected to 20-year-old granddaughter, is close contact type of infection, but Lu Moumou himself was infected, the situation is unknown. Subsequently, the reporter of "Rule of Law Daily" logged on to another video website, in which <MASK_REP> inappropriate content for young people to watch; On another video site, some modules in the Learning Channel have been shut down. According to the official previously informed, after the incident, the tunnel construction workers have been safely evacuated <MASK_REP> casualties and missing, the incident did not affect the subway line in operation. When riding a camel, to prevent sudden noise (such as a sudden shout) and harsh colors ( <MASK_REP> ), otherwise may stimulate the camel. BEIJING, May 25 (Xinhua) -- According to the Ministry of Transport official WeChat news, since the outbreak of the epidemic, <MASK_REP> , in early February in the nationwide gradually launched. The big factor affecting the CPI is <MASK_REP> pork prices, and pork prices narrowed year-on-year growth, month-on-month decline, so that the future CPI continued to rise pressure eased. Sichuan Ganzi Prefecture Standing Committee, executive vice governor <MASK_REP> Liu Jixiang said. Because the symptoms are similar, from the daily treatment and clinical treatment, some elderly people appear stoop, stiff joints, limb numbness, low back pain and other symptoms <MASK_REP> misdiagnosed as cervical or lumbar spine disease, these are also typical symptoms of Parkinson's disease. The balance of financing and short selling in the two cities totaled <MASK_REP> yuan, an increase of 257,851,000,000 yuan from the previous trading day. Designated medical institutions should optimize the outpatient special disease filing process, doctors receive treatment <MASK_REP> at the same time for the insured personnel to fill in the filing forms, insured personnel can go to the health insurance office of designated medical organizations to complete the filing procedures once, reduce patients in the hospital back and forth. Li Luoli told reporters from the Economic Observer at the seminar that too much has been said about the past of Shenzhen, Shenzhen <MASK_REP> private economy in Shenzhen has created a miracle. It is understood that the <MASK_REP> belongs to the second-class national protection animals, due to age and the differences between individuals, the body color changes from light gray brown, brown, tan, earth brown to dark brown. And the chairman of the official Belos investigation committee warned that "the police are ready to use all possible force to defend the constitutional order of the country," while saying that an investigation has been <MASK_REP> against those arrested, against the perpetrators of police brutality. According to investigation, since December 2019, the two suspects repeatedly drove from a city in Sichuan Province to purchase drugs and then transported them to Shanxi, Sold to Taiyuan, Shanxi, Jinzhong, Luliang and other places <MASK_REP> to suck drug traffickers, all the stolen money spent. Up to now, the village has <MASK_REP> more than 1,200 mu of navel oranges and 1,000 mu of tea plantations. It has five mu of moso bamboo forest per capita and an annual output value totaling more than 10 million yuan. In order to save money, sometimes father and daughter can only sleep in the hospital aisle, eat three meals a day only from home out of the sesame seeds, never dare to spend more than one yuan <MASK_REP> . "In the face of such a scarce crowd, <MASK_REP> build a good impression, later how will others choose your products and services?" <MASK_REP> said that there are no effective drugs to cure Alzheimer's disease, and several Alzheimer drugs have failed in clinical trials. The main reason may be that the subjects have been at a later stage of their disease course. This expert is from Hunan, he is willing to go back to his hometown, but <MASK_REP> in personal development, children's education and other aspects of concern. In 2020, Wang Fengqiu plans to raise more pigs, <MASK_REP> the scale of the chicken farm will also have to expand, take time to learn a few new skills, give her family a better life. Considering that workers can not get wages and subsidies refused to leave Wenling Company, <MASK_REP> has caused an impact on the normal operation of Wen Ling company, in order to solve the problem of funding sources as soon as possible, lawyers Chen Danlin and Zhang Ting proposed by the Wendling company first pay. In fact, globally, the internal circulation economy accounts for more than 80% of GDP and the external circulation economy <MASK_REP> less than 20%. Is the general law of economic development of economic powerhouses, such as the United States, Germany, Britain and other developed countries. <MASK_REP> Rice and crab mixed culture, under the forest economy, so that the income of villagers has been guaranteed; Diversified development of rural tourism potential is a good way to increase income. After learning of the inside story, Ma Jing and Wang Xianghua, and others are very emotional, we all have an idea: never let the <MASK_REP> because of the epidemic, the network and delay learning. Because <MASK_REP> four-wheel battery car blocking the import and export channel, was asked to cooperate with epidemic prevention work to move the car. The highest scores of male (female) students are all from the University of National Defense Science and Technology, with the highest score of 644 in literature and history and 661 in science and engineering <MASK_REP> . The highest score for boys was 606 in literature and history and 644 in science and engineering. Still short of the players half a year's wages, there are a few games of <MASK_REP> also some players did not pay performance.” A 110g packet of <MASK_REP> , a 150g bag of tomato meat sauce, And other different grams of sea salt, oil packets, cheese and chopped parsley, all the ingredients for an authentic pasta are included, do not have to be purchased separately. By August this year, Shandong, Jiangsu, Guangxi, Hebei, Yunnan, Heilongjiang and other six pilot free trade zones and <MASK_REP> has been operating for one year. At present, the "Guardian Angel Project" is still steadily advancing. The Central Committee of the Chinese Democratic League and the Henan Provincial Committee <MASK_REP> are also carrying out public welfare activities for the prevention and treatment of two cancers in Zhengzhou, Zhoukou and Zhumadian. Vincent Gaffney, a British archaeologist, said: “This <MASK_REP> discovery unprecedented in British history. On April 29, another 18 <MASK_REP> multinationals signed contracts for regional headquarters in Pudong. He plans to go back to work on the same day, picking up the book he didn't finish before and start giving it to the industry <MASK_REP> , prepare research projects. Intime commercial CEO Chen Xiaodong also personally go live, to Lancome cosmetics counter shopping guide started a small assistant <MASK_REP> , played as Li Jiaqi side small assistant role. Unexpectedly <MASK_REP> a pause and said, 'Then I'll leave a Know You' and left.” Then, he only used 25 minutes to successfully eliminate six hypothetical failures, take the actual exam <MASK_REP> first motorcycle "driver's license" on hand. Cologne Bay has numerous small islands, because of the difficult terrain, in the war is often the Japanese warships <MASK_REP> . A liquefied gas tank explosion in a house in Qingyuan District, Baoding, Hebei, killed one and damaged seven houses - <MASK_REP> “At that time, the epidemic was serious, I looked at the guest identity card nervous, quickly phone contact, the result of Li Tao sent a message to me, said they are deaf-mute <MASK_REP> unable to communicate, after I know the heart has a kind of unspeakable taste. How could this man complete the difficult moves that Zhang Guowei, who had broken Zhu Jianhua's 27-year <MASK_REP> national indoor high jump record and won the high jump silver medal at the World Athletics Championships, could not complete? Harbin City, Heilongjiang Province, Bungalow District set up by 45 frontline investment personnel composed of "factory staff" team, 24-hour services <MASK_REP> to resume work and production enterprises. In the 18 hours between the accident and the end of <MASK_REP> rescue work at the scene, Shanxi sent 840 rescue workers. More than 20 vehicles with large rescue equipment, 15 ambulances and 100 medical personnel were dispatched. US media reported Wednesday that a federal appeals court <MASK_REP> hear the case next month and the Justice Department has filed papers with the court in support of the lawsuit. The Natural History Museum of the Brazilian state of Minas Gerais caught fire on the morning of June 15 local time, damaging part of the museum's main building, which houses most of the unexhibited museum collections, so the collection <MASK_REP> . Luan Rongsheng said that from the current domestic cases, the spread related to imported goods, mostly occurred in cold chain workers and other specific occupations, and it <MASK_REP> not the items into the market, causing an epidemic among ordinary citizens. In 2018, after several rounds of negotiations, Sangpo Village resolved to dismantle 135 of the 154 fur processing enterprises wading sections, and <MASK_REP> re-operate after future integration. It is part of Smart Manufacturing by <MASK_REP> International Home Products Co. Facing their daughter, who has just returned to work <MASK_REP> after surgery, they said: “We know this time, you should step up. Among them, there are 125 projects <MASK_REP> with a total investment of 443100000000 yuan. In terms of government environment, the intensive <MASK_REP> policies since the outbreak of the epidemic has enhanced enterprises' sense of gain. Nearly 70 percent of the enterprises participating in the survey said that taxes and fees in the first half of this year have decreased compared with the same period last year. "Lao Hu" in early February this year due to fever, chest tightness and other symptoms <MASK_REP> , in the non-invasive breathing and intubation ventilation measures, such as less effective, began to access ECMO support on February 25. Jia said that there are no effective drugs to cure Alzheimer's disease, and several Alzheimer drugs have failed in clinical trials. The main reason <MASK_REP> be that the subjects have been at a later stage of their disease course. In the spring of 2019, Korban and her husband, Dorshak Ajbek, vacated two vacant rooms, Bought cloth, <MASK_REP> with Tajik national characteristics of the pillow, quilt cover, will be re-arranged a guest room, started the village's first family business. “Orders placed by customers are no longer tens of thousands of pieces, but hundreds, small orders, short orders <MASK_REP> . The previous two presidents basically continued Deng Xiaoping's <MASK_REP> on diplomatic issues. The Agricultural Expo will be held online for 4 days from September 19 to 22, and <MASK_REP> online for 365 days, creating a "4 + 365" year round agricultural expo. In addition, <MASK_REP> only to meet 5 00000 people a week of material reserves and "small should be big" emergency plan, but also caused Zhengzhou functional departments to reflect. TV with <MASK_REP> 55-inch transparent oled screen, 5.7mm slim screen, 120Hz refresh rate, price 49,999 yuan. (Xinhua) -- The selection process for the new director-general of the World Trade Organization (WTO) will be officially launched on June 8, the organization announced <MASK_REP> . Walking in the spring, smelling tea, early in the morning, Li Guangda and more than 40 tea pickers together to pick new tea “Wu Niu , "" Wu Niu morning tea <MASK_REP> than Longjing, Qu Hao, Wanghai tea more than 20 days earlier listed. " In recent years, this contradiction has been exacerbated rather than eased <MASK_REP> American politicians. According to the researchers, the outbreak would infect 80 per cent of people and kill 510,000 people in Britain <MASK_REP> in the US. Experienced four floods Pan Guangguang feeling, <MASK_REP> Zhuang Taiwan is mud road, shoulder pole pick a car pulled for several days. At present, Linxi County bearing enterprises and more than 20 domestic scientific research institutes to establish strategic cooperation relations, built <MASK_REP> academician, post-doctoral work stations 3. In addition, the "Go To" tourism promotion campaign, Prime Minister Yoshihide Suga to push the Japanese economy out of the trough of a fist policy, <MASK_REP> the government provides a maximum subsidy of 50% of the cost. Because so much of <MASK_REP> dust is chronologically concentrated in certain periods of time, it suggests that stars are born explosively rather than at a constant rate. The weather is changeable during Spring Festival travel, <MASK_REP> please pay attention to the weather forecast in advance, help you go home all the way! As soon as tea was harvested in the third season of this year, 70-year-old Gu Shengtan was busy arranging clear gardens in the alpine tea garden of <MASK_REP> , located at an average altitude of 1,650 meters in Yanling County, Hunan Province. Eight Lao Han <MASK_REP> land, the more you plant the more taste, more you grow. <MASK_REP> : Not just eggs: Top 10 treasures from the Faberge Museum in St. Petersburg The staff of Suning Tesco said, “Like this Huawei P40 phone <MASK_REP> , 8GB + 256GB version of the official price of 4,988 yuan, after spending coupons and store specific offers, the price is 4,372 yuan.” Internet help, for poor areas uprooted the root of poverty <MASK_REP> the road to prosperity, poor people live a prosperous life. The man has no steady income, no fruits and vegetables <MASK_REP> and no schooling. On September 28, the reporter walked into <MASK_REP> Qiyang County, Dazhongqiao Town, Guangfu Village, poor villagers Tang Guoqing's new house, 49 years old Tangguoqing involuntarily said, grabbed a handful of candy, hard thrust into the hands of reporters. Liang Wenyue, <MASK_REP> inspector with the Shandong Provincial Development and Reform Commission, introduced the relevant situation. "The village has the habit of planting cherry trees, big cherry saplings are also suitable for planting here, Yantai sent saplings, also sent experts <MASK_REP> really think of our heart on the son!" It is understood that the control regulations of the pilot area have been publicized and <MASK_REP> will be fully started this year. Team responsible for 80% of the <MASK_REP> kill, and then the players wear uniforms out, "eat money do not." "Securities Daily" reporter randomly experienced several banks consumer loans, found that most banks can completely handle loans <MASK_REP> online, without any customer service and other artificial help. On April 1, Yang received a screenshot of the transfer from the other side, then mailed his laptop to the "buyer," but I <MASK_REP> not received money in my bank account. Between 08: 00 on 21 and 08: 08 on 22, 82% of the city's measuring stations recorded rainfall of more than 50 mm, Fifty-two per cent of stations recorded more than 100mm <MASK_REP> and 5 per cent more than 250mm. WASHINGTON, Sept. 30 (local time), according to U.S. media reports, in the past 24 hours the United States has a number of giant companies <MASK_REP> announced large-scale layoffs. "Cheng Wenjun myway" said: "Because of work, the capital chain broke, resulting in overdue loans, I did not say no, but the platform exploded my address book <MASK_REP> know this thing." The measure lays out a range of incentives offered by the government, including an annual cash bonus of 10,000 yuan ($1,450) <MASK_REP> couples who marry for five years. At this time, I will take the initiative to go to them, give them a "psychological massage," chat with them <MASK_REP> home, sometimes they will come to us to chat. Zhang Meichun, 84, <MASK_REP> multiple brain attacks, lost sensation in her left hand, has poor hearing and memory and cannot remember her name. The shortage of funds is evidence: the level of <MASK_REP> funding for biodiversity-related operations is estimated at between $78 and $91 billion per year, well below the hundreds of billions of dollars required. For the elderly with basic diseases, <MASK_REP> will tell you how to use medicines reasonably; For some patients with mild illness, he will give everyone a prescription to take the drug nearby to avoid cross-infection. Up to now, State Grid Zhejiang Electric Power is continuing to carry out <MASK_REP> flood discharge area, reservoir river and other nearby power grid equipment special patrol. The new single-day figure for June 24 is <MASK_REP> cases. "The track is too classic and beautiful, and the race is too challenging," lamented Ou Xiangchen and Wang Zhihong, <MASK_REP> mountaineers from Chenzhou. "We will come again next year." Wang Lin said that through the meteorological department to understand, <MASK_REP> may still snow, If there is a sudden temperature drop, snow, ice on the road at night, the brigade will timely control the road according to the actual conditions. However, it is beneficial to the large platform, licensed traditional commercial banks are facing a more standardized market environment, and then develop <MASK_REP> finance business environment will be better than in the past. "The <MASK_REP> epidemic situation abroad is spreading and spreading. The huge impact on the world economy is still developing and evolving. The stable recovery of the domestic economy is also facing many new challenges." Myanmar's previous worst mine collapse was in 2015, when 100 people died, and in April 2019, more than 60 people were killed <MASK_REP> . TAIYUAN, December 12 (Xinhua) -- Taiyuan will be insured less than a year of migrant workers and other unemployed people into the permanent protection, insurance less than one year unemployed migrant workers <MASK_REP> can receive living subsidies. In this regard, Minister <MASK_REP> made it clear that "if voluntary vaccination can achieve the goal, there is no need for a legal obligation." Xu Baojun unreservedly shared <MASK_REP> attracting industrial workers from around the "onlookers." BEIJING, October 12 Hefei <MASK_REP> Suzhou City Public Security Bureau 11 issued a briefing, 11, a garbage truck and coal train collided in the city, causing damage to two vehicles and minor injuries to two drivers (have been sent to hospital treatment). At present, Zhang Moufang has been taken <MASK_REP> measures, and isolated treatment. Jiang Biao said that even the most perfect cases, also <MASK_REP> not be 100 percent reduction. Located in the deep Miaoling Mountains of Guizhou, <MASK_REP> , this Spring Festival seems a little quiet. In short, due to various reasons, insurance institutions in disaster prevention and loss prevention service <MASK_REP> enthusiasm and initiative is obviously insufficient. Not far from the nursery, a government-funded happiness compound is <MASK_REP> . "He did not suffer hardship" 83-year-old grandmother in hospice <MASK_REP> to accompany his wife to walk the last 110 days - BEIJING Yang Guanqun and other Secretariat staff are waiting by, each time the draft is finalized, Immediately with five pieces of white paper clip on four pieces of carbon paper, <MASK_REP> transcribe five, as time passes, middle finger formed a thick cocoon. Although both the United States and Iran now appear to be avoiding a greater military confrontation, new intelligence suggests that the deaths in the <MASK_REP> crash were a direct result of heightened tensions between the two countries. According to the reporter, operators must treat customers equally, and achieve the same rights for new and old customers, and equal access to the network and leave the network. Can not <MASK_REP> arbitrary point-to-point preferential, differential preferential, can not engage in "crying children have milk to eat," let honest people suffer. Aside from the fact that paedophile content may <MASK_REP> , fake pornography is not illegal under current laws in most countries around the world. Xinhua News Agency published a report on May 22, exploring " <MASK_REP> more than 400, fake universities year after year." According to Xiangxue Pharmaceutical June 5 disclosure announcement, in the above equity pledge financing scheme, <MASK_REP> no liquidation line design. She felt "very confused, can not see clearly, bad choice" about the prospect of studying in the United States. She did not want to give up the preparation for studying abroad, <MASK_REP> also worried that the future study road may be more bumpy, "one wrong step" affect her life. According to reports, participating in the " <MASK_REP> " campaign of physical stores, According to their actual conditions and business attributes of commodities, determine their own no reason to return goods species, scope, time limit, etc., committed to no less than 7 days return time limit. Among the 25 provinces that have announced tourism revenue, 1 province has an income of 50 million million +, 9 provinces rank among 30 <MASK_REP> + and 15 provinces have more than 10 billion. Xu said, first of all, we should realize that employment anxiety is not only in their own personal existence <MASK_REP> country has also taken a lot of policy measures to ease this year's employment tension. Laver farming in Huang Wo village a hair and can not be collected <MASK_REP> , Yellow Wo Cun licensed waters to reach 36000 mu. British Prime Minister Johnson is expected to announce new measures Tuesday to <MASK_REP> , media reported. The report is based on a recent study published in the journal Astrophysical Journal by Riley Connors, a physicist at the <MASK_REP> California Institute of Technology and other researchers. These hastily completed works are bound to be unable to ensure the standard, and even in the creation of a tight time, there are some repeated imitation and plagiarism of Zhao Zhenhua's <MASK_REP> "Fight against SARS" works. "May Day" Holiday Getting Closer to "Happy Tour" <MASK_REP> "Heart Defense" - Xinhua Abe was elected to a rare second term as prime minister in December 2012 <MASK_REP> , promising to stimulate growth with an "Abenomics" of ultra-loose monetary policy, fiscal spending and reforms. <MASK_REP> turnover this week more than 200 million yuan month-on-month rose nearly 30% - Xinhua <MASK_REP> Zhu Jun responds for first time to sexual harassment string incident <MASK_REP> - Vietnam presents epidemic prevention materials to Sweden Make full use of big data and other modern technological means, on the basis of timely and accurate information on the epidemic situation, scientifically formulate targeted and effective response measures, carry out targeted treatment <MASK_REP> accurate measures, improve the effectiveness of prevention and control. <MASK_REP> , usually gathered more than 10 drivers waiting for orders, and small New Year's Eve, the reporter found nearby squatting, only three drivers waiting to receive orders. <MASK_REP> : Return home employment circle "terraced dream" _ photo channel _ Xinhua South Korea Olympic in addition to the three main did not start to play, two key <MASK_REP> players in Europe also failed to show up. At 6: 30 in the morning, the shuttle bus stopped on time at the door of the resident hotel <MASK_REP> He Jun with a treasure chest with the medical team went to Jianghan Square Capsule Hospital. The Yellow River is the mother river of the Chinese nation, raising thousands of years of endless generations of Chinese sons and daughters <MASK_REP> flowing with the eternal blood of China civilization. The village has 25 households and <MASK_REP> 80 people, with an annual per capita net income of only 1000 yuan. Young students are vulnerable to adverse effects, school students and off-campus idle personnel improper interaction breeding bullying, sexual assault and other crimes in the student group has a wide impact <MASK_REP> negative effect, such as not timely intervention harm. "As far as our investigation is concerned, it is the kind of people who have come to Ruili for more than a few years, <MASK_REP> and more than six months short." About 772,000 shares changed hands on U.S. exchanges, compared with the daily average <MASK_REP> of 754,000 over the past 20 sessions. Samsung's annual sales volume <MASK_REP> rose 0.4 percent to 296.2 million units, still leading the market; Huawei's sales rose 18.6 percent, displacing Apple as the world's No. In fact, people's life at the age of 25 <MASK_REP> reached the peak of health, then began to age, but aging is extremely slow, people do not think. Shi Mingming said that more precipitation around Qinghai Lake in 2019 and a large water area are the main <MASK_REP> for the increase of water area in 2020 over the same period last year. The Shanghai men's volleyball team will face off against the Henan Men's Volleyball Team at 13: 00 Tuesday afternoon <MASK_REP> the first match since the relaunch of the Super League. And the high temperature in the Suzhou District, but also to the physical strength of the teams <MASK_REP> . More than 90% of the online booking <MASK_REP> , 7% of those who were admitted to hospital with annual tickets, and 3% who were eligible for visitation with a disability card. Xinhua News Agency, Zhengzhou, May 7 (Reporter Sun Qingqing) - The <MASK_REP> Zhengzhou Product Exchange learned that the cotton yarn futures of Zheng Shang Exchange recently completed the first delivery after the revised rules. Farmers around the situation, have discouraged Zhao Xiangrong: "can not <MASK_REP> fertilizer ah, are the end of June, fat enough, rice is not strong, light long straw." Industrial support, technical support, the expansion of the industrial chain and other multi-pronged, <MASK_REP> standardized cattle breeding areas, forage cooperatives and other projects rapidly advanced. The project only requires a special processing place, <MASK_REP> more suitable for small catering business status. On January 25, the <MASK_REP> Garden Hotel in New City, Suzhou, which was supposed to usher in the peak period of orders for Spring Festival, began to stop checking in for individual guests. <MASK_REP> Cangling Town Qing Hongxiang Agricultural Company, reporters saw the deep mountains of open-air processing workshop. "Before, a line had to <MASK_REP> several years. Now a meeting can reach a consensus, finalize the general, and with security ensured, it can be opened. It is very efficient." BEIJING, Guangzhou, Aug. 29 (Cai Minjie Jian Wen Yang) 29, according to the Associated Press reported that "Black Panther" actor Chad Vick Boseman died of colon cancer <MASK_REP> concern. At 16: 00 on the 24th, the scorching sun, reporters came to the intersection again, 20 minutes about 70 or 80 people riding bicycles or electric vehicles through the intersection, a small number of people <MASK_REP> the road. At present, Xi'an Economic Development Zone enterprise supply chain cumulative sales of more than 100000000 yuan, each supply enterprise product sales have achieved a substantial increase, effectively <MASK_REP> the sales pressure. If the candidate's temperature is still abnormal, the examination will be conducted by the main examiner and the deputy examiner in charge of epidemic prevention. If <MASK_REP> meet the conditions to continue the examination, candidates can take the examination in the alternate examination room. Peng Changsong recognized that <MASK_REP> a good leader, in order to drive a large. One platform can sell so <MASK_REP> produce, what if you count the others? There is an increasing demand for foreign Vietnamese, foreign investors, foreign experts and <MASK_REP> students to enter Vietnam. Later, with Xuefeng in the national team assisted the palace guidance, and then I <MASK_REP> the country team, Xue Feng as an assistant coach, such an experience, not only has a deep friendship, but also has enough understanding and trust.” On November 6th, Mille Dairy (Shanghai) Co., Ltd., a Danish dairy company which has made three appearances at the Expo, announced that We will reach full cooperation with <MASK_REP> , a well-known brand of organic food for infants and toddlers in Nordic countries, to jointly expand the market for organic foods for infants. BEIJING, October 12 Hefei Electric Suzhou City Public Security Bureau <MASK_REP> issued a briefing, 11, a garbage truck and coal train collided in the city, causing damage to two vehicles and minor injuries to two drivers (have been sent to hospital treatment). Affected by the epidemic, some small and medium-sized micro-enterprises damaged, the original loan repayment became a <MASK_REP> problem. The last round of nationwide precipitation just left <MASK_REP> a new round of precipitation weather process to the central and eastern region "punch." Meng Bo said that consumers can choose more than one store when shopping online for crab coupons, The detailed description of purchased commodities, product testing reports, business production and business qualification and reputation, product evaluation, etc <MASK_REP> in order to avoid being deceived. And for the reasons of choosing this industry, He Fei said, in the situation of fuel <MASK_REP> used car market increasingly saturated, gradually enter the mainstream of new energy vehicles will become the future trend. Now all 70 villagers in Tun have set up farmhouse hostels in front of their homes to develop rural tourism. Villagers bid farewell to the "poor nest" and eat <MASK_REP> "sweet bun." In May 30 century Huatong announced <MASK_REP> 2019 annual report, the situation about Sheng fun game company also be detailed disclosure. In order to hide the location information as much as possible, they set up secret words for the munitions, such as artillery shells called "stone," gasoline called "water," rice called "sand," <MASK_REP> called "soil." <MASK_REP> do not carry unexamined personnel into Beijing. <MASK_REP> July 6 (Xinhua) -- Japan's Kyodo News reported, Japan's Kumamoto prefecture government said on Saturday that 44 people have died, 10 people are unaccounted for and one person has stopped heart and lung due to heavy rainfall in the prefecture. Cheng Jianhua, deputy secretary-general of the municipal government, introduced that by the end of March, Beijing, Tianjin and Hebei have realized the data sharing of vehicles exceeding the standard, through the vehicle data platform can query each other information <MASK_REP> conducive to collaborative supervision. <MASK_REP> , for the surrogacy process may produce "risk," several surrogate company officials do not want to mention, just said "there is no absolute safety." At the same time, in the face of the resumption of work and production, the new enterprise "small helper" client can help enterprise departments to return to the post workers <MASK_REP> visitors to measure the temperature, scientific perception of risk groups, so that the return to work at ease. Winter cut wood, can only be sawn into sections, tied into bundles, with the flood the following year, drifting down... … ” Zhong Jian <MASK_REP> the story, parked the car in the Shunyan livestock ecological breeding cooperatives gate. Among them, revenue from software products increased by 10.6% year on year. A number of projects, such as Yuexian's 12-inch wafer chip manufacturing project and Lejin Optoelectronics' 8.5-generation OLED project, <MASK_REP> . In terms of snow and ice sports professionals, up to now, 248 athletes are being trained by 18 provincial ice and snow professional teams in Hebei. The province registered 2342 athletes <MASK_REP> a total of 139 athletes sent to various levels and various types of national training teams. The revised figures show that the investment income of the Exchange Fund in the fourth quarter of 2019 amounted to HK $603.0 million and that of the full year last year <MASK_REP> . Alipay official said, it is reported that the recognition rate of pet nose lines recognition technology is more than 99%, the future <MASK_REP> is expected to be used in urban pet management, pet lost and other scenarios. Order said, Japan Maritime Self-Defense Force P-3C patrol aircraft will set out on the 11th, <MASK_REP> reach the target location and began information collection activities. There is no smoke on the battlefield of the epidemic, but there are many dangers, every step is a heavy <MASK_REP> . Under the epidemic situation, theatrical films have been transferred to the <MASK_REP> also cause thinking, minority literary film to solve the survival problem, more inclusive network is a way to try. In July 2020, when the construction unit conducted a status survey of the houses around the site, It was found that some houses in Huadian residential area had wall cracking, decoration falling off, <MASK_REP> first floor balcony floor was plain filling, ground sinking and so on. "I tell you now that the United States has left the World Health Organization, and we are studying it and <MASK_REP> in the future," Bosonaro reportedly said on the same day. China is actively providing medical aid <MASK_REP> to Latin American countries, and taking the initiative to hold video conferences of experts to exchange experiences on prevention and control without reservation, which has achieved good results. Among them, 38 cities have an average concentration of PM 2.5 <MASK_REP> greater than 250 micrograms per cubic meter, which is serious pollution. By the end of August, 2,900 criminal cases of illegal fishing had been detected, 4,350 suspects <MASK_REP> arrested, and 9,000 vessels involved had been seized. In 2019, a total of about 1110 main board companies launched dividend schemes, Accounted for 81% of all profitable companies, the proportion of the overall dividend 32.4%, <MASK_REP> the total amount of dividends 1070000000000 yuan, another record high. According to the data disclosed by Ant, the daily interest rate for most of the flowers and borrowings is around <MASK_REP> or less, equivalent to an annual rate of 14.6%. The early stage of the project <MASK_REP> for a long time, the first two years of time, Suhe Bay blocks are not large movements. In some cases, <MASK_REP> . The Mauritanian government has imposed a nationwide curfew from March 21, from 1800 hours daily to <MASK_REP> the following day, and banned gatherings of any kind. Not just the Letan, but the youth groups are increasingly insisting on finding the "right person." <MASK_REP> Today, we introduce four teachers of ideological and political curriculum reform practice, from which we can feel the spring breeze of Hunan school ideological and administrative classroom <MASK_REP> . <MASK_REP> books, stretch scroll, pick book leaves, shake dry books... … In August, when the West Lake was clear and clear, readers witnessed a "legendary activity of drying books" on the "Geng Zi Book Collection." 330% increase in Afghan civilians killed in U.S. airstrikes: <MASK_REP> Data shows that the number of <MASK_REP> participants in the Digital Reading Cloud has exceeded 200 million in the first three days of the conference. Zeng Huasong introduced, today, there are still many grass-roots hospitals to <MASK_REP> with large doses of hormone treatment, in the long run, to heart obesity, hypertension, high blood sugar, infection, osteoporosis and other children will affect the growth and development. It was <MASK_REP> the 16th State of the Union address he has issued since 2000. At about 3: 00 on July 15, Mia finally <MASK_REP> for good news - the agency is going to help her deal with online signing, "afternoon should be able to get it." Murphy said the General Services Administration does not decide or certify who wins the presidential election, but because of recent legal challenges and progress in certifying election results, she decided Biden would now have access to <MASK_REP> federal resources. On March 18, Japan's Ministry of Land, Land and Transport issued as of January 1, 2020 publicized land prices show, All uses, commercial, industrial and residential, rose by 1.4 per cent on average (nationally) <MASK_REP> for five consecutive years. At the beginning of the epidemic, there was a nurse "indentation" photos <MASK_REP> throughout the network. Chen Lu was born in a military family, his father is the first generation of Anhui border guards, grandfather is a veteran of the war to resist US aggression and aid <MASK_REP> . And the key to turning the situation around is the introduction of <MASK_REP> Bubble Mart blind box play. At the same time, enterprises should carefully verify the import of goods, <MASK_REP> avoid mistakenly import overseas "foreign garbage" into China, thus suffering losses. From June 8, kindergartens with the conditions to open the kindergarten have opened one after another, on June 8th, a total of nearly 500 kindergartens more than 10000 children returned to the kindergarten <MASK_REP> smooth and orderly. Hubei Delegation Holds Plenary Meeting to Examine Government Work Report - <MASK_REP> Distillery <MASK_REP> less than 200 meters away from home, the monthly wage is 3600 yuan. In the <MASK_REP> morning held in Zhongshan epidemic prevention and control of the 9th press conference, Zhongshan Second People's Hospital vice president, municipal medical experts group leader Gao Wenjun introduced the city's first cured patients. In drug safety supervision, the province last year 378 high-risk areas, key varieties of pharmaceutical equipment production enterprises <MASK_REP> , check 2,400 potential risks, investigate 6,237 illegal cases. Now, Bai Ma Jia has been able to <MASK_REP> decorate and Thangka painting two "craft" together, for the surrounding families, restaurants with Tibetan characteristics of the interior decoration. In <MASK_REP> commodities, internationalized commodities also suffer a loss of value when priced in renminbi. Of the 1,331 people infected, only 21 have required hospital treatment. Six have been admitted to intensive care, including one patient who <MASK_REP> not a Tonnes employee. Last season, Sun Minghui has proven himself <MASK_REP> he was named the CBA Caterpillar Defensive Player of the Year in January. City and district level libraries, museums, art galleries and other indoor public places to book <MASK_REP> limit 30%. In the Banyue Tan reporter's circle of friends, there are poverty-alleviation cadres on the first time <MASK_REP> the document, and comments that: very timely, very necessary! The team of 14 research groups in six European countries is <MASK_REP> the potential role of gut microbiota in the development of cardiovascular disease. However, due to the high security requirements of aviation industry, aviation industry is facing some challenges in the <MASK_REP> process. Industry: China's capital market long-term allocation value <MASK_REP> - Xinhua Located in Hebi Qi County, Henan Province, Dashiyan village is located in the depths of the Dabie Mountain, travel is difficult, difficult to draft, leading group "chaos," the <MASK_REP> thought "scattered," once was a local well-known weak and lax village. Chen Li studied in Europe, due to flight transfer arrived in Moscow on February 26, "I <MASK_REP> not booked this day's ticket, but because the previous flight was rescheduled, so only this day back." The submission also proposed holding joint training of the Coast Guard, the Okinawa Prefectural Police and the US Coastguard near the Diaoyu Islands <MASK_REP> . Having said that, going to the toilet is a person's physiological need, sometimes it is unavoidable to use public toilets, and <MASK_REP> sitting or squatting. "What I experienced most in the epidemic is that after the phone slips off, I suddenly <MASK_REP> what to do and my mind goes blank." Xinjiang experts in 9 disciplines: Intensive Care Medicine, Traditional Chinese Medicine (TCM), Pediatrics, Respiratory, Psychosomatic, Anesthesiology, Gynaecology, Gastroenterology and Neonatology. Signed an agreement with 19 key doctors of Alar Hospital <MASK_REP> "twinned masters and disciples." The theory study is not enough <MASK_REP> the thought has not been reformed in time, this is Jin Yongzhi, Cui Runhai and others were tripped by temptation. Strict biological safety commitment system <MASK_REP> and experimental activities report system. By the end of June 2020, 12000 new foreign-funded enterprises had been set up in Shanghai Free Trade Experimental Zone, accounting for 77 percent of the new foreign-funded enterprises in Pudong New area, with a <MASK_REP> foreign investment of US $37.1 billion, and the total value of imports and exports continued to grow. Guangdong Production of Various Important Epidemic Prevention Materials Significantly Increased - <MASK_REP> Taiyuan, April 15 (Reporter Fu Mingli) Recently, the Shanxi Provincial Archaeological Research Institute ( <MASK_REP> Museum of Archaeology) in Taiyuan Confucian Temple Dacheng Hall Square set up. According to statistics, over the past 32 years, groups of teachers in Hai'an accumulated in Ninglang <MASK_REP> more than 20,000 junior and senior high school graduates, training nine Lijiang City College Entrance Examination Champion, six Lijiangcity Middle School Entrance. From January to November, China's software industry completed software business revenue of 731,420 million yuan, an increase of 12.5% year on year <MASK_REP> growth rate dropped 3.0 percentage points from the same period last year, compared with the January-October increase of 0.8 percentage points. "Lucky to learn this new technology, there is more room to rise, complete this project, and then <MASK_REP> other implementation of the assembly of the project site is the backbone members." And in the choice of sales strategy, Ruixing coffee uses users to download registration APP <MASK_REP> , buy two get one, buy five get five, invite friends again free single, send 1.8% off master coffee coupons and other forms of subsidies to attract users to register orders. Shanghai Metro Line 11 is the first inter-provincial subway in China. Suzhou Line S1, which is under construction, will connect to Shanghai <MASK_REP> . After opening to traffic, you can take the subway from Shanghai to commute. In Tiger Creek Street, Dacheng Lake Community, residents are using their phones to scan two-dimensional code, <MASK_REP> in to fill in the information. By 10: 30 on the 13th, two people were killed and 31 others injured <MASK_REP> . He said that maintain social distance epidemic prevention level to 1.5, the Seoul Municipal Government will take three measures: improve public facilities epidemic prevention standards, strengthen daily life epidemic prevention efforts, <MASK_REP> propaganda and supervision. According to Wind statistics, as of May 6, there are 21 convertible bonds with a premium rate of over 100%. Yokogawa convertible bond (123031) is more than 300%, <MASK_REP> Taijing convertible bond is also among the high conversion premium rate. At present, the victim's physical signs are stable and not life-threatening. He is under further observation <MASK_REP> treatment. 2020-05-12, 00: 50: 37 <MASK_REP> In the semi-open warehouse area, one forklift truck after another is working hard, here are <MASK_REP> "zero emissions" electric fork lift, "in early 2018, because our fork-lift emissions do not meet the standards. Take video website as an example, choose a website to watch video is not because its mode is more special or it does not want money, <MASK_REP> certainly because this time a drama fire, I want to watch this drama, and this website has this drama. 2020-11-22 18: 29: 18 <MASK_REP> The arrogant power that wants to manipulate the world is abominable, but what is more abominable is the <MASK_REP> shown by the West in the face of such arrogance, including Switzerland. ” Zhang said that in the county to <MASK_REP> medical services, long-term care insurance reimbursement rate for 65% of the quota. Later, with Xuefeng in the national team assisted <MASK_REP> , and then I took the country team, Xue Feng as an assistant coach, such an experience, not only has a deep friendship, but also has enough understanding and trust.” The Czech Republic, Poland, Estonia, Romania, Latvia, Slovenia and Albania have chosen not to use products and technology from "untrusted" vendors in their 5G networks, the <MASK_REP> State Department said. Vietnam has achieved a lot of positive results compared to other countries in the Asia Pacific region, according to the ranking of the index of Basic Connectivity, Digital Names, Number Citizens <MASK_REP> Numbers Commerce from 2016 to 2019. Take hengdian film and television city for example, here every year a large number of extras rooted in this, in mid-February hengdian implementation of the gradual resumption of the first phase of work, <MASK_REP> . 12 at the Berlin Philharmonic Hall <MASK_REP> , offering a free live feed. The <MASK_REP> MoD said military personnel had travelled to the meeting with NHS personnel over the weekend. <MASK_REP> said, XuZhangRun seriously ill, these years income is very low. Liu Aihua pointed out that next, on the one hand, we should pay close attention to the <MASK_REP> implementation of macro hedging policies that have been introduced, and on the other hand, according to the changes in the situation and the demands of enterprises, timely adjust the response policies to promote the economy to return to normal. The stamp plate consists of 10 stamps with a face value of $1.20 <MASK_REP> each. The entire plate is priced at $14.95. Users only need to enter the destination to query, can be a key to query the epidemic risk situation, and can specifically query to each region, county level risk level, for the resumption of work and production <MASK_REP> personnel flow to provide real-time, authoritative information reference. Mr. Zhou said he was planning to <MASK_REP> a new design. At 6 pm, Wang Aiping picked up a mobile phone with <MASK_REP> two years old son seven video. Hou Jinlin introduced that after optimization, aMAP score only needs <MASK_REP> the patient's age, gender, platelet, albumin and bilirubin level and other five common test indicators, can help doctors judge the possibility of liver cancer in patients. Feng Qiaobin said that compared with the western countries, China has more policy dimensions besides fiscal policy and monetary policy, and industrial policy and regional policy. China's macro policy space is larger, each policy tool has a strong <MASK_REP> depth. Among them, 38 cities have an <MASK_REP> average concentration of PM 2.5 hours greater than 250 micrograms per cubic meter, which is serious pollution. Rather than continuing to comply with the full range of EU rules and standards, the UK government wants some autonomy to sign new trade deals with the rest <MASK_REP> of the world. Our newspaper on October 18 hearing this afternoon, the provincial and municipal epidemic situation disposal work headquarters held a regular meeting, listen to the working group on the situation report, <MASK_REP> the next task. <MASK_REP> a small joke, a man who came out to pick up the meal, behind the spring doors unexpectedly shut, locked him out. According to Li Mei, executive director of Qingke Capital, the number of online orders on some fresh shopping platforms is 3-4 times <MASK_REP> that of the same period last year; Nearly 200 public medical institutions and nearly 100 enterprise Internet hospitals across the country are offering online free clinics for the epidemic. "Tornadoes are often accompanied by lightning, hail and other severe convective weather, especially <MASK_REP> the afternoon to the evening most common." Among them, fixed value-added and other revenue continued to grow rapidly, effectively promoting the growth of telecommunications <MASK_REP> revenue. In 2020, Mercedes-Benz has also started to accelerate significantly on <MASK_REP> . Electronic cigarette advertising promotes "harmless, non-toxic," coupled with its stylish, cool styling, and has a variety of attractive fragrance, now there are many people take the initiative to try electronic cigarettes, <MASK_REP> e-cigarettes really is "non-toxic and harmless"? BEIJING, March 7 Fuzhou (Zheng Jiangluo) <MASK_REP> ease the difficulties of enterprises, We will encourage enterprises to resume work and production in an orderly manner, and support stable and expanded employment. Recently, Fujian Province issued the Measures for the Implementation of Phased Reduction and Reduction of Enterprise Social Insurance Premiums. Further arrests could not be ruled out <MASK_REP> the arrest of a 21-year-old local man surnamed Chan in Tuen Mun District yesterday. He was being detained for questioning on suspicion of wounding, police added. Jin Ling believes that the corresponding punishment, management to keep up, these problems are not governance, simply widening the bicycle lane is useless, green travel or unsafe <MASK_REP> not assured. Media People Talk About Holding Canton Fair Online: Foreign Trade Needs Intensive Cultivation Under Epidemic Situation <MASK_REP> Weibo said that Zhao Mingwei and You Zeyi have never been to Bijie, but maliciously fabricate and spread false information about sexually assaulting children in <MASK_REP> , Kaili and other places, causing an extremely bad impact on society. "The village has the habit of planting cherry trees, big cherry saplings are also suitable for planting here, Yantai sent saplings, <MASK_REP> also sent experts, really think of our heart on the son!" A child family member told the Beijing News reporter, <MASK_REP> there is a "dangerous depth of water" warning board, but installed in the pit side of the pumping equipment room behind, blocked by weeds, very obscure. A considerable number of enterprises participated in the <MASK_REP> three times in a row, the "return rate" of the world's top 500 enterprises and industry leaders more than 70%, continued to increase the enthusiasm of exhibitors, bearing the common desire to work together. The performance of Bear Electric in the first half of the year compared with the same period last year achieved substantial growth, behind the listed financing investment and development benefits, but also external <MASK_REP> boost. Paris police chief and the chief executives of three provinces around Paris issued a joint announcement on the afternoon of <MASK_REP> , announced that since 8: 00 on August 28, Paris city and suburbs in all public areas compulsory wearing masks. In the aspect of improving saline-alkali soil and constructing saline-alkaline land greening ecological system, the eco-city adopts four measures: replacing more salt, using less salt, washing with <MASK_REP> and collecting and cleaning wetland. 12-year-old boy smells hallway smell door to door residents <MASK_REP> him "little hero" - BEIJING International oil prices tumbled <MASK_REP> U.S. oil futures fell more than 4 percent to $37.19 a barrel; Brent crude futures fell 3.38 percent to $39.46 a barrel. Social media cybersecurity expert Susan McLean told News Corp <MASK_REP> parents must be vigilant to ensure their children do not watch the content. In addition, Spencer Gore, CEO of Impossible Aerospace, a local drone manufacturer, said <MASK_REP> actively helping U.S. authorities establish procedures for using drones. At the heart of Bi Gan's " <MASK_REP> " and "Last Night on Earth" is actually a kind of longitudinal time travel. In addition, on May 25, Greek Prime Minister Mitsotakis in his office in an exclusive interview with a television station, on a number of domestic and international issues made a brief evaluation and analysis <MASK_REP> . From this we can draw a universal understanding: in the field of culture, innovation is the best protection <MASK_REP> is best preservation, openness is the greatest self-confidence, integration is the fastest development. From another side estimate, housing enterprises in Hainan layout a project, will need to experience 1.5 - 2 years to realize the return; The cost of capital, which originally ranged from 15% to 20%, <MASK_REP> doubled to 30% to 40%. After " <MASK_REP> " and "Red Sea Action," Lin Chao Xian has become a representative of Chinese hardcore directors. 2020-05-07 12: 42: 47 <MASK_REP>
Mask
0
ZhenYangIACAS/WeTS
corpus/cn2en/cn2en.dev.mask
[ "Unlicense" ]
'reach 0.1'; 'use strict'; export const main = Reach.App( {}, [ Participant('Creator', { benefactor: Address, }), ParticipantClass('Owner', { claim: Fun([Address, UInt], UInt), }), ], (Creator, Owner) => { Creator.only(() => { const benefactor = declassify(interact.benefactor); }); Creator.publish(benefactor); var [ owner, lastBoon ] = [ Creator, 0 ]; invariant(balance() == 0); while ( true ) { commit(); Owner.only(() => { const myBoon = declassify(interact.claim(owner, lastBoon)); const shouldClaim = myBoon > lastBoon; }); Owner.publish(myBoon) .pay(myBoon) .when(shouldClaim) .timeout(false); require(myBoon > lastBoon); transfer(myBoon).to(benefactor); [ owner, lastBoon ] = [ this, myBoon ]; continue; } commit(); assert(false); exit(); } );
RenderScript
3
chikeabuah/reach-lang
hs/t/y/algorealm.rsh
[ "Apache-2.0" ]
extern m#strlen#cp ; Returns the size of the string ; It stops at a null termination ; Arguments 1: ; RDI - the char pointer ; Returns: ; RAX - the string size without the null character m#strlen#cp: ; Start at offset 0 xor ecx, ecx .loop: ; Get the character in AL mov al, byte [rdi+rcx] ; Increase the index inc ecx ; Check if AL contains the null character test al, al ; If it does not, continue looping ; else terminate jnz .loop ; Return the value in RAX dec ecx mov eax, ecx nret
Parrot Assembly
4
giag3/peng-utils
lib/std-lib/unix/asm/strlen.pasm
[ "MIT" ]
# Test default value for choice type # @expect="/nlist[@name='profile']/string[@name='x']='a'" # object template choice5; type mychoice = choice("a", "b", "c") = "a"; bind '/x' = mychoice;
Pan
4
aka7/pan
panc/src/test/pan/Functionality/choice/choice5.pan
[ "Apache-2.0" ]
include "stdio.sl"; serflags(0, 0); var ch; while (1) { ch = getchar(); printf("%d ", [ch]); if (ch == 3) break; # ctrl-c };
Slash
3
jes/scamp-cpu
sys/keys.sl
[ "Unlicense" ]
syntax = "proto2"; option go_package = "urlfetch"; package appengine; message URLFetchServiceError { enum ErrorCode { OK = 0; INVALID_URL = 1; FETCH_ERROR = 2; UNSPECIFIED_ERROR = 3; RESPONSE_TOO_LARGE = 4; DEADLINE_EXCEEDED = 5; SSL_CERTIFICATE_ERROR = 6; DNS_ERROR = 7; CLOSED = 8; INTERNAL_TRANSIENT_ERROR = 9; TOO_MANY_REDIRECTS = 10; MALFORMED_REPLY = 11; CONNECTION_ERROR = 12; } } message URLFetchRequest { enum RequestMethod { GET = 1; POST = 2; HEAD = 3; PUT = 4; DELETE = 5; PATCH = 6; } required RequestMethod Method = 1; required string Url = 2; repeated group Header = 3 { required string Key = 4; required string Value = 5; } optional bytes Payload = 6 [ctype=CORD]; optional bool FollowRedirects = 7 [default=true]; optional double Deadline = 8; optional bool MustValidateServerCertificate = 9 [default=true]; } message URLFetchResponse { optional bytes Content = 1; required int32 StatusCode = 2; repeated group Header = 3 { required string Key = 4; required string Value = 5; } optional bool ContentWasTruncated = 6 [default=false]; optional int64 ExternalBytesSent = 7; optional int64 ExternalBytesReceived = 8; optional string FinalUrl = 9; optional int64 ApiCpuMilliseconds = 10 [default=0]; optional int64 ApiBytesSent = 11 [default=0]; optional int64 ApiBytesReceived = 12 [default=0]; }
Protocol Buffer
3
t12g/terraform-validator
vendor/google.golang.org/appengine/internal/urlfetch/urlfetch_service.proto
[ "Apache-2.0" ]
/** * */ import Util; import OpenApi; import EndpointUtil; extends OpenApi; init(config: OpenApi.Config){ super(config); @endpointRule = 'regional'; @endpointMap = { ap-northeast-1 = 'reidcloud.aliyuncs.com', ap-northeast-2-pop = 'reidcloud.aliyuncs.com', ap-south-1 = 'reidcloud.aliyuncs.com', ap-southeast-1 = 'reidcloud.aliyuncs.com', ap-southeast-2 = 'reidcloud.aliyuncs.com', ap-southeast-3 = 'reidcloud.aliyuncs.com', ap-southeast-5 = 'reidcloud.aliyuncs.com', cn-beijing = 'reidcloud.aliyuncs.com', cn-beijing-finance-1 = 'reidcloud.aliyuncs.com', cn-beijing-finance-pop = 'reidcloud.aliyuncs.com', cn-beijing-gov-1 = 'reidcloud.aliyuncs.com', cn-beijing-nu16-b01 = 'reidcloud.aliyuncs.com', cn-chengdu = 'reidcloud.aliyuncs.com', cn-edge-1 = 'reidcloud.aliyuncs.com', cn-fujian = 'reidcloud.aliyuncs.com', cn-haidian-cm12-c01 = 'reidcloud.aliyuncs.com', cn-hangzhou = 'reidcloud.aliyuncs.com', cn-hangzhou-bj-b01 = 'reidcloud.aliyuncs.com', cn-hangzhou-finance = 'reidcloud.aliyuncs.com', cn-hangzhou-internal-prod-1 = 'reidcloud.aliyuncs.com', cn-hangzhou-internal-test-1 = 'reidcloud.aliyuncs.com', cn-hangzhou-internal-test-2 = 'reidcloud.aliyuncs.com', cn-hangzhou-internal-test-3 = 'reidcloud.aliyuncs.com', cn-hangzhou-test-306 = 'reidcloud.aliyuncs.com', cn-hongkong = 'reidcloud.aliyuncs.com', cn-hongkong-finance-pop = 'reidcloud.aliyuncs.com', cn-huhehaote = 'reidcloud.aliyuncs.com', cn-huhehaote-nebula-1 = 'reidcloud.aliyuncs.com', cn-north-2-gov-1 = 'reidcloud.aliyuncs.com', cn-qingdao = 'reidcloud.aliyuncs.com', cn-qingdao-nebula = 'reidcloud.aliyuncs.com', cn-shanghai = 'reidcloud.cn-shanghai.aliyuncs.com', cn-shanghai-et15-b01 = 'reidcloud.aliyuncs.com', cn-shanghai-et2-b01 = 'reidcloud.aliyuncs.com', cn-shanghai-finance-1 = 'reidcloud.aliyuncs.com', cn-shanghai-inner = 'reidcloud.aliyuncs.com', cn-shanghai-internal-test-1 = 'reidcloud.aliyuncs.com', cn-shenzhen = 'reidcloud.aliyuncs.com', cn-shenzhen-finance-1 = 'reidcloud.aliyuncs.com', cn-shenzhen-inner = 'reidcloud.aliyuncs.com', cn-shenzhen-st4-d01 = 'reidcloud.aliyuncs.com', cn-shenzhen-su18-b01 = 'reidcloud.aliyuncs.com', cn-wuhan = 'reidcloud.aliyuncs.com', cn-wulanchabu = 'reidcloud.aliyuncs.com', cn-yushanfang = 'reidcloud.aliyuncs.com', cn-zhangbei = 'reidcloud.aliyuncs.com', cn-zhangbei-na61-b01 = 'reidcloud.aliyuncs.com', cn-zhangjiakou = 'reidcloud.aliyuncs.com', cn-zhangjiakou-na62-a01 = 'reidcloud.aliyuncs.com', cn-zhengzhou-nebula-1 = 'reidcloud.aliyuncs.com', eu-central-1 = 'reidcloud.aliyuncs.com', eu-west-1 = 'reidcloud.aliyuncs.com', eu-west-1-oxs = 'reidcloud.aliyuncs.com', me-east-1 = 'reidcloud.aliyuncs.com', rus-west-1-pop = 'reidcloud.aliyuncs.com', us-east-1 = 'reidcloud.aliyuncs.com', us-west-1 = 'reidcloud.aliyuncs.com', }; checkConfig(config); @endpoint = getEndpoint('reid_cloud', @regionId, @endpointRule, @network, @suffix, @endpointMap, @endpoint); } function getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: map[string]string, endpoint: string) throws: string{ if (!Util.empty(endpoint)) { return endpoint; } if (!Util.isUnset(endpointMap) && !Util.empty(endpointMap[regionId])) { return endpointMap[regionId]; } return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix); } model DescribeBaseStatisticsRequest { date?: string(name='Date'), summaryType?: string(name='SummaryType'), extraStatisticTypes?: string(name='ExtraStatisticTypes'), storeId?: long(name='StoreId'), locationId?: long(name='LocationId'), } model DescribeBaseStatisticsResponseBody = { requestId?: string(name='RequestId'), cursorTime?: string(name='CursorTime'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), baseStatistics?: { baseStatistics?: [ { stayPeriod?: long(name='StayPeriod'), maleAgeItems?: { ageItem?: [ { name?: string(name='Name'), count?: int32(name='Count'), } ](name='AgeItem') }(name='MaleAgeItems'), stayDistributionItems?: { stayDistributionItem?: [ { startTs?: long(name='StartTs'), count?: int32(name='Count'), endTs?: long(name='EndTs'), } ](name='StayDistributionItem') }(name='StayDistributionItems'), onlyBodyUvCount?: int32(name='OnlyBodyUvCount'), time?: string(name='Time'), uvCount?: int32(name='UvCount'), maleUvCount?: int32(name='MaleUvCount'), summaryType?: string(name='SummaryType'), femaleUvCount?: int32(name='FemaleUvCount'), storeId?: long(name='StoreId'), oldCount?: int32(name='OldCount'), locationId?: long(name='LocationId'), ageItems?: { ageItem?: [ { name?: string(name='Name'), count?: int32(name='Count'), } ](name='AgeItem') }(name='AgeItems'), newCount?: int32(name='NewCount'), femaleAgeItems?: { ageItem?: [ { name?: string(name='Name'), count?: int32(name='Count'), } ](name='AgeItem') }(name='FemaleAgeItems'), } ](name='BaseStatistics') }(name='BaseStatistics'), success?: boolean(name='Success'), } model DescribeBaseStatisticsResponse = { headers: map[string]string(name='headers'), body: DescribeBaseStatisticsResponseBody(name='body'), } async function describeBaseStatisticsWithOptions(request: DescribeBaseStatisticsRequest, runtime: Util.RuntimeOptions): DescribeBaseStatisticsResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('DescribeBaseStatistics', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function describeBaseStatistics(request: DescribeBaseStatisticsRequest): DescribeBaseStatisticsResponse { var runtime = new Util.RuntimeOptions{}; return describeBaseStatisticsWithOptions(request, runtime); } model DescribeCameraStatisticsRequest { startTimestamp?: long(name='StartTimestamp'), endTimestamp?: long(name='EndTimestamp'), storeId?: long(name='StoreId'), locationId?: long(name='LocationId'), } model DescribeCameraStatisticsResponseBody = { pvStatisticResults?: { pvStatisticResult?: [ { processCursor?: long(name='ProcessCursor'), ipcId?: long(name='IpcId'), locationId?: long(name='LocationId'), pvType?: string(name='PvType'), maxDataTime?: long(name='MaxDataTime'), pvCount?: long(name='PvCount'), pvRects?: { rect?: [ { right?: float(name='Right'), top?: float(name='Top'), left?: float(name='Left'), bottom?: float(name='Bottom'), } ](name='Rect') }(name='PvRects'), } ](name='PvStatisticResult') }(name='PvStatisticResults'), requestId?: string(name='RequestId'), message?: string(name='Message'), dynamicCode?: string(name='DynamicCode'), errorCode?: string(name='ErrorCode'), dynamicMessage?: string(name='DynamicMessage'), errorMessage?: string(name='ErrorMessage'), code?: string(name='Code'), success?: boolean(name='Success'), } model DescribeCameraStatisticsResponse = { headers: map[string]string(name='headers'), body: DescribeCameraStatisticsResponseBody(name='body'), } async function describeCameraStatisticsWithOptions(request: DescribeCameraStatisticsRequest, runtime: Util.RuntimeOptions): DescribeCameraStatisticsResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('DescribeCameraStatistics', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function describeCameraStatistics(request: DescribeCameraStatisticsRequest): DescribeCameraStatisticsResponse { var runtime = new Util.RuntimeOptions{}; return describeCameraStatisticsWithOptions(request, runtime); } model DescribeCursorRequest { partitionIndex?: int32(name='PartitionIndex'), storeId?: long(name='StoreId'), time?: string(name='Time'), } model DescribeCursorResponseBody = { requestId?: string(name='RequestId'), message?: string(name='Message'), dynamicCode?: string(name='DynamicCode'), errorCode?: string(name='ErrorCode'), dynamicMessage?: string(name='DynamicMessage'), cursor?: string(name='Cursor'), errorMessage?: string(name='ErrorMessage'), code?: string(name='Code'), success?: boolean(name='Success'), } model DescribeCursorResponse = { headers: map[string]string(name='headers'), body: DescribeCursorResponseBody(name='body'), } async function describeCursorWithOptions(request: DescribeCursorRequest, runtime: Util.RuntimeOptions): DescribeCursorResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('DescribeCursor', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function describeCursor(request: DescribeCursorRequest): DescribeCursorResponse { var runtime = new Util.RuntimeOptions{}; return describeCursorWithOptions(request, runtime); } model DescribeCustomerFlowByLocationRequest { startDate?: string(name='StartDate'), minCount?: long(name='MinCount'), parentAmount?: long(name='ParentAmount'), storeId?: long(name='StoreId'), parentLocationIds?: string(name='ParentLocationIds'), locationId?: long(name='LocationId'), endDate?: string(name='EndDate'), maxCount?: long(name='MaxCount'), } model DescribeCustomerFlowByLocationResponseBody = { customerFlowItems?: { customerFlowItem?: [ { storeId?: long(name='StoreId'), parentLocationIds?: string(name='ParentLocationIds'), percent?: float(name='Percent'), locationId?: long(name='LocationId'), locationName?: string(name='LocationName'), count?: long(name='Count'), } ](name='CustomerFlowItem') }(name='CustomerFlowItems'), storeId?: long(name='StoreId'), requestId?: string(name='RequestId'), percent?: float(name='Percent'), parentLocationIds?: string(name='ParentLocationIds'), locationId?: long(name='LocationId'), errorCode?: string(name='ErrorCode'), count?: long(name='Count'), errorMessage?: string(name='ErrorMessage'), success?: boolean(name='Success'), locationName?: string(name='LocationName'), } model DescribeCustomerFlowByLocationResponse = { headers: map[string]string(name='headers'), body: DescribeCustomerFlowByLocationResponseBody(name='body'), } async function describeCustomerFlowByLocationWithOptions(request: DescribeCustomerFlowByLocationRequest, runtime: Util.RuntimeOptions): DescribeCustomerFlowByLocationResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('DescribeCustomerFlowByLocation', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function describeCustomerFlowByLocation(request: DescribeCustomerFlowByLocationRequest): DescribeCustomerFlowByLocationResponse { var runtime = new Util.RuntimeOptions{}; return describeCustomerFlowByLocationWithOptions(request, runtime); } model DescribeDevicesRequest { storeId?: long(name='StoreId'), } model DescribeDevicesResponseBody = { requestId?: string(name='RequestId'), message?: string(name='Message'), dynamicCode?: string(name='DynamicCode'), errorCode?: string(name='ErrorCode'), dynamicMessage?: string(name='DynamicMessage'), errorMessage?: string(name='ErrorMessage'), devices?: { device?: [ { ipcId?: long(name='IpcId'), ipcName?: string(name='IpcName'), ipcStatus?: string(name='IpcStatus'), agentMac?: string(name='AgentMac'), ipcIp?: string(name='IpcIp'), agentReceiveTime?: long(name='AgentReceiveTime'), ipcReceiveTime?: long(name='IpcReceiveTime'), agentIp?: string(name='AgentIp'), agentStatus?: string(name='AgentStatus'), } ](name='Device') }(name='Devices'), code?: string(name='Code'), success?: boolean(name='Success'), } model DescribeDevicesResponse = { headers: map[string]string(name='headers'), body: DescribeDevicesResponseBody(name='body'), } async function describeDevicesWithOptions(request: DescribeDevicesRequest, runtime: Util.RuntimeOptions): DescribeDevicesResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('DescribeDevices', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function describeDevices(request: DescribeDevicesRequest): DescribeDevicesResponse { var runtime = new Util.RuntimeOptions{}; return describeDevicesWithOptions(request, runtime); } model DescribeHeatMapRequest { emapId?: long(name='EmapId'), storeId?: long(name='StoreId'), date?: string(name='Date'), } model DescribeHeatMapResponseBody = { requestId?: string(name='RequestId'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), success?: boolean(name='Success'), heatMapPoints?: { heatMapPoint?: [ { weight?: int32(name='Weight'), y?: float(name='Y'), x?: float(name='X'), } ](name='HeatMapPoint') }(name='HeatMapPoints'), } model DescribeHeatMapResponse = { headers: map[string]string(name='headers'), body: DescribeHeatMapResponseBody(name='body'), } async function describeHeatMapWithOptions(request: DescribeHeatMapRequest, runtime: Util.RuntimeOptions): DescribeHeatMapResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('DescribeHeatMap', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function describeHeatMap(request: DescribeHeatMapRequest): DescribeHeatMapResponse { var runtime = new Util.RuntimeOptions{}; return describeHeatMapWithOptions(request, runtime); } model DescribeImageUrlsRequest { originUrls?: string(name='OriginUrls'), objectKeys?: string(name='ObjectKeys'), storeId?: long(name='StoreId'), } model DescribeImageUrlsResponseBody = { requestId?: string(name='RequestId'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), urls?: { imageUrl?: [ { objectKey?: string(name='ObjectKey'), url?: string(name='Url'), } ](name='ImageUrl') }(name='Urls'), success?: boolean(name='Success'), } model DescribeImageUrlsResponse = { headers: map[string]string(name='headers'), body: DescribeImageUrlsResponseBody(name='body'), } async function describeImageUrlsWithOptions(request: DescribeImageUrlsRequest, runtime: Util.RuntimeOptions): DescribeImageUrlsResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('DescribeImageUrls', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function describeImageUrls(request: DescribeImageUrlsRequest): DescribeImageUrlsResponse { var runtime = new Util.RuntimeOptions{}; return describeImageUrlsWithOptions(request, runtime); } model DescribeIpcLiveAddressRequest { ipcId?: long(name='IpcId'), storeId?: long(name='StoreId'), protocolType?: string(name='ProtocolType'), } model DescribeIpcLiveAddressResponseBody = { requestId?: string(name='RequestId'), message?: string(name='Message'), expiredTime?: string(name='ExpiredTime'), dynamicCode?: string(name='DynamicCode'), errorCode?: string(name='ErrorCode'), dynamicMessage?: string(name='DynamicMessage'), errorMessage?: string(name='ErrorMessage'), code?: string(name='Code'), ipcId?: long(name='IpcId'), success?: boolean(name='Success'), rtmpUrl?: string(name='RtmpUrl'), } model DescribeIpcLiveAddressResponse = { headers: map[string]string(name='headers'), body: DescribeIpcLiveAddressResponseBody(name='body'), } async function describeIpcLiveAddressWithOptions(request: DescribeIpcLiveAddressRequest, runtime: Util.RuntimeOptions): DescribeIpcLiveAddressResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('DescribeIpcLiveAddress', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function describeIpcLiveAddress(request: DescribeIpcLiveAddressRequest): DescribeIpcLiveAddressResponse { var runtime = new Util.RuntimeOptions{}; return describeIpcLiveAddressWithOptions(request, runtime); } model DescribeOverviewDataRequest { date?: string(name='Date'), storeIds?: string(name='StoreIds'), } model DescribeOverviewDataResponseBody = { overviewDetail?: { uvEverySqmGrowthWOWPercent?: float(name='UvEverySqmGrowthWOWPercent'), uvEverySqm?: float(name='UvEverySqm'), stayAvgPeriod?: float(name='StayAvgPeriod'), uvWOWPercent?: float(name='UvWOWPercent'), uvAvgWOWPercent?: float(name='UvAvgWOWPercent'), uvAvg?: float(name='UvAvg'), stayDeepAvg?: float(name='StayDeepAvg'), stayAvgPeriodWOWPercent?: float(name='StayAvgPeriodWOWPercent'), uv?: long(name='Uv'), stayDeepAvgWOWPercent?: float(name='StayDeepAvgWOWPercent'), }(name='OverviewDetail'), requestId?: string(name='RequestId'), message?: string(name='Message'), accurateOverviewDetail?: { uvEverySqmGrowthWOWPercent?: string(name='UvEverySqmGrowthWOWPercent'), uvEverySqm?: string(name='UvEverySqm'), stayAvgPeriod?: string(name='StayAvgPeriod'), uvWOWPercent?: string(name='UvWOWPercent'), uvAvgWOWPercent?: string(name='UvAvgWOWPercent'), uvAvg?: string(name='UvAvg'), stayDeepAvg?: string(name='StayDeepAvg'), stayAvgPeriodWOWPercent?: string(name='StayAvgPeriodWOWPercent'), uv?: long(name='Uv'), stayDeepAvgWOWPercent?: string(name='StayDeepAvgWOWPercent'), }(name='AccurateOverviewDetail'), dynamicCode?: string(name='DynamicCode'), errorCode?: string(name='ErrorCode'), dynamicMessage?: string(name='DynamicMessage'), errorMessage?: string(name='ErrorMessage'), code?: string(name='Code'), success?: boolean(name='Success'), } model DescribeOverviewDataResponse = { headers: map[string]string(name='headers'), body: DescribeOverviewDataResponseBody(name='body'), } async function describeOverviewDataWithOptions(request: DescribeOverviewDataRequest, runtime: Util.RuntimeOptions): DescribeOverviewDataResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('DescribeOverviewData', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function describeOverviewData(request: DescribeOverviewDataRequest): DescribeOverviewDataResponse { var runtime = new Util.RuntimeOptions{}; return describeOverviewDataWithOptions(request, runtime); } model GetFootwearEventRequest { storeId?: long(name='StoreId'), date?: string(name='Date'), } model GetFootwearEventResponseBody = { requestId?: string(name='RequestId'), message?: string(name='Message'), footwearEventList?: { footwearEvent?: [ { storeId?: long(name='StoreId'), takeEventCount?: int32(name='TakeEventCount'), skuId?: string(name='SkuId'), date?: string(name='Date'), positionNumber?: string(name='PositionNumber'), tryOnEventCount?: int32(name='TryOnEventCount'), } ](name='FootwearEvent') }(name='FootwearEventList'), dynamicCode?: string(name='DynamicCode'), errorCode?: string(name='ErrorCode'), dynamicMessage?: string(name='DynamicMessage'), errorMessage?: string(name='ErrorMessage'), code?: string(name='Code'), success?: boolean(name='Success'), } model GetFootwearEventResponse = { headers: map[string]string(name='headers'), body: GetFootwearEventResponseBody(name='body'), } async function getFootwearEventWithOptions(request: GetFootwearEventRequest, runtime: Util.RuntimeOptions): GetFootwearEventResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('GetFootwearEvent', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function getFootwearEvent(request: GetFootwearEventRequest): GetFootwearEventResponse { var runtime = new Util.RuntimeOptions{}; return getFootwearEventWithOptions(request, runtime); } model GetFootwearPositionRequest { storeId?: long(name='StoreId'), date?: string(name='Date'), skuId?: string(name='SkuId'), } model GetFootwearPositionResponseBody = { message?: string(name='Message'), requestId?: string(name='RequestId'), storeId?: long(name='StoreId'), startTime?: long(name='StartTime'), dynamicCode?: string(name='DynamicCode'), dynamicMessage?: string(name='DynamicMessage'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), skuId?: string(name='SkuId'), positionNumber?: int32(name='PositionNumber'), code?: string(name='Code'), success?: boolean(name='Success'), } model GetFootwearPositionResponse = { headers: map[string]string(name='headers'), body: GetFootwearPositionResponseBody(name='body'), } async function getFootwearPositionWithOptions(request: GetFootwearPositionRequest, runtime: Util.RuntimeOptions): GetFootwearPositionResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('GetFootwearPosition', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function getFootwearPosition(request: GetFootwearPositionRequest): GetFootwearPositionResponse { var runtime = new Util.RuntimeOptions{}; return getFootwearPositionWithOptions(request, runtime); } model ImportSpecialPersonnelRequest { description?: string(name='Description'), storeIds?: string(name='StoreIds'), urls?: string(name='Urls'), personType?: string(name='PersonType'), ukId?: long(name='UkId'), externalId?: string(name='ExternalId'), personName?: string(name='PersonName'), status?: string(name='Status'), } model ImportSpecialPersonnelResponseBody = { requestId?: string(name='RequestId'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), specialPersonnelMaps?: { specialPersonnelMap?: [ { storeId?: long(name='StoreId'), ukId?: long(name='UkId'), } ](name='SpecialPersonnelMap') }(name='SpecialPersonnelMaps'), success?: boolean(name='Success'), } model ImportSpecialPersonnelResponse = { headers: map[string]string(name='headers'), body: ImportSpecialPersonnelResponseBody(name='body'), } async function importSpecialPersonnelWithOptions(request: ImportSpecialPersonnelRequest, runtime: Util.RuntimeOptions): ImportSpecialPersonnelResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('ImportSpecialPersonnel', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function importSpecialPersonnel(request: ImportSpecialPersonnelRequest): ImportSpecialPersonnelResponse { var runtime = new Util.RuntimeOptions{}; return importSpecialPersonnelWithOptions(request, runtime); } model ListActionDataRequest { storeId?: long(name='StoreId'), endTime?: long(name='EndTime'), pageSize?: int32(name='PageSize'), pageNumber?: int32(name='PageNumber'), filterInvalidData?: boolean(name='FilterInvalidData'), startTime?: long(name='StartTime'), } model ListActionDataResponseBody = { totalCount?: long(name='TotalCount'), requestId?: string(name='RequestId'), pageSize?: int32(name='PageSize'), pageNumber?: int32(name='PageNumber'), actions?: { action?: [ { status?: int32(name='Status'), stayPeriod?: int32(name='StayPeriod'), imageUrl?: string(name='ImageUrl'), inStay?: long(name='InStay'), locationLayerType?: string(name='LocationLayerType'), score?: float(name='Score'), gmtModified?: long(name='GmtModified'), leaveTimestamp?: long(name='LeaveTimestamp'), facePointNumber?: int32(name='FacePointNumber'), ukId?: long(name='UkId'), specialType?: string(name='SpecialType'), pointInMap?: { y?: float(name='Y'), x?: float(name='X'), }(name='PointInMap'), gender?: string(name='Gender'), age?: int32(name='Age'), stayValid?: boolean(name='StayValid'), storeId?: long(name='StoreId'), imageType?: string(name='ImageType'), bodyPointNumber?: int32(name='BodyPointNumber'), locationId?: long(name='LocationId'), objectPositionInImage?: { right?: float(name='Right'), top?: float(name='Top'), left?: float(name='Left'), bottom?: float(name='Bottom'), }(name='ObjectPositionInImage'), gmtCreate?: long(name='GmtCreate'), arriveTimestamp?: long(name='ArriveTimestamp'), id?: long(name='Id'), imageObjectKey?: string(name='ImageObjectKey'), } ](name='Action') }(name='Actions'), cursorTime?: long(name='CursorTime'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), success?: boolean(name='Success'), } model ListActionDataResponse = { headers: map[string]string(name='headers'), body: ListActionDataResponseBody(name='body'), } async function listActionDataWithOptions(request: ListActionDataRequest, runtime: Util.RuntimeOptions): ListActionDataResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('ListActionData', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function listActionData(request: ListActionDataRequest): ListActionDataResponse { var runtime = new Util.RuntimeOptions{}; return listActionDataWithOptions(request, runtime); } model ListDevicesImagesRequest { ipcIdList?: string(name='IpcIdList'), storeId?: long(name='StoreId'), } model ListDevicesImagesResponseBody = { deviceImages?: [ { ipcId?: long(name='IpcId'), imageUrl?: string(name='ImageUrl'), } ](name='DeviceImages'), requestId?: string(name='RequestId'), message?: string(name='Message'), dynamicCode?: string(name='DynamicCode'), errorCode?: string(name='ErrorCode'), dynamicMessage?: string(name='DynamicMessage'), errorMessage?: string(name='ErrorMessage'), code?: string(name='Code'), success?: boolean(name='Success'), } model ListDevicesImagesResponse = { headers: map[string]string(name='headers'), body: ListDevicesImagesResponseBody(name='body'), } async function listDevicesImagesWithOptions(request: ListDevicesImagesRequest, runtime: Util.RuntimeOptions): ListDevicesImagesResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('ListDevicesImages', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function listDevicesImages(request: ListDevicesImagesRequest): ListDevicesImagesResponse { var runtime = new Util.RuntimeOptions{}; return listDevicesImagesWithOptions(request, runtime); } model ListEmapRequest { storeId?: long(name='StoreId'), } model ListEmapResponseBody = { requestId?: string(name='RequestId'), openEmaps?: { openEmap?: [ { emapId?: string(name='EmapId'), locationId?: string(name='LocationId'), name?: string(name='Name'), emapUrl?: string(name='EmapUrl'), } ](name='OpenEmap') }(name='OpenEmaps'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), success?: boolean(name='Success'), } model ListEmapResponse = { headers: map[string]string(name='headers'), body: ListEmapResponseBody(name='body'), } async function listEmapWithOptions(request: ListEmapRequest, runtime: Util.RuntimeOptions): ListEmapResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('ListEmap', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function listEmap(request: ListEmapRequest): ListEmapResponse { var runtime = new Util.RuntimeOptions{}; return listEmapWithOptions(request, runtime); } model ListLocationRequest { storeId?: long(name='StoreId'), } model ListLocationResponseBody = { requestId?: string(name='RequestId'), locationInfoItems?: { locationInfoItem?: [ { parentLocationId?: long(name='ParentLocationId'), storeId?: long(name='StoreId'), status?: int32(name='Status'), locationType?: string(name='LocationType'), locationId?: long(name='LocationId'), gmtCreate?: long(name='GmtCreate'), locationName?: string(name='LocationName'), externalId?: string(name='ExternalId'), layerType?: string(name='LayerType'), gmtModified?: long(name='GmtModified'), rectRois?: { rectRoi?: [ { points?: { point?: [ { y?: float(name='Y'), x?: float(name='X'), } ](name='Point') }(name='Points'), } ](name='RectRoi') }(name='RectRois'), } ](name='LocationInfoItem') }(name='LocationInfoItems'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), success?: boolean(name='Success'), } model ListLocationResponse = { headers: map[string]string(name='headers'), body: ListLocationResponseBody(name='body'), } async function listLocationWithOptions(request: ListLocationRequest, runtime: Util.RuntimeOptions): ListLocationResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('ListLocation', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function listLocation(request: ListLocationRequest): ListLocationResponse { var runtime = new Util.RuntimeOptions{}; return listLocationWithOptions(request, runtime); } model ListMaskDetectionResultsRequest { endTime?: long(name='EndTime'), pageSize?: int32(name='PageSize'), startTime?: long(name='StartTime'), pageNumber?: int32(name='PageNumber'), storeId?: long(name='StoreId'), } model ListMaskDetectionResultsResponseBody = { totalCount?: long(name='TotalCount'), requestId?: string(name='RequestId'), message?: string(name='Message'), pageSize?: int32(name='PageSize'), pageNumber?: int32(name='PageNumber'), maskDetectionResults?: [ { pkId?: string(name='PkId'), maskResult?: string(name='MaskResult'), ipcId?: string(name='IpcId'), locationId?: long(name='LocationId'), score?: string(name='Score'), imageKey?: string(name='ImageKey'), id?: long(name='Id'), } ](name='MaskDetectionResults'), dynamicCode?: string(name='DynamicCode'), errorCode?: string(name='ErrorCode'), dynamicMessage?: string(name='DynamicMessage'), errorMessage?: string(name='ErrorMessage'), code?: string(name='Code'), success?: boolean(name='Success'), } model ListMaskDetectionResultsResponse = { headers: map[string]string(name='headers'), body: ListMaskDetectionResultsResponseBody(name='body'), } async function listMaskDetectionResultsWithOptions(request: ListMaskDetectionResultsRequest, runtime: Util.RuntimeOptions): ListMaskDetectionResultsResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('ListMaskDetectionResults', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function listMaskDetectionResults(request: ListMaskDetectionResultsRequest): ListMaskDetectionResultsResponse { var runtime = new Util.RuntimeOptions{}; return listMaskDetectionResultsWithOptions(request, runtime); } model ListPersonByImageRequest { storeId?: long(name='StoreId'), imageUrl?: string(name='ImageUrl'), } model ListPersonByImageResponseBody = { requestId?: string(name='RequestId'), personSearchResultItems?: { personSearchResultItem?: [ { ukId?: long(name='UkId'), score?: float(name='Score'), } ](name='PersonSearchResultItem') }(name='PersonSearchResultItems'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), success?: boolean(name='Success'), } model ListPersonByImageResponse = { headers: map[string]string(name='headers'), body: ListPersonByImageResponseBody(name='body'), } async function listPersonByImageWithOptions(request: ListPersonByImageRequest, runtime: Util.RuntimeOptions): ListPersonByImageResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('ListPersonByImage', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function listPersonByImage(request: ListPersonByImageRequest): ListPersonByImageResponse { var runtime = new Util.RuntimeOptions{}; return listPersonByImageWithOptions(request, runtime); } model ListStoreResponseBody = { requestId?: string(name='RequestId'), errorCode?: string(name='ErrorCode'), stores?: { openStore?: [ { status?: int32(name='Status'), storeId?: long(name='StoreId'), openingEndTime?: string(name='OpeningEndTime'), storeType?: string(name='StoreType'), address?: string(name='Address'), sqm?: float(name='Sqm'), gmtCreate?: long(name='GmtCreate'), gmtModified?: long(name='GmtModified'), name?: string(name='Name'), openingStartTime?: string(name='OpeningStartTime'), } ](name='OpenStore') }(name='Stores'), errorMessage?: string(name='ErrorMessage'), success?: boolean(name='Success'), } model ListStoreResponse = { headers: map[string]string(name='headers'), body: ListStoreResponseBody(name='body'), } async function listStoreWithOptions(runtime: Util.RuntimeOptions): ListStoreResponse { var req = new OpenApi.OpenApiRequest{}; return doRPCRequest('ListStore', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function listStore(): ListStoreResponse { var runtime = new Util.RuntimeOptions{}; return listStoreWithOptions(runtime); } model PullActionDataRequest { partitionIndex?: int32(name='PartitionIndex'), storeId?: long(name='StoreId'), startMessageId?: long(name='StartMessageId'), endMessageId?: long(name='EndMessageId'), limit?: int32(name='Limit'), } model PullActionDataResponseBody = { requestId?: string(name='RequestId'), message?: string(name='Message'), nextMessageId?: long(name='NextMessageId'), actions?: { action?: [ { status?: int32(name='Status'), stayPeriod?: int32(name='StayPeriod'), imageUrl?: string(name='ImageUrl'), inStay?: long(name='InStay'), locationLayerType?: string(name='LocationLayerType'), score?: float(name='Score'), gmtModified?: long(name='GmtModified'), leaveTimestamp?: long(name='LeaveTimestamp'), facePointNumber?: int32(name='FacePointNumber'), ukId?: long(name='UkId'), specialType?: string(name='SpecialType'), pointInMap?: { y?: float(name='Y'), x?: float(name='X'), }(name='PointInMap'), gender?: string(name='Gender'), age?: int32(name='Age'), stayValid?: boolean(name='StayValid'), storeId?: long(name='StoreId'), imageType?: string(name='ImageType'), bodyPointNumber?: int32(name='BodyPointNumber'), locationId?: long(name='LocationId'), objectPositionInImage?: { right?: float(name='Right'), top?: float(name='Top'), left?: float(name='Left'), bottom?: float(name='Bottom'), }(name='ObjectPositionInImage'), gmtCreate?: long(name='GmtCreate'), arriveTimestamp?: long(name='ArriveTimestamp'), id?: long(name='Id'), imageObjectKey?: string(name='ImageObjectKey'), } ](name='Action') }(name='Actions'), partitionIndex?: int32(name='PartitionIndex'), dynamicCode?: string(name='DynamicCode'), errorCode?: string(name='ErrorCode'), dynamicMessage?: string(name='DynamicMessage'), errorMessage?: string(name='ErrorMessage'), code?: string(name='Code'), success?: boolean(name='Success'), } model PullActionDataResponse = { headers: map[string]string(name='headers'), body: PullActionDataResponseBody(name='body'), } async function pullActionDataWithOptions(request: PullActionDataRequest, runtime: Util.RuntimeOptions): PullActionDataResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('PullActionData', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function pullActionData(request: PullActionDataRequest): PullActionDataResponse { var runtime = new Util.RuntimeOptions{}; return pullActionDataWithOptions(request, runtime); } model PullTakeShoesEventRequest { storeId?: long(name='StoreId'), date?: string(name='Date'), skuId?: string(name='SkuId'), } model PullTakeShoesEventResponseBody = { message?: string(name='Message'), requestId?: string(name='RequestId'), storeId?: long(name='StoreId'), startTime?: long(name='StartTime'), takeShoesEventCount?: int32(name='TakeShoesEventCount'), dynamicCode?: string(name='DynamicCode'), dynamicMessage?: string(name='DynamicMessage'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), skuId?: string(name='SkuId'), code?: string(name='Code'), success?: boolean(name='Success'), } model PullTakeShoesEventResponse = { headers: map[string]string(name='headers'), body: PullTakeShoesEventResponseBody(name='body'), } async function pullTakeShoesEventWithOptions(request: PullTakeShoesEventRequest, runtime: Util.RuntimeOptions): PullTakeShoesEventResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('PullTakeShoesEvent', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function pullTakeShoesEvent(request: PullTakeShoesEventRequest): PullTakeShoesEventResponse { var runtime = new Util.RuntimeOptions{}; return pullTakeShoesEventWithOptions(request, runtime); } model PullTryOnShoesEventRequest { skuId?: string(name='SkuId'), pageSize?: int32(name='PageSize'), pageNumber?: int32(name='PageNumber'), date?: string(name='Date'), storeId?: long(name='StoreId'), name?: string(name='Name'), } model PullTryOnShoesEventResponseBody = { startTs?: long(name='StartTs'), message?: string(name='Message'), requestId?: string(name='RequestId'), pageSize?: int32(name='PageSize'), dynamicMessage?: string(name='DynamicMessage'), code?: string(name='Code'), success?: boolean(name='Success'), totalCount?: long(name='TotalCount'), storeId?: long(name='StoreId'), tryOnShoesEventCount?: int32(name='TryOnShoesEventCount'), pageNumber?: int32(name='PageNumber'), dynamicCode?: string(name='DynamicCode'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), skuId?: string(name='SkuId'), } model PullTryOnShoesEventResponse = { headers: map[string]string(name='headers'), body: PullTryOnShoesEventResponseBody(name='body'), } async function pullTryOnShoesEventWithOptions(request: PullTryOnShoesEventRequest, runtime: Util.RuntimeOptions): PullTryOnShoesEventResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('PullTryOnShoesEvent', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function pullTryOnShoesEvent(request: PullTryOnShoesEventRequest): PullTryOnShoesEventResponse { var runtime = new Util.RuntimeOptions{}; return pullTryOnShoesEventWithOptions(request, runtime); } model ReportPacketRequest { packetCount?: long(name='PacketCount'), deviceId?: string(name='DeviceId'), storeId?: long(name='StoreId'), packetContent?: [ { version?: string(name='Version'), content?: string(name='Content'), } ](name='PacketContent'), } model ReportPacketResponseBody = { message?: string(name='Message'), requestId?: string(name='RequestId'), errorCode?: string(name='ErrorCode'), errorMessage?: string(name='ErrorMessage'), success?: boolean(name='Success'), } model ReportPacketResponse = { headers: map[string]string(name='headers'), body: ReportPacketResponseBody(name='body'), } async function reportPacketWithOptions(request: ReportPacketRequest, runtime: Util.RuntimeOptions): ReportPacketResponse { Util.validateModel(request); var req = new OpenApi.OpenApiRequest{ body = Util.toMap(request), }; return doRPCRequest('ReportPacket', '2020-10-30', 'HTTPS', 'POST', 'AK', 'json', req, runtime); } async function reportPacket(request: ReportPacketRequest): ReportPacketResponse { var runtime = new Util.RuntimeOptions{}; return reportPacketWithOptions(request, runtime); }
Tea
4
aliyun/alibabacloud-sdk
reid_cloud-20201030/main.tea
[ "Apache-2.0" ]
; Script generated by the Inno Setup Script Wizard. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! [Setup] ; NOTE: The value of AppId uniquely identifies this application. ; Do not use the same AppId value in installers for other applications. ; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) AppId={{5094958B-3CD7-4780-A883-69C9E5B95AEF} AppName=PmDefaults AppVerName=PmDefaults AppPublisher=Roger Dannenberg - Carnegie Mellon University AppPublisherURL=http://portmedia.sourceforge.net/ AppSupportURL=http://portmedia.sourceforge.net/ AppUpdatesURL=http://portmedia.sourceforge.net/ DefaultDirName={pf}\PmDefaults DefaultGroupName=PmDefaults LicenseFile=C:\Users\rbd\portmedia\portmidi\pm_java\win32\license.txt OutputBaseFilename=setup SetupIconFile=C:\Users\rbd\portmedia\portmidi\pm_java\pmdefaults\pmdefaults.ico Compression=lzma SolidCompression=yes [Languages] Name: "english"; MessagesFile: "compiler:Default.isl" [Tasks] Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked [Files] Source: "C:\Users\rbd\portmedia\portmidi\pm_java\win32\pmdefaults.exe"; DestDir: "{app}"; Flags: ignoreversion Source: "C:\Users\rbd\portmedia\portmidi\pm_java\win32\pmdefaults.jar"; DestDir: "{app}"; Flags: ignoreversion Source: "C:\Users\rbd\portmedia\portmidi\pm_java\win32\pmjni.dll"; DestDir: "{app}"; Flags: ignoreversion Source: "C:\Users\rbd\portmedia\portmidi\pm_java\win32\license.txt"; DestDir: "{app}"; Flags: ignoreversion ; NOTE: Don't use "Flags: ignoreversion" on any shared system files [Icons] Name: "{group}\PmDefaults"; Filename: "{app}\pmdefaults.exe" Name: "{commondesktop}\PmDefaults"; Filename: "{app}\pmdefaults.exe"; Tasks: desktopicon Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\PmDefaults"; Filename: "{app}\pmdefaults.exe"; Tasks: quicklaunchicon [Run] Filename: "{app}\pmdefaults.exe"; Description: "{cm:LaunchProgram,PmDefaults}"; Flags: nowait postinstall skipifsilent
Inno Setup
3
exNTLDR/audacity
lib-src/portmidi/pm_java/pmdefaults-setup-script.iss
[ "CC-BY-3.0" ]
-- trace calls -- example: lua -ltrace-calls bisect.lua local level=0 local function hook(event) local t=debug.getinfo(3) io.write(level," >>> ",string.rep(" ",level)) if t~=nil and t.currentline>=0 then io.write(t.short_src,":",t.currentline," ") end t=debug.getinfo(2) if event=="call" then level=level+1 else level=level-1 if level<0 then level=0 end end if t.what=="main" then if event=="call" then io.write("begin ",t.short_src) else io.write("end ",t.short_src) end elseif t.what=="Lua" then -- table.foreach(t,print) io.write(event," ",t.name or "(Lua)"," <",t.linedefined,":",t.short_src,">") else io.write(event," ",t.name or "(C)"," [",t.what,"] ") end io.write("\n") end debug.sethook(hook,"cr") level=0
Lua
3
tomliugen/tomliugen-redis-3.2.2-rc
deps/lua/test/trace-calls.lua
[ "BSD-3-Clause" ]
// tests for the write action assertEquals := method(a, b, if(a != b, Exception raise(call message argAt(0) .. " == " .. a .. " instead of " .. b) ) ) base := "http://localhost:8080" // two ways to write URL with(base .. "/?action=write&key=_testkey1&value=testval1") fetch URL with(base .. "/?action=write&key=_testkey2") post("testval2") assertEquals(URL with(base .. "/?action=read&key=_testkey1") fetch, "\"testval1\"") assertEquals(URL with(base .. "/?action=read&key=_testkey2") fetch, "\"testval2\"") // can create empty keys URL with(base .. "/?action=write&key=_testkey3&value=") fetch URL with(base .. "/?action=write&key=_testkey4") post("") assertEquals(URL with(base .. "/?action=read&key=_testkey3") fetch, "\"\"") assertEquals(URL with(base .. "/?action=read&key=_testkey4") fetch, "\"\"")
Io
3
stevedekorte/vertexdb
tests/write_test.io
[ "BSD-3-Clause" ]
domain: "[n] -> { S2[i0, i1, i2, i1, i0] : i2 >= 1 and i2 <= n and i2 <= -1 + i1 and i1 <= n and i2 <= -1 + i0 and i0 <= n; S1[i0, n, i0, i3] : i0 >= 1 and i0 <= n and i3 >= 1 + i0 and i3 <= n }" child: context: "[n] -> { [] }" child: schedule: "[n] -> [{ S2[i0, i1, i2, i3, i4] -> [(i0)]; S1[i0, i1, i2, i3] -> [(i0)] }, { S2[i0, i1, i2, i3, i4] -> [(i1)]; S1[i0, i1, i2, i3] -> [(i1)] }, { S2[i0, i1, i2, i3, i4] -> [(i2)]; S1[i0, i1, i2, i3] -> [(i2)] }, { S2[i0, i1, i2, i3, i4] -> [(i3)]; S1[i0, i1, i2, i3] -> [(i3)] }, { S2[i0, i1, i2, i3, i4] -> [(i4)]; S1[i0, i1, i2, i3] -> [(0)] }]" options: "[n] -> { separate[i0] }" child: sequence: - filter: "[n] -> { S1[i0, i1, i2, i3] }" - filter: "[n] -> { S2[i0, i1, i2, i3, i4] }"
Smalltalk
2
chelini/isl-haystack
test_inputs/codegen/cloog/lu2.st
[ "MIT" ]
(defmodule lein-node (behaviour jvm-node) (export all)) (defun start () (start "./")) (defun start (filesystem-path) (start filesystem-path '())) (defun start (filesystem-path args) (let ((cmd (os:find_executable "lein")) (opts `(#(cd ,filesystem-path) #(args ,(++ args '("run"))) exit_status))) (open_port `#(spawn_executable ,cmd) opts)))) ; (set pid ; (start "/alt/home/oubiwann/lab/org-clojang/lfecljapp" ; '("with-profile" "+app"))) (defun start_link () (start_link "./")) (defun start_link (filesystem-path) (start_link filesystem-path '())) (defun start_link (filesystem-path args) (let ((pid (start filesystem-path))) (link pid)))
LFE
4
clojusc/clojang
src/lfe/lein-node.lfe
[ "Apache-2.0" ]
#!/usr/bin/tclsh set cachefile [lindex $argv 0] if { $cachefile == "" } { puts stderr "Usage: [file tail $argv0] <existing CMakeCache.txt file>" exit 1 } set struct { name type value description } set fd [open $cachefile r] set cached "" set dbase "" while {[gets $fd line] != -1 } { set line [string trim $line] # Hash comment if { [string index $line 0] == "#" } { continue } # empty line if { $line == "" } { set cached "" continue } if { [string range $line 0 1] == "//" } { set linepart [string range $line 2 end] # Variable description. Add to cache. if { $cached != "" && [string index $cached end] != " " && [string index $linepart 0] != " " } { append cached " " } append cached $linepart } # Possibly a variable if [string is alpha [string index $line 0]] { # Note: this skips variables starting grom underscore. if { [string range $line 0 5] == "CMAKE_" } { # Skip variables with CMAKE_ prefix, they are internal. continue } lassign [split $line =] vartype value lassign [split $vartype :] var type # Store the variable now set storage [list $var $type $value $cached] set cached "" lappend dbase $storage continue } #puts stderr "Ignored line: $line" # Ignored. } # Now look over the stored variables set lenlimit 80 foreach stor $dbase { lassign $stor {*}$struct if { [string length $description] > $lenlimit } { set description [string range $description 0 $lenlimit-2]... } if { $type in {STATIC INTERNAL} } { continue } # Check special case of CXX to turn back to c++. set pos [string first CXX $name] if { $pos != -1 } { # Check around, actually after XX should be no letter. if { $pos+3 >= [string length $name] || ![string is alpha [string index $name $pos+3]] } { set name [string replace $name $pos $pos+2 C++] } } set optname [string tolower [string map {_ -} $name]] # Variables of type bool are just empty. # Variables of other types must have =<value> added. # Lowercase cmake type will be used here. set optassign "" set def "" if { $type != "BOOL" } { set optassign "=<[string tolower $type]>" } else { # Supply default for boolean option set def " (default: $value)" } puts " $optname$optassign \"$description$def\"" }
Tcl
5
attenuation/srs
trunk/3rdparty/srt-1-fit/scripts/generate-configure-options.tcl
[ "MIT" ]
:- use_module(library(jpl)). :- use_module(library(lists)). :- use_module(library(gensym)). :- use_module(library(apply)). :- use_module(library(readutil)). :- use_module(library(porter_stem)). :- use_module(library(listing)). :- use_module(library(ctypes)). :- use_module(library(error)). :- set_prolog_flag(double_quotes,codes). :- object(swi). :- uses(user,[add_import_module/3,atom_number/2,flag/3,nb_delete/1,nb_getval/2,nb_setval/2,writeln/1,writeln/2]). :- public[errmes/2]. :- dynamic expand_query/4. :- end_object.
Logtalk
3
PaulBrownMagic/logtalk3
tools/wrapper/psrc/swi.lgt
[ "Apache-2.0" ]
export { default } from './Menu'; export * from './Menu'; export { default as menuClasses } from './menuClasses'; export * from './menuClasses';
TypeScript
2
good-gym/material-ui
packages/material-ui/src/Menu/index.d.ts
[ "MIT" ]
#include "script_component.hpp" /* Name: TFAR_fnc_haveDDRadio Author: NKey, Garth de Wet (L-H) Returns whether the player has a DD radio. Arguments: None Return Value: has a DD <BOOL> Example: _hasDD = call TFAR_fnc_haveDDRadio; Public: Yes */ private _lastCache = GVAR(VehicleConfigCacheNamespace) getVariable "TFAR_fnc_haveDDRadio_lastCache"; if (_lastCache > TFAR_lastLoadoutChange) exitWith {GVAR(VehicleConfigCacheNamespace) getVariable "TFAR_fnc_haveDDRadio_CachedResult"}; if (isNil "TFAR_currentUnit" || {isNull (TFAR_currentUnit)}) exitWith {false}; private _checkForRadio = { if !(call TFAR_fnc_haveSWRadio) exitWith {false}; //#TODO https://community.bistudio.com/wiki/isAbleToBreathe if ((vest TFAR_currentUnit) == "V_RebreatherB") exitWith {true}; private _rebreather = configFile >> "CfgWeapons" >> "V_RebreatherB"; private _currentVest = configFile >> "CfgWeapons" >> (vest TFAR_currentUnit); [_currentVest, _rebreather] call CBA_fnc_inheritsFrom }; private _result = call _checkForRadio; GVAR(VehicleConfigCacheNamespace) setVariable ["TFAR_fnc_haveDDRadio_lastCache",diag_tickTime-0.1]; GVAR(VehicleConfigCacheNamespace) setVariable ["TFAR_fnc_haveDDRadio_CachedResult",_result]; _result
SQF
5
MrDj200/task-force-arma-3-radio
addons/core/functions/fnc_haveDDRadio.sqf
[ "RSA-MD" ]
// https://dom.spec.whatwg.org/#text [Exposed=Window] interface Text : CharacterData { constructor(optional DOMString data = ""); [NewObject] Text splitText(unsigned long offset); readonly attribute DOMString wholeText; };
WebIDL
4
Unique184/jsdom
lib/jsdom/living/nodes/Text.webidl
[ "MIT" ]
[[io.email]] == Sending Email The Spring Framework provides an abstraction for sending email by using the `JavaMailSender` interface, and Spring Boot provides auto-configuration for it as well as a starter module. TIP: See the {spring-framework-docs}/integration.html#mail[reference documentation] for a detailed explanation of how you can use `JavaMailSender`. If `spring.mail.host` and the relevant libraries (as defined by `spring-boot-starter-mail`) are available, a default `JavaMailSender` is created if none exists. The sender can be further customized by configuration items from the `spring.mail` namespace. See {spring-boot-autoconfigure-module-code}/mail/MailProperties.java[`MailProperties`] for more details. In particular, certain default timeout values are infinite, and you may want to change that to avoid having a thread blocked by an unresponsive mail server, as shown in the following example: [source,yaml,indent=0,subs="verbatim",configprops,configblocks] ---- spring: mail: properties: "[mail.smtp.connectiontimeout]": 5000 "[mail.smtp.timeout]": 3000 "[mail.smtp.writetimeout]": 5000 ---- It is also possible to configure a `JavaMailSender` with an existing `Session` from JNDI: [source,yaml,indent=0,subs="verbatim",configprops,configblocks] ---- spring: mail: jndi-name: "mail/Session" ---- When a `jndi-name` is set, it takes precedence over all other Session-related settings.
AsciiDoc
4
techAi007/spring-boot
spring-boot-project/spring-boot-docs/src/docs/asciidoc/io/email.adoc
[ "Apache-2.0" ]
<vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="20dp" android:height="20dp" android:viewportWidth="20" android:viewportHeight="20" android:tint="?attr/colorControlNormal" android:autoMirrored="true"> <path android:fillColor="@android:color/white" android:pathData="M3,6.25L3,6.25C3,6.66 3.34,7 3.75,7h12.5C16.66,7 17,6.66 17,6.25v0c0,-0.41 -0.34,-0.75 -0.75,-0.75H3.75C3.34,5.5 3,5.84 3,6.25z"/> <path android:fillColor="@android:color/white" android:pathData="M3.75,14.5h7.5c0.41,0 0.75,-0.34 0.75,-0.75v0c0,-0.41 -0.34,-0.75 -0.75,-0.75h-7.5C3.34,13 3,13.34 3,13.75v0C3,14.16 3.34,14.5 3.75,14.5z"/> <path android:fillColor="@android:color/white" android:pathData="M3.75,10.75h12.5c0.41,0 0.75,-0.34 0.75,-0.75v0c0,-0.41 -0.34,-0.75 -0.75,-0.75H3.75C3.34,9.25 3,9.59 3,10v0C3,10.41 3.34,10.75 3.75,10.75z"/> </vector>
XML
3
Imudassir77/material-design-icons
android/editor/notes/materialiconsround/black/res/drawable/round_notes_20.xml
[ "Apache-2.0" ]
#include <console> main() { printf("Hello World!"); }
PAWN
3
pawn-lang/pawn
source/compiler/tests/pcode_test_example.pwn
[ "Zlib" ]
// Inferno's libkern/memset-arm.s // https://bitbucket.org/inferno-os/inferno-os/src/master/libkern/memset-arm.s // // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. // Revisions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com). All rights reserved. // Portions Copyright 2009 The Go Authors. All rights reserved. // // 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. #include "textflag.h" #define TO R8 #define TOE R11 #define N R12 #define TMP R12 /* N and TMP don't overlap */ // See memclrNoHeapPointers Go doc for important implementation constraints. // func memclrNoHeapPointers(ptr unsafe.Pointer, n uintptr) // Also called from assembly in sys_windows_arm.s without g (but using Go stack convention). TEXT runtime·memclrNoHeapPointers(SB),NOSPLIT,$0-8 MOVW ptr+0(FP), TO MOVW n+4(FP), N MOVW $0, R0 ADD N, TO, TOE /* to end pointer */ CMP $4, N /* need at least 4 bytes to copy */ BLT _1tail _4align: /* align on 4 */ AND.S $3, TO, TMP BEQ _4aligned MOVBU.P R0, 1(TO) /* implicit write back */ B _4align _4aligned: SUB $31, TOE, TMP /* do 32-byte chunks if possible */ CMP TMP, TO BHS _4tail MOVW R0, R1 /* replicate */ MOVW R0, R2 MOVW R0, R3 MOVW R0, R4 MOVW R0, R5 MOVW R0, R6 MOVW R0, R7 _f32loop: CMP TMP, TO BHS _4tail MOVM.IA.W [R0-R7], (TO) B _f32loop _4tail: SUB $3, TOE, TMP /* do remaining words if possible */ _4loop: CMP TMP, TO BHS _1tail MOVW.P R0, 4(TO) /* implicit write back */ B _4loop _1tail: CMP TO, TOE BEQ _return MOVBU.P R0, 1(TO) /* implicit write back */ B _1tail _return: RET
GAS
3
SSSDNSY/go
src/runtime/memclr_arm.s
[ "BSD-3-Clause" ]
datatype option a = None | Some of a val none : option int = None val some_1 : option int = Some 1 val f = fn t ::: Type => fn x : option t => case x of None => None | Some x => Some (Some x) val none_again = f none val some_1_again = f some_1 val show = fn t ::: Type => fn x : option t => case x of None => "None" | Some _ => "Some" val page = fn x => <html><body> {cdata (show x)} </body></html> val main : unit -> page = fn () => <html><body> <li><a link={page none_again}>None</a></li> <li><a link={page some_1_again}>Some 1</a></li> </body></html>
UrWeb
5
apple314159/urweb
tests/datatypeP.ur
[ "BSD-3-Clause" ]
\ \ netstat is a nice command, but we can do most of what it does \ directly with iphlpapi.dll. \ { ." netstats.fth Provides some basic netstat-like functionality using the interfaces provided by iphlpapi.dll. Run netstat to see current TCP connections Run routes to view the route table " ETX emit }! loadlib ws2_32.dll value ws2_32 loadlib iphlpapi.dll value iphlpapi \ private \ ------------------------------------------------------------------------ \ Print the routing table \ ------------------------------------------------------------------------ iphlpapi 3 dllfun GetIpForwardTable GetIpForwardTable variable tsize 1024 tsize ! variable table tsize @ allocate table ! : get-table ( -- addr ) table @ tsize 1 GetIpForwardTable if table @ tsize @ realloc table ! tail then table @ ; variable len : @octets 4 bounds do i c@ loop ; : .ip <# @octets 3 0 do #s 46 hold loop #s #> \ get and format octets 18 out# @ - 0 do space loop ; \ pad to 18 chars to be pretty : >dword ( a -- a+4 a ) dup 4 + swap ; : .table ( addr -- ) ." # Destination Netmask Gateway\n" ." - ----------- ------- -------\n" dup 4 + swap d@ 0 do i 2 .r space dup i 56 * + \ find i'th row in table >dword .ip space >dword .ip space >dword drop >dword .ip cr drop loop ; \ ------------------------------------------------------------------------ \ Get network configuration parameters \ ------------------------------------------------------------------------ iphlpapi 2 dllfun GetNetworkParams GetNetworkParams \ space for FIXED_INFO struct create net-params 1024 allot variable param-size 1024 param-size ! : get-net-params net-params param-size GetNetworkParams ; : .params ." Hostname: " net-params .cstring cr ." Domainname: " net-params 132 + .cstring cr ." DNS list: " net-params 280 + .cstring cr ; \ ------------------------------------------------------------------------ \ Get current connection information \ ------------------------------------------------------------------------ iphlpapi 6 dllfun GetExtendedTcpTable GetExtendedTcpTable 2 value AF_INET 1 value TCP_TABLE_BASIC_CONNECTIONS 2 value TCP_TABLE_BASIC_ALL 5 value TCP_TABLE_OWNER_PID_ALL variable tcp-conn-size variable tcp-conn-table \ load tcp connection table : get-tcp-table tcp-conn-table @ tcp-conn-size 0 AF_INET TCP_TABLE_OWNER_PID_ALL 0 GetExtendedTcpTable ; \ run once to get data size, allocate, and then load table : get-tcp-table tcp-conn-table off tcp-conn-size off get-tcp-table tcp-conn-size @ allocate tcp-conn-table ! get-tcp-table ; \ reset the tcp connection state and release memory : free-tcp-table tcp-conn-table @ free tcp-conn-table off tcp-conn-size off ; : type.pad -rot swap over type - spaces ; : hl ." \x1b[1m" ; : .state case 1 of s" CLOSED" 12 type.pad endof 2 of s" LISTEN" 12 type.pad endof 3 of s" SYN_SENT" 12 type.pad endof 4 of s" SYN_RCVD" 12 type.pad endof 5 of +bold s" ESTAB" 12 type.pad endof 6 of s" FIN_WAIT1" 12 type.pad endof 7 of s" FIN_WAIT2" 12 type.pad endof 8 of s" CLOSE_WAIT" 12 type.pad endof 9 of s" CLOSING" 12 type.pad endof 10 of s" LAST_ACK" 12 type.pad endof 11 of s" TIME_WAIT" 12 type.pad endof 12 of s" DELETE_TCB" 12 type.pad endof drop s" UNKNOWN" 12 type.pad endcase ; : net.16 dup c@ 8 << swap 1+ c@ or ; : .tcp-table tcp-conn-table @ ." # State Local IP lport Remote IP rport PID\n" ." - ----- -------- ----- --------- ----- ---\n" dup 4 + swap d@ 0 do -bold i 3 .r space dup i 24 * + \ find i'th row in table >dword d@ .state \ state >dword .ip space \ local ip >dword net.16 8 .r \ lport >dword .ip space \ remote ip >dword net.16 8 .r \ rport >dword d@ dup . \ lovely PID data pid = if ." *" then cr drop loop ; \ determine if a given TCP connection table row is an ESTABLISHED connection : row-estab? ( row -- bool ) d@ 5 = ; \ extract row fields as a list node variable local variable remote : tcp-node ( row -- node ) >dword drop >dword @ >r >dword drop >dword @ r> cons nip ; \ decode the connection data in a list node : tcp-pair ( node -- addr port ) dup 32 >> dup 255 and 8 << swap 8 >> or >r 32 << 32 >> r> ; \ print it prettily : .tcp-pair swap here ! here .ip 8 .r ; \ pretty print a node containing a connection : .tcp-node ( node -- ) dup cdr tcp-pair .tcp-pair car tcp-pair .tcp-pair ; \ get all ESTABLISHED connections in a list variable _list _list off : get-tcp-list ( -- list ) _list off get-tcp-table tcp-conn-table @ dup 4 + swap d@ 0 do \ each row dup row-estab? if dup tcp-node _list @ cons _list ! then \ next row 24 + loop free-tcp-table ; : free-tcp-list ['] uncons _list @ each _list @ free-list ; \ ------------------------------------------------------------------------ \ external interface \ ------------------------------------------------------------------------ \ public{ : netstat get-tcp-table if .err else .pre .tcp-table .post free-tcp-table then ; : netparams get-net-params if .err else .pre .params .post then ; : routes .pre get-table .table .post table @ free ; \ }public
Forth
4
jephthai/EvilVM
samples/netstats.fth
[ "MIT" ]
# Check the basic monitoring and failover capabilities. source "../tests/includes/init-tests.tcl" if {$::simulate_error} { test "This test will fail" { fail "Simulated error" } } # Reboot an instance previously in very short time but do not check if it is loading proc reboot_instance {type id} { set dirname "${type}_${id}" set cfgfile [file join $dirname $type.conf] set port [get_instance_attrib $type $id port] # Execute the instance with its old setup and append the new pid # file for cleanup. set pid [exec_instance $type $dirname $cfgfile] set_instance_attrib $type $id pid $pid lappend ::pids $pid # Check that the instance is running if {[server_is_up 127.0.0.1 $port 100] == 0} { set logfile [file join $dirname log.txt] puts [exec tail $logfile] abort_sentinel_test "Problems starting $type #$id: ping timeout, maybe server start failed, check $logfile" } # Connect with it with a fresh link set link [redis 127.0.0.1 $port 0 $::tls] $link reconnect 1 set_instance_attrib $type $id link $link } test "Master reboot in very short time" { set old_port [RPort $master_id] set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] assert {[lindex $addr 1] == $old_port} R $master_id debug populate 10000 R $master_id bgsave R $master_id config set key-load-delay 1500 R $master_id config set loading-process-events-interval-bytes 1024 R $master_id config rewrite foreach_sentinel_id id { S $id SENTINEL SET mymaster master-reboot-down-after-period 5000 S $id sentinel debug ping-period 500 S $id sentinel debug ask-period 500 } kill_instance redis $master_id reboot_instance redis $master_id foreach_sentinel_id id { wait_for_condition 1000 100 { [lindex [S $id SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] 1] != $old_port } else { fail "At least one Sentinel did not receive failover info" } } set addr [S 0 SENTINEL GET-MASTER-ADDR-BY-NAME mymaster] set master_id [get_instance_id_by_port redis [lindex $addr 1]] # Make sure the instance load all the dataset while 1 { catch {[$link ping]} retval if {[string match {*LOADING*} $retval]} { after 100 continue } else { break } } } test "New master [join $addr {:}] role matches" { assert {[RI $master_id role] eq {master}} } test "All the other slaves now point to the new master" { foreach_redis_id id { if {$id != $master_id && $id != 0} { wait_for_condition 1000 50 { [RI $id master_port] == [lindex $addr 1] } else { fail "Redis ID $id not configured to replicate with new master" } } } } test "The old master eventually gets reconfigured as a slave" { wait_for_condition 1000 50 { [RI 0 master_port] == [lindex $addr 1] } else { fail "Old master not reconfigured as slave of new master" } }
Tcl
5
hpdic/redis
tests/sentinel/tests/12-master-reboot.tcl
[ "BSD-3-Clause" ]
<html> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"> <body> There was nothing special about this site, nothing was left to be seen, not even a kite. </body> </html>
HTML
0
ethcar/lighthouse
lighthouse-cli/test/fixtures/online-only.html
[ "Apache-2.0" ]
#600 embiggening~ 1 0 r 185 -1 A 19 1 R 1206 1 # 1x an iridescent blue iris R 1300 1 # 1x a glowing green seashell R 104 1 # 1x a red bloodstone R 103 1 # 1x a yellow lightning stone S $
Augeas
0
EmpireMUD/EmpireMUD-2.0-Beta
lib/world/aug/6.aug
[ "DOC", "Unlicense" ]
Object.defineProperties(exports, { __esModule: { value: true }, abc: { enumerable: true, value: "abc" }, default: { enumerable: true, value: "default" } });
JavaScript
3
1shenxi/webpack
test/cases/cjs-tree-shaking/namespace/namespace-via-define-properties.js
[ "MIT" ]
# itk.decls -- # # This file contains the declarations for all supported public # functions that are exported by the Itk library via the stubs table. # This file is used to generate the itkDecls.h file. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # RCS: $Id$ library itk interface itk # Declare each of the functions in the public Itk interface. Note that # the an index should never be reused for a different function in order # to preserve backwards compatibility. # # Exported functions: # declare 0 generic { int Itk_Init (Tcl_Interp *interp) } declare 1 generic { int Itk_SafeInit (Tcl_Interp *interp) } # # Functions used internally by this package: # declare 2 generic { int Itk_ConfigBodyCmd (ClientData cdata, Tcl_Interp *interp, \ int objc, Tcl_Obj *CONST objv[]) } declare 3 generic { int Itk_UsualCmd (ClientData cdata, Tcl_Interp *interp, int objc, \ Tcl_Obj *CONST objv[]) } # # Functions for managing options included in class definitions: # declare 4 generic { int Itk_ClassOptionDefineCmd (ClientData cdata, Tcl_Interp *interp, \ int objc, Tcl_Obj *CONST objv[]) } declare 5 generic { int Itk_ClassOptionIllegalCmd (ClientData cdata, Tcl_Interp *interp, \ int objc, Tcl_Obj *CONST objv[]) } declare 6 generic { int Itk_ConfigClassOption (Tcl_Interp *interp, ItclObject *contextObj, \ ClientData cdata, CONST char* newVal) } declare 7 generic { ItkClassOptTable* Itk_CreateClassOptTable( Tcl_Interp *interp, \ ItclClass *cdefn) } declare 8 generic { ItkClassOptTable* Itk_FindClassOptTable (ItclClass *cdefn) } #declare 9 generic { # void Itk_DeleteClassOptTable (Tcl_Interp *interp, ItclClass *cdefn) #} declare 10 generic { int Itk_CreateClassOption (Tcl_Interp *interp, ItclClass *cdefn, \ char *switchName, char *resName, char *resClass, char *defVal, \ char *config, ItkClassOption **optPtr) } declare 11 generic { ItkClassOption* Itk_FindClassOption (ItclClass *cdefn, char *switchName) } declare 12 generic { void Itk_DelClassOption (ItkClassOption *opt) } # # Functions needed for the Archetype base class: # declare 13 generic { int Itk_ArchetypeInit (Tcl_Interp* interp) } # # Functions for maintaining the ordered option list: # declare 14 generic { void Itk_OptListInit (ItkOptList* olist, Tcl_HashTable *options) } declare 15 generic { void Itk_OptListFree (ItkOptList* olist) } declare 16 generic { void Itk_OptListAdd (ItkOptList* olist, Tcl_HashEntry *entry) } declare 17 generic { void Itk_OptListRemove (ItkOptList* olist, Tcl_HashEntry *entry) }
BlitzBasic
4
maths22/brlcad
src/other/incrTcl/itk/generic/itk.decls
[ "BSD-4-Clause", "BSD-3-Clause" ]
BEGIN { printf "[" previous="" } match($0, /@test "(.*)" \{/, arr) { if ( previous != "" ) { printf "%s, ",previous } previous = sprintf("\"%s\"", arr[1]) } END { printf "%s",previous print "]" }
Awk
4
ebaklund/vagrant-libvirt
tests/parse_tests.awk
[ "MIT" ]
// run-pass #![allow(unused_macros)] macro_rules! m { ($e:expr) => { macro_rules! n { () => { $e } } } } fn main() { m!(foo!()); }
Rust
3
Eric-Arellano/rust
src/test/ui/issues/issue-40770.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
#lang scribble/sigplan @preprint @nocopyright @(require "defs.rkt" "bib.rkt") @title{Growing a Proof Assistant} @(authorinfo "William J. Bowman" "wjb@williamjbowman.com" "Northeastern University") @include-abstract{abstract.scrbl} @include-section{intro.scrbl} @include-section{curnel.scrbl} @include-section{cur.scrbl} @include-section{syntax-sugar.scrbl} @include-section{tactics.scrbl} @include-section{olly.scrbl} @include-section{related.scrbl} @(generate-bibliography)
Racket
4
bluephoenix47/cic-redex
cur-paper/main.scrbl
[ "BSD-2-Clause" ]
export const getStaticProps = ({ params }) => { return { props: { random: Math.random(), params: params || null, }, revalidate: 1, } } export const getStaticPaths = () => { return { paths: [], fallback: true, } } export default function Page(props) { return ( <> <p id="page">/[slug]/social/[[...rest]]</p> <p id="props">{JSON.stringify(props)}</p> </> ) }
JavaScript
4
christopherklint97/next.js
test/production/required-server-files/pages/[slug]/social/[[...rest]].js
[ "MIT" ]
#include "caffe2/perfkernels/adagrad.h" #include <cmath> #include "caffe2/perfkernels/common.h" namespace caffe2 { void adagrad_update__base( int N, const float* w, const float* g, const float* h, float* nw, float* nh, float epsilon, float decay, const float lr, const float weight_decay = 0.f) { internal::adagrad_update_base_inlined( N, w, g, h, nw, nh, decay, epsilon, lr, weight_decay); } void adagrad_update_prefetch__base( int N, const float* w, const float* /* w_n */, // prefetch ptr const float* g, const float* h, const float* /* h_n */, // prefetch ptr float* nw, float* /* nw_n */, // prefetch ptr float* nh, float* /* nh_n */, // prefetch ptr float epsilon, float lr, float weight_decay = 0.f) { adagrad_update__base(N, w, g, h, nw, nh, epsilon, 1.0f, lr, weight_decay); } void adagrad_fp16_update_prefetch__base( int N, const at::Half* w, const at::Half* /* w_n */, // prefetch ptr const float* g, const at::Half* h, const at::Half* /* h_n */, // prefetch ptr at::Half* nw, at::Half* /* nw_n */, // prefetch ptr at::Half* nh, at::Half* /* nh_n */, // prefetch ptr float epsilon, float lr, float weight_decay = 0.f) { internal::adagrad_update_base_inlined( N, w, g, h, nw, nh, 1.0f, epsilon, lr, weight_decay); } // version without prefetching decltype(adagrad_update__base) adagrad_update__avx2_fma; void adagrad_update( int N, const float* w, const float* g, const float* h, float* nw, float* nh, float epsilon, float decay, float lr, float weight_decay) { AVX2_FMA_DO( adagrad_update, N, w, g, h, nw, nh, epsilon, decay, lr, weight_decay); BASE_DO(adagrad_update, N, w, g, h, nw, nh, epsilon, decay, lr, weight_decay); } decltype(adagrad_update_prefetch__base) adagrad_update_prefetch__avx2_fma; void adagrad_update_prefetch( int N, const float* w, const float* w_n, // prefetch ptr const float* g, const float* h, const float* h_n, // prefetch ptr float* nw, float* nw_n, // prefetch ptr float* nh, float* nh_n, // prefetch ptr float epsilon, float lr, float weight_decay) { AVX2_FMA_DO( adagrad_update_prefetch, N, w, w_n, g, h, h_n, nw, nw_n, nh, nh_n, epsilon, lr, weight_decay); BASE_DO( adagrad_update_prefetch, N, w, w_n, g, h, h_n, nw, nw_n, nh, nh_n, epsilon, lr, weight_decay); } // Version with prefetching for embeddings and // momentum using fp16 decltype( adagrad_fp16_update_prefetch__base) adagrad_fp16_update_prefetch__avx2_fma; void adagrad_fp16_update_prefetch( int N, const at::Half* w, const at::Half* w_n, // prefetch ptr const float* g, const at::Half* h, const at::Half* h_n, // prefetch ptr at::Half* nw, at::Half* nw_n, // prefetch ptr at::Half* nh, at::Half* nh_n, // prefetch ptr float epsilon, float lr, float weight_decay) { AVX2_FMA_DO( adagrad_fp16_update_prefetch, N, w, w_n, g, h, h_n, nw, nw_n, nh, nh_n, epsilon, lr, weight_decay); BASE_DO( adagrad_fp16_update_prefetch, N, w, w_n, g, h, h_n, nw, nw_n, nh, nh_n, epsilon, lr, weight_decay); } } // namespace caffe2
C++
3
Hacky-DH/pytorch
caffe2/perfkernels/adagrad.cc
[ "Intel" ]
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or 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 "tensorflow/core/framework/node_def_builder.h" #include "tensorflow/core/framework/shape_inference_testutil.h" #include "tensorflow/core/kernels/ops_testutil.h" #include "tensorflow/core/kernels/ops_util.h" namespace { using ::tensorflow::DT_INT32; using ::tensorflow::DT_STRING; using ::tensorflow::int32; using ::tensorflow::NodeDefBuilder; using ::tensorflow::OpsTestBase; using ::tensorflow::Tensor; using ::tensorflow::TensorShape; class SequenceStringProjectionOpV2Test : public OpsTestBase { protected: bool FeatureMatches(const Tensor& output, int i1, int j1, int i2, int j2) { bool all_matches = true; auto output_tensor = output.tensor<float, 3>(); for (int k = 0; k < output.dim_size(2); ++k) { all_matches &= (output_tensor(i1, j1, k) == output_tensor(i2, j2, k)); } return all_matches; } bool FeatureIsZero(const Tensor& output, int i, int j) { auto output_tensor = output.tensor<float, 3>(); bool all_zeros = true; for (int k = 0; k < output.dim_size(2); ++k) { all_zeros &= (output_tensor(i, j, k) == 0.0f); } return all_zeros; } }; TEST_F(SequenceStringProjectionOpV2Test, TestOutput) { TF_ASSERT_OK(NodeDefBuilder("test_op", "SequenceStringProjectionV2") .Input({"input", 1, DT_STRING}) .Input({"sequence_length", 1, DT_INT32}) .Attr("vocabulary", "abcdefghijklmnopqrstuvwxyz") .Attr("feature_size", 16) .Finalize(node_def())); TF_ASSERT_OK(InitOp()); AddInputFromArray<::tensorflow::tstring>( TensorShape({2, 8, 1}), {"hello", "world", "147", "dog", "xyz", "abc", "efg", "hij", "quick", "hel1lo", "123", "jumped", "over", "the", "lazy", "dog"}); AddInputFromArray<int32>(TensorShape({3, 1}), {9, 0, 9}); EXPECT_EQ(RunOpKernel().error_message(), "`input` must be a matrix, got shape: [2,8,1]"); auto old = *mutable_input(0).tensor; *mutable_input(0).tensor = Tensor(DT_STRING, TensorShape({2, 8})); (*mutable_input(0).tensor).flat<::tensorflow::tstring>() = old.flat<::tensorflow::tstring>(); EXPECT_EQ(RunOpKernel().error_message(), "`sequence_length` must be a vector, got shape: [3,1]"); *mutable_input(1).tensor = Tensor(DT_INT32, TensorShape({3})); EXPECT_EQ(RunOpKernel().error_message(), "`sequence_length` should have batch size number of elements, got " "size 3, batch size is 2"); *mutable_input(1).tensor = Tensor(DT_INT32, TensorShape({2})); (*mutable_input(1).tensor).flat<int32>()(0) = 9; (*mutable_input(1).tensor).flat<int32>()(1) = -1; EXPECT_EQ( RunOpKernel().error_message(), "`sequence_length` should have values less than or equal to max_seq_len"); (*mutable_input(1).tensor).flat<int32>()(0) = 4; EXPECT_EQ(RunOpKernel().error_message(), "`sequence_length` should have values greater than or equal to 0"); (*mutable_input(1).tensor).flat<int32>()(1) = 8; TF_EXPECT_OK(RunOpKernel()); const Tensor& output = *GetOutput(0); // First checks dimensions. ASSERT_EQ(output.dims(), 3); EXPECT_EQ(output.dim_size(0), 2); // Batch size EXPECT_EQ(output.dim_size(1), 8); // Max sequence length EXPECT_EQ(output.dim_size(2), 16); // Feature size EXPECT_FALSE(FeatureMatches(output, 0, 0, 1, 0)); // hello != quick. EXPECT_FALSE(FeatureMatches(output, 0, 1, 1, 1)); // world != hello. EXPECT_TRUE(FeatureMatches(output, 0, 0, 1, 1)); // hello == hel1lo. EXPECT_TRUE(FeatureMatches(output, 0, 2, 1, 2)); // 147 == 123 (oov values). EXPECT_TRUE(FeatureMatches(output, 0, 3, 1, 7)); // dog == dog. // Check zero padding for first sentence. for (int i = 4; i < 8; ++i) { EXPECT_TRUE(FeatureIsZero(output, 0, i)); } } TEST_F(SequenceStringProjectionOpV2Test, TestOutputBoS) { TF_ASSERT_OK(NodeDefBuilder("test_op", "SequenceStringProjectionV2") .Input({"input", 1, DT_STRING}) .Input({"sequence_length", 1, DT_INT32}) .Attr("add_bos_tag", true) .Attr("vocabulary", "abcdefghijklmnopqrstuvwxyz") .Attr("feature_size", 16) .Finalize(node_def())); TF_ASSERT_OK(InitOp()); AddInputFromArray<::tensorflow::tstring>( TensorShape({2, 8}), {"hello", "world", "147", "dog", "", "", "", "", "quick", "hel1lo", "123", "jumped", "over", "the", "lazy", "dog"}); AddInputFromArray<int32>(TensorShape({2}), {4, 8}); TF_ASSERT_OK(RunOpKernel()); const Tensor& output = *GetOutput(0); // First checks dimensions. ASSERT_EQ(output.dims(), 3); EXPECT_EQ(output.dim_size(0), 2); // Batch size EXPECT_EQ(output.dim_size(1), 9); // Max sequence length EXPECT_EQ(output.dim_size(2), 16); // Feature size EXPECT_TRUE(FeatureMatches(output, 0, 0, 1, 0)); // <bos> == <bos>. EXPECT_FALSE(FeatureMatches(output, 0, 1, 1, 1)); // hello != quick. EXPECT_FALSE(FeatureMatches(output, 0, 2, 1, 2)); // world != hello. EXPECT_TRUE(FeatureMatches(output, 0, 1, 1, 2)); // hello == hel1lo. EXPECT_TRUE(FeatureMatches(output, 0, 3, 1, 3)); // 147 == 123 (oov values). EXPECT_TRUE(FeatureMatches(output, 0, 4, 1, 8)); // dog == dog. // Check zero padding for first sentence. for (int i = 5; i < 9; ++i) { EXPECT_TRUE(FeatureIsZero(output, 0, i)); } } TEST_F(SequenceStringProjectionOpV2Test, TestOutputEoS) { TF_ASSERT_OK(NodeDefBuilder("test_op", "SequenceStringProjectionV2") .Input({"input", 1, DT_STRING}) .Input({"sequence_length", 1, DT_INT32}) .Attr("add_eos_tag", true) .Attr("vocabulary", "abcdefghijklmnopqrstuvwxyz") .Attr("feature_size", 16) .Finalize(node_def())); TF_ASSERT_OK(InitOp()); AddInputFromArray<::tensorflow::tstring>( TensorShape({2, 8}), {"hello", "world", "147", "dog", "", "", "", "", "quick", "hel1lo", "123", "jumped", "over", "the", "lazy", "dog"}); AddInputFromArray<int32>(TensorShape({2}), {4, 8}); TF_ASSERT_OK(RunOpKernel()); const Tensor& output = *GetOutput(0); // First checks dimensions. ASSERT_EQ(output.dims(), 3); EXPECT_EQ(output.dim_size(0), 2); // Batch size EXPECT_EQ(output.dim_size(1), 9); // Max sequence length EXPECT_EQ(output.dim_size(2), 16); // Feature size EXPECT_FALSE(FeatureMatches(output, 0, 0, 1, 0)); // hello != quick. EXPECT_FALSE(FeatureMatches(output, 0, 1, 1, 1)); // world != hello. EXPECT_TRUE(FeatureMatches(output, 0, 0, 1, 1)); // hello == hel1lo. EXPECT_TRUE(FeatureMatches(output, 0, 2, 1, 2)); // 147 == 123 (oov values). EXPECT_TRUE(FeatureMatches(output, 0, 3, 1, 7)); // dog == dog. EXPECT_TRUE(FeatureMatches(output, 0, 4, 1, 8)); // <bos> == <bos>. // Check zero padding for first sentence. for (int i = 5; i < 9; ++i) { EXPECT_TRUE(FeatureIsZero(output, 0, i)); } } TEST_F(SequenceStringProjectionOpV2Test, TestOutputBoSEoS) { TF_ASSERT_OK(NodeDefBuilder("test_op", "SequenceStringProjectionV2") .Input({"input", 1, DT_STRING}) .Input({"sequence_length", 1, DT_INT32}) .Attr("add_bos_tag", true) .Attr("add_eos_tag", true) .Attr("vocabulary", "abcdefghijklmnopqrstuvwxyz.") .Attr("feature_size", 16) .Finalize(node_def())); TF_ASSERT_OK(InitOp()); AddInputFromArray<::tensorflow::tstring>( TensorShape({2, 8}), {"hello", "world", "147", "dog", "...", "..", "", "", "quick", "hel1lo", "123", "jumped", "over", "the", "lazy", "dog"}); AddInputFromArray<int32>(TensorShape({2}), {6, 8}); TF_ASSERT_OK(RunOpKernel()); const Tensor& output = *GetOutput(0); // First checks dimensions. ASSERT_EQ(output.dims(), 3); EXPECT_EQ(output.dim_size(0), 2); // Batch size EXPECT_EQ(output.dim_size(1), 10); // Max sequence length EXPECT_EQ(output.dim_size(2), 16); // Feature size EXPECT_TRUE(FeatureMatches(output, 0, 0, 1, 0)); // <bos> == <bos>. EXPECT_FALSE(FeatureMatches(output, 0, 1, 1, 1)); // hello != quick. EXPECT_FALSE(FeatureMatches(output, 0, 2, 1, 2)); // world != hello. EXPECT_TRUE(FeatureMatches(output, 0, 1, 1, 2)); // hello == hel1lo. EXPECT_TRUE(FeatureMatches(output, 0, 3, 1, 3)); // 147 == 123 (oov values). EXPECT_TRUE(FeatureMatches(output, 0, 4, 1, 8)); // dog == dog. EXPECT_TRUE(FeatureMatches(output, 0, 7, 1, 9)); // <eos> == <eos>. // Check for default normalize_repetition=false EXPECT_FALSE(FeatureMatches(output, 0, 4, 0, 5)); // ... != .. // Check zero padding for first sentence. for (int i = 8; i < 10; ++i) { EXPECT_TRUE(FeatureIsZero(output, 0, i)); } } TEST_F(SequenceStringProjectionOpV2Test, TestOutputNormalize) { TF_ASSERT_OK(NodeDefBuilder("test_op", "SequenceStringProjectionV2") .Input({"input", 1, DT_STRING}) .Input({"sequence_length", 1, DT_INT32}) .Attr("normalize_repetition", true) .Attr("vocabulary", "abcdefghijklmnopqrstuvwxyz.") .Attr("feature_size", 16) .Finalize(node_def())); TF_ASSERT_OK(InitOp()); AddInputFromArray<::tensorflow::tstring>( TensorShape({2, 8}), {"hello", "world", "..", "....", "", "", "", "", "quick", "hel1lo", "123", "jumped", "over", "...", ".....", "dog"}); AddInputFromArray<int32>(TensorShape({2}), {4, 8}); TF_ASSERT_OK(RunOpKernel()); const Tensor& output = *GetOutput(0); // First checks dimensions. ASSERT_EQ(output.dims(), 3); EXPECT_EQ(output.dim_size(0), 2); // Batch size EXPECT_EQ(output.dim_size(1), 8); // Max sequence length EXPECT_EQ(output.dim_size(2), 16); // Feature size EXPECT_TRUE(FeatureMatches(output, 0, 2, 0, 3)); // .. == .... EXPECT_TRUE(FeatureMatches(output, 1, 5, 1, 6)); // ... == .. EXPECT_TRUE(FeatureMatches(output, 0, 3, 1, 6)); // .... == ... // Check zero padding for first sentence. for (int i = 4; i < 8; ++i) { EXPECT_TRUE(FeatureIsZero(output, 0, i)); } } } // namespace int main(int argc, char** argv) { // On Linux, add: absl::SetFlag(&FLAGS_logtostderr, true); ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }
C++
4
akshit-protonn/models
research/seq_flow_lite/tf_ops/sequence_string_projection_op_v2_test.cc
[ "Apache-2.0" ]
package jadx.api.plugins.input.insns; public enum InsnIndexType { NONE, TYPE_REF, STRING_REF, FIELD_REF, METHOD_REF, CALL_SITE }
Java
4
Dev-kishan1999/jadx
jadx-plugins/jadx-plugins-api/src/main/java/jadx/api/plugins/input/insns/InsnIndexType.java
[ "Apache-2.0" ]
i e9
Clean
0
bo3b/iZ3D
TestsPack/DX10ShaderAnalyzingTest/Shaders/shader17_0x4E32E4A5.dcl
[ "MIT" ]
# Pong Game in Codeskulptor import random import simplegui WIDTH = 600 HEIGHT = 400 BALL_RADIUS = 20 PAD_WIDTH = 8 PAD_HEIGHT = 80 HALF_PAD_WIDTH = PAD_WIDTH / 2 HALF_PAD_HEIGHT = PAD_HEIGHT / 2 LEFT = False RIGHT = True score1 = 0 score2 = 0 paddle1_pos = 0 paddle2_pos = 0 paddle1_vel = 0 paddle2_vel = 0 def spawn_ball(direction): global ball_pos, ball_vel # these are vectors stored as lists ball_pos = [WIDTH / 2, HEIGHT / 2] if direction == RIGHT: ball_vel = [random.randrange(120, 240) / 60, random.randrange(60, 180) / 60] elif direction == LEFT: ball_vel = [-random.randrange(120, 240) / 60, random.randrange(60, 180) / 60] def reset(): global ball_pos, score1, score2 ball_pos = [WIDTH / 2, HEIGHT / 2] score1 = 0 score2 = 0 def new_game(): global paddle1_pos, paddle2_pos, paddle1_vel, paddle2_vel global score1, score2 reset() spawn_ball(RIGHT) def draw(canvas): global paddle1_pos, paddle2_pos, ball_pos, ball_vel, paddle1_vel, paddle2_vel, BALL_RADIUS global score1, score2 canvas.draw_line([WIDTH / 2, 0], [WIDTH / 2, HEIGHT], 1, "White") canvas.draw_line([PAD_WIDTH, 0], [PAD_WIDTH, HEIGHT], 1, "White") canvas.draw_line([WIDTH - PAD_WIDTH, 0], [WIDTH - PAD_WIDTH, HEIGHT], 1, "White") ball_pos[0] += ball_vel[0] ball_pos[1] += ball_vel[1] if ball_pos[0] <= BALL_RADIUS + PAD_WIDTH or ball_pos[0] >= WIDTH - BALL_RADIUS - PAD_WIDTH: ball_vel[0] = -ball_vel[0] elif ball_pos[1] <= BALL_RADIUS + PAD_WIDTH or ball_pos[1] >= HEIGHT - BALL_RADIUS - PAD_WIDTH: ball_vel[1] = -ball_vel[1] canvas.draw_circle(ball_pos, BALL_RADIUS, 1, "White", "White") paddle1_pos += paddle1_vel paddle2_pos += paddle2_vel if paddle1_pos <= -HEIGHT / 2 + PAD_HEIGHT / 2: paddle1_pos = -HEIGHT / 2 + PAD_HEIGHT / 2 elif paddle1_pos >= HEIGHT / 2 - PAD_HEIGHT / 2: paddle1_pos = HEIGHT / 2 - PAD_HEIGHT / 2 if paddle2_pos <= -HEIGHT / 2 + PAD_HEIGHT / 2: paddle2_pos = -HEIGHT / 2 + PAD_HEIGHT / 2 elif paddle2_pos >= HEIGHT / 2 - PAD_HEIGHT / 2: paddle2_pos = HEIGHT / 2 - PAD_HEIGHT / 2 canvas.draw_line([PAD_WIDTH / 2, paddle1_pos + HEIGHT / 2 - PAD_HEIGHT / 2], [PAD_WIDTH / 2, paddle1_pos + PAD_HEIGHT / 2 + HEIGHT / 2], 10, "White") canvas.draw_line([WIDTH - PAD_WIDTH / 2, paddle2_pos + HEIGHT / 2 - PAD_HEIGHT / 2], [WIDTH - PAD_WIDTH / 2, PAD_HEIGHT / 2 + paddle2_pos + HEIGHT / 2], 10, "White") if (ball_pos[1] <= (paddle1_pos + HEIGHT / 2 - PAD_HEIGHT / 2) or ball_pos[1] >= ( paddle1_pos + PAD_HEIGHT / 2 + HEIGHT / 2)) and ball_pos[0] == (PAD_WIDTH + BALL_RADIUS): score2 += 1 else: pass if (ball_pos[1] <= (paddle2_pos + HEIGHT / 2 - PAD_HEIGHT / 2) or ball_pos[1] >= ( paddle2_pos + PAD_HEIGHT / 2 + HEIGHT / 2)) and ball_pos[0] == (WIDTH - PAD_WIDTH - BALL_RADIUS): score1 += 1 else: pass canvas.draw_text(str(score1), (250, 30), 40, "White") canvas.draw_text(str(score2), (330, 30), 40, "White") def keydown(key): global paddle1_vel, paddle2_vel if key == simplegui.KEY_MAP["down"]: paddle1_vel = 2 elif key == simplegui.KEY_MAP["up"]: paddle1_vel = -2 if key == simplegui.KEY_MAP["w"]: paddle2_vel = -2 elif key == simplegui.KEY_MAP["s"]: paddle2_vel = 2 def keyup(key): global paddle1_vel, paddle2_vel if key == simplegui.KEY_MAP["down"] or key == simplegui.KEY_MAP["up"]: paddle1_vel = 0 if key == simplegui.KEY_MAP["w"] or key == simplegui.KEY_MAP["s"]: paddle2_vel = 0 frame = simplegui.create_frame("Pong", WIDTH, HEIGHT) frame.set_draw_handler(draw) frame.set_keydown_handler(keydown) frame.set_keyup_handler(keyup) frame.add_button("Restart", reset) new_game() print() frame.start()
Python
4
nicetone/Python
PONG_GAME.py
[ "MIT" ]
// run-rustfix #![warn(clippy::imprecise_flops)] fn main() { let x = 3f32; let y = 4f32; let _ = (x * x + y * y).sqrt(); let _ = ((x + 1f32) * (x + 1f32) + y * y).sqrt(); let _ = (x.powi(2) + y.powi(2)).sqrt(); // Cases where the lint shouldn't be applied // TODO: linting this adds some complexity, but could be done let _ = x.mul_add(x, y * y).sqrt(); let _ = (x * 4f32 + y * y).sqrt(); }
Rust
4
Eric-Arellano/rust
src/tools/clippy/tests/ui/floating_point_hypot.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
-module(petstore_tag). -include("petstore.hrl"). -export([petstore_tag/0]). -export([petstore_tag/1]). -export_type([petstore_tag/0]). -type petstore_tag() :: [ {'id', integer() } | {'name', binary() } ]. petstore_tag() -> petstore_tag([]). petstore_tag(Fields) -> Default = [ {'id', integer() } , {'name', binary() } ], lists:ukeymerge(1, lists:sort(Fields), lists:sort(Default)).
Erlang
4
MalcolmScoffable/openapi-generator
samples/client/petstore/erlang-proper/src/model/petstore_tag.erl
[ "Apache-2.0" ]
#include "config.hats" #include "{$TOP}/avr_prelude/kernel_staload.hats" staload "{$TOP}/SATS/arduino.sats" staload UN = "prelude/SATS/unsafe.sats" #define LED 9 #define BLINK_DELAY_MS 10.0 implement main () = { fun loop_fadein {n:nat | n <= 255} .<255 - n>. (i: int n): void = { val () = analogWrite (LED, i) val () = delay_ms (BLINK_DELAY_MS) val () = if i < 255 then loop_fadein (i + 1) } fun loop_fadeout {n:nat | n <= 255} .<n>. (i: int n): void = { val () = analogWrite (LED, i) val () = delay_ms (BLINK_DELAY_MS) val () = if i > 0 then loop_fadeout (i - 1) } fun forever () = { val () = loop_fadein 0 val () = loop_fadeout 255 val () = forever () } val () = pinMode (LED, OUTPUT) val () = forever () }
ATS
4
Proclivis/arduino-ats
demo/04_pwm/DATS/main.dats
[ "MIT" ]