text stringlengths 9 39.2M | dir stringlengths 26 295 | lang stringclasses 185
values | created_date timestamp[us] | updated_date timestamp[us] | repo_name stringlengths 1 97 | repo_full_name stringlengths 7 106 | star int64 1k 183k | len_tokens int64 1 13.8M |
|---|---|---|---|---|---|---|---|---|
```xml
import { IContext } from '../../../connectionResolver';
import { sendCoreMessage, sendProductsMessage } from '../../../messageBroker';
import { ITimeProportion } from '../../../models/definitions/timeProportions';
export default {
async __resolveReference({ _id }, { models }: IContext) {
return models.TimeProportions.findOne({ _id });
},
async branch(timeProp: ITimeProportion, _, { subdomain }: IContext) {
if (!timeProp.branchId) {
return;
}
return await sendCoreMessage({
subdomain,
action: 'branches.findOne',
data: { _id: timeProp.branchId },
isRPC: true
});
},
async department(timeProp: ITimeProportion, _, { subdomain }: IContext) {
if (!timeProp.departmentId) {
return;
}
return await sendCoreMessage({
subdomain,
action: 'departments.findOne',
data: { _id: timeProp.departmentId },
isRPC: true
});
},
async productCategory(timeProp: ITimeProportion, _, { subdomain }: IContext) {
if (!timeProp.productCategoryId) {
return;
}
return await sendProductsMessage({
subdomain,
action: 'categories.findOne',
data: { _id: timeProp.productCategoryId },
isRPC: true
});
}
};
``` | /content/code_sandbox/packages/plugin-salesplans-api/src/graphql/resolvers/customResolvers/timeProportion.ts | xml | 2016-11-11T06:54:50 | 2024-08-16T10:26:06 | erxes | erxes/erxes | 3,479 | 300 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="path_to_url" xmlns:flowable="path_to_url" xmlns:xsi="path_to_url"
xsi:schemaLocation="path_to_url BPMN20.xsd" typeLanguage="path_to_url" targetNamespace="path_to_url">
<process id="process-usertask-01" flowable:isEagerExecutionFetching="true">
<startEvent id="theStart" />
<sequenceFlow id="flow1" sourceRef="theStart" targetRef="theTask" />
<userTask id="theTask" />
<sequenceFlow id="flow2" sourceRef="theTask" targetRef="theEnd" />
<endEvent id="theEnd" />
</process>
</definitions>
``` | /content/code_sandbox/modules/flowable-engine/src/test/resources/org/flowable/engine/test/cfg/executioncount/process-usertask-01.bpmn20.xml | xml | 2016-10-13T07:21:43 | 2024-08-16T15:23:14 | flowable-engine | flowable/flowable-engine | 7,715 | 173 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict>
<key>AvailableLibraries</key>
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>libavutil.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>libavutil.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
</dict>
</array>
<key>CFBundlePackageType</key>
<string>XFWK</string>
<key>XCFrameworkFormatVersion</key>
<string>1.0</string>
</dict>
</plist>
``` | /content/code_sandbox/osu.Framework.iOS/runtimes/ios/native/libavutil.xcframework/Info.plist | xml | 2016-08-26T03:45:35 | 2024-08-16T05:03:32 | osu-framework | ppy/osu-framework | 1,618 | 347 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="path_to_url" >
<item>
<shape android:shape="oval" android:useLevel="false">
<solid android:color="@color/scroll_handle"/>
</shape>
</item>
<item
android:drawable="@drawable/ic_scroll_white"
android:bottom="10dp"
android:left="10dp"
android:right="10dp"
android:top="10dp"/>
</layer-list>
``` | /content/code_sandbox/app/src/main/res/drawable/fastscroll_pdf_viewer.xml | xml | 2016-05-04T11:46:20 | 2024-08-15T16:29:10 | android | meganz/android | 1,537 | 115 |
```xml
import React from 'react';
import { Button, Center, PresenceTransition } from 'native-base';
export const Example = () => {
const [isOpen, setIsOpen] = React.useState(false);
return (
<Center>
<Button onPress={() => setIsOpen(!isOpen)}>
{isOpen ? 'Hide' : 'Show'}
</Button>
<PresenceTransition
visible={isOpen}
initial={{ opacity: 0 }}
animate={{ opacity: 1, transition: { duration: 250 } }}
>
<Center
mt="7"
bg="teal.500"
rounded="md"
w="200"
h="100"
_text={{ color: 'white' }}
>
Fade
</Center>
</PresenceTransition>
</Center>
);
};
``` | /content/code_sandbox/example/storybook/stories/components/composites/Transitions/Fade.tsx | xml | 2016-04-15T11:37:23 | 2024-08-14T16:16:44 | NativeBase | GeekyAnts/NativeBase | 20,132 | 174 |
```xml
/*
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
import dmeanstdev = require( './index' );
// TESTS //
// The function returns a Float64Array...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev( x.length, 1, x, 1, out, 1 ); // $ExpectType Float64Array
}
// The compiler throws an error if the function is provided a first argument which is not a number...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev( '10', 1, x, 1, out, 1 ); // $ExpectError
dmeanstdev( true, 1, x, 1, out, 1 ); // $ExpectError
dmeanstdev( false, 1, x, 1, out, 1 ); // $ExpectError
dmeanstdev( null, 1, x, 1, out, 1 ); // $ExpectError
dmeanstdev( undefined, 1, x, 1, out, 1 ); // $ExpectError
dmeanstdev( [], 1, x, 1, out, 1 ); // $ExpectError
dmeanstdev( {}, 1, x, 1, out, 1 ); // $ExpectError
dmeanstdev( ( x: number ): number => x, 1, x, 1, out, 1 ); // $ExpectError
}
// The compiler throws an error if the function is provided a second argument which is not a number...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev( x.length, '10', x, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, true, x, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, false, x, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, null, x, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, undefined, x, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, [], x, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, {}, x, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, ( x: number ): number => x, x, 1, out, 1 ); // $ExpectError
}
// The compiler throws an error if the function is provided a third argument which is not a Float64Array...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev( x.length, 1, 10, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, '10', 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, true, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, false, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, null, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, undefined, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, [ '1' ], 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, {}, 1, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, ( x: number ): number => x, 1, out, 1 ); // $ExpectError
}
// The compiler throws an error if the function is provided a fourth argument which is not a number...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev( x.length, 1, x, '10', out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, true, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, false, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, null, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, undefined, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, [], out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, {}, out, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, ( x: number ): number => x, out, 1 ); // $ExpectError
}
// The compiler throws an error if the function is provided a fifth argument which is not a Float64Array...
{
const x = new Float64Array( 10 );
dmeanstdev( x.length, 1, x, 1, 10, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, '10', 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, true, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, false, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, null, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, undefined, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, [ '1' ], 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, {}, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, ( x: number ): number => x, 1 ); // $ExpectError
}
// The compiler throws an error if the function is provided a sixth argument which is not a number...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev( x.length, 1, x, 1, out, '10' ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, out, true ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, out, false ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, out, null ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, out, undefined ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, out, [] ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, out, {} ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, out, ( x: number ): number => x ); // $ExpectError
}
// The compiler throws an error if the function is provided an unsupported number of arguments...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev(); // $ExpectError
dmeanstdev( x.length ); // $ExpectError
dmeanstdev( x.length, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x ); // $ExpectError
dmeanstdev( x.length, 1, x, 1 ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, out ); // $ExpectError
dmeanstdev( x.length, 1, x, 1, out, 1, 10 ); // $ExpectError
}
// Attached to main export is an `ndarray` method which returns a Float64Array...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1, 0 ); // $ExpectType Float64Array
}
// The compiler throws an error if the `ndarray` method is provided a first argument which is not a number...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev.ndarray( '10', 1, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( true, 1, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( false, 1, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( null, 1, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( undefined, 1, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( [], 1, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( {}, 1, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( ( x: number ): number => x, 1, x, 1, 0, out, 1, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided a second argument which is not a number...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev.ndarray( x.length, '10', x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, true, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, false, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, null, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, undefined, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, [], x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, {}, x, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, ( x: number ): number => x, x, 1, 0, out, 1, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided a third argument which is not a Float64Array...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev.ndarray( x.length, 1, 10, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, '10', 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, true, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, false, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, null, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, undefined, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, [ '1' ], 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, {}, 1, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, ( x: number ): number => x, 1, 0, out, 1, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided a fourth argument which is not a number...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev.ndarray( x.length, 1, x, '10', 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, true, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, false, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, null, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, undefined, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, [], 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, {}, 0, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, ( x: number ): number => x, 0, out, 1, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided a fifth argument which is not a number...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev.ndarray( x.length, 1, x, 1, '10', out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, true, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, false, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, null, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, undefined, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, [], out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, {}, out, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, ( x: number ): number => x, out, 1, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided a sixth argument which is not a Float64Array...
{
const x = new Float64Array( 10 );
dmeanstdev.ndarray( x.length, 1, x, 1, 0, 10, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, '10', 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, true, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, false, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, null, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, undefined, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, [ '1' ], 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, {}, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, ( x: number ): number => x, 1, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided a seventh argument which is not a number...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, '10', 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, true, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, false, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, null, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, undefined, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, [], 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, {}, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, ( x: number ): number => x, 0 ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided an eighth argument which is not a number...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1, '10' ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1, true ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1, false ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1, null ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1, undefined ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1, [] ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1, {} ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1, ( x: number ): number => x ); // $ExpectError
}
// The compiler throws an error if the `ndarray` method is provided an unsupported number of arguments...
{
const x = new Float64Array( 10 );
const out = new Float64Array( 2 );
dmeanstdev.ndarray(); // $ExpectError
dmeanstdev.ndarray( x.length ); // $ExpectError
dmeanstdev.ndarray( x.length, 1 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1 ); // $ExpectError
dmeanstdev.ndarray( x.length, 1, x, 1, 0, out, 1, 0, 10 ); // $ExpectError
}
``` | /content/code_sandbox/lib/node_modules/@stdlib/stats/base/dmeanstdev/docs/types/test.ts | xml | 2016-03-24T04:19:52 | 2024-08-16T09:03:19 | stdlib | stdlib-js/stdlib | 4,266 | 4,766 |
```xml
import * as dotenv from 'dotenv';
import redis from './redis';
dotenv.config();
const { NODE_ENV, LOAD_BALANCER_ADDRESS, ENABLED_SERVICES_JSON, MONGO_URL } =
process.env;
const isDev = NODE_ENV === 'development';
if (!ENABLED_SERVICES_JSON) {
throw new Error(
'ENABLED_SERVICES_JSON environment variable is not configured.',
);
}
const enabledServices = JSON.parse(ENABLED_SERVICES_JSON) || [];
if (!Array.isArray(enabledServices)) {
throw new Error(
"ENABLED_SERVICES_JSON environment variable's value must be JSON array",
);
}
enabledServices.push('core');
const keyForConfig = (name) => `service:config:${name}`;
export const getServices = async (): Promise<string[]> => {
return enabledServices;
};
type ServiceInfo = { address: string; config: any };
const serviceInfoCache: { [name in string]: Readonly<ServiceInfo> } = {};
export const getService = async (
name: string,
): Promise<Readonly<ServiceInfo>> => {
if (serviceInfoCache[name]) {
return serviceInfoCache[name];
}
const result: ServiceInfo = {
address: (await redis.get(`service:${name}`)) || '',
config: { meta: {} },
};
const configJson = await redis.get(keyForConfig(name));
result.config = JSON.parse(configJson || '{}');
Object.freeze(result);
serviceInfoCache[name] = result;
return result;
};
export const join = async ({
name,
port,
hasSubscriptions = false,
importExportTypes,
meta,
}: {
name: string;
port: string;
hasSubscriptions?: boolean;
importExportTypes?: any;
meta?: any;
}) => {
await redis.set(
keyForConfig(name),
JSON.stringify({
dbConnectionString: MONGO_URL,
hasSubscriptions,
importExportTypes,
meta,
}),
);
const address =
LOAD_BALANCER_ADDRESS ||
`path_to_url{isDev ? 'localhost' : `plugin-${name}-api`}:${port}`;
await redis.set(`service:${name}`, address);
console.log(`$service:${name} joined with ${address}`);
};
export const leave = async (name, _port) => {
console.log(`$service:${name} left`);
};
export const isEnabled = (name) => {
if (name === 'core') return true;
return enabledServices.includes(name);
};
const pluginAddressCache = {};
export const getPluginAddress = async (name) => {
if (!pluginAddressCache[name]) {
pluginAddressCache[name] = await redis.get(`service:${name}`);
}
return pluginAddressCache[name];
};
export const getEnabledServices = async () => {
return enabledServices;
};
``` | /content/code_sandbox/packages/api-utils/src/serviceDiscovery.ts | xml | 2016-11-11T06:54:50 | 2024-08-16T10:26:06 | erxes | erxes/erxes | 3,479 | 599 |
```xml
<resources>
<string name="app_name">UsingFontAwesomeLib</string>
<string name="action_settings">Settings</string>
</resources>
``` | /content/code_sandbox/UsingFontAwesomeLib/app/src/main/res/values/strings.xml | xml | 2016-02-25T11:06:48 | 2024-08-07T21:41:59 | android-examples | nisrulz/android-examples | 1,747 | 33 |
```xml
/**
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import {RateLimiter} from '../RateLimiter';
import {nextTick} from '../testUtils';
import {defer} from '../utils';
describe('RateLimiter', () => {
it('immediately invokes if less than max simultaneous requests are running', () => {
const d1 = defer();
const d2 = defer();
const d3 = defer();
const rateLimiter = new RateLimiter(3);
let ran1 = false;
let ran2 = false;
let ran3 = false;
rateLimiter.enqueueRun(async () => {
ran1 = true;
await d1.promise;
});
rateLimiter.enqueueRun(async () => {
ran2 = true;
await d2.promise;
});
rateLimiter.enqueueRun(async () => {
ran3 = true;
await d3.promise;
});
expect(ran1).toBe(true);
expect(ran2).toBe(true);
expect(ran3).toBe(true);
});
it('queues requests over max simultaneous until a previous task finishes', async () => {
const d1 = defer();
const d2 = defer();
const rateLimiter = new RateLimiter(2);
rateLimiter.enqueueRun(() => d1.promise);
rateLimiter.enqueueRun(() => d2.promise);
let hasId3Resolved = false;
rateLimiter
.enqueueRun(() => Promise.resolve())
.then(() => {
hasId3Resolved = true;
});
expect(hasId3Resolved).toBe(false);
d2.resolve(undefined);
await nextTick();
expect(hasId3Resolved).toBe(true);
});
it('can be used as a lock with concurrency limit 1', async () => {
const d1 = defer();
const d2 = defer();
const d3 = defer();
const rateLimiter = new RateLimiter(1);
let ran1 = false;
let ran2 = false;
let ran3 = false;
rateLimiter.enqueueRun(async () => {
await d1.promise;
ran1 = true;
});
rateLimiter.enqueueRun(async () => {
await d2.promise;
ran2 = true;
});
rateLimiter.enqueueRun(async () => {
await d3.promise;
ran3 = true;
});
expect(ran1).toBe(false);
expect(ran2).toBe(false);
expect(ran3).toBe(false);
d1.resolve(undefined);
await nextTick();
expect(ran1).toBe(true);
expect(ran2).toBe(false);
expect(ran3).toBe(false);
d2.resolve(undefined);
await nextTick();
expect(ran1).toBe(true);
expect(ran2).toBe(true);
expect(ran3).toBe(false);
d3.resolve(undefined);
await nextTick();
expect(ran1).toBe(true);
expect(ran2).toBe(true);
expect(ran3).toBe(true);
});
it('Handles async work that rejects', async () => {
const d1 = defer();
const d2 = defer();
const rateLimiter = new RateLimiter(2);
rateLimiter.enqueueRun(() => d1.promise);
let sawError = false;
rateLimiter
.enqueueRun(async () => {
await d2.promise;
throw new Error();
})
.catch(() => {
sawError = true;
});
let hasId3Resolved = false;
rateLimiter
.enqueueRun(() => Promise.resolve())
.then(() => {
hasId3Resolved = true;
});
expect(hasId3Resolved).toBe(false);
d2.resolve(undefined);
await nextTick();
expect(hasId3Resolved).toBe(true);
expect(sawError).toBe(true);
});
});
``` | /content/code_sandbox/eden/contrib/shared/__tests__/RateLimiter.test.ts | xml | 2016-05-05T16:53:47 | 2024-08-16T19:12:02 | sapling | facebook/sapling | 5,987 | 854 |
```xml
<clickhouse>
<remote_servers>
<test_cluster>
<shard>
<replica>
<host>node1</host>
<port>9000</port>
</replica>
</shard>
<shard>
<replica>
<host>node2</host>
<port>9000</port>
</replica>
</shard>
</test_cluster>
</remote_servers>
</clickhouse>
``` | /content/code_sandbox/tests/integration/test_distributed_over_distributed/configs/remote_servers.xml | xml | 2016-06-02T08:28:18 | 2024-08-16T18:39:33 | ClickHouse | ClickHouse/ClickHouse | 36,234 | 105 |
```xml
export const VIDEOTYPE = 'draft-js-video-plugin-video';
export const ATOMIC = 'atomic';
``` | /content/code_sandbox/packages/video/src/video/constants/index.ts | xml | 2016-02-26T09:54:56 | 2024-08-16T18:16:31 | draft-js-plugins | draft-js-plugins/draft-js-plugins | 4,087 | 23 |
```xml
<EventStore xmlns="clr-namespace:MonoTests.System.Xaml;assembly=System.Xaml.TestCases">
<EventStore.Event3>Method1</EventStore.Event3>
</EventStore>
``` | /content/code_sandbox/src/Test/System.Xaml.TestCases/XmlFiles/EventStore5.xml | xml | 2016-08-25T20:07:20 | 2024-08-13T22:23:35 | CoreWF | UiPath/CoreWF | 1,126 | 40 |
```xml
import type { AuthService } from '@proton/pass/lib/auth/service';
import type { AuthStore } from '@proton/pass/lib/auth/store';
import type { AppState, AppStatus, ClientEndpoint, MaybeNull, MaybePromise } from '@proton/pass/types';
import type { TelemetryEvent } from '@proton/pass/types/data/telemetry';
import type { EncryptedPassCache } from '@proton/pass/types/worker/cache';
import type { Notification } from './actions/enhancers/notification';
import type { FeatureFlagState, rootReducer } from './reducers';
import type { ProxiedSettings } from './reducers/settings';
export type State = ReturnType<typeof rootReducer>;
export type Telemetry = { start: () => void; stop: () => void; push: (event: TelemetryEvent) => Promise<boolean> };
export type PassSaga = (options: RootSagaOptions) => Generator;
export interface RootSagaOptions {
/** defines the current client type */
endpoint: ClientEndpoint;
getAppState: () => AppState;
setAppStatus: (status: AppStatus) => void;
getAuthStore: () => AuthStore;
getAuthService: () => AuthService;
getSettings: () => MaybePromise<ProxiedSettings>;
getTelemetry: () => MaybeNull<Telemetry>;
/** Fine-tune the event channel polling interval - this will
* be called after each polling run to set the next value */
getPollingInterval: () => number;
/** Define the initial polling delay : this is especially useful
* to avoid immediately spawning the event channels after the
* service worker was killed by the browser */
getPollingDelay?: (pollingInterval: number, lastCalledAt?: number) => number;
/** Retrieves the encrypted cache from whatever storage
* the current client is using for persisting data */
getCache: () => Promise<Partial<EncryptedPassCache>>;
/** Persists the stringified encrypted cache to whatever storage the
* current client is using for persisting data */
setCache: (encrypted: EncryptedPassCache) => Promise<void>;
/** Callback with the result of the boot sequence. The `clearCache`
* flag indicates if the boot failure should result in a cache wipe */
onBoot?: (result: { ok: true; fromCache: boolean; offline?: boolean } | { ok: false; clearCache: boolean }) => void;
/** Callback used when account locale is updated */
onLocaleUpdated?: (locale: string) => void;
/** Callback used when the local beta flag is updated */
onBetaUpdated?: (enabled: boolean) => MaybePromise<void>;
/** Callback for handling notification effects */
onNotification?: (notification: Notification) => void;
/** Callback for propagating feature flags updates */
onFeatureFlagsUpdated?: (features: FeatureFlagState) => void;
/** Called whenever some changes were committed to the items state */
onItemsUpdated?: () => void;
/** Callback triggered when settings have been updated: leverage
* this to persist the settings to storage if needed. */
onSettingsUpdated?: (settings: ProxiedSettings) => MaybePromise<void>;
}
``` | /content/code_sandbox/packages/pass/store/types.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 672 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:xsi="path_to_url" version="1.2" xsi:schemaLocation="urn:oasis:names:tc:xliff:document:1.2 xliff-core-1.2-transitional.xsd">
<file datatype="xml" source-language="en" target-language="pt-BR" original="../LocalizableStrings.resx">
<body>
<trans-unit id="MSBuildServer">
<source>MSBuild server</source>
<target state="translated">Servidor MSBuild</target>
<note />
</trans-unit>
<trans-unit id="VBCSCompilerServer">
<source>VB/C# compiler server</source>
<target state="translated">Servidor do compilador VB/C#</target>
<note />
</trans-unit>
<trans-unit id="RazorServer">
<source>Razor build server</source>
<target state="translated">Servidor de build Razor</target>
<note />
</trans-unit>
<trans-unit id="ShutdownCommandFailed">
<source>The shutdown command failed: {0}</source>
<target state="translated">O comando de desligamento falhou: {0}</target>
<note />
</trans-unit>
<trans-unit id="FailedToReadPidFile">
<source>Failed to read pid file '{0}': {1}</source>
<target state="translated">Falha ao ler o arquivo PID '{0}': {1}</target>
<note />
</trans-unit>
</body>
</file>
</xliff>
``` | /content/code_sandbox/src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.pt-BR.xlf | xml | 2016-07-22T21:26:02 | 2024-08-16T17:23:58 | sdk | dotnet/sdk | 2,627 | 379 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="path_to_url">
<ItemGroup>
<Filter Include="Resources">
<UniqueIdentifier>accd3aa8-1ba0-4223-9bbe-0c431709210b</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tga;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
<Filter Include="Generated Files">
<UniqueIdentifier>{926ab91d-31b4-48c3-b9a4-e681349f27f0}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="pch.cpp" />
<ClCompile Include="$(GeneratedFilesDir)module.g.cpp" />
<ClCompile Include="module.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="pch.h" />
</ItemGroup>
<ItemGroup>
<None Include="TestRuntimeComponent2.def" />
</ItemGroup>
<ItemGroup>
<None Include="PropertySheet.props" />
</ItemGroup>
<ItemGroup>
<Text Include="readme.txt" />
</ItemGroup>
<ItemGroup>
<Midl Include="TestRuntimeComponent2Class.idl" />
</ItemGroup>
</Project>
``` | /content/code_sandbox/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.vcxproj.filters | xml | 2016-09-14T16:28:57 | 2024-08-13T13:14:47 | cppwinrt | microsoft/cppwinrt | 1,628 | 333 |
```xml
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<IsPackable>false</IsPackable>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
<PackageReference Include="Amazon.Lambda.TestUtilities" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\BlueprintBaseName.1\BlueprintBaseName.1.fsproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="FunctionTest.fs" />
</ItemGroup>
</Project>
``` | /content/code_sandbox/Blueprints/BlueprintDefinitions/vs2022/StepFunctionsHelloWorld-FSharp/template/test/BlueprintBaseName.1.Tests/BlueprintBaseName.1.Tests.fsproj | xml | 2016-11-11T20:43:34 | 2024-08-15T16:57:53 | aws-lambda-dotnet | aws/aws-lambda-dotnet | 1,558 | 219 |
```xml
/**
* In edge runtime, these props directly accessed from environment variables.
* - local: env vars will be injected through edge-runtime as runtime env vars
* - deployment: env vars will be replaced by edge build pipeline
*/
export function getEdgePreviewProps() {
return {
previewModeId:
process.env.NODE_ENV === 'production'
? process.env.__NEXT_PREVIEW_MODE_ID!
: 'development-id',
previewModeSigningKey: process.env.__NEXT_PREVIEW_MODE_SIGNING_KEY || '',
previewModeEncryptionKey:
process.env.__NEXT_PREVIEW_MODE_ENCRYPTION_KEY || '',
}
}
``` | /content/code_sandbox/packages/next/src/server/web/get-edge-preview-props.ts | xml | 2016-10-05T23:32:51 | 2024-08-16T19:44:30 | next.js | vercel/next.js | 124,056 | 129 |
```xml
export const ensureSimulatorAppRunningAsync = jest.fn(async () => {});
``` | /content/code_sandbox/packages/@expo/cli/src/start/platforms/ios/__mocks__/ensureSimulatorAppRunning.ts | xml | 2016-08-15T17:14:25 | 2024-08-16T19:54:44 | expo | expo/expo | 32,004 | 16 |
```xml
// make it work with --isolatedModules
export default {};
``` | /content/code_sandbox/code/addons/interactions/src/index.ts | xml | 2016-03-18T04:23:44 | 2024-08-16T19:22:08 | storybook | storybookjs/storybook | 83,755 | 14 |
```xml
import { MaxNoteNumber } from "../../Constants"
export interface NotePoint {
tick: number
noteNumber: number
}
export namespace NotePoint {
export const clampNoteNumber = (noteNumber: number) =>
Math.min(MaxNoteNumber, Math.max(0, noteNumber))
export const clamp = (point: NotePoint): NotePoint => ({
tick: Math.max(0, point.tick),
noteNumber: clampNoteNumber(point.noteNumber),
})
export function equals(a: NotePoint, b: NotePoint): boolean {
return a.tick === b.tick && a.noteNumber === b.noteNumber
}
}
``` | /content/code_sandbox/app/src/entities/transform/NotePoint.ts | xml | 2016-03-06T15:19:53 | 2024-08-15T14:27:10 | signal | ryohey/signal | 1,238 | 136 |
```xml
<!--
~
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing,
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ specific language governing permissions and limitations
-->
<FindBugsFilter>
<Match>
<Class name="org.ballerinalang.formatter.cli.FormatUtil"/>
<Bug pattern="DCN_NULLPOINTER_EXCEPTION"/>
</Match>
</FindBugsFilter>
``` | /content/code_sandbox/misc/formatter/modules/formatter-cli/spotbugs-exclude.xml | xml | 2016-11-16T14:58:44 | 2024-08-15T15:15:21 | ballerina-lang | ballerina-platform/ballerina-lang | 3,561 | 108 |
```xml
import React from 'react';
import { EnumParameter, FunctionArgument, FunctionParameter, ObjectParameter } from './index.types';
import { isCurrentPlatformSupported } from './utils';
import MonoText from '../MonoText';
export default function FunctionSignature(props: {
namespace: string;
name: string;
parameters: FunctionParameter[];
args: FunctionArgument[];
}) {
return <MonoText>{generateFunctionSignature(props)}</MonoText>;
}
export function generateFunctionSignature({
namespace,
name,
parameters,
args,
}: {
namespace: string;
name: string;
parameters: FunctionParameter[];
args: FunctionArgument[];
}) {
return `${namespace}.${name}(${argumentsToString(args, parameters)})`;
}
function argumentsToString(args: FunctionArgument[], parameters: FunctionParameter[]) {
return parameters
.map((parameter, idx) => {
if (!isCurrentPlatformSupported(parameter.platforms)) {
return;
}
switch (parameter.type) {
case 'object':
return convertObjectArgumentToString(args[idx], parameter);
case 'enum':
return convertEnumArgumentToString(args[idx], parameter);
case 'constant':
return parameter.name;
default:
return String(args[idx]);
}
})
.filter((arg) => !!arg) // filter out all void values
.join(', ');
}
function convertObjectArgumentToString(arg: FunctionArgument, parameter: ObjectParameter) {
const properties = parameter.properties
.map((property) => {
// skip object properties unsupported on the current platform
if (!isCurrentPlatformSupported(property.platforms)) {
return;
}
if (typeof arg !== 'object' || Array.isArray(arg) /** filter out tuples/arrays */) {
throw new Error(
`Value ${arg} is not an object. Expecting object for ${parameter.name} argument`
);
}
if (!(property.name in arg)) {
throw new Error(
`Property ${
property.name
} is missing in argument. Available parameter properties: ${parameter.properties
.map((p) => p.name)
.join(', ')} and argument properties: ${Object.keys(arg).join(', ')}`
);
}
const value = arg[property.name];
// skip `undefined` values
if (value === undefined) {
return;
}
if (property.type === 'enum') {
const stringArgument = convertEnumArgumentToString(value, property);
if (!stringArgument) return;
return `${property.name}: ${stringArgument}`;
}
return `${property.name}: ${property.type === 'string' ? `"${value}"` : value}`;
})
.filter((entry) => !!entry) // filter out all void values
.join(',\n ');
return `{\n ${properties}\n}`;
}
function convertEnumArgumentToString(arg: FunctionArgument, { name, values }: EnumParameter) {
// this should always find the current value for the enum, if failed something is messed up somewhere else
// eslint-disable-next-line no-case-declarations
const value = values.find(({ value }) =>
typeof value === 'object' && typeof arg === 'object'
? JSON.stringify(value) === JSON.stringify(arg) // for tuple case
: value === arg
);
if (!value) {
return;
}
return value.name;
}
``` | /content/code_sandbox/apps/native-component-list/src/components/FunctionDemo/FunctionSignature.tsx | xml | 2016-08-15T17:14:25 | 2024-08-16T19:54:44 | expo | expo/expo | 32,004 | 714 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="path_to_url" package="SampleGame.Android" android:installLocation="auto">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
<application />
</manifest>
``` | /content/code_sandbox/SampleGame.Android/AndroidManifest.xml | xml | 2016-08-26T03:45:35 | 2024-08-16T05:03:32 | osu-framework | ppy/osu-framework | 1,618 | 65 |
```xml
import { useCallback, useEffect, useMemo, useState } from 'react';
import { compact } from 'lodash';
import { c } from 'ttag';
import type { WasmApiExchangeRate, WasmApiWalletAccount } from '@proton/andromeda';
import { useAddressesKeys, useGetAddressKeys, useNotifications } from '@proton/components/hooks';
import type { DecryptedAddressKey, SimpleMap } from '@proton/shared/lib/interfaces';
import type { IWasmApiWalletData } from '@proton/wallet';
import { ANONYMOUS_SENDER_ADDRESS_ID } from '../../../constants/wallet';
import { usePsbt } from '../../../hooks/usePsbt';
import type { TxBuilderHelper } from '../../../hooks/useTxBuilder';
import type { BtcAddressMap } from '../../EmailOrBitcoinAddressInput/useEmailAndBtcAddressesMaps';
export const getAnonymousSenderAddress = () => ({
Email: c('Wallet send').t`Anonymous sender`,
ID: ANONYMOUS_SENDER_ADDRESS_ID,
});
export const useTransactionReview = ({
isUsingBitcoinViaEmail,
wallet,
account,
exchangeRate,
txBuilderHelpers,
btcAddressMap,
onSent,
}: {
isUsingBitcoinViaEmail: boolean;
wallet: IWasmApiWalletData;
account: WasmApiWalletAccount;
exchangeRate: WasmApiExchangeRate;
txBuilderHelpers: TxBuilderHelper;
btcAddressMap: BtcAddressMap;
onSent: () => void;
}) => {
const { txBuilder } = txBuilderHelpers;
const [addresses] = useAddressesKeys();
// Address that will be used as a fallback when anonymous sender is selected
const primaryAddress = useMemo(() => {
const primaryAddressId = addresses?.at(0)?.address.ID;
const primaryAddressKey = addresses?.at(0)?.keys.at(0);
if (primaryAddressId && primaryAddressKey) {
return {
ID: primaryAddressId,
key: primaryAddressKey,
};
}
}, [addresses]);
const txBuilderRecipients = txBuilder.getRecipients();
const { createNotification } = useNotifications();
const [senderAddress, setSenderAddress] = useState<{ ID: string; key?: DecryptedAddressKey }>();
const getAddressKeys = useGetAddressKeys();
const [message, setMessage] = useState('');
const [noteToSelf, setNoteToSelf] = useState('');
const { psbt, signAndBroadcastPsbt } = usePsbt({ txBuilder }, true);
const psbtExpectedSize = psbt?.computeTxSize();
const totalFees = Number(psbt?.total_fees ?? 0);
const totalSentAmount = txBuilderRecipients.reduce((acc, r) => {
return acc + Number(r[2]);
}, 0);
const totalAmount = totalFees + totalSentAmount;
const [recipientsAddresses, emailAddressByBtcAddress] = useMemo(() => {
const recipientsAddresses = compact(txBuilderRecipients.map((r) => btcAddressMap[r[1]]));
const emailAddressByBtcAddress: SimpleMap<string> = txBuilderRecipients.reduce((acc, recipient) => {
const btcAddress = recipient[1];
const emailAddress = btcAddressMap[btcAddress]?.recipient.Address;
return emailAddress ? { ...acc, [btcAddress]: emailAddress } : acc;
}, {});
return [recipientsAddresses, emailAddressByBtcAddress];
}, [btcAddressMap, txBuilderRecipients]);
const onSelectAddress = useCallback(
async (senderAddressId?: string) => {
const isAnonymousSend = senderAddress?.ID === ANONYMOUS_SENDER_ADDRESS_ID;
if (senderAddressId) {
const addressKeys = isAnonymousSend ? [] : await getAddressKeys(senderAddressId);
setSenderAddress({ ID: senderAddressId, key: addressKeys.at(0) });
} else {
setSenderAddress(undefined);
}
},
[getAddressKeys, senderAddress?.ID]
);
useEffect(() => {
const run = async () => {
// We use primaryAddress when user wants to use BvE but doesn't have any email set on the wallet account he is using
const defaultAddress = account.Addresses.at(0) ?? addresses?.at(0)?.address;
const defaultSenderAddressId: string | undefined = defaultAddress?.ID;
if (defaultSenderAddressId && !senderAddress) {
await onSelectAddress(defaultSenderAddressId);
}
};
void run();
}, [account.Addresses, addresses, onSelectAddress, senderAddress]);
const isAnonymousSend = senderAddress?.ID === ANONYMOUS_SENDER_ADDRESS_ID;
// When user picked anonymous sender, we want to use the fallback address instead of selected one
const finalSenderAddress = useMemo(() => {
const { ID, key } = senderAddress ?? {};
if (ID && key) {
return {
ID,
key,
};
}
return primaryAddress;
}, [primaryAddress, senderAddress]);
const handleSendTransaction = async () => {
try {
await signAndBroadcastPsbt({
apiAccount: account,
apiWalletData: wallet,
exchangeRateId: 'isBitcoinRate' in exchangeRate ? undefined : exchangeRate?.ID,
noteToSelf: noteToSelf || undefined,
/**
* We don't want to send message field to the API if:
* - User has no address key at all
* - User is not using bitcoin via email
*/
...(finalSenderAddress && isUsingBitcoinViaEmail
? {
isAnonymousSend,
senderAddress: finalSenderAddress,
recipients: emailAddressByBtcAddress,
message: {
content: message,
encryptionKeys: compact(recipientsAddresses.map((r) => r.addressKey)),
},
}
: {}),
});
onSent();
createNotification({
text: c('Wallet send').t`Transaction was successfully sent`,
});
} catch (error) {
createNotification({
type: 'error',
text:
typeof error === 'object' && error && 'message' in error
? (error.message as string)
: c('Wallet send').t`The transaction could not be sent. Please try again later`,
});
}
};
return {
message,
setMessage,
noteToSelf,
setNoteToSelf,
senderAddress,
onSelectAddress,
totalSentAmount,
totalFees,
totalAmount,
psbtExpectedSize,
handleSendTransaction,
};
};
``` | /content/code_sandbox/applications/wallet/src/app/components/BitcoinSendModal/TransactionReview/useTransactionReview.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 1,416 |
```xml
// luma.gl
import {ShaderPass} from '../../../lib/shader-module/shader-pass';
import {random} from '../../../modules/math/random/random';
const fs = /* glsl */ `\
uniform tiltShiftUniforms {
float blurRadius;
float gradientRadius;
vec2 start;
vec2 end;
bool invert;
} tiltShift;
vec2 tiltShift_getDelta(vec2 texSize) {
vec2 vector = normalize((tiltShift.end - tiltShift.start) * texSize);
return tiltShift.invert ? vec2(-vector.y, vector.x) : vector;
}
vec4 tiltShift_sampleColor(sampler2D source, vec2 texSize, vec2 texCoord) {
vec4 color = vec4(0.0);
float total = 0.0;
/* randomize the lookup values to hide the fixed number of samples */
float offset = random(vec3(12.9898, 78.233, 151.7182), 0.0);
vec2 normal = normalize(vec2((tiltShift.start.y - tiltShift.end.y) * texSize.y, (tiltShift.end.x - tiltShift.start.x) * texSize.x));
float radius = smoothstep(0.0, 1.0,
abs(dot(texCoord * texSize - tiltShift.start * texSize, normal)) / tiltShift.gradientRadius) * tiltShift.blurRadius;
for (float t = -30.0; t <= 30.0; t++) {
float percent = (t + offset - 0.5) / 30.0;
float weight = 1.0 - abs(percent);
vec4 offsetColor = texture(source, texCoord + tiltShift_getDelta(texSize) / texSize * percent * radius);
/* switch to pre-multiplied alpha to correctly blur transparent images */
offsetColor.rgb *= offsetColor.a;
color += offsetColor * weight;
total += weight;
}
color = color / total;
/* switch back from pre-multiplied alpha */
color.rgb /= color.a + 0.00001;
return color;
}
`;
/**
* Tilt Shift
* Simulates the shallow depth of field normally encountered in close-up photography
*/
export type TiltShiftProps = {
/** The x,y coordinate of the start of the line segment. */
start?: number[];
/** The xm y coordinate of the end of the line segment. */
end?: number[];
/** The maximum radius of the pyramid blur. */
blurRadius?: number;
/** The distance from the line at which the maximum blur radius is reached. */
gradientRadius?: number;
/** @deprecated internal shaderpass use */
invert?: number;
};
export type TiltShiftUniforms = TiltShiftProps;
/**
* Tilt Shift
* Simulates the shallow depth of field normally encountered in close-up
* photography, which makes the scene seem much smaller than it actually
* is. This filter assumes the scene is relatively planar, in which case
* the part of the scene that is completely in focus can be described by
* a line (the intersection of the focal plane and the scene). An example
* of a planar scene might be looking at a road from above at a downward
* angle. The image is then blurred with a blur radius that starts at zero
* on the line and increases further from the line.
*/
export const tiltShift = {
props: {} as TiltShiftProps,
uniforms: {} as TiltShiftUniforms,
name: 'tiltShift',
dependencies: [random],
uniformTypes: {
blurRadius: 'f32',
gradientRadius: 'f32',
start: 'vec2<f32>',
end: 'vec2<f32>',
invert: 'i32'
},
propTypes: {
blurRadius: {value: 15, min: 0, max: 50},
gradientRadius: {value: 200, min: 0, max: 400},
start: {value: [0, 0]},
end: {value: [1, 1]},
invert: {value: 0, private: true}
},
passes: [
{sampler: true, uniforms: {invert: 0}},
{sampler: true, uniforms: {invert: 1}}
],
fs
} as const satisfies ShaderPass<TiltShiftProps, TiltShiftProps>;
/*
function tiltShift(startX, startY, endX, endY, blurRadius, gradientRadius) {
var dx = endX - startX;
var dy = endY - startY;
var d = Math.sqrt(dx * dx + dy * dy);
simpleShader.call(this, gl.tiltShift, {
blurRadius: blurRadius,
gradientRadius: gradientRadius,
start: [startX, startY],
end: [endX, endY],
delta: [dx / d, dy / d],
texSize: [this.width, this.height]
});
simpleShader.call(this, gl.tiltShift, {
blurRadius: blurRadius,
gradientRadius: gradientRadius,
start: [startX, startY],
end: [endX, endY],
delta: [-dy / d, dx / d],
texSize: [this.width, this.height]
});
return this;
}
*/
``` | /content/code_sandbox/modules/shadertools/src/passes/postprocessing/image-blur-filters/tiltshift.ts | xml | 2016-01-25T09:41:59 | 2024-08-16T10:03:05 | luma.gl | visgl/luma.gl | 2,280 | 1,153 |
```xml
export interface NotificationPermissionOptions {
carPlay?: boolean;
criticalAlert?: boolean;
providesAppNotificationSettings?: boolean;
provisional?: boolean;
announcement?: boolean;
}
export interface NotificationPermissions extends NotificationPermissionOptions {
badge: boolean;
alert: boolean;
sound: boolean;
notificationCenter: boolean;
lockScreen: boolean;
}
``` | /content/code_sandbox/lib/src/interfaces/NotificationPermissions.ts | xml | 2016-04-06T13:17:44 | 2024-08-06T01:35:50 | react-native-notifications | wix/react-native-notifications | 3,217 | 76 |
```xml
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
//
// path_to_url
//
// Unless required by applicable law or agreed to in writing,
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// specific language governing permissions and limitations
import { generateRandomTables } from '../../../data/tables.js';
import { ArrowIOTestHelper } from '../helpers.js';
import {
validateAsyncRecordBatchReader,
validateRecordBatchReader
} from '../validate.js';
import { RecordBatchReader } from 'apache-arrow';
for (const table of generateRandomTables([10, 20, 30])) {
const io = ArrowIOTestHelper.stream(table);
const name = `[\n ${table.schema.fields.join(',\n ')}\n]`;
const validate = (source: any) => { validateRecordBatchReader('stream', 3, RecordBatchReader.from(source)); };
const validateAsync = async (source: any) => { await validateAsyncRecordBatchReader('stream', 3, await RecordBatchReader.from(source)); };
const validateAsyncWrapped = async (source: any) => { await validateAsyncRecordBatchReader('stream', 3, await RecordBatchReader.from(Promise.resolve(source))); };
describe(`RecordBatchStreamReader (${name})`, () => {
describe(`should read all RecordBatches`, () => {
test(`Uint8Array`, io.buffer(validate));
test(`Iterable`, io.iterable(validate));
});
});
describe(`AsyncRecordBatchStreamReader (${name})`, () => {
describe(`should read all RecordBatches`, () => {
test('AsyncIterable', io.asyncIterable(validateAsync));
test('fs.FileHandle', io.fsFileHandle(validateAsync));
test('fs.ReadStream', io.fsReadableStream(validateAsync));
test('stream.Readable', io.nodeReadableStream(validateAsync));
test('whatwg.ReadableStream', io.whatwgReadableStream(validateAsync));
test('whatwg.ReadableByteStream', io.whatwgReadableByteStream(validateAsync));
test('Promise<AsyncIterable>', io.asyncIterable(validateAsyncWrapped));
test('Promise<fs.FileHandle>', io.fsFileHandle(validateAsyncWrapped));
test('Promise<fs.ReadStream>', io.fsReadableStream(validateAsyncWrapped));
test('Promise<stream.Readable>', io.nodeReadableStream(validateAsyncWrapped));
test('Promise<ReadableStream>', io.whatwgReadableStream(validateAsyncWrapped));
test('Promise<ReadableByteStream>', io.whatwgReadableByteStream(validateAsyncWrapped));
});
});
}
``` | /content/code_sandbox/js/test/unit/ipc/reader/stream-reader-tests.ts | xml | 2016-02-17T08:00:23 | 2024-08-16T19:00:48 | arrow | apache/arrow | 14,094 | 559 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="de_DE">
<context>
<name>ArtisticSolidColor</name>
<message>
<source>Irregular</source>
<translation>Unregelmigkeit</translation>
</message>
<message>
<source>Horiz Offset</source>
<translation>Horizontaler Offset</translation>
</message>
<message>
<source>Vert Offset</source>
<translation>Vertikaler Offset</translation>
</message>
<message>
<source>Noise</source>
<translation>Rauschen</translation>
</message>
</context>
<context>
<name>FlowLineStrokeStyle</name>
<message>
<source>Density</source>
<translation type="unfinished">Dichte</translation>
</message>
<message>
<source>Extension</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Width Scale</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Straighten Ends</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Flow Line</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>MovingSolidColor</name>
<message>
<source>Offset</source>
<translation>Offset</translation>
</message>
<message>
<source>Horiz Offset</source>
<translation>Horizontaler Offset</translation>
</message>
<message>
<source>Vert Offset</source>
<translation>Vertikaler Offset</translation>
</message>
</context>
<context>
<name>OutlineViewerStyle</name>
<message>
<source>OutlineViewer(OnlyDebug)</source>
<translation>Umriss-Betrachter (Nur Debug)</translation>
</message>
<message>
<source>Control Point</source>
<translation>Kontrollpunkt</translation>
</message>
<message>
<source>Center Line</source>
<translation>Mittellinie</translation>
</message>
<message>
<source>Outline Mode</source>
<translation>Umriss-Modus</translation>
</message>
<message>
<source>Distance</source>
<translation>Distanz</translation>
</message>
<message>
<source>distance</source>
<translation>Abstand</translation>
</message>
</context>
<context>
<name>ShadowStyle</name>
<message>
<source>Hatched Shading</source>
<translation>Schraffur</translation>
</message>
<message>
<source>Angle</source>
<translation>Winkel</translation>
</message>
<message>
<source>Density</source>
<translation>Dichte</translation>
</message>
<message>
<source>Length</source>
<translation>Lnge</translation>
</message>
</context>
<context>
<name>ShadowStyle2</name>
<message>
<source>Plain Shadow</source>
<translation>Schatten (Standard)</translation>
</message>
<message>
<source>Angle</source>
<translation>Winkel</translation>
</message>
<message>
<source>Size</source>
<translation>Gre</translation>
</message>
</context>
<context>
<name>TAirbrushRasterStyle</name>
<message>
<source>Airbrush</source>
<translation>Airbrush</translation>
</message>
<message>
<source>Blur value</source>
<translation>Weichheitsgrad</translation>
</message>
</context>
<context>
<name>TBiColorStrokeStyle</name>
<message>
<source>Shade</source>
<translation>Schattierung</translation>
</message>
</context>
<context>
<name>TBlendRasterStyle</name>
<message>
<source>Blend</source>
<translation>Mischen</translation>
</message>
</context>
<context>
<name>TBlendStrokeStyle2</name>
<message>
<source>Fade</source>
<translation>Einblendung</translation>
</message>
<message>
<source>Border Fade</source>
<translation>Rand-Blende</translation>
</message>
<message>
<source>Fade In</source>
<translation>Einblenden</translation>
</message>
<message>
<source>Fade Out</source>
<translation>Ausblenden</translation>
</message>
</context>
<context>
<name>TBraidStrokeStyle</name>
<message>
<source>Plait</source>
<translation>Geflochten</translation>
</message>
<message>
<source>Twirl</source>
<translation>Wirbel</translation>
</message>
</context>
<context>
<name>TBubbleStrokeStyle</name>
<message>
<source>Bubbles</source>
<translation>Blasen</translation>
</message>
</context>
<context>
<name>TChainStrokeStyle</name>
<message>
<source>Chain</source>
<translation>Kette</translation>
</message>
</context>
<context>
<name>TChalkFillStyle</name>
<message>
<source>Chalk</source>
<translation>Kreide</translation>
</message>
<message>
<source>Density</source>
<translation>Dichte</translation>
</message>
<message>
<source>Dot Size</source>
<translation>Punktgre</translation>
</message>
</context>
<context>
<name>TChalkStrokeStyle2</name>
<message>
<source>Chalk</source>
<translation>Kreide</translation>
</message>
<message>
<source>Border Fade</source>
<translation>Rand-Blende</translation>
</message>
<message>
<source>Density</source>
<translation>Dichte</translation>
</message>
<message>
<source>Fade In</source>
<translation>Einblenden</translation>
</message>
<message>
<source>Fade Out</source>
<translation>Ausblenden</translation>
</message>
<message>
<source>Noise</source>
<translation>Rauschen</translation>
</message>
</context>
<context>
<name>TCheckedFillStyle</name>
<message>
<source>Square</source>
<translation>Quadrat</translation>
</message>
<message>
<source>Horiz Dist</source>
<translation>Horizontaler Abstand</translation>
</message>
<message>
<source>Horiz Angle</source>
<translation>Horizontaler Winkel</translation>
</message>
<message>
<source>Vert Dist</source>
<translation>Vertikaler Abstand</translation>
</message>
<message>
<source>Vert Angle</source>
<translation>Vertikaler Winkel</translation>
</message>
<message>
<source>Thickness</source>
<translation>Dicke</translation>
</message>
</context>
<context>
<name>TChessFillStyle</name>
<message>
<source>Chessboard</source>
<translation>Schachbrett</translation>
</message>
<message>
<source>Horiz Size</source>
<translation>Horizontale Gre</translation>
</message>
<message>
<source>Vert Size</source>
<translation>Vertikale Gre</translation>
</message>
<message>
<source>Angle</source>
<translation>Winkel</translation>
</message>
</context>
<context>
<name>TCircleStripeFillStyle</name>
<message>
<source>Concentric</source>
<translation>Konzentrisch</translation>
</message>
<message>
<source>X Position</source>
<translation>X-Position</translation>
</message>
<message>
<source>Y Position</source>
<translation>Y-Position</translation>
</message>
<message>
<source>Distance</source>
<translation>Distanz</translation>
</message>
<message>
<source>Thickness</source>
<translation>Dicke</translation>
</message>
</context>
<context>
<name>TCrystallizeStrokeStyle</name>
<message>
<source>Tulle</source>
<translation>Tll</translation>
</message>
<message>
<source>Crease</source>
<translation>Falte</translation>
</message>
<message>
<source>Opacity</source>
<translation>Opazitt</translation>
</message>
</context>
<context>
<name>TDottedFillStyle</name>
<message>
<source>Polka Dots</source>
<translation>Gepunktet</translation>
</message>
<message>
<source>Dot Size</source>
<translation>Punktgre</translation>
</message>
<message>
<source>Dot Distance</source>
<translation>Punktdistanz</translation>
</message>
</context>
<context>
<name>TDottedLineStrokeStyle</name>
<message>
<source>Vanishing</source>
<translation>Verdnnung</translation>
</message>
<message>
<source>Fade In</source>
<translation>Einblende</translation>
</message>
<message>
<source>Dash</source>
<translation>Gestrichelt</translation>
</message>
<message>
<source>Fade Out</source>
<translation>Ausblenden</translation>
</message>
<message>
<source>Gap</source>
<translation>Lcke</translation>
</message>
</context>
<context>
<name>TDualColorStrokeStyle2</name>
<message>
<source>Striped</source>
<translation>Gestreift</translation>
</message>
<message>
<source>Distance</source>
<translation>Distanz</translation>
</message>
</context>
<context>
<name>TFriezeStrokeStyle2</name>
<message>
<source>Curl</source>
<translation>Kringel</translation>
</message>
<message>
<source>Twirl</source>
<translation>Wirbel</translation>
</message>
<message>
<source>Thickness</source>
<translation>Dicke</translation>
</message>
</context>
<context>
<name>TFurStrokeStyle</name>
<message>
<source>Herringbone</source>
<translation>Fischgrtenstich</translation>
</message>
<message>
<source>Angle</source>
<translation>Winkel</translation>
</message>
<message>
<source>Size</source>
<translation>Gre</translation>
</message>
</context>
<context>
<name>TGraphicPenStrokeStyle</name>
<message>
<source>Dashes</source>
<translation>Strichelung</translation>
</message>
<message>
<source>Density</source>
<translation>Dichte</translation>
</message>
</context>
<context>
<name>TLinGradFillStyle</name>
<message>
<source>Linear Gradient</source>
<translation>Linearer Verlauf</translation>
</message>
<message>
<source>Angle</source>
<translation>Winkel</translation>
</message>
<message>
<source>X Position</source>
<translation>X-Position</translation>
</message>
<message>
<source>Y Position</source>
<translation>Y-Position</translation>
</message>
<message>
<source>Smoothness</source>
<translation>Gltte</translation>
</message>
</context>
<context>
<name>TLongBlendStrokeStyle2</name>
<message>
<source>Watercolor</source>
<translation>Wasserfarbe</translation>
</message>
<message>
<source>Distance</source>
<translation></translation>
</message>
</context>
<context>
<name>TMatrioskaStrokeStyle</name>
<message>
<source>Toothpaste</source>
<translation>Zahnpasta</translation>
</message>
<message>
<source>Stripes</source>
<translation>Streifen</translation>
</message>
</context>
<context>
<name>TMosaicFillStyle</name>
<message>
<source>Stained Glass</source>
<translation>Farbglas</translation>
</message>
<message>
<source>Size</source>
<translation>Gre</translation>
</message>
<message>
<source>Distortion</source>
<translation>Verzerrung</translation>
</message>
<message>
<source>Min Thick</source>
<translation>Minimale Dicke</translation>
</message>
<message>
<source>Max Thick</source>
<translation>Maximale Dicke</translation>
</message>
</context>
<context>
<name>TMultiLineStrokeStyle2</name>
<message>
<source>Gouache</source>
<translation>Gouache</translation>
</message>
<message>
<source>Density</source>
<translation>Dichte</translation>
</message>
<message>
<source>Size</source>
<translation>Gre</translation>
</message>
<message>
<source>Thickness</source>
<translation>Dicke</translation>
</message>
<message>
<source>Noise</source>
<translation>Rauschen</translation>
</message>
</context>
<context>
<name>TNoColorRasterStyle</name>
<message>
<source>Markup</source>
<translation>Markierung</translation>
</message>
</context>
<context>
<name>TNormal2StrokeStyle</name>
<message>
<source>Bump</source>
<translation>Beule</translation>
</message>
<message>
<source>Light X Pos</source>
<translation>Licht X-Position</translation>
</message>
<message>
<source>Light Y Pos</source>
<translation>Licht Y-Position</translation>
</message>
<message>
<source>Shininess</source>
<translation>Glanz</translation>
</message>
<message>
<source>Plastic</source>
<translation>Plastik</translation>
</message>
</context>
<context>
<name>TPatchFillStyle</name>
<message>
<source>Beehive</source>
<translation>Bienenwaben</translation>
</message>
<message>
<source>Size</source>
<translation>Gre</translation>
</message>
<message>
<source>Distortion</source>
<translation>Verzerrung</translation>
</message>
<message>
<source>Thickness</source>
<translation>Dicke</translation>
</message>
</context>
<context>
<name>TPointShadowFillStyle</name>
<message>
<source>Sponge Shading</source>
<translation>Schwammschattierung</translation>
</message>
<message>
<source>Angle</source>
<translation>Winkel</translation>
</message>
<message>
<source>Density</source>
<translation>Dichte</translation>
</message>
<message>
<source>Size</source>
<translation>Gre</translation>
</message>
<message>
<source>Point Size</source>
<translation>Punktgre</translation>
</message>
</context>
<context>
<name>TRadGradFillStyle</name>
<message>
<source>Radial Gradient</source>
<translation>Radialer Verlauf</translation>
</message>
<message>
<source>X Position</source>
<translation>X-Position</translation>
</message>
<message>
<source>Y Position</source>
<translation>Y-Position</translation>
</message>
<message>
<source>Radius</source>
<translation>Radius</translation>
</message>
<message>
<source>Smoothness</source>
<translation>Gltte</translation>
</message>
</context>
<context>
<name>TRopeStrokeStyle</name>
<message>
<source>Rope</source>
<translation>Seil</translation>
</message>
<message>
<source>Tilt</source>
<translation>Neigung</translation>
</message>
</context>
<context>
<name>TRubberFillStyle</name>
<message>
<source>Blob</source>
<translation>Klecks</translation>
</message>
<message>
<source>Intensity</source>
<translation>Intensitt</translation>
</message>
</context>
<context>
<name>TSawToothStrokeStyle</name>
<message>
<source>Jagged</source>
<translation>Gezackt</translation>
</message>
<message>
<source>Distance</source>
<translation>Distanz</translation>
</message>
</context>
<context>
<name>TSinStrokeStyle</name>
<message>
<source>Wave</source>
<translation>Welle</translation>
</message>
<message>
<source>Frequency</source>
<translation>Frequenz</translation>
</message>
</context>
<context>
<name>TSketchStrokeStyle</name>
<message>
<source>Fuzz</source>
<translation>Flaum</translation>
</message>
<message>
<source>Density</source>
<translation>Dichte</translation>
</message>
</context>
<context>
<name>TSprayStrokeStyle</name>
<message>
<source>Circlets</source>
<translation>Kreischen</translation>
</message>
<message>
<source>Border Fade</source>
<translation>Rand-Blende</translation>
</message>
<message>
<source>Density</source>
<translation>Dichte</translation>
</message>
<message>
<source>Size</source>
<translation>Gre</translation>
</message>
</context>
<context>
<name>TStripeFillStyle</name>
<message>
<source>Banded</source>
<translation>Gebndert</translation>
</message>
<message>
<source>Distance</source>
<translation>Distanz</translation>
</message>
<message>
<source>Angle</source>
<translation>Winkel</translation>
</message>
<message>
<source>Thickness</source>
<translation>Dicke</translation>
</message>
</context>
<context>
<name>TTissueStrokeStyle</name>
<message>
<source>Gauze</source>
<translation>Gaze</translation>
</message>
<message>
<source>Density</source>
<translation>Dichte</translation>
</message>
<message>
<source>Border Size</source>
<translation>Randgre</translation>
</message>
</context>
<context>
<name>TTwirlStrokeStyle</name>
<message>
<source>Ribbon</source>
<translation>Schleife</translation>
</message>
<message>
<source>Twirl</source>
<translation>Wirbel</translation>
</message>
<message>
<source>Shade</source>
<translation>Schattierung</translation>
</message>
</context>
<context>
<name>TZigzTSinStrokeStyleagStrokeStyle</name>
<message>
<source>Thickness</source>
<translation>Dicke</translation>
</message>
</context>
<context>
<name>TZigzagStrokeStyle</name>
<message>
<source>Zigzag</source>
<translation>Zick-Zack</translation>
</message>
<message>
<source>Min Distance</source>
<translation>Minimale Distanz</translation>
</message>
<message>
<source>Max Distance</source>
<translation>Maximale Distanz</translation>
</message>
<message>
<source>Min Angle</source>
<translation>Minimaler Winkel</translation>
</message>
<message>
<source>Max Angle</source>
<translation>Maximaler Winkel</translation>
</message>
<message>
<source>Thickness</source>
<translation>Dicke</translation>
</message>
</context>
</TS>
``` | /content/code_sandbox/toonz/sources/translations/german/colorfx.ts | xml | 2016-03-18T17:55:48 | 2024-08-15T18:11:38 | opentoonz | opentoonz/opentoonz | 4,445 | 4,795 |
```xml
import { deployExample } from '../test-utils';
it('[examples] should deploy node_modules', async () => {
await deployExample('node_modules');
});
``` | /content/code_sandbox/examples/__tests__/integration/node_modules.test.ts | xml | 2016-09-09T01:12:08 | 2024-08-16T17:39:45 | vercel | vercel/vercel | 12,545 | 33 |
```xml
import { expect } from 'chai';
import sinon from 'sinon';
import { ParserContext } from '../../../src/parsers/parser-context.js';
import { parse } from '../../../src/parsers/svelte-parser.js';
import { createJSAst, createRange, createTSAst } from '../../helpers/factories.js';
import { parserContextStub } from '../../helpers/stubs.js';
import { AstFormat, Range, TemplateScript } from '../../../src/syntax/index.js';
describe('svelte-parser', () => {
let contextStub: sinon.SinonStubbedInstance<ParserContext>;
beforeEach(() => {
contextStub = parserContextStub();
});
describe('svelte script tags', () => {
it('should be able to parse an instance script tag', async () => {
const script = 'const name = "test"';
const jsAst = createJSAst({ rawContent: script });
const svelte = `<script>${script}</script><h1>Hello {name}!</h1>`;
contextStub.parse
.withArgs(script)
.resolves(jsAst)
.withArgs('name')
.resolves(createJSAst({ rawContent: 'name' }));
const actual = await parse(svelte, 'index.svelte', contextStub);
expect(actual.root.additionalScripts[0].ast.root).eq(jsAst.root);
expect(actual.root.additionalScripts[0].isExpression).false;
});
it('should parse scripts correctly', async () => {
const script = 'const name = "test"';
const jsAst = createJSAst({ rawContent: script });
const svelte = `<script>${script}</script><h1>Hello {name}!</h1>`;
contextStub.parse.resolves(jsAst);
await parse(svelte, 'index.svelte', contextStub);
sinon.assert.calledWithExactly(contextStub.parse, script, 'index.svelte', AstFormat.JS);
});
it('should offset the module script location correctly', async () => {
const script = 'const name = "test"';
const jsAst = createJSAst({ rawContent: script });
const svelte = `// 0
// 1
// 2
// 3
<script context="module">${script}</script><h1>Hello {name}!</h1>`;
contextStub.parse.resolves(jsAst);
const parsed = await parse(svelte, 'index.svelte', contextStub);
const expected: TemplateScript = {
ast: {
...jsAst,
offset: {
line: 4,
column: 25,
},
},
range: {
end: 45 + script.length,
start: 45,
},
isExpression: false,
};
expect(parsed.root.moduleScript).deep.eq(expected);
});
it('should offset the instance script location correctly', async () => {
const script = 'const name = "test"';
const jsAst = createJSAst({ rawContent: script });
const svelte = `// 0
// 1
// 2
// 3
<script>${script}</script><h1>Hello {name}!</h1>`;
contextStub.parse.resolves(jsAst);
const parsed = await parse(svelte, 'index.svelte', contextStub);
const expected: TemplateScript = {
ast: {
...jsAst,
offset: {
line: 4,
column: 8,
},
},
range: {
end: 28 + script.length,
start: 28,
},
isExpression: false,
};
expect(parsed.root.additionalScripts.find(({ isExpression: expression }) => !expression)).deep.eq(expected);
});
it('should offset the location of a template expression correctly', async () => {
// Arrange
const jsAst = createJSAst({ rawContent: 'name' });
const svelte = `// 0
// 1
// 2
// 3
<script></script>
<h1>Hello {name}!</h1>`;
contextStub.parse.resolves(jsAst);
// Act
const parsed = await parse(svelte, 'index.svelte', contextStub);
// Assert
const expected: TemplateScript = {
ast: {
...jsAst,
offset: {
line: 5,
column: 11,
},
},
range: {
end: 49 + 'name'.length,
start: 49,
},
isExpression: true,
};
expect(parsed.root.additionalScripts.find(({ isExpression: expression }) => expression)).deep.eq(expected);
});
it('should offset the location of a template script correctly', async () => {
// Arrange
const script = `
console.log('hello');
`;
const jsAst = createJSAst({ rawContent: script });
const svelte = `// 0
<script></script>
<div>
<script>${script}</script>
</div>`;
contextStub.parse.resolves(jsAst);
// Act
const parsed = await parse(svelte, 'index.svelte', contextStub);
// Assert
const expected: TemplateScript = {
ast: {
...jsAst,
offset: {
line: 3,
column: 14,
},
},
range: {
end: 43 + script.length,
start: 43,
},
isExpression: false,
};
expect(parsed.root.additionalScripts[1]).deep.eq(expected);
});
it('should find module script tag', async () => {
const script = "const name = 'test'";
const jsAst = createJSAst({ rawContent: script });
const svelte = `<script context="module">${script}</script><h1>blah</h1>`;
contextStub.parse.resolves(jsAst);
const parsed = await parse(svelte, 'index.svelte', contextStub);
expect(parsed.root.moduleScript).not.undefined;
});
it('should find an html script tag', async () => {
const script = "const name = 'test'";
const jsAst = createJSAst({ rawContent: script });
const svelte = `<div><script>${script}</script></div>`;
contextStub.parse.resolves(jsAst);
const parsed = await parse(svelte, 'index.svelte', contextStub);
expect(parsed.root.additionalScripts).lengthOf(1);
});
it('should find multiple html script tags', async () => {
const scripts = ["const name = 'test'", "const test = 'test'"];
const jsAsts = [createJSAst({ rawContent: scripts[0] }), createJSAst({ rawContent: scripts[1] })];
const svelte = `<div><script>${scripts[0]}</script><script>${scripts[1]}</script></div>`;
contextStub.parse.withArgs(scripts[0], sinon.match.any).resolves(jsAsts[0]).withArgs(scripts[1], sinon.match.any).resolves(jsAsts[1]);
const parsed = await parse(svelte, 'index.svelte', contextStub);
expect(parsed.root.additionalScripts).lengthOf(2);
});
it('should find all script tags (instance, module and html)', async () => {
const scripts = ["const name = 'test'", "const name = 'world'", "const name = 'test'"];
const jsAsts = [createJSAst({ rawContent: scripts[0] }), createJSAst({ rawContent: scripts[1] }), createJSAst({ rawContent: scripts[2] })];
const svelte = `<script>${scripts[0]}</script><script context="module">${scripts[1]}</script><div><h1>hello</h1><script>${scripts[2]}</script></div>`;
contextStub.parse
.withArgs(scripts[0], sinon.match.any)
.resolves(jsAsts[0])
.withArgs(scripts[1], sinon.match.any)
.resolves(jsAsts[1])
.withArgs(scripts[2], sinon.match.any)
.resolves(jsAsts[2]);
const parsed = await parse(svelte, 'index.svelte', contextStub);
expect(parsed.root.moduleScript).not.undefined;
expect(parsed.root.moduleScript?.range).deep.eq({ start: 61, end: 81 } satisfies Range);
expect(parsed.root.additionalScripts).lengthOf(2);
expect(parsed.root.additionalScripts[0].range).deep.eq({ start: 8, end: 27 } satisfies Range);
expect(parsed.root.additionalScripts[1].range).deep.eq({ start: 117, end: 136 } satisfies Range);
});
it('should support typescript scripts', async () => {
const scripts = ['const hello: string = "hello";', 'const foo: string = "foo";', 'const bar: string = "bar";'];
const tsAsts = [createTSAst({ rawContent: scripts[0] }), createTSAst({ rawContent: scripts[1] }), createTSAst({ rawContent: scripts[2] })];
const svelte = `<script lang="ts">${scripts[0]}</script><script lang="ts" context="module">${scripts[1]}</script><div><h1>hello</h1><script lang="ts">${scripts[2]}</script></div>`;
contextStub.parse
.withArgs(scripts[0], 'index.svelte', AstFormat.TS)
.resolves(tsAsts[0])
.withArgs(scripts[1], 'index.svelte', AstFormat.TS)
.resolves(tsAsts[1])
.withArgs(scripts[2], 'index.svelte', AstFormat.TS)
.resolves(tsAsts[2]);
const parsed = await parse(svelte, 'index.svelte', contextStub);
expect(parsed.root.moduleScript).ok;
expect(parsed.root.moduleScript!.ast.root).eq(tsAsts[1].root);
expect(parsed.root.additionalScripts).lengthOf(2);
expect(parsed.root.additionalScripts[0].ast.root).eq(tsAsts[0].root);
expect(parsed.root.additionalScripts[1].ast.root).eq(tsAsts[2].root);
});
});
describe('template expressions', () => {
it('should parse a {expression}', async () => {
// Arrange
const jsAst = createJSAst({ rawContent: 'foo' });
jsAst.offset = { column: 6, line: 0 };
const svelte = '<div>{foo}</div>';
contextStub.parse.resolves(jsAst);
// Act
const ast = await parse(svelte, 'index.svelte', contextStub);
// Assert
sinon.assert.calledOnceWithExactly(contextStub.parse, 'foo', 'index.svelte', AstFormat.JS);
const expectedTemplateScript: TemplateScript = {
ast: jsAst,
isExpression: true,
range: createRange(6, 9),
};
expect(ast.root.additionalScripts).deep.eq([expectedTemplateScript]);
});
it('should parse a {@html expression}', async () => {
// Arrange
const jsAst = createJSAst({ rawContent: 'foo' });
jsAst.offset = { column: 6, line: 0 };
const svelte = '<div>{@html foo}</div>';
contextStub.parse.resolves(jsAst);
// Act
const ast = await parse(svelte, 'index.svelte', contextStub);
// Assert
sinon.assert.calledOnceWithExactly(contextStub.parse, 'foo', 'index.svelte', AstFormat.JS);
expect(ast.root.additionalScripts[0].ast.root).deep.eq(jsAst.root);
});
it('should parse a {#if expression} {:else if expression} block', async () => {
// Arrange
const firstIfExpression = 'age < 18';
const secondIfExpression = 'age === 18';
const firstIf = createJSAst({ rawContent: firstIfExpression });
const secondIf = createJSAst({ rawContent: secondIfExpression });
const svelte = `<div>
{#if ${firstIfExpression}}
<p>underaged</p>
{:else if ${secondIfExpression}}
<p>exactly 18</p>
{:else}
<p>adult</p>
{/if}
</div>`;
contextStub.parse.withArgs(firstIfExpression).resolves(firstIf);
contextStub.parse.withArgs(secondIfExpression).resolves(secondIf);
// Act
const ast = await parse(svelte, 'index.svelte', contextStub);
// Assert
sinon.assert.calledTwice(contextStub.parse);
sinon.assert.calledWithExactly(contextStub.parse, firstIfExpression, 'index.svelte', AstFormat.JS);
sinon.assert.calledWithExactly(contextStub.parse, secondIfExpression, 'index.svelte', AstFormat.JS);
expect(ast.root.additionalScripts).lengthOf(2);
expect(ast.root.additionalScripts[0].ast.root).eq(firstIf.root);
expect(ast.root.additionalScripts[1].ast.root).eq(secondIf.root);
});
it('should parse {#key expression}', async () => {
// Arrange
const keyExpression = 'age < 18';
const keyAst = createJSAst({ rawContent: keyExpression });
const svelte = `<div>
{#key ${keyExpression}}
<p>underaged</p>
{/key}
</div>`;
contextStub.parse.withArgs(keyExpression).resolves(keyAst);
// Act
const ast = await parse(svelte, 'index.svelte', contextStub);
// Assert
sinon.assert.calledOnceWithExactly(contextStub.parse, keyExpression, 'index.svelte', AstFormat.JS);
expect(ast.root.additionalScripts).lengthOf(1);
expect(ast.root.additionalScripts[0].ast.root).eq(keyAst.root);
});
it('should parse {#each expression}', async () => {
// Arrange
const eachExpression = '[1, 2, 3]';
const keyAst = createJSAst({ rawContent: eachExpression });
const svelte = `<div>
{#each ${eachExpression} as n}
<span>.</span>
{/each}
</div>`;
contextStub.parse.withArgs(eachExpression).resolves(keyAst);
// Act
const ast = await parse(svelte, 'index.svelte', contextStub);
// Assert
sinon.assert.calledOnceWithExactly(contextStub.parse, eachExpression, 'index.svelte', AstFormat.JS);
expect(ast.root.additionalScripts).lengthOf(1);
expect(ast.root.additionalScripts[0].ast.root).eq(keyAst.root);
});
it('should parse a {#await expression} block', async () => {
// Arrange
const awaitExpression = "fetch('path_to_url";
const awaitAst = createJSAst({ rawContent: awaitExpression });
const svelte = `<div>
{#await ${awaitExpression}}
<p>Loading</p>
{:then value}
<p>Done</p>
{:catch error}
<p>Error</p>
{/await}
</div>`;
contextStub.parse.withArgs(awaitExpression).resolves(awaitAst);
// Act
const ast = await parse(svelte, 'index.svelte', contextStub);
// Assert
sinon.assert.calledOnceWithExactly(contextStub.parse, awaitExpression, 'index.svelte', AstFormat.JS);
expect(ast.root.additionalScripts).lengthOf(1);
expect(ast.root.additionalScripts[0].ast.root).eq(awaitAst.root);
});
it('should parse a {@const assignment} block', async () => {
// Arrange
const constAssignment = 'area = box.width * box.height';
const constAst = createJSAst({ rawContent: constAssignment });
const svelte = `<div>
{@const ${constAssignment}}
</div>`;
contextStub.parse.withArgs(constAssignment).resolves(constAst);
// Act
const ast = await parse(svelte, 'index.svelte', contextStub);
// Assert
sinon.assert.calledOnceWithExactly(contextStub.parse, constAssignment, 'index.svelte', AstFormat.JS);
expect(ast.root.additionalScripts).lengthOf(1);
expect(ast.root.additionalScripts[0].ast.root).eq(constAst.root);
});
it('should parse a on:event="handler" block', async () => {
// Arrange
const eventHandlerExpression = '() => (a += 1)';
const eventHandlerAst = createJSAst({ rawContent: eventHandlerExpression });
const svelte = `<div>
<button on:click={${eventHandlerExpression}}>
increase
</button>
</div>`;
contextStub.parse.withArgs(eventHandlerExpression).resolves(eventHandlerAst);
// Act
const ast = await parse(svelte, 'index.svelte', contextStub);
// Assert
sinon.assert.calledOnceWithExactly(contextStub.parse, eventHandlerExpression, 'index.svelte', AstFormat.JS);
expect(ast.root.additionalScripts).lengthOf(1);
expect(ast.root.additionalScripts[0].ast.root).eq(eventHandlerAst.root);
});
});
});
``` | /content/code_sandbox/packages/instrumenter/test/unit/parsers/svelte-parser.spec.ts | xml | 2016-02-12T13:14:28 | 2024-08-15T18:38:25 | stryker-js | stryker-mutator/stryker-js | 2,561 | 3,744 |
```xml
import {
CANCEL_SEARCH_COMMAND,
CREATE_NEW_NOTE_KEYBOARD_COMMAND,
keyboardStringForShortcut,
NEXT_LIST_ITEM_KEYBOARD_COMMAND,
PREVIOUS_LIST_ITEM_KEYBOARD_COMMAND,
SEARCH_KEYBOARD_COMMAND,
SELECT_ALL_ITEMS_KEYBOARD_COMMAND,
} from '@standardnotes/ui-services'
import { WebApplication } from '@/Application/WebApplication'
import { PANEL_NAME_NOTES } from '@/Constants/Constants'
import { FileItem, Platform, PrefKey, WebAppEvent } from '@standardnotes/snjs'
import { observer } from 'mobx-react-lite'
import { forwardRef, useCallback, useEffect, useMemo } from 'react'
import ContentList from '@/Components/ContentListView/ContentList'
import NoAccountWarning from '@/Components/NoAccountWarning/NoAccountWarning'
import { ElementIds } from '@/Constants/ElementIDs'
import ContentListHeader from './Header/ContentListHeader'
import { AppPaneId } from '../Panes/AppPaneMetadata'
import { useResponsiveAppPane } from '../Panes/ResponsivePaneProvider'
import SearchBar from '../SearchBar/SearchBar'
import { classNames } from '@standardnotes/utils'
import { useFileDragNDrop } from '../FileDragNDropProvider'
import DailyContentList from './Daily/DailyContentList'
import { ListableContentItem } from './Types/ListableContentItem'
import { FeatureName } from '@/Controllers/FeatureName'
import { PanelResizedData } from '@/Types/PanelResizedData'
import { useForwardedRef } from '@/Hooks/useForwardedRef'
import FloatingAddButton from './FloatingAddButton'
import ContentTableView from '../ContentTableView/ContentTableView'
import { MutuallyExclusiveMediaQueryBreakpoints, useMediaQuery } from '@/Hooks/useMediaQuery'
import EmptyFilesView from './EmptyFilesView'
import { PaneLayout } from '@/Controllers/PaneController/PaneLayout'
import { usePaneSwipeGesture } from '../Panes/usePaneGesture'
import { mergeRefs } from '@/Hooks/mergeRefs'
import Icon from '../Icon/Icon'
import MobileMultiSelectionToolbar from './MobileMultiSelectionToolbar'
import StyledTooltip from '../StyledTooltip/StyledTooltip'
type Props = {
application: WebApplication
className?: string
id: string
children?: React.ReactNode
onPanelWidthLoad: (width: number) => void
}
const ContentListView = forwardRef<HTMLDivElement, Props>(
({ application, className, id, children, onPanelWidthLoad }, ref) => {
const {
paneController,
accountMenuController,
filesController,
itemListController,
navigationController,
noAccountWarningController,
searchOptionsController,
linkingController,
notesController,
} = application
const { setPaneLayout, panes } = useResponsiveAppPane()
const { selected: selectedTag, selectedAsTag } = navigationController
const {
completedFullSync,
createNewNote,
optionsSubtitle,
paginate,
panelTitle,
renderedItems,
items,
isCurrentNoteTemplate,
isTableViewEnabled,
selectedUuids,
selectNextItem,
selectPreviousItem,
} = itemListController
const innerRef = useForwardedRef(ref)
const { addDragTarget, removeDragTarget } = useFileDragNDrop()
useEffect(() => {
return application.addWebEventObserver((event, data) => {
if (event === WebAppEvent.PanelResized) {
const { panel, width } = data as PanelResizedData
if (panel === PANEL_NAME_NOTES) {
if (selectedAsTag) {
void navigationController.setPanelWidthForTag(selectedAsTag, width)
} else {
void application.setPreference(PrefKey.NotesPanelWidth, width).catch(console.error)
}
}
}
})
}, [application, navigationController, selectedAsTag])
useEffect(() => {
const panelWidth = selectedTag?.preferences?.panelWidth || application.getPreference(PrefKey.NotesPanelWidth)
if (panelWidth) {
onPanelWidthLoad(panelWidth)
}
}, [selectedTag, application, onPanelWidthLoad])
const fileDropCallback = useCallback(
async (file: FileItem) => {
const currentTag = navigationController.selected
if (!currentTag) {
return
}
if (navigationController.isInAnySystemView() || navigationController.isInSmartView()) {
console.error('Trying to link uploaded files to smart view')
return
}
await linkingController.linkItems(file, currentTag)
},
[navigationController, linkingController],
)
useEffect(() => {
const target = innerRef.current
const currentTag = navigationController.selected
const shouldAddDropTarget = !navigationController.isInAnySystemView() && !navigationController.isInSmartView()
if (target && shouldAddDropTarget && currentTag) {
addDragTarget(target, {
tooltipText: `Drop your files to upload and link them to tag "${currentTag.title}"`,
callback: fileDropCallback,
})
}
return () => {
if (target) {
removeDragTarget(target)
}
}
}, [
addDragTarget,
fileDropCallback,
navigationController,
navigationController.selected,
removeDragTarget,
innerRef,
])
const icon = selectedTag?.iconString
const isFilesSmartView = useMemo(() => navigationController.isInFilesView, [navigationController.isInFilesView])
const addNewItem = useCallback(async () => {
if (isFilesSmartView) {
if (!application.entitledToFiles) {
application.showPremiumModal(FeatureName.Files)
return
}
void filesController.selectAndUploadNewFiles()
} else {
await createNewNote()
setPaneLayout(PaneLayout.Editing)
}
}, [isFilesSmartView, application, filesController, createNewNote, setPaneLayout])
const isMobileScreen = useMediaQuery(MutuallyExclusiveMediaQueryBreakpoints.sm)
const shouldUseTableView = (isFilesSmartView || isTableViewEnabled) && !isMobileScreen
useEffect(() => {
const searchBarElement = document.getElementById(ElementIds.SearchBar)
/**
* In the browser we're not allowed to override cmd/ctrl + n, so we have to
* use Control modifier as well. These rules don't apply to desktop, but
* probably better to be consistent.
*/
return application.keyboardService.addCommandHandlers([
{
command: CREATE_NEW_NOTE_KEYBOARD_COMMAND,
category: 'General',
description: 'Create new note',
onKeyDown: (event) => {
event.preventDefault()
void addNewItem()
},
},
{
command: NEXT_LIST_ITEM_KEYBOARD_COMMAND,
category: 'Notes list',
description: 'Go to next item',
elements: [document.body, ...(searchBarElement ? [searchBarElement] : [])],
onKeyDown: () => {
if (searchBarElement === document.activeElement) {
searchBarElement?.blur()
}
if (shouldUseTableView) {
return
}
selectNextItem()
},
},
{
command: PREVIOUS_LIST_ITEM_KEYBOARD_COMMAND,
category: 'Notes list',
description: 'Go to previous item',
element: document.body,
onKeyDown: () => {
if (shouldUseTableView) {
return
}
selectPreviousItem()
},
},
{
command: SEARCH_KEYBOARD_COMMAND,
category: 'General',
description: 'Toggle global search',
onKeyDown: (event) => {
if (searchBarElement) {
event.preventDefault()
searchBarElement.focus()
}
},
},
{
command: CANCEL_SEARCH_COMMAND,
onKeyDown: () => {
if (searchBarElement) {
searchBarElement.blur()
}
},
},
{
command: SELECT_ALL_ITEMS_KEYBOARD_COMMAND,
category: 'General',
description: 'Select all items',
onKeyDown: (event) => {
const isTargetInsideContentList = (event.target as HTMLElement).closest(`#${ElementIds.ContentList}`)
if (!isTargetInsideContentList) {
return
}
event.preventDefault()
itemListController.selectAll()
},
},
])
}, [
addNewItem,
application.keyboardService,
createNewNote,
itemListController,
selectNextItem,
selectPreviousItem,
shouldUseTableView,
])
const shortcutForCreate = useMemo(
() => application.keyboardService.keyboardShortcutForCommand(CREATE_NEW_NOTE_KEYBOARD_COMMAND),
[application],
)
const addButtonLabel = useMemo(() => {
return isFilesSmartView
? 'Upload file'
: `Create a new note in the selected tag (${shortcutForCreate && keyboardStringForShortcut(shortcutForCreate)})`
}, [isFilesSmartView, shortcutForCreate])
const dailyMode = selectedAsTag?.isDailyEntry
const handleDailyListSelection = useCallback(
async (item: ListableContentItem, userTriggered: boolean) => {
await itemListController.selectItemWithScrollHandling(item, {
userTriggered: true,
scrollIntoView: userTriggered === false,
animated: false,
})
},
[itemListController],
)
useEffect(() => {
const hasEditorPane = panes.includes(AppPaneId.Editor)
if (!hasEditorPane) {
innerRef.current?.style.removeProperty('width')
}
}, [selectedUuids, innerRef, isCurrentNoteTemplate, renderedItems, panes])
const [setElement] = usePaneSwipeGesture('right', () => setPaneLayout(PaneLayout.TagSelection), {
requiresStartFromEdge: application.platform !== Platform.Android,
})
return (
<div
id={id}
className={classNames(className, 'sn-component section h-full overflow-hidden pt-safe-top')}
aria-label={'Notes & Files'}
ref={mergeRefs([innerRef, setElement])}
>
{isMobileScreen && !itemListController.isMultipleSelectionMode && (
<FloatingAddButton onClick={addNewItem} label={addButtonLabel} style={dailyMode ? 'danger' : 'info'} />
)}
<div id="items-title-bar" className="section-title-bar border-b border-solid border-border">
<div id="items-title-bar-container">
{selectedTag && (
<ContentListHeader
application={application}
panelTitle={panelTitle}
icon={icon}
addButtonLabel={addButtonLabel}
addNewItem={addNewItem}
isFilesSmartView={isFilesSmartView}
isTableViewEnabled={isTableViewEnabled || isFilesSmartView}
optionsSubtitle={optionsSubtitle}
selectedTag={selectedTag}
filesController={filesController}
itemListController={itemListController}
paneController={paneController}
/>
)}
{(!shouldUseTableView || isMobileScreen) && (
<SearchBar
itemListController={itemListController}
searchOptionsController={searchOptionsController}
hideOptions={shouldUseTableView}
/>
)}
<NoAccountWarning
accountMenuController={accountMenuController}
noAccountWarningController={noAccountWarningController}
/>
</div>
</div>
{itemListController.isMultipleSelectionMode && (
<div className="flex items-center border-b border-l-2 border-border border-l-transparent py-2.5 pr-4">
<div className="px-4">
<StyledTooltip label="Select all items" showOnHover showOnMobile>
<button
className="ml-auto rounded border border-border p-1 hover:bg-contrast"
onClick={() => {
itemListController.selectAll()
}}
>
<Icon type="select-all" size="medium" />
</button>
</StyledTooltip>
</div>
<div className="text-base font-semibold md:text-sm">{itemListController.selectedItemsCount} selected</div>
<StyledTooltip label="Cancel multiple selection" showOnHover showOnMobile>
<button
className="ml-auto rounded border border-border p-1 hover:bg-contrast"
onClick={() => {
itemListController.cancelMultipleSelection()
}}
>
<Icon type="close" size="medium" />
</button>
</StyledTooltip>
</div>
)}
{selectedAsTag && dailyMode && (
<DailyContentList
items={items}
selectedTag={selectedAsTag}
selectedUuids={selectedUuids}
itemListController={itemListController}
onSelect={handleDailyListSelection}
/>
)}
{!dailyMode && completedFullSync && !renderedItems.length ? (
isFilesSmartView ? (
<EmptyFilesView addNewItem={addNewItem} />
) : (
<p className="empty-items-list opacity-50">No items.</p>
)
) : null}
{!dailyMode && !completedFullSync && !renderedItems.length ? (
<p className="empty-items-list opacity-50">Loading...</p>
) : null}
{!dailyMode && renderedItems.length ? (
shouldUseTableView ? (
<ContentTableView items={items} application={application} />
) : (
<ContentList
items={renderedItems}
selectedUuids={selectedUuids}
application={application}
paginate={paginate}
/>
)
) : null}
{isMobileScreen && itemListController.isMultipleSelectionMode && (
<MobileMultiSelectionToolbar notesController={notesController} navigationController={navigationController} />
)}
<div className="absolute bottom-0 h-safe-bottom w-full" />
{children}
</div>
)
},
)
export default observer(ContentListView)
``` | /content/code_sandbox/packages/web/src/javascripts/Components/ContentListView/ContentListView.tsx | xml | 2016-12-05T23:31:33 | 2024-08-16T06:51:19 | app | standardnotes/app | 5,180 | 2,909 |
```xml
export { default as SubTitle } from './SubTitle';
export { default as Title } from './Title';
``` | /content/code_sandbox/packages/components/components/title/index.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 23 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="path_to_url">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|ARM">
<Configuration>Debug</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|ARM">
<Configuration>Release</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\SDL_ttf.c" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\SDL_ttf.h" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\SDL\VisualC-WinRT\WinRT81_VS2013\SDL-WinRT81.vcxproj">
<Project>{c8df6173-06a1-4f56-a9bc-2002596b30e9}</Project>
</ProjectReference>
<ProjectReference Include="freetype-WinRT81.vcxproj">
<Project>{1264471f-847f-427d-8db6-b733f188ffb9}</Project>
</ProjectReference>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{90ca40dc-84b4-4d06-91d1-dc82a7a1e4d0}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<ProjectName>SDL2_ttf-WinRT81</ProjectName>
<RootNamespace>SDL2_ttf_WinRT81</RootNamespace>
<DefaultLanguage>en-US</DefaultLanguage>
<MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
<AppContainerApplication>true</AppContainerApplication>
<ApplicationType>Windows Store</ApplicationType>
<ApplicationTypeRevision>8.1</ApplicationTypeRevision>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<GenerateManifest>false</GenerateManifest>
<IgnoreImportLibrary>false</IgnoreImportLibrary>
<IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
<TargetName>SDL2_ttf</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<GenerateManifest>false</GenerateManifest>
<IgnoreImportLibrary>false</IgnoreImportLibrary>
<IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
<TargetName>SDL2_ttf</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
<GenerateManifest>false</GenerateManifest>
<IgnoreImportLibrary>false</IgnoreImportLibrary>
<IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
<TargetName>SDL2_ttf</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
<GenerateManifest>false</GenerateManifest>
<IgnoreImportLibrary>false</IgnoreImportLibrary>
<IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
<TargetName>SDL2_ttf</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<GenerateManifest>false</GenerateManifest>
<IgnoreImportLibrary>false</IgnoreImportLibrary>
<IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
<TargetName>SDL2_ttf</TargetName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<GenerateManifest>false</GenerateManifest>
<IgnoreImportLibrary>false</IgnoreImportLibrary>
<IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
<TargetName>SDL2_ttf</TargetName>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<CompileAsWinRT>false</CompileAsWinRT>
<AdditionalIncludeDirectories>..\..;..\..\external\freetype-2.4.12\include;..\..\external\freetype-2.4.12\include\config;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<GenerateWindowsMetadata>false</GenerateWindowsMetadata>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<CompileAsWinRT>false</CompileAsWinRT>
<AdditionalIncludeDirectories>..\..;..\..\external\freetype-2.4.12\include;..\..\external\freetype-2.4.12\include\config;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<GenerateWindowsMetadata>false</GenerateWindowsMetadata>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<CompileAsWinRT>false</CompileAsWinRT>
<AdditionalIncludeDirectories>..\..;..\..\external\freetype-2.4.12\include;..\..\external\freetype-2.4.12\include\config;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<GenerateWindowsMetadata>false</GenerateWindowsMetadata>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<CompileAsWinRT>false</CompileAsWinRT>
<AdditionalIncludeDirectories>..\..;..\..\external\freetype-2.4.12\include;..\..\external\freetype-2.4.12\include\config;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<GenerateWindowsMetadata>false</GenerateWindowsMetadata>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<CompileAsWinRT>false</CompileAsWinRT>
<AdditionalIncludeDirectories>..\..;..\..\external\freetype-2.4.12\include;..\..\external\freetype-2.4.12\include\config;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<GenerateWindowsMetadata>false</GenerateWindowsMetadata>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<CompileAsWinRT>false</CompileAsWinRT>
<AdditionalIncludeDirectories>..\..;..\..\external\freetype-2.4.12\include;..\..\external\freetype-2.4.12\include\config;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<GenerateWindowsMetadata>false</GenerateWindowsMetadata>
</Link>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
``` | /content/code_sandbox/extensions/android/ringlibsdl/project/jni/SDL2_ttf/VisualC-WinRT/WinRT81_VS2013/SDL_ttf-WinRT81.vcxproj | xml | 2016-03-24T10:29:27 | 2024-08-16T12:53:07 | ring | ring-lang/ring | 1,262 | 3,107 |
```xml
/*
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
*/
import {useEffect, useRef} from 'react';
import {useTranslation} from 'react-i18next';
import {Stack} from '@carbon/react';
import {Search} from '@carbon/react/icons';
import {useTaskFilters} from 'modules/hooks/useTaskFilters';
import {Task as TaskType} from 'modules/types';
import {useCurrentUser} from 'modules/queries/useCurrentUser';
import {Task} from './Task';
import {Skeleton} from './Skeleton';
import styles from './styles.module.scss';
import cn from 'classnames';
type Props = {
onScrollUp: () => Promise<TaskType[]>;
onScrollDown: () => Promise<TaskType[]>;
tasks: TaskType[];
loading: boolean;
};
const AvailableTasks: React.FC<Props> = ({
loading,
onScrollDown,
onScrollUp,
tasks,
}) => {
const taskRef = useRef<HTMLDivElement | null>(null);
const scrollableListRef = useRef<HTMLDivElement | null>(null);
const {filter} = useTaskFilters();
const {data, isLoading: isLoadingUser} = useCurrentUser();
const isLoading = isLoadingUser || loading;
useEffect(() => {
scrollableListRef?.current?.scrollTo?.(0, 0);
}, [filter]);
const {t} = useTranslation();
return (
<div
className={cn(styles.container, {
[styles.containerPadding]: tasks.length === 0 && !isLoading,
})}
title={t('availableTasksTitle')}
>
{isLoading ? (
<Skeleton />
) : (
<>
{tasks.length > 0 && (
<div
className={styles.listContainer}
data-testid="scrollable-list"
ref={scrollableListRef}
onScroll={async (event) => {
const target = event.target as HTMLDivElement;
if (
Math.floor(
target.scrollHeight -
target.clientHeight -
target.scrollTop,
) <= 0
) {
await onScrollDown();
} else if (target.scrollTop === 0) {
const previousTasks = await onScrollUp();
target.scrollTop =
(taskRef?.current?.clientHeight ?? 0) *
previousTasks.length;
}
}}
tabIndex={-1}
>
{tasks.map((task, i) => {
return (
<Task
ref={taskRef}
key={task.id}
taskId={task.id}
name={task.name}
processName={task.processName}
context={task.context}
assignee={task.assignee}
creationDate={task.creationDate}
followUpDate={task.followUpDate}
dueDate={task.dueDate}
completionDate={task.completionDate}
currentUser={data!}
position={i}
/>
);
})}
</div>
)}
{tasks.length === 0 && (
<Stack
gap={5}
orientation="horizontal"
className={styles.emptyMessage}
>
<Search size={24} alt="" className={styles.emptyListIcon} />
<Stack gap={1} className={styles.emptyMessageText}>
<span className={styles.emptyMessageHeading}>
{t('availableTasksNoTasksFoundInfo')}
</span>
<span className={styles.emptyMessageBody}>
{t('availableTasksNoTasksMatchingCriteriaInfo')}
</span>
</Stack>
</Stack>
)}
</>
)}
</div>
);
};
export {AvailableTasks};
``` | /content/code_sandbox/tasklist/client/src/Tasks/AvailableTasks/index.tsx | xml | 2016-03-20T03:38:04 | 2024-08-16T19:59:58 | camunda | camunda/camunda | 3,172 | 772 |
```xml
<LinearLayout xmlns:android="path_to_url"
xmlns:tools="path_to_url"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
tools:layout_height="200dp"
tools:layout_width="100dp">
<ImageView
android:id="@+id/img_header"
android:layout_width="50dp"
android:layout_height="50dp"
android:scaleType="centerCrop"
android:foreground="@drawable/select_oval_dark_trans"
android:src="@drawable/shape_oval_dot" />
<TextView
android:id="@+id/text_name"
android:layout_width="78dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:ellipsize="end"
android:gravity="center"
android:maxLines="1"
android:textColor="#888"
android:textSize="12sp"
tools:text="" />
</LinearLayout>
``` | /content/code_sandbox/header_weixin/src/main/res/layout/weixin_header_item.xml | xml | 2016-03-28T09:07:07 | 2024-08-15T05:22:18 | SpringView | liaoinstan/SpringView | 1,935 | 222 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>ShareExtension</string>
<key>CFBundleExecutable</key>
<string>ShareExtensionTest</string>
<key>CFBundleIdentifier</key>
<string>com.xamarin.ShareExtensionTest</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>XPC!</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
<dict>
<key>NSExtensionActivationRule</key>
<string>TRUEPREDICATE</string>
</dict>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.share-services</string>
<key>NSExtensionPrincipalClass</key>
<string>ShareViewController</string>
</dict>
</dict>
</plist>
``` | /content/code_sandbox/tests/common/mac/Share/Info.plist | xml | 2016-04-20T18:24:26 | 2024-08-16T13:29:19 | xamarin-macios | xamarin/xamarin-macios | 2,436 | 371 |
```xml
/**
* Preview.tsx
*
* Service for registering live-preview providers
*/
import * as React from "react"
import * as Oni from "oni-api"
import { CallbackCommand, CommandManager } from "./../CommandManager"
import { Configuration } from "./../Configuration"
import { EditorManager } from "./../EditorManager"
import { PreviewBufferLayer } from "./PreviewBufferLayer"
export interface PreviewContext {
filePath: string
language: string
}
export interface IPreviewer {
render(previewContext: PreviewContext): JSX.Element
}
export interface IdToPreviewer {
[id: string]: IPreviewer
}
export interface LanguageToDefaultPreviewer {
[id: string]: IPreviewer
}
export class NoopPreviewer {
public render(previewContext: PreviewContext): JSX.Element {
return (
<div>
<div>no-op previewer for: {previewContext.filePath}</div>
<div>language: {previewContext.language}</div>
</div>
)
}
}
export class NullPreviewer {
public render(previewContext: PreviewContext): JSX.Element {
return <div>No previewer registered for this filetype</div>
}
}
export class Preview {
// private _previewers: IdToPreviewer = {}
private _defaultPreviewers: LanguageToDefaultPreviewer = {}
constructor(private _editorManager: EditorManager) {
this.registerDefaultPreviewer("html", new NoopPreviewer())
}
public async openPreviewPane(
openMode: Oni.FileOpenMode = Oni.FileOpenMode.VerticalSplit,
): Promise<void> {
const activeEditor: any = this._editorManager.activeEditor
const buf = await activeEditor.openFile("PREVIEW", { openMode })
buf.addLayer(new PreviewBufferLayer(this._editorManager, this))
}
public registerDefaultPreviewer(language: string, previewer: IPreviewer): void {
this._defaultPreviewers[language] = previewer
}
public getPreviewer(language: string): IPreviewer {
if (this._defaultPreviewers[language]) {
return this._defaultPreviewers[language]
} else {
return new NullPreviewer()
}
}
}
let _preview: Preview
export const activate = (
commandManager: CommandManager,
configuration: Configuration,
editorManager: EditorManager,
) => {
_preview = new Preview(editorManager)
if (configuration.getValue("experimental.preview.enabled")) {
commandManager.registerCommand(
new CallbackCommand(
"preview.open",
"Preview: Open in Vertical Split",
"Open preview pane in a vertical split",
() => _preview.openPreviewPane(Oni.FileOpenMode.VerticalSplit),
),
)
}
}
``` | /content/code_sandbox/browser/src/Services/Preview/index.tsx | xml | 2016-11-16T14:42:55 | 2024-08-14T11:48:05 | oni | onivim/oni | 11,355 | 590 |
```xml
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { TagModule } from 'primeng/tag';
import { AppCodeModule } from '@layout/doc/app.code.component';
import { LTSRoutingModule } from './lts-routing.module';
import { LTSComponent } from './lts.component';
@NgModule({
imports: [CommonModule, LTSRoutingModule, TagModule, AppCodeModule],
declarations: [LTSComponent]
})
export class LTSModule {}
``` | /content/code_sandbox/src/app/showcase/pages/lts/lts.module.ts | xml | 2016-01-16T09:23:28 | 2024-08-16T19:58:20 | primeng | primefaces/primeng | 9,969 | 100 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<project xmlns="path_to_url" xmlns:xsi="path_to_url" xsi:schemaLocation="path_to_url path_to_url">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-infra-algorithm-load-balancer</artifactId>
<version>5.5.1-SNAPSHOT</version>
</parent>
<artifactId>shardingsphere-infra-algorithm-load-balancer-core</artifactId>
<name>${project.artifactId}</name>
<dependencies>
<dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>shardingsphere-infra-algorithm-core</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>
``` | /content/code_sandbox/infra/algorithm/type/load-balancer/core/pom.xml | xml | 2016-01-18T12:49:26 | 2024-08-16T15:48:11 | shardingsphere | apache/shardingsphere | 19,707 | 276 |
```xml
import angular from 'angular';
import { react2angular } from '@/react-tools/react2angular';
import { BoxSelector } from '@@/BoxSelector';
import { BoxSelectorAngular } from './BoxSelectorAngular';
export { buildOption } from './utils';
const BoxSelectorReact = react2angular(BoxSelector, [
'isMulti',
'value',
'onChange',
'options',
'radioName',
'slim',
'hiddenSpacingCount',
]);
export const boxSelectorModule = angular
.module('app.portainer.component.box-selector', [])
.component('boxSelectorReact', BoxSelectorReact)
.component('boxSelector', BoxSelectorAngular).name;
``` | /content/code_sandbox/app/portainer/components/BoxSelector/index.ts | xml | 2016-05-19T20:15:28 | 2024-08-16T19:15:14 | portainer | portainer/portainer | 30,083 | 145 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<style xmlns="path_to_url" class="in-text" version="1.0" demote-non-dropping-particle="never" default-locale="en-GB">
<!-- This style was edited with the Visual CSL Editor (path_to_url -->
<info>
<title>Deep Review</title>
<id>path_to_url
<link href="path_to_url" rel="self"/>
<link href="path_to_url" rel="documentation"/>
<author>
<name>Josefa Bleu</name>
<email>josefa.bleu@gmail.com</email>
</author>
<contributor>
<name>Michael Berkowitz</name>
<email>mberkowi@gmu.edu</email>
</contributor>
<contributor>
<name>Sean Takats</name>
<email>stakats@gmu.edu</email>
</contributor>
<contributor>
<name>Sebastian Karcher</name>
</contributor>
<contributor>
<name>Michael Doube</name>
<email>mdoube@rvc.ac.uk</email>
</contributor>
<category citation-format="numeric"/>
<category field="biology"/>
<issn>0962-8452</issn>
<eissn>1471-2954</eissn>
<updated>2017-05-24T17:47:27+00:00</updated>
</info>
<locale>
<terms>
<term name="accessed">accessed on</term>
<term name="edition" form="short">edn</term>
</terms>
</locale>
<macro name="author">
<names variable="author" suffix=". ">
<name sort-separator=" " initialize-with="" name-as-sort-order="all" delimiter=", " delimiter-precedes-last="never" et-al-min="10" et-al-use-first="1"/>
<et-al font-style="italic"/>
<label form="long" prefix=", "/>
<substitute>
<names variable="editor"/>
</substitute>
</names>
</macro>
<macro name="editor">
<names variable="editor" prefix="(" suffix=")">
<label form="short" suffix=" " strip-periods="true"/>
<name sort-separator=" " initialize-with="" delimiter=", " delimiter-precedes-last="never"/>
</names>
</macro>
<macro name="publisher">
<group delimiter=": " suffix=". ">
<text variable="publisher-place"/>
<text variable="publisher"/>
</group>
</macro>
<macro name="journal-title">
<choose>
<if type="article-journal article-magazine" match="any">
<group suffix=" ">
<text variable="container-title" form="short" font-style="italic"/>
</group>
</if>
<else-if type="article-newspaper">
<group delimiter=", " suffix=". ">
<text variable="container-title" form="short" font-style="italic"/>
<date variable="issued">
<date-part name="day" suffix=" "/>
<date-part name="month"/>
</date>
</group>
</else-if>
<else>
<text variable="container-title" suffix=". " form="short" font-style="italic"/>
</else>
</choose>
</macro>
<macro name="title">
<group delimiter=" ">
<choose>
<if type="book">
<text variable="title" font-style="italic"/>
</if>
<else>
<text variable="title"/>
</else>
</choose>
</group>
</macro>
<macro name="edition">
<choose>
<if is-numeric="edition">
<group delimiter=" ">
<number variable="edition" form="ordinal"/>
<text term="edition" form="short" suffix="."/>
</group>
</if>
<else>
<text variable="edition" suffix="."/>
</else>
</choose>
</macro>
<macro name="issued">
<choose>
<if variable="issued">
<date variable="issued">
<date-part name="year" suffix=" "/>
</date>
</if>
<else>
<text term="in press" suffix=". " text-case="capitalize-first"/>
</else>
</choose>
</macro>
<macro name="access">
<choose>
<if variable="URL">
<group suffix=".">
<choose>
<if type="webpage">
<group prefix=" (" delimiter=" " suffix=")">
<text term="accessed"/>
<date variable="accessed">
<date-part name="day" suffix=" "/>
<date-part name="month" suffix=" "/>
<date-part name="year"/>
</date>
</group>
</if>
</choose>
<text variable="URL" prefix=" See "/>
</group>
</if>
</choose>
</macro>
<citation collapse="citation-number">
<sort>
<key variable="citation-number"/>
</sort>
<layout prefix="[" suffix="]" delimiter=",">
<text variable="citation-number"/>
</layout>
</citation>
<bibliography second-field-align="flush" et-al-min="11" et-al-use-first="10">
<layout>
<text variable="citation-number" suffix="."/>
<text macro="author"/>
<text macro="issued"/>
<text macro="title" suffix=". "/>
<choose>
<if type="book">
<text macro="edition" prefix=" " suffix=" "/>
<text macro="publisher"/>
</if>
<else-if type="chapter paper-conference" match="any">
<group prefix=" " delimiter=" " suffix=", ">
<text term="in" text-case="capitalize-first"/>
<text variable="container-title" font-style="italic"/>
<text macro="editor"/>
</group>
<group prefix=" " delimiter=" " suffix=".">
<label variable="page" form="short"/>
<text variable="page"/>
</group>
<text macro="publisher" prefix=" "/>
</else-if>
<else>
<text macro="journal-title"/>
<group suffix=". ">
<text variable="volume" font-weight="bold"/>
<text variable="page" prefix=", "/>
</group>
</else>
</choose>
<text macro="access"/>
</layout>
</bibliography>
</style>
``` | /content/code_sandbox/build/assets/deep-review.csl | xml | 2016-08-02T17:41:56 | 2024-07-22T20:42:19 | deep-review | greenelab/deep-review | 1,243 | 1,480 |
```xml
// app
import { ConsoleService } from './console.service';
import { LogService } from './logging/log.service';
import { RouterExtensions } from './router-extensions.service';
import { WindowService } from './window.service';
import { AppService } from './app.service';
import { StorageService } from './storage.service';
export const CORE_PROVIDERS: any[] = [
WindowService,
StorageService,
ConsoleService,
LogService,
AppService,
RouterExtensions,
];
export * from './console.service';
export * from './logging/index';
export * from './router-extensions.service';
export * from './window.service';
export * from './app.service';
export * from './storage.service';
``` | /content/code_sandbox/src/client/app/modules/core/services/index.ts | xml | 2016-01-27T07:12:46 | 2024-08-15T11:32:04 | angular-seed-advanced | NathanWalker/angular-seed-advanced | 2,261 | 146 |
```xml
import React from 'react';
import { View } from 'react-native';
type BoundsProps = {
children: React.ReactNode;
};
const Bounds = ({ children }: BoundsProps) => {
return (
<View
style={{
borderWidth: 0.5,
borderColor: 'red',
flex: 1,
}}
>
{children}
</View>
);
};
export default Bounds;
``` | /content/code_sandbox/playground/src/components/Bounds.tsx | xml | 2016-03-11T11:22:54 | 2024-08-15T09:05:44 | react-native-navigation | wix/react-native-navigation | 13,021 | 88 |
```xml
const defaultProps = {
placeholder: '',
size: 'md',
manageFocus: true,
space: 1,
};
const sizes = {
'2xl': {
fontSize: '2xl',
p: 3,
width: '56px',
height: '56px',
textAlign: 'center',
borderRadius: 'lg',
},
'xl': {
fontSize: 'xl',
p: 3,
width: '52px',
height: '52px',
textAlign: 'center',
borderRadius: 'lg',
},
'lg': {
fontSize: 'lg',
p: 2,
width: '48px',
height: '48px',
textAlign: 'center',
borderRadius: 'md',
},
'md': {
fontSize: 'md',
p: 2,
width: '40px',
height: '40px',
textAlign: 'center',
borderRadius: 'md',
},
'sm': {
fontSize: 'sm',
p: 1,
width: '30px',
height: '30px',
textAlign: 'center',
borderRadius: 'md',
},
'xs': {
fontSize: 'xs',
p: 1,
width: '24px',
height: '24px',
textAlign: 'center',
borderRadius: 'md',
},
};
export default {
sizes,
defaultProps,
};
``` | /content/code_sandbox/src/theme/components/pin-input.ts | xml | 2016-04-15T11:37:23 | 2024-08-14T16:16:44 | NativeBase | GeekyAnts/NativeBase | 20,132 | 315 |
```xml
export * from './ApplicationsDashboard';
export * from './NewApplicationForm';
export * from './types';
``` | /content/code_sandbox/packages/ra-no-code/src/ApplicationsDashboard/index.ts | xml | 2016-07-13T07:58:54 | 2024-08-16T18:32:27 | react-admin | marmelab/react-admin | 24,624 | 22 |
```xml
import { useEffect, useState } from 'react';
export type CopyTextType = string | (() => string);
export function useCopy(
copyText: CopyTextType,
fadeDelay = 1000,
context: HTMLElement = document.body
) {
const [copiedSuccessfully, setCopiedSuccessfully] = useState(false);
useEffect(() => {
const fadeoutTime = setTimeout(
() => setCopiedSuccessfully(false),
fadeDelay
);
// clear timeout when component unmounts
return () => {
clearTimeout(fadeoutTime);
};
}, [copiedSuccessfully, fadeDelay]);
function handleCopy() {
const text = typeof copyText === 'function' ? copyText() : copyText;
if (!text) {
return;
}
// path_to_url
// path_to_url
if (navigator.clipboard) {
navigator.clipboard.writeText(text);
} else {
// path_to_url
const inputEl = document.createElement('textarea');
inputEl.value = text;
context.appendChild(inputEl);
inputEl.select();
document.execCommand('copy');
inputEl.hidden = true;
context.removeChild(inputEl);
}
setCopiedSuccessfully(true);
}
return { handleCopy, copiedSuccessfully };
}
``` | /content/code_sandbox/app/react/components/buttons/CopyButton/useCopy.ts | xml | 2016-05-19T20:15:28 | 2024-08-16T19:15:14 | portainer | portainer/portainer | 30,083 | 275 |
```xml
import { EntityMetadata } from "../metadata/EntityMetadata"
import { MissingPrimaryColumnError } from "../error/MissingPrimaryColumnError"
import { CircularRelationsError } from "../error/CircularRelationsError"
import { DepGraph } from "../util/DepGraph"
import { Driver } from "../driver/Driver"
import { DataTypeNotSupportedError } from "../error/DataTypeNotSupportedError"
import { ColumnType } from "../driver/types/ColumnTypes"
import { NoConnectionOptionError } from "../error/NoConnectionOptionError"
import { InitializedRelationError } from "../error/InitializedRelationError"
import { TypeORMError } from "../error"
import { DriverUtils } from "../driver/DriverUtils"
/// todo: add check if there are multiple tables with the same name
/// todo: add checks when generated column / table names are too long for the specific driver
// todo: type in function validation, inverse side function validation
// todo: check on build for duplicate names, since naming checking was removed from MetadataStorage
// todo: duplicate name checking for: table, relation, column, index, naming strategy, join tables/columns?
// todo: check if multiple tree parent metadatas in validator
// todo: tree decorators can be used only on closure table (validation)
// todo: throw error if parent tree metadata was not specified in a closure table
// todo: MetadataArgsStorage: type in function validation, inverse side function validation
// todo: MetadataArgsStorage: check on build for duplicate names, since naming checking was removed from MetadataStorage
// todo: MetadataArgsStorage: duplicate name checking for: table, relation, column, index, naming strategy, join tables/columns?
// todo: MetadataArgsStorage: check for duplicate targets too since this check has been removed too
// todo: check if relation decorator contains primary: true and nullable: true
// todo: check column length, precision. scale
// todo: MySQL index can be unique or spatial or fulltext
/**
* Validates built entity metadatas.
*/
export class EntityMetadataValidator {
// your_sha256_hash---------
// Public Methods
// your_sha256_hash---------
/**
* Validates all given entity metadatas.
*/
validateMany(entityMetadatas: EntityMetadata[], driver: Driver) {
entityMetadatas.forEach((entityMetadata) =>
this.validate(entityMetadata, entityMetadatas, driver),
)
this.validateDependencies(entityMetadatas)
this.validateEagerRelations(entityMetadatas)
}
/**
* Validates given entity metadata.
*/
validate(
entityMetadata: EntityMetadata,
allEntityMetadatas: EntityMetadata[],
driver: Driver,
) {
// check if table metadata has an id
if (!entityMetadata.primaryColumns.length && !entityMetadata.isJunction)
throw new MissingPrimaryColumnError(entityMetadata)
// if entity has multiple primary keys and uses custom constraint name,
// then all primary keys should have the same constraint name
if (entityMetadata.primaryColumns.length > 1) {
const areConstraintNamesEqual = entityMetadata.primaryColumns.every(
(columnMetadata, i, columnMetadatas) =>
columnMetadata.primaryKeyConstraintName ===
columnMetadatas[0].primaryKeyConstraintName,
)
if (!areConstraintNamesEqual) {
throw new TypeORMError(
`Entity ${entityMetadata.name} has multiple primary columns with different constraint names. Constraint names should be the equal.`,
)
}
}
// validate if table is using inheritance it has a discriminator
// also validate if discriminator values are not empty and not repeated
if (
entityMetadata.inheritancePattern === "STI" ||
entityMetadata.tableType === "entity-child"
) {
if (!entityMetadata.discriminatorColumn)
throw new TypeORMError(
`Entity ${entityMetadata.name} using single-table inheritance, it should also have a discriminator column. Did you forget to put discriminator column options?`,
)
if (typeof entityMetadata.discriminatorValue === "undefined")
throw new TypeORMError(
`Entity ${entityMetadata.name} has an undefined discriminator value. Discriminator value should be defined.`,
)
const sameDiscriminatorValueEntityMetadata =
allEntityMetadatas.find((metadata) => {
return (
metadata !== entityMetadata &&
(metadata.inheritancePattern === "STI" ||
metadata.tableType === "entity-child") &&
metadata.tableName === entityMetadata.tableName &&
metadata.discriminatorValue ===
entityMetadata.discriminatorValue &&
metadata.inheritanceTree.some(
(parent) =>
entityMetadata.inheritanceTree.indexOf(
parent,
) !== -1,
)
)
})
if (sameDiscriminatorValueEntityMetadata)
throw new TypeORMError(
`Entities ${entityMetadata.name} and ${sameDiscriminatorValueEntityMetadata.name} have the same discriminator values. Make sure they are different while using the @ChildEntity decorator.`,
)
}
entityMetadata.relationCounts.forEach((relationCount) => {
if (
relationCount.relation.isManyToOne ||
relationCount.relation.isOneToOne
)
throw new TypeORMError(
`Relation count can not be implemented on ManyToOne or OneToOne relations.`,
)
})
if (!(driver.options.type === "mongodb")) {
entityMetadata.columns
.filter((column) => !column.isVirtualProperty)
.forEach((column) => {
const normalizedColumn = driver.normalizeType(
column,
) as ColumnType
if (
driver.supportedDataTypes.indexOf(normalizedColumn) ===
-1
)
throw new DataTypeNotSupportedError(
column,
normalizedColumn,
driver.options.type,
)
if (
column.length &&
driver.withLengthColumnTypes.indexOf(
normalizedColumn,
) === -1
)
throw new TypeORMError(
`Column ${column.propertyName} of Entity ${entityMetadata.name} does not support length property.`,
)
if (
column.type === "enum" &&
!column.enum &&
!column.enumName
)
throw new TypeORMError(
`Column "${column.propertyName}" of Entity "${entityMetadata.name}" is defined as enum, but missing "enum" or "enumName" properties.`,
)
})
}
if (
DriverUtils.isMySQLFamily(driver) ||
driver.options.type === "aurora-mysql"
) {
const generatedColumns = entityMetadata.columns.filter(
(column) =>
column.isGenerated && column.generationStrategy !== "uuid",
)
if (generatedColumns.length > 1)
throw new TypeORMError(
`Error in ${entityMetadata.name} entity. There can be only one auto-increment column in MySql table.`,
)
}
// for mysql we are able to not define a default selected database, instead all entities can have their database
// defined in their decorators. To make everything work either all entities must have database define and we
// can live without database set in the connection options, either database in the connection options must be set
if (DriverUtils.isMySQLFamily(driver)) {
const metadatasWithDatabase = allEntityMetadatas.filter(
(metadata) => metadata.database,
)
if (metadatasWithDatabase.length === 0 && !driver.database)
throw new NoConnectionOptionError("database")
}
if (driver.options.type === "mssql") {
const charsetColumns = entityMetadata.columns.filter(
(column) => column.charset,
)
if (charsetColumns.length > 1)
throw new TypeORMError(
`Character set specifying is not supported in Sql Server`,
)
}
// Postgres supports only STORED generated columns.
if (driver.options.type === "postgres") {
const virtualColumn = entityMetadata.columns.find(
(column) =>
column.asExpression &&
(!column.generatedType ||
column.generatedType === "VIRTUAL"),
)
if (virtualColumn)
throw new TypeORMError(
`Column "${virtualColumn.propertyName}" of Entity "${entityMetadata.name}" is defined as VIRTUAL, but Postgres supports only STORED generated columns.`,
)
}
// check if relations are all without initialized properties
const entityInstance = entityMetadata.create(undefined, {
fromDeserializer: true,
})
entityMetadata.relations.forEach((relation) => {
if (relation.isManyToMany || relation.isOneToMany) {
// we skip relations for which persistence is disabled since initialization in them cannot harm somehow
if (relation.persistenceEnabled === false) return
// get entity relation value and check if its an array
const relationInitializedValue =
relation.getEntityValue(entityInstance)
if (Array.isArray(relationInitializedValue))
throw new InitializedRelationError(relation)
}
})
// validate relations
entityMetadata.relations.forEach((relation) => {
// check OnDeleteTypes
if (
driver.supportedOnDeleteTypes &&
relation.onDelete &&
!driver.supportedOnDeleteTypes.includes(relation.onDelete)
) {
throw new TypeORMError(
`OnDeleteType "${relation.onDelete}" is not supported for ${driver.options.type}!`,
)
}
// check OnUpdateTypes
if (
driver.supportedOnUpdateTypes &&
relation.onUpdate &&
!driver.supportedOnUpdateTypes.includes(relation.onUpdate)
) {
throw new TypeORMError(
`OnUpdateType "${relation.onUpdate}" is not valid for ${driver.options.type}!`,
)
}
// check join tables:
// using JoinTable is possible only on one side of the many-to-many relation
// todo(dima): fix
// if (relation.joinTable) {
// if (!relation.isManyToMany)
// throw new UsingJoinTableIsNotAllowedError(entityMetadata, relation);
// // if there is inverse side of the relation, then check if it does not have join table too
// if (relation.hasInverseSide && relation.inverseRelation.joinTable)
// throw new UsingJoinTableOnlyOnOneSideAllowedError(entityMetadata, relation);
// }
// check join columns:
// using JoinColumn is possible only on one side of the relation and on one-to-one, many-to-one relation types
// first check if relation is one-to-one or many-to-one
// todo(dima): fix
/*if (relation.joinColumn) {
// join column can be applied only on one-to-one and many-to-one relations
if (!relation.isOneToOne && !relation.isManyToOne)
throw new UsingJoinColumnIsNotAllowedError(entityMetadata, relation);
// if there is inverse side of the relation, then check if it does not have join table too
if (relation.hasInverseSide && relation.inverseRelation.joinColumn && relation.isOneToOne)
throw new UsingJoinColumnOnlyOnOneSideAllowedError(entityMetadata, relation);
// check if join column really has referenced column
if (relation.joinColumn && !relation.joinColumn.referencedColumn)
throw new TypeORMError(`Join column does not have referenced column set`);
}
// if its a one-to-one relation and JoinColumn is missing on both sides of the relation
// or its one-side relation without JoinColumn we should give an error
if (!relation.joinColumn && relation.isOneToOne && (!relation.hasInverseSide || !relation.inverseRelation.joinColumn))
throw new MissingJoinColumnError(entityMetadata, relation);*/
// if its a many-to-many relation and JoinTable is missing on both sides of the relation
// or its one-side relation without JoinTable we should give an error
// todo(dima): fix it
// if (!relation.joinTable && relation.isManyToMany && (!relation.hasInverseSide || !relation.inverseRelation.joinTable))
// throw new MissingJoinTableError(entityMetadata, relation);
// todo: validate if its one-to-one and side which does not have join column MUST have inverse side
// todo: validate if its many-to-many and side which does not have join table MUST have inverse side
// todo: if there is a relation, and inverse side is specified only on one side, shall we give error
// todo: with message like: "Inverse side is specified only on one side of the relationship. Specify on other side too to prevent confusion".
// todo: add validation if there two entities with the same target, and show error message with description of the problem (maybe file was renamed/moved but left in output directory)
// todo: check if there are multiple columns on the same column applied.
// todo: check column type if is missing in relational databases (throw new TypeORMError(`Column type of ${type} cannot be determined.`);)
// todo: include driver-specific checks. for example in mongodb empty prefixes are not allowed
// todo: if multiple columns with same name - throw exception, including cases when columns are in embeds with same prefixes or without prefix at all
// todo: if multiple primary key used, at least one of them must be unique or @Index decorator must be set on entity
// todo: check if entity with duplicate names, some decorators exist
})
// make sure cascade remove is not set for both sides of relationships (can be set in OneToOne decorators)
entityMetadata.relations.forEach((relation) => {
const isCircularCascadeRemove =
relation.isCascadeRemove &&
relation.inverseRelation &&
relation.inverseRelation!.isCascadeRemove
if (isCircularCascadeRemove)
throw new TypeORMError(
`Relation ${entityMetadata.name}#${
relation.propertyName
} and ${relation.inverseRelation!.entityMetadata.name}#${
relation.inverseRelation!.propertyName
} both has cascade remove set. ` +
`This may lead to unexpected circular removals. Please set cascade remove only from one side of relationship.`,
)
}) // todo: maybe better just deny removal from one to one relation without join column?
entityMetadata.eagerRelations.forEach((relation) => {})
}
/**
* Validates dependencies of the entity metadatas.
*/
protected validateDependencies(entityMetadatas: EntityMetadata[]) {
const graph = new DepGraph()
entityMetadatas.forEach((entityMetadata) => {
graph.addNode(entityMetadata.name)
})
entityMetadatas.forEach((entityMetadata) => {
entityMetadata.relationsWithJoinColumns
.filter((relation) => !relation.isNullable)
.forEach((relation) => {
graph.addDependency(
entityMetadata.name,
relation.inverseEntityMetadata.name,
)
})
})
try {
graph.overallOrder()
} catch (err) {
throw new CircularRelationsError(
err.toString().replace("Error: Dependency Cycle Found: ", ""),
)
}
}
/**
* Validates eager relations to prevent circular dependency in them.
*/
protected validateEagerRelations(entityMetadatas: EntityMetadata[]) {
entityMetadatas.forEach((entityMetadata) => {
entityMetadata.eagerRelations.forEach((relation) => {
if (
relation.inverseRelation &&
relation.inverseRelation.isEager
)
throw new TypeORMError(
`Circular eager relations are disallowed. ` +
`${entityMetadata.targetName}#${relation.propertyPath} contains "eager: true", and its inverse side ` +
`${relation.inverseEntityMetadata.targetName}#${relation.inverseRelation.propertyPath} contains "eager: true" as well.` +
` Remove "eager: true" from one side of the relation.`,
)
})
})
}
}
``` | /content/code_sandbox/src/metadata-builder/EntityMetadataValidator.ts | xml | 2016-02-29T07:41:14 | 2024-08-16T18:28:52 | typeorm | typeorm/typeorm | 33,875 | 3,327 |
```xml
import { Accessibility } from '../../types';
import { AlertBehaviorProps } from './alertBehavior';
/**
* @specification
* Adds role 'alert' to 'body' slot.
* Adds attribute 'aria-live=polite' to 'body' slot.
*/
export const alertWarningBehavior: Accessibility<AlertBehaviorProps> = props => ({
attributes: {
body: {
role: 'alert',
'aria-live': 'polite',
},
dismissAction: {
'aria-describedby': props.bodyId,
},
},
});
``` | /content/code_sandbox/packages/fluentui/accessibility/src/behaviors/Alert/alertWarningBehavior.ts | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 115 |
```xml
import { G2Spec } from '../../../src';
export function alphabetIntervalMinHeight(): G2Spec {
return {
type: 'interval',
data: [
{ genre: 'Sports', sold: 0 },
{ genre: 'Strategy', sold: 115 },
{ genre: 'Action', sold: 120 },
{ genre: 'Shooter', sold: 350 },
{ genre: 'Other', sold: 150 },
],
encode: {
x: 'genre',
y: 'sold',
color: 'genre',
},
axis: {
x: { animate: false },
y: { animate: false },
},
style: {
draggable: true,
droppable: true,
minHeight: 50,
},
};
}
``` | /content/code_sandbox/__tests__/plots/static/alphanbet-interval-min-height.ts | xml | 2016-05-26T09:21:04 | 2024-08-15T16:11:17 | G2 | antvis/G2 | 12,060 | 171 |
```xml
import { createNext } from 'e2e-utils'
import { NextInstance } from 'e2e-utils'
import { renderViaHTTP } from 'next-test-utils'
describe('promise export', () => {
let next: NextInstance
beforeAll(async () => {
next = await createNext({
files: {
'pages/index.js': `
export default function Page() {
return <p>hello world</p>
}
`,
'next.config.js': `
module.exports = new Promise((resolve) => {
resolve({
basePath: '/docs'
})
})
`,
},
dependencies: {},
})
})
afterAll(() => next.destroy())
it('should work', async () => {
const html = await renderViaHTTP(next.url, '/docs')
expect(html).toContain('hello world')
})
})
``` | /content/code_sandbox/test/e2e/config-promise-export/promise.test.ts | xml | 2016-10-05T23:32:51 | 2024-08-16T19:44:30 | next.js | vercel/next.js | 124,056 | 187 |
```xml
<!--
~
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~
-->
<window xmlns="path_to_url"
class="com.haulmont.cuba.gui.app.core.file.FileUploadDialog"
messagesPack="com.haulmont.cuba.gui.app.core.file"
caption="msg://fileUploadDialog.caption"
focusComponent="fileUpload">
<dialogMode width="400px"/>
<layout spacing="true">
<hbox id="dropZone" width="100%" height="150px" stylename="dropzone-container">
<label stylename="dropzone-description" value="msg://uploadDescription" align="MIDDLE_CENTER"/>
</hbox>
<upload id="fileUpload" dropZone="dropZone" align="MIDDLE_CENTER"/>
</layout>
</window>
``` | /content/code_sandbox/modules/gui/src/com/haulmont/cuba/gui/app/core/file/file-upload-dialog.xml | xml | 2016-03-24T07:55:56 | 2024-07-14T05:13:48 | cuba | cuba-platform/cuba | 1,342 | 206 |
```xml
import type { ResumeBadgeProps } from '../resume-badge';
export default function ResumeBadgeRocketIcon({ className }: ResumeBadgeProps) {
return (
<svg
aria-hidden="true"
className={className}
viewBox="0 0 496.158 496.158"
x="36px"
xmlns="path_to_url"
y="36px">
<path
d="M248.082,0.003C111.07,0.003,0,111.063,0,248.085c0,137.001,111.07,248.07,248.082,248.07 c137.006,0,248.076-111.069,248.076-248.07C496.158,111.062,385.088,0.003,248.082,0.003z"
fill="#334D5C"
/>
<g>
<polygon
fill="#DBBB00"
points="130.14,198.865 112.329,198.237 106.733,181.859 101.138,198.237 83.327,198.865 97.68,208.88 92.267,226.381 106.733,215.458 121.199,226.381 115.787,208.88 "
/>
<polygon
fill="#DBBB00"
points="112.416,202.889 115.484,191.248 105.788,198.382 95.265,191.881 99.455,203.294 89.618,211.306 102.168,210.835 106.348,222.679 110.18,210.584 122.334,210.282 "
/>
<polygon
fill="#DBBB00"
points="357.01,69.501 339.199,68.873 333.603,52.496 328.008,68.873 310.197,69.501 324.55,79.516 319.138,97.017 333.603,86.094 348.069,97.017 342.657,79.516 "
/>
<polygon
fill="#DBBB00"
points="339.286,73.525 342.354,61.884 332.658,69.018 322.135,62.517 326.325,73.93 316.488,81.942 329.038,81.472 333.218,93.315 337.05,81.221 349.204,80.918 "
/>
<polygon
fill="#DBBB00"
points="429.005,224.008 411.194,223.38 405.599,207.003 400.003,223.38 382.192,224.008 396.545,234.023 391.133,251.524 405.599,240.601 420.064,251.524 414.652,234.023 "
/>
<polygon
fill="#DBBB00"
points="411.281,228.032 414.35,216.392 404.653,223.526 394.13,217.024 398.32,228.437 388.483,236.449 401.033,235.979 405.213,247.822 409.045,235.728 421.199,235.426 "
/>
</g>
<path
d="M383.34,314.795c-5.941-14.345-21.202-36.571-46.212-55.931 c-19.131-14.808-50.218-32.46-89.678-32.46c-39.018,0-69.746,16.634-88.654,30.588c-25.352,18.71-40.673,40.56-46.559,54.769 c-4.417,10.663-4.502,18.883-0.239,23.145c3.465,3.465,7.585,5.079,12.965,5.079c6.495,0,14.247-2.294,24.975-5.469 c20.098-5.947,50.469-14.936,97.513-14.936c48.545,0,80.322,8.617,101.35,14.318c10.673,2.894,18.384,4.985,24.472,4.986h0.003 c4.713,0,8.172-1.264,10.886-3.979C387.635,331.431,387.35,324.477,383.34,314.795z"
fill="#EA6307"
/>
<path
d="M286.255,121.222c-14.873-40.687-31.176-66.481-38.176-66.481c-6.988,0-23.253,25.596-38.118,66.13 c-15.702,42.815-29.844,102.297-29.844,165.89c0,40.446,6.193,56.536,6.193,56.536s25.869,13.801,62.818,13.801 s60.716-13.801,60.716-13.801s6.101-16.404,6.101-57.03C315.945,223.234,301.891,163.997,286.255,121.222z"
fill="#DFEADC"
/>
<path
d="M248.166,54.741c-8.74,0-24.42,24.539-38.204,66.13c10.715,2.375,24.12,4.325,39.314,4.325 c14.394,0,26.884-1.749,36.92-3.953C272.454,79.654,256.87,54.741,248.166,54.741z"
fill="#CE5800"
/>
<path
d="M248.165,54.741c-8.343,0-23.005,22.365-36.309,60.561c10.384,2.186,23.106,3.916,37.418,3.916 c13.501,0,25.329-1.54,35.026-3.549C271.044,77.446,256.471,54.741,248.165,54.741z"
fill="#EA6307"
/>
<circle cx="248.079" cy="183.889" fill="#DBBB00" r="30.677" />
<circle cx="248.079" cy="183.889" fill="#FFDB29" r="25.486" />
<path
d="M262.936,167.597c-8.602-8.601-22.547-8.602-31.148,0s-8.602,22.547,0,31.149 S271.538,176.199,262.936,167.597z"
fill="#FFE36E"
/>
<path
d="M249.007,368.151c-16.392,0.012-32.76,0.337-32.76,8.403c0,16.16,32.564,81.608,32.564,81.608 s33.101-65.882,33.101-81.608C281.912,368.464,265.447,368.139,249.007,368.151z"
fill="#E17A2D"
/>
<path
d="M249.079,371.948c-11.66,0-23.32-0.845-23.32,4.894c0,11.479,23.131,57.964,23.131,57.964 s23.51-46.794,23.51-57.964C272.399,371.103,260.739,371.948,249.079,371.948z"
fill="#F4E028"
/>
<path
d="M249.079,376.829c-7.005,0-14.011-1.99-14.011,1.458c0,6.896,13.897,34.824,13.897,34.824 s14.124-28.113,14.124-34.824C263.09,374.839,256.084,376.829,249.079,376.829z"
fill="#FFFFFF"
/>
</svg>
);
}
``` | /content/code_sandbox/apps/portal/src/components/resumes/badgeIcons/popularResumes/ResumeBadgeRocketIcon.tsx | xml | 2016-07-05T05:00:48 | 2024-08-16T19:01:19 | tech-interview-handbook | yangshun/tech-interview-handbook | 115,302 | 2,029 |
```xml
<dict>
<key>CommonPeripheralDSP</key>
<array>
<dict>
<key>DeviceID</key>
<integer>0</integer>
<key>DeviceType</key>
<string>Headphone</string>
</dict>
</array>
<key>PathMaps</key>
<array>
<dict>
<key>PathMap</key>
<array>
<array>
<array>
<array>
<dict>
<key>Amp</key>
<dict>
<key>Channels</key>
<array>
<dict>
<key>Bind</key>
<integer>1</integer>
<key>Channel</key>
<integer>1</integer>
</dict>
<dict>
<key>Bind</key>
<integer>2</integer>
<key>Channel</key>
<integer>2</integer>
</dict>
</array>
<key>MuteInputAmp</key>
<true/>
<key>PublishMute</key>
<true/>
<key>PublishVolume</key>
<true/>
<key>VolumeInputAmp</key>
<true/>
</dict>
<key>NodeID</key>
<integer>9</integer>
</dict>
<dict>
<key>NodeID</key>
<integer>34</integer>
</dict>
<dict>
<key>NodeID</key>
<integer>26</integer>
</dict>
</array>
</array>
</array>
<array>
<array>
<array>
<dict>
<key>Amp</key>
<dict>
<key>Channels</key>
<array>
<dict>
<key>Bind</key>
<integer>1</integer>
<key>Channel</key>
<integer>1</integer>
</dict>
<dict>
<key>Bind</key>
<integer>2</integer>
<key>Channel</key>
<integer>2</integer>
</dict>
</array>
<key>MuteInputAmp</key>
<true/>
<key>PublishMute</key>
<true/>
<key>PublishVolume</key>
<true/>
<key>VolumeInputAmp</key>
<true/>
</dict>
<key>NodeID</key>
<integer>8</integer>
</dict>
<dict>
<key>NodeID</key>
<integer>35</integer>
</dict>
<dict>
<key>NodeID</key>
<integer>27</integer>
</dict>
</array>
</array>
</array>
<array>
<array>
<array>
<dict>
<key>NodeID</key>
<integer>23</integer>
</dict>
<dict>
<key>Amp</key>
<dict>
<key>MuteInputAmp</key>
<true/>
<key>PublishMute</key>
<true/>
<key>PublishVolume</key>
<true/>
<key>VolumeInputAmp</key>
<false/>
</dict>
<key>NodeID</key>
<integer>15</integer>
</dict>
<dict>
<key>Amp</key>
<dict>
<key>Channels</key>
<array>
<dict>
<key>Bind</key>
<integer>1</integer>
<key>Channel</key>
<integer>1</integer>
</dict>
<dict>
<key>Bind</key>
<integer>2</integer>
<key>Channel</key>
<integer>2</integer>
</dict>
</array>
<key>MuteInputAmp</key>
<true/>
<key>PublishMute</key>
<true/>
<key>PublishVolume</key>
<true/>
<key>VolumeInputAmp</key>
<false/>
</dict>
<key>NodeID</key>
<integer>2</integer>
</dict>
</array>
</array>
<array>
<array>
<dict>
<key>NodeID</key>
<integer>33</integer>
</dict>
<dict>
<key>Amp</key>
<dict>
<key>MuteInputAmp</key>
<true/>
<key>PublishMute</key>
<true/>
<key>PublishVolume</key>
<true/>
<key>VolumeInputAmp</key>
<false/>
</dict>
<key>NodeID</key>
<integer>12</integer>
</dict>
<dict>
<key>Amp</key>
<dict>
<key>Channels</key>
<array>
<dict>
<key>Bind</key>
<integer>1</integer>
<key>Channel</key>
<integer>1</integer>
</dict>
<dict>
<key>Bind</key>
<integer>2</integer>
<key>Channel</key>
<integer>2</integer>
</dict>
</array>
<key>MuteInputAmp</key>
<true/>
<key>PublishMute</key>
<true/>
<key>PublishVolume</key>
<true/>
<key>VolumeInputAmp</key>
<false/>
</dict>
<key>NodeID</key>
<integer>2</integer>
</dict>
</array>
</array>
</array>
<array>
<array>
<array>
<dict>
<key>NodeID</key>
<integer>20</integer>
</dict>
<dict>
<key>Amp</key>
<dict>
<key>MuteInputAmp</key>
<true/>
<key>PublishMute</key>
<true/>
<key>PublishVolume</key>
<true/>
<key>VolumeInputAmp</key>
<false/>
</dict>
<key>NodeID</key>
<integer>13</integer>
</dict>
<dict>
<key>Amp</key>
<dict>
<key>Channels</key>
<array>
<dict>
<key>Bind</key>
<integer>1</integer>
<key>Channel</key>
<integer>1</integer>
</dict>
<dict>
<key>Bind</key>
<integer>2</integer>
<key>Channel</key>
<integer>2</integer>
</dict>
</array>
<key>MuteInputAmp</key>
<true/>
<key>PublishMute</key>
<true/>
<key>PublishVolume</key>
<true/>
<key>VolumeInputAmp</key>
<false/>
</dict>
<key>NodeID</key>
<integer>3</integer>
</dict>
</array>
</array>
</array>
</array>
<key>PathMapID</key>
<integer>11</integer>
</dict>
</array>
</dict>
``` | /content/code_sandbox/Resources/ALC221/Platforms11.xml | xml | 2016-03-07T20:45:58 | 2024-08-14T08:57:03 | AppleALC | acidanthera/AppleALC | 3,420 | 1,942 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="path_to_url">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug_BundledPCRE|Win32">
<Configuration>Debug_BundledPCRE</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug_BundledPCRE|x64">
<Configuration>Debug_BundledPCRE</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release_BundledPCRE|Win32">
<Configuration>Release_BundledPCRE</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release_BundledPCRE|x64">
<Configuration>Release_BundledPCRE</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{12BCA020-EABF-429E-876A-A476BC9C10C0}</ProjectGuid>
<RootNamespace>glib</RootNamespace>
<Keyword>Win32Proj</Keyword>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'" Label="Configuration">
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v110</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="glib-gen-srcs.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="glib-gen-srcs.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="glib-gen-srcs.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="glib-gen-srcs.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="glib-gen-srcs.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="glib-gen-srcs.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="glib-gen-srcs.props" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="glib-gen-srcs.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">true</LinkIncremental>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">Debug\$(Platform)\bin\</OutDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">true</LinkIncremental>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">Debug\$(Platform)\bin\</OutDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</LinkIncremental>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">false</LinkIncremental>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">Release\$(Platform)\bin\</OutDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">false</LinkIncremental>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">false</LinkIncremental>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">Release\$(Platform)\bin\</OutDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;$(GLibBuildDefines);G_ENABLE_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<CompileAs>CompileAsC</CompileAs>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb</ProgramDatabaseFile>
<ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
<SubSystem>Windows</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX86</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;$(GLibBuildDefines);G_ENABLE_DEBUG;$(UseSystemPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<CompileAs>CompileAsC</CompileAs>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;winmm.lib;pcred.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb</ProgramDatabaseFile>
<ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
<SubSystem>Windows</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX86</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;$(GLibBuildDefines);G_ENABLE_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CompileAs>CompileAsC</CompileAs>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb</ProgramDatabaseFile>
<ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
<SubSystem>Windows</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX64</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;$(GLibBuildDefines);G_ENABLE_DEBUG;$(UseSystemPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CompileAs>CompileAsC</CompileAs>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;winmm.lib;pcred.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb</ProgramDatabaseFile>
<ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
<SubSystem>Windows</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX64</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">
<ClCompile>
<PreprocessorDefinitions>$(GLibBuildDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CompileAs>CompileAsC</CompileAs>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb</ProgramDatabaseFile>
<ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
<SubSystem>Windows</SubSystem>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX86</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<PreprocessorDefinitions>$(GLibBuildDefines);$(UseSystemPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CompileAs>CompileAsC</CompileAs>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;winmm.lib;pcre.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb</ProgramDatabaseFile>
<ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
<SubSystem>Windows</SubSystem>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX86</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">
<ClCompile>
<PreprocessorDefinitions>$(GLibBuildDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CompileAs>CompileAsC</CompileAs>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;winmm.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb</ProgramDatabaseFile>
<ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
<SubSystem>Windows</SubSystem>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX64</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<PreprocessorDefinitions>$(GLibBuildDefines);$(UseSystemPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CompileAs>CompileAsC</CompileAs>
</ClCompile>
<Link>
<AdditionalDependencies>ws2_32.lib;winmm.lib;pcre.lib;%(AdditionalDependencies)</AdditionalDependencies>
<OutputFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).dll</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)$(GlibDllPrefix)$(ProjectName)$(GlibDllSuffix).pdb</ProgramDatabaseFile>
<ImportLibrary>$(TargetDir)$(ProjectName)-$(ApiVersion).lib</ImportLibrary>
<SubSystem>Windows</SubSystem>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX64</TargetMachine>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\..\glib\deprecated\gallocator.c" />
<ClCompile Include="..\..\..\glib\deprecated\gcache.c" />
<ClCompile Include="..\..\..\glib\deprecated\gcompletion.c" />
<ClCompile Include="..\..\..\glib\deprecated\grel.c" />
<ClCompile Include="..\..\..\glib\deprecated\gthread-deprecated.c" />
<ClCompile Include="..\..\..\glib\garray.c" />
<ClCompile Include="..\..\..\glib\gasyncqueue.c" />
<ClCompile Include="..\..\..\glib\gatomic.c" />
<ClCompile Include="..\..\..\glib\gbacktrace.c" />
<ClCompile Include="..\..\..\glib\gbase64.c" />
<ClCompile Include="..\..\..\glib\gbitlock.c" />
<ClCompile Include="..\..\..\glib\gbookmarkfile.c" />
<ClCompile Include="..\..\..\glib\gbytes.c" />
<ClCompile Include="..\..\..\glib\gcharset.c" />
<ClCompile Include="..\..\..\glib\gchecksum.c" />
<ClCompile Include="..\..\..\glib\gconvert.c" />
<ClCompile Include="..\..\..\glib\gdataset.c" />
<ClCompile Include="..\..\..\glib\gdate.c" />
<ClCompile Include="..\..\..\glib\gdatetime.c" />
<ClCompile Include="..\..\..\glib\gdir.c" />
<ClCompile Include="..\..\..\glib\genviron.c" />
<ClCompile Include="..\..\..\glib\gerror.c" />
<ClCompile Include="..\..\..\glib\gfileutils.c" />
<ClCompile Include="..\..\..\glib\ggettext.c" />
<ClCompile Include="..\..\..\glib\ghash.c" />
<ClCompile Include="..\..\..\glib\ghmac.c" />
<ClCompile Include="..\..\..\glib\ghook.c" />
<ClCompile Include="..\..\..\glib\ghostutils.c" />
<ClCompile Include="..\..\..\glib\giochannel.c" />
<ClCompile Include="..\..\..\glib\gkeyfile.c" />
<ClCompile Include="..\..\..\glib\glib-init.c" />
<ClCompile Include="..\..\..\glib\glib-private.c" />
<ClCompile Include="..\..\..\glib\glist.c" />
<ClCompile Include="..\..\..\glib\gmain.c" />
<ClCompile Include="..\..\..\glib\gmappedfile.c" />
<ClCompile Include="..\..\..\glib\gmarkup.c" />
<ClCompile Include="..\..\..\glib\gmem.c" />
<ClCompile Include="..\..\..\glib\gmessages.c" />
<ClCompile Include="..\..\..\glib\gnode.c" />
<ClCompile Include="..\..\..\glib\goption.c" />
<ClCompile Include="..\..\..\glib\gpattern.c" />
<ClCompile Include="..\..\..\glib\gpoll.c" />
<ClCompile Include="..\..\..\glib\gprimes.c" />
<ClCompile Include="..\..\..\glib\gqsort.c" />
<ClCompile Include="..\..\..\glib\gquark.c" />
<ClCompile Include="..\..\..\glib\gqueue.c" />
<ClCompile Include="..\..\..\glib\grand.c" />
<ClCompile Include="..\..\..\glib\gregex.c" />
<ClCompile Include="..\..\..\glib\gscanner.c" />
<ClCompile Include="..\..\..\glib\gsequence.c" />
<ClCompile Include="..\..\..\glib\gshell.c" />
<ClCompile Include="..\..\..\glib\gslice.c" />
<ClCompile Include="..\..\..\glib\gslist.c" />
<ClCompile Include="..\..\..\glib\gstdio.c" />
<ClCompile Include="..\..\..\glib\gstrfuncs.c" />
<ClCompile Include="..\..\..\glib\gstring.c" />
<ClCompile Include="..\..\..\glib\gstringchunk.c" />
<ClCompile Include="..\..\..\glib\gtestutils.c" />
<ClCompile Include="..\..\..\glib\gthread.c" />
<ClCompile Include="..\..\..\glib\gthreadpool.c" />
<ClCompile Include="..\..\..\glib\gtimer.c" />
<ClCompile Include="..\..\..\glib\gtimezone.c" />
<ClCompile Include="..\..\..\glib\gtranslit.c" />
<ClCompile Include="..\..\..\glib\gtrashstack.c" />
<ClCompile Include="..\..\..\glib\gtree.c" />
<ClCompile Include="..\..\..\glib\guniprop.c" />
<ClCompile Include="..\..\..\glib\gutf8.c" />
<ClCompile Include="..\..\..\glib\gunibreak.c" />
<ClCompile Include="..\..\..\glib\gunicollate.c" />
<ClCompile Include="..\..\..\glib\gunidecomp.c" />
<ClCompile Include="..\..\..\glib\gurifuncs.c" />
<ClCompile Include="..\..\..\glib\gutils.c" />
<ClCompile Include="..\..\..\glib\gvariant.c" />
<ClCompile Include="..\..\..\glib\gvariant-core.c" />
<ClCompile Include="..\..\..\glib\gvariant-parser.c" />
<ClCompile Include="..\..\..\glib\gvariant-serialiser.c" />
<ClCompile Include="..\..\..\glib\gvarianttypeinfo.c" />
<ClCompile Include="..\..\..\glib\gvarianttype.c" />
<ClCompile Include="..\..\..\glib\gversion.c" />
<ClCompile Include="..\..\..\glib\gwakeup.c" />
<ClCompile Include="..\..\..\glib\gprintf.c" />
<ClCompile Include="..\..\..\glib\giowin32.c" />
<ClCompile Include="..\..\..\glib\gspawn-win32.c" />
<ClCompile Include="..\..\..\glib\gthread-win32.c" />
<ClCompile Include="..\..\..\glib\gwin32.c" />
<ClCompile Include="..\..\..\glib\libcharset\localcharset.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(LocalCharsetDefs);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(LocalCharsetDefs);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(LocalCharsetDefs);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(LocalCharsetDefs);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(LocalCharsetDefs);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(LocalCharsetDefs);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(LocalCharsetDefs);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(LocalCharsetDefs);%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<ClCompile Include="..\..\..\glib\gnulib\asnprintf.c" />
<ClCompile Include="..\..\..\glib\gnulib\printf-args.c" />
<ClCompile Include="..\..\..\glib\gnulib\printf-parse.c" />
<ClCompile Include="..\..\..\glib\gnulib\printf.c" />
<ClCompile Include="..\..\..\glib\gnulib\vasnprintf.c" />
<ClCompile Include="..\..\..\glib\pcre\pcre_byte_order.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_chartables.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_compile.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_config.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_dfa_exec.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_exec.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_fullinfo.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_get.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_globals.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_jit_compile.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_newline.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_ord2utf8.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_string_utils.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_study.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_tables.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_valid_utf8.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_version.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);$(GlibBundledPCREExportDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);$(GlibBundledPCREExportDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);$(GlibBundledPCREExportDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);$(GlibBundledPCREExportDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\..\glib\pcre\pcre_xclass.c">
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<PreprocessorDefinitions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREDefines);%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalOptions Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GLibBundledPCREUndefs) %(AdditionalOptions)</AdditionalOptions>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
</ItemGroup>
<ItemGroup>
<CustomBuild Include="..\..\..\config.h.win32">
<Message Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">Copying config.h from config.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GenConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">..\..\..\config.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Copying config.h from config.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(GenConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\..\config.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">Copying config.h from config.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GenConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">..\..\..\config.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Copying config.h from config.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(GenConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..\..\..\config.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">Copying config.h from config.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GenConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">..\..\..\config.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Copying config.h from config.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(GenConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\..\config.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">Copying config.h from config.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GenConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">..\..\..\config.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Copying config.h from config.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(GenConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\..\..\config.h;%(Outputs)</Outputs>
</CustomBuild>
<CustomBuild Include="..\..\..\glib\glibconfig.h.win32">
<Message Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">Copying glibconfig.h from glibconfig.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">$(GenGLibConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|Win32'">..\..\..\glib\glibconfig.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Copying glibconfig.h from glibconfig.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(GenGLibConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">..\..\..\glib\glibconfig.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">Copying glibconfig.h from glibconfig.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">$(GenGLibConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug_BundledPCRE|x64'">..\..\..\glib\glibconfig.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Copying glibconfig.h from glibconfig.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(GenGLibConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">..\..\..\glib\glibconfig.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">Copying glibconfig.h from glibconfig.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">$(GenGLibConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|Win32'">..\..\..\glib\glibconfig.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Copying glibconfig.h from glibconfig.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(GenGLibConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">..\..\..\glib\glibconfig.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">Copying glibconfig.h from glibconfig.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">$(GenGLibConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release_BundledPCRE|x64'">..\..\..\glib\glibconfig.h;%(Outputs)</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Copying glibconfig.h from glibconfig.h.win32...</Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(GenGLibConfigH)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">..\..\..\glib\glibconfig.h;%(Outputs)</Outputs>
</CustomBuild>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="..\..\..\glib\glib.rc" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
``` | /content/code_sandbox/utilities/glib/build/win32/vs11/glib.vcxproj | xml | 2016-10-27T09:31:28 | 2024-08-16T19:00:35 | nexmon | seemoo-lab/nexmon | 2,381 | 16,998 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="path_to_url"
android:id="@+id/activity_user"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/load_data_empty" />
</LinearLayout>
``` | /content/code_sandbox/RxUI/src/main/res/layout/fragment_placeholder.xml | xml | 2016-09-24T09:30:45 | 2024-08-16T09:54:41 | RxTool | Tamsiree/RxTool | 12,242 | 73 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<!--
Distributed under the Boost
file LICENSE_1_0.txt or copy at path_to_url
-->
<header name="boost/proto/core.hpp">
<para>Includes all of Proto, except the contexts, transforms, debug utilities and Boost.Typeof registrations.</para>
</header>
``` | /content/code_sandbox/deps/boost_1_66_0/libs/proto/doc/reference/core.xml | xml | 2016-09-05T10:18:44 | 2024-08-11T13:21:40 | LiquidCore | LiquidPlayer/LiquidCore | 1,010 | 76 |
```xml
import * as React from 'react';
import ComponentExample from '../../../../components/ComponentDoc/ComponentExample';
import NonPublicSection from '../../../../components/ComponentDoc/NonPublicSection';
const Rtl = () => (
<NonPublicSection title="Rtl">
<ComponentExample examplePath="components/Accordion/Rtl/AccordionExample.rtl" />
</NonPublicSection>
);
export default Rtl;
``` | /content/code_sandbox/packages/fluentui/docs/src/examples/components/Accordion/Rtl/index.tsx | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 87 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="path_to_url" tools:ignore="MissingTranslation">
<!-- common strings without special context -->
<string name="app_name">Delta Chat</string>
<string name="ok">OK</string>
<string name="cancel">Anuloje</string>
<!-- the word "or" to separate blocks in the user interface that are mutually exclusive -->
<string name="or_separator">ose</string>
<string name="clear_search">Spastroje Krkimin</string>
<string name="yes">Po</string>
<string name="no">Jo</string>
<string name="select">Przgjidhni</string>
<string name="on">On</string>
<string name="off">Off</string>
<string name="def">Parazgjedhje</string>
<string name="default_value">Parazgjedhje (%1$s)</string>
<string name="default_value_as_above">Parazgjedhje (njsoj me sa m sipr)</string>
<string name="custom">Vetjake</string>
<string name="none">Asnj</string>
<string name="automatic">Automatike</string>
<string name="strict">Strikt</string>
<string name="open">Hap</string>
<string name="download">Shkarkoje</string>
<string name="downloading">Po shkarkohet</string>
<string name="open_attachment">Hap Bashkngjitjen</string>
<string name="join">Hyni</string>
<string name="rejoin">Rihyni</string>
<string name="delete">Fshije</string>
<string name="info">Hollsi</string>
<string name="update">Prditsoje</string>
<string name="emoji">Emoji</string>
<string name="attachment">Bashkngjitje</string>
<string name="back">Mbrapsht</string>
<string name="close">Mbylle</string>
<string name="close_window">Mbylle Dritaren</string>
<string name="forward">Prpara</string>
<string name="create">Krijoje</string>
<string name="later">M von</string>
<!-- "Resend" means "Sending the selected message(s) again to the same chat". The string is used in a menu and should be as short as possible. Resending may be needed after failures or to repost old messages to new members. -->
<string name="resend">Ridrgoje</string>
<!-- Verb "to archive", as in "put a chat in the archive", not a noun "The Archive". -->
<string name="archive">Arkivoje</string>
<!-- Verb "to unarchive", as in "remove a chat from the archive", opposite of the previous string -->
<string name="unarchive">arkivoje</string>
<string name="mute">Heshtoje</string>
<string name="ephemeral_messages">Mesazhe Q Zhduken</string>
<string name="ephemeral_messages_hint">Kto rregullime zbatohen mbi krejt pjesmarrsit q prdorin Delta Chat-in. Sidoqoft, ata mund t kopjojn, ruajn dhe prcjellin mesazhe ose t prdorin klient t tjer email-i.</string>
<string name="save">Ruaje</string>
<string name="chat">Fjalosje</string>
<string name="media">Media</string>
<string name="profile">Profil</string>
<string name="main_menu">Menuja Kryesore</string>
<string name="start_chat">Nisni Fjalosje</string>
<string name="show_full_message">Shfaq Mesazhin e Plot</string>
<!-- Stay short here, say ~16 characters. The source string could also be "All Read", maybe that hint can make translations easier :) -->
<string name="mark_all_as_read">Vru Shenj t Trave Si t Lexuar</string>
<string name="mark_as_read">Vri Shenj Si t Lexuar</string>
<!-- Shortest text for "Mark as being read". In english, this could be "Read" (past tense of "to read"), in german, this could be "Gelesen". -->
<string name="mark_as_read_short">T lexuar</string>
<!-- Placeholder text when something is loading -->
<string name="loading">Po ngarkohet</string>
<string name="hide">Fshihe</string>
<string name="activate">Aktivizoje</string>
<string name="load_remote_content">Ngarko Figura t Largta</string>
<!-- Possible answers to the question are: Never, Always, Once -->
<string name="load_remote_content_ask">Figurat e largta mund t prdoren pr tju ndjekur.\n\nRregullimi lejon gjithashtu t ngarkohen shkronja dhe lnd tjetr. Edhe nse sht e aktivizuar, prap mund t shihni figura t trupzuara ose t ruajtura n fshehtin.\n\nT ngarkohen figura t largta?</string>
<string name="always">Prher</string>
<string name="always_load_remote_images">Ngarko Prher Figura t Largta</string>
<string name="once">Vetm nj her</string>
<string name="show_warning">Shfaq Sinjalizim</string>
<string name="show_password">Shfaqe Fjalkalimin</string>
<string name="hide_password">Fshihe Fjalkalimin</string>
<string name="not_now">Jo tani</string>
<string name="never">Kurr</string>
<string name="one_moment">Nj ast</string>
<string name="done">U b</string>
<string name="undo">Zhbje</string>
<string name="offline">Jo n linj</string>
<!-- For the next view or as "continue". Should be as short as possible. -->
<string name="next">Pasuesja</string>
<string name="error">Gabim</string>
<string name="error_x">Gabim: %1$s</string>
<string name="no_app_to_handle_data">S\gjendet dot nj aplikacion pr trajtimin e ktij lloji t dhnash.</string>
<string name="no_browser_installed">S\ka shfletues t instaluar.</string>
<string name="file_not_found">S\u gjet dot %1$s.</string>
<string name="copied_to_clipboard">U kopjua n t papastr.</string>
<string name="contacts_headline">Kontakte</string>
<string name="email_address">Adres Email</string>
<string name="bad_email_address">Adres email e keqe.</string>
<string name="password">Fjalkalim</string>
<string name="existing_password">Fjalkalimi Ekzistues</string>
<string name="now">Tani</string>
<!-- Headline for destructive actions with no undo. Could also be "Caution" or "Warning". -->
<string name="danger">Rrezik</string>
<string name="today">Sot</string>
<string name="yesterday">Dje</string>
<string name="this_week">Kt jav</string>
<string name="this_month">Kt muaj</string>
<string name="last_week">Javn e shkuar</string>
<string name="last_month">Muajin e shkuar</string>
<!-- Refers to the time a contact was last seen. Shown below contact name in the profile. The placeholder will be replaced by date or time, resulting in "Last seen at 12:13 AM" or "Last seen Nov 12" -->
<string name="last_seen_at">Par s fundi m %1$s</string>
<!-- Refers to the time a contact was last seen. Shown below contact name in the profile. The placeholder will be replaced by a relative point in time as "3 minutes ago" (see path_to_url for more examples and languages)-->
<string name="last_seen_relative">Par s fundi %1$s</string>
<string name="last_seen_unknown">Par s fundi m: Sdihet</string>
<!-- Shown beside messages that are "N minutes old". Prefer short strings, or well-known abbreviations. -->
<plurals name="n_minutes">
<item quantity="one">%d min</item>
<item quantity="other">%d min</item>
</plurals>
<!-- Shown beside messages that are "N hours old". Prefer short strings, or well-known abbreviations. -->
<plurals name="n_hours">
<item quantity="one">%d or</item>
<item quantity="other">%d or</item>
</plurals>
<plurals name="n_chats">
<item quantity="one">%d fjalosje</item>
<item quantity="other">%d fjalosje</item>
</plurals>
<plurals name="n_contacts">
<item quantity="one">%d kontakt</item>
<item quantity="other">%d kontakte</item>
</plurals>
<plurals name="n_messages">
<item quantity="one">%d mesazh</item>
<item quantity="other">%d mesazhe</item>
</plurals>
<plurals name="n_members">
<item quantity="one">%d antar</item>
<item quantity="other">%d antar</item>
</plurals>
<plurals name="n_recipients">
<item quantity="one">%d marrs</item>
<item quantity="other">%d marrs</item>
</plurals>
<!-- Short form for "N Items Selected" -->
<plurals name="n_selected">
<item quantity="one">%d e Przgjedhur</item>
<item quantity="other">%d t Przgjedhur</item>
</plurals>
<string name="self">Un</string>
<string name="draft">Skic</string>
<string name="image">Figur</string>
<!-- Used in summaries as "Draft: Reply", similar as "Draft: Image". Use a noun here, not a verb (not: "to reply") -->
<string name="reply_noun">Prgjigje</string>
<string name="gif">GIF</string>
<!-- "Stickers" as known from other messengers; in some languages, the English "Sticker" is fine. -->
<string name="sticker">Ngjits</string>
<string name="add_to_sticker_collection">Shtoje te Koleksion Ngjitsish</string>
<string name="add_stickers_instructions">Q t shtoni ngjits, prekni Hap Dosje Ngjitsish, krijoni nj nndosje pr paketn e ngjitsit tuaj dhe trhiqni n t figur dhe kartela ngjitsi</string>
<string name="open_sticker_folder">Hap Dosje Ngjitsish</string>
<string name="images">Figura</string>
<string name="audio">Audio</string>
<string name="voice_message">Mesazh Zanor</string>
<string name="forwarded">Prcjell</string>
<string name="forwarded_message">Mesazhi u Prcoll</string>
<!-- %1$s will be replaced by the name or the e-mail address of the person who forwards the message -->
<string name="forwarded_by">Prcjell nga %1$s</string>
<string name="video">Video</string>
<string name="documents">Dokumente</string>
<string name="contact">Kontakt</string>
<string name="camera">Kamer</string>
<string name="switch_camera">Ndrro Kamera</string>
<string name="toggle_fullscreen">Kalo n / Dil nga mnyra Sa krejt ekrani</string>
<string name="location">Vendndodhje</string>
<string name="locations">Vendndodhje</string>
<string name="gallery">Galeri</string>
<string name="images_and_videos">Figura dhe Video</string>
<string name="file">Kartel</string>
<string name="files">Kartela</string>
<!-- "App" is used to present "Webxdc App" (path_to_url in a user friendly way. Please stay close to the original term and keep it short (it is used in menus with few screen space). -->
<string name="webxdc_app">Aplikacion</string>
<!-- plural of "App"; used to present "Webxdc App" (path_to_url in a user friendly way. Please stay close to the original term and keep it short (it is used in menus with few screen space). -->
<string name="webxdc_apps">Aplikacione</string>
<string name="unknown">E panjohur</string>
<string name="green">E gjelbr</string>
<string name="red">E kuqe</string>
<string name="blue">Blu</string>
<string name="orange">Portokalli</string>
<string name="cyan">Gurkali</string>
<string name="purple">E purpurt</string>
<string name="magenta">Roz</string>
<string name="white">E bardh</string>
<string name="zoom">Zoom</string>
<string name="extra_small">Tejet t vogla</string>
<string name="small">T vogla</string>
<string name="normal">Normale</string>
<string name="large">T mdha</string>
<string name="extra_large">Ekstra t mdha</string>
<string name="fast">Shpejt</string>
<string name="slow">Ngadal</string>
<!-- menu labels (or icon, buttons...) -->
<string name="menu_new_contact">Kontakt i Ri</string>
<string name="menu_new_classic_contact">Shtoni Kontakt Dorazi</string>
<string name="new_classic_contact_explain">Kontaktet e shtuar dorazi mund t prdoren pr t drguar tekst te email klasik dhe pr ta sgarantohet fshehtzim skaj-m-skaj.</string>
<string name="menu_new_chat">Fjalosje e Re</string>
<string name="menu_new_group">Grup i Ri</string>
<string name="clone_chat">Klononi Fjalosjen</string>
<!-- consider keeping the term "broadcast" as in WhatsApp or Telegram -->
<string name="broadcast_list">List Transmetimi</string>
<string name="broadcast_lists">Lista Transmetimi</string>
<string name="new_broadcast_list">List e Re Transmetimi</string>
<string name="add_recipients">Shtoni Marrs</string>
<string name="edit_broadcast_list">Prpunoni List Transmetimesh</string>
<string name="broadcast_list_name">Emr Liste Transmetimesh</string>
<string name="please_enter_broadcast_list_name">Ju lutemi, jepni nj emr pr listn e transmetimeve</string>
<string name="menu_send">Drgoje</string>
<string name="menu_toggle_keyboard">Shfaq/fshih Tastier Emoji-sh</string>
<string name="menu_edit_group">Prpunoni Grup</string>
<string name="menu_group_name_and_image">Emr dhe Figur Grupi</string>
<string name="menu_show_global_map">Krejt Vendndodhjet</string>
<string name="menu_archive_chat">Arkivoje Fjalosjen</string>
<string name="menu_unarchive_chat">arkivoje Fjalosjen</string>
<string name="menu_add_attachment">Shtoni Bashkngjitje</string>
<string name="menu_leave_group">Braktiseni Grupin</string>
<string name="menu_delete_chat">Fshije Fjalosjen</string>
<!-- Command to delete all messages in a chat. The chat itself will not be deleted but will be empty afterwards, so make sure to be different from "Delete Chat" here. "Clear" is a verb here, "Empty Chat" would also be fine (eg. in German "Chat leeren") -->
<string name="clear_chat">Spastroje Fjalosjen</string>
<string name="menu_delete_messages">Fshiji Mesazhet</string>
<string name="delete_contact">Fshije Kontaktin</string>
<string name="menu_delete_location">T fshihet kjo Vendndodhje?</string>
<string name="menu_message_details">Hollsi Mesazhi</string>
<string name="menu_copy_to_clipboard">Kopjoje n t Papastr</string>
<string name="share_invite_link">Jepuni Lidhje Ftese</string>
<string name="invite_friends">Ftoni Shok</string>
<!-- %1$s is replaced by the user's invitation link ("path_to_url") -->
<string name="invite_friends_text">Lidhuni me mua n Delta Chat:\n%1$s</string>
<string name="menu_copy_selection_to_clipboard">Kopjoje Przgjedhjen</string>
<string name="menu_copy_link_to_clipboard">Kopjoje Lidhjen</string>
<string name="menu_copy_text_to_clipboard">Kopjo Tekstin</string>
<string name="menu_copy_image_to_clipboard">Kopjo Figurn</string>
<string name="menu_copy_email_to_clipboard">Kopjo Email-in</string>
<string name="paste_from_clipboard">Ngjite prej t Papastre</string>
<string name="ask_copy_unopenable_link_to_clipboard">Lidhja %1$d smund t hapet te shfletuesi. Doni, n vend t ksaj, t kopjohet lidhja n t papastr?</string>
<string name="menu_forward">Prcille Mesazhin</string>
<string name="menu_reply">Prgjigjuni Mesazhit</string>
<string name="menu_mute">Heshto Njoftimet</string>
<string name="menu_unmute">heshtoji</string>
<string name="menu_export_attachment">Eksporto Bashkngjitje</string>
<string name="menu_export_attachments">Eksporto Bashkngjitje</string>
<string name="menu_all_media">Krejt Mediat</string>
<!-- Command to jump to the original message corresponding to a gallery image or document -->
<string name="show_in_chat">Shfaqe n Fjalosje</string>
<string name="show_app_in_chat">Shfaqe Aplikacionin n Fjalosje</string>
<string name="menu_share">Ndajeni me t tjer</string>
<!-- Verb "to block sth." usually a mailing list or a contact, not a noun -->
<string name="block">Bllokoje</string>
<string name="menu_block_contact">Bllokoje Kontaktin</string>
<string name="menu_unblock_contact">Zhbllokoje Kontaktin</string>
<string name="accept">Pranoje</string>
<string name="menu_play">Luaje</string>
<string name="menu_pause">Pushoje</string>
<string name="menu_scroll_to_bottom">Rrshqit drejt Fundit</string>
<string name="menu_scroll_to_top">Rrshqit sipr n Krye</string>
<string name="menu_help">Ndihm</string>
<string name="what_is_webxdc">sht Webxdc?</string>
<string name="privacy_policy">Rregulla Privatsie</string>
<string name="menu_select_all">Przgjidhi Krejt</string>
<string name="select_chat">Przgjidhni Fjalosje</string>
<string name="select_more">Przgjidhni m tepr</string>
<string name="menu_edit_name">Prpunoni Emrin</string>
<string name="menu_settings">Rregullime</string>
<string name="menu_advanced">T mtejshme</string>
<string name="menu_view_profile">Shihini Profilin</string>
<string name="menu_zoom_in">Zmadhim</string>
<string name="menu_zoom_out">Zvoglim</string>
<string name="menu_save_log">Ruaje Regjistrin</string>
<string name="menu_more_options">M Tepr Mundsi</string>
<string name="menu_learn_spelling">Mso Drejtshkrim</string>
<string name="menu_chat_audit_log">Regjistr Auditimi Fjalosjeje</string>
<string name="jump_to_message">Hidhu te Mesazh</string>
<string name="copy_json">Kopjo JSON</string>
<string name="replace_draft">Zvendso Skic</string>
<string name="title_share_location">Tregojua vendndodhjen krejt antarve t grupit</string>
<string name="device_talk">Mesazhe Pajisjeje</string>
<string name="device_talk_subtitle">Mesazhe t prodhuar lokalisht</string>
<string name="device_talk_explain">Mesazhet n kt fjalosje prodhohen lokalisht nga aplikacioni juaj Delta Chat. Krijuesit e tij e prdorin pr tju br t ditur prditsime dhe probleme gjat prdorimit.</string>
<string name="device_talk_welcome_message2">Lidhuni!\n\n Prekni Kod QR te skena kryesore n t dyja pajisjet. Zgjidhni Skano Kod QR n nj pajisje dhe drejtojani tjetrs\n\n Nse sgjenden n t njjtn dhom, skanojeni prmes nj thirrjeje video, ose ndani nj lidhje ftese q nga Skanoni kod QR\n\nMandej: Shijoni punimin e shkmbyesit t mesazheve prmes rrjetit m t madh t decentralizuar q ka ekzistuar ndonjher: email-it. Dhe, n kontrast me aplikacione t tjera popullore, pa kontroll t centralizuar, apo gjurmim, apo shitje t dhnash tuajat, t shokve, kolegve apo familjes te ente t mdha.</string>
<string name="edit_contact">Prpunoni Kontaktin</string>
<!-- Verb "to pin", making something sticky, not a noun or abbreviation for "pin number". -->
<string name="pin_chat">Fiksojeni Bisedn</string>
<!-- Opposite of "Pin chat", removing the sticky-state from a chat. -->
<string name="unpin_chat">Hiqeni Bisedn Nga e Fiksuar</string>
<!-- Verb "to pin", making something sticky, not a noun or abbreviation for "pin number". -->
<string name="pin">Fiksoje</string>
<!-- Opposite of "Pin chat", removing the sticky-state from a chat. -->
<string name="unpin">fiksoje</string>
<string name="ConversationFragment_quoted_message_not_found">Su gjet mesazhi origjinal</string>
<string name="reply_privately">Prgjigjuni Privatisht</string>
<string name="source_code">Kod Burim</string>
<!-- Menu item beside an app/chat that adds an icon to the system's home screen. If the user taps that icon, the app/chat is opened directly. -->
<string name="add_to_home_screen">Shtoje te Skena e Kreut</string>
<string name="donate">Dhuroni</string>
<string name="mute_for_one_hour">Heshtoji pr 1 or</string>
<string name="mute_for_two_hours">Heshtoji pr 2 or</string>
<string name="mute_for_one_day">Heshtoji pr 1 dit</string>
<string name="mute_for_seven_days">Heshtoji pr 7 dit</string>
<string name="mute_forever">Heshtoje prgjithmon</string>
<string name="share_location_for_5_minutes">Pr 5 minuta</string>
<string name="share_location_for_30_minutes">Pr 30 minuta</string>
<string name="share_location_for_one_hour">Pr 1 or</string>
<string name="share_location_for_two_hours">Pr 2 or</string>
<string name="share_location_for_six_hours">Pr 6 or</string>
<plurals name="ask_send_following_n_files_to">
<item quantity="one">T drgohet kartela vijuese te %s?</item>
<item quantity="other">T drgohen %d kartelat vijuese te %s?</item>
</plurals>
<string name="file_saved_to">Kartela u ruajt te %1$s.</string>
<string name="videochat">Fjalosje me Video</string>
<string name="videochat_invite_user_to_videochat">T ftohet %1$s te nj thirrje me video?</string>
<string name="videochat_invite_user_hint">Kjo lyp n t dy ant nj aplikacion t prputhshm ose nj shfletues t prputhshm</string>
<string name="videochat_contact_invited_hint">%1$s ftoi te nj fjalosje me video.</string>
<string name="videochat_you_invited_hint">Ftuat te nj fjalosje me video.</string>
<string name="videochat_tap_to_join">Prekeni q t Hyni</string>
<string name="videochat_tap_to_open">Prekeni q t Hapet</string>
<string name="videochat_instance">Instanc Fjalosjeje me Video</string>
<string name="videochat_instance_placeholder">Instanca juaj e Fjalosjes me Video</string>
<string name="videochat_instance_example">Shembull: path_to_urlrbyesi-juaj.org/$ROOM</string>
<string name="videochat_instance_explain_2">Nse sht aktivizuar, mund t nisni nj fjalosje me video prej secils fjalosje. Kjo lyp n t dy skajet nj aplikacion t prputhshm, ose nj shfletues t prputhshm.</string>
<string name="videochat_instance_from_qr">T prdoret %1$s pr t ftuar t tjer n fjalosje me video?\n\nPasi t ujdiset kjo, mund t filloni nj fjalosje me video q prej nj fjalosjeje tek-pr-tek. Kshtu do t zvendsohet rregullimi i mparshm pr fjalosje video, n past.</string>
<string name="videochat_invitation">Ftes pr fjalosje me video</string>
<string name="videochat_invitation_body">Jeni ftuar n nj fjalosje video, klikoni mbi %1$s q t hyni n t.</string>
<!-- get confirmations -->
<string name="ask_leave_group">Jeni i sigurt se doni ta braktisni kt grup?</string>
<plurals name="ask_delete_chat">
<item quantity="one">T fshihet %d fjalosje? Sdo t duket m te lista e bisedave; mesazhet e saj do t mbeten te shrbyesi.</item>
<item quantity="other">T fshihen %d fjalosje? S\do t duken m te lista e fjalosjeve; mesazhet e tyre do t mbeten te shrbyesi.</item>
</plurals>
<string name="ask_delete_named_chat">Jeni i sigurt se doni t fshihet %1$s?</string>
<string name="ask_delete_message">Jeni i sigurt se doni t fshihet ky mesazh?</string>
<plurals name="ask_delete_messages">
<item quantity="one">T fshihet %d mesazh ktu dhe te shrbyesi?</item>
<item quantity="other">T fshihen %d mesazhe ktu dhe te shrbyesi?</item>
</plurals>
<plurals name="ask_delete_messages_simple">
<item quantity="one">T fshihet %d mesazh?</item>
<item quantity="other">T fshihen %d mesazhe?</item>
</plurals>
<string name="ask_forward">T prcillen mesazhet te %1$s?</string>
<string name="ask_forward_multiple">T prcillen mesazhet te %1$d fjalosje?</string>
<string name="ask_export_attachment">T eksportohet bashkngjitja? Eksportimi i bashkngjitjeve do t\i lejoj fardo aplikacioni tjetr n pajisjen tuaj t\i prdor ato.\n\nT vazhdohet?</string>
<string name="ask_block_contact">T bllokohet ky kontakt? S\do t merrni m mesazhe prej ktij kontakti.</string>
<string name="ask_unblock_contact">T zhbllokohet ky kontakt? Do t jeni srish n gjendje t merrni mesazhe prej ktij kontakti.</string>
<string name="ask_delete_contacts">T fshihen kontaktet? Kjo do t bj t fshihen prgjithmon kontaktet e przgjedhur.\n\nKontaktet me fjalosje n zhvillim e sipr dhe kontaktet prej libri adresash t sistemit s\mund t fshihen prgjithmon.</string>
<string name="ask_delete_contact">T fshihet prgjithmon kontakti %1$s? \n\nKontaktet me fjalosje n zhvillim e sipr dhe kontaktet prej libri adresash t sistemit s\mund t fshihen prgjithmon.</string>
<string name="cannot_delete_contacts_in_use">S\mund t fshihen kontakte me fjalosje n zhvillim e sipr.</string>
<string name="ask_start_chat_with">T bisedohet me %1$s?</string>
<string name="ask_delete_value">T fshihet %s?</string>
<!-- %1$s is replaced by a comma-separated list of names -->
<string name="ask_remove_members">T hiqet %1$s nga grupi?</string>
<!-- %1$s is replaced by a comma-separated list of names -->
<string name="ask_remove_from_broadcast">T hiqen %1$s prej liste transmetimi?</string>
<string name="open_url_confirmation">Doni t hapet kjo lidhje?</string>
<!-- contact list -->
<string name="contacts_title">Kontakte</string>
<string name="contacts_enter_name_or_email">Jepni emr ose adres email</string>
<string name="contacts_type_email_above">Shtypni m sipr adresn email</string>
<string name="contacts_empty_hint">S\ka kontakte.</string>
<!-- chatlist and chat view -->
<plurals name="chat_archived">
<item quantity="one">U arkivua %d fjalosje</item>
<item quantity="other">U arkivuan %d fjalosje</item>
</plurals>
<plurals name="chat_unarchived">
<item quantity="one">U arkivua %d fjalosje</item>
<item quantity="other">U arkivuan %d fjalosje</item>
</plurals>
<string name="chat_archived_chats_title">Fjalosje t Arkivuara</string>
<string name="chat_please_enter_message">Ju lutemi, jepni nj mesazh.</string>
<string name="chat_camera_unavailable">Kamer jo gati.</string>
<string name="chat_unable_to_record_audio">S\arrihet t incizohet audio.</string>
<plurals name="chat_n_new_messages">
<item quantity="one">%d mesazh i ri</item>
<item quantity="other">%d mesazhe t rinj</item>
</plurals>
<!-- The placeholder will be replaced by the name of the recipient in a one-to-one chat. -->
<string name="chat_new_one_to_one_hint">Drgoni nj mesazh pr %1$s.</string>
<string name="chat_new_broadcast_hint">N nj list transmetimesh, marrsit do t marrin mesazhe n nj fjalosje t llojit vetm lexim me ju.</string>
<string name="chat_new_group_hint">T tjert do ta shohin kt grup pasi t keni drguar nj mesazh t par.</string>
<string name="chat_record_slide_to_cancel">Rrshqiteni q t anulohet</string>
<string name="chat_record_explain">Prekeni dhe mbajeni t prekur q t incizoni nj mesazh zanor; lshojeni, q t drgohet</string>
<string name="chat_no_chats_yet_title">Kuti mesazhesh e zbrazt.\nShtypni + q t nisni nj fjalosje t re.</string>
<string name="chat_all_archived">Krejt fjalosjet jan t arkivuara.\nShtypni + q t nisni nj bised t re.</string>
<string name="chat_share_with_title">Ndajeni me </string>
<string name="chat_input_placeholder">Mesazh</string>
<string name="chat_archived_label">Arkivuar</string>
<string name="chat_request_label">Krkes</string>
<string name="chat_no_messages">S\ka mesazhe.</string>
<string name="chat_self_talk_subtitle">Mesazhe Vetes</string>
<string name="archive_empty_hint">Nse arkivoni fjalosje, ato do t shfaqen ktu.</string>
<string name="saved_messages">Mesazhe t Ruajtur</string>
<string name="saved_messages_explain"> Prcillini mesazhet ktu pr prdorim t leht\n\n Mbani shnime ose kujtesa zanore\n\n Bashkngjitni media pr ti ruajtur</string>
<!-- Should match "Saved" from "Saved messages" -->
<string name="saved">T ruajtur</string>
<string name="save_as">Ruaje Si</string>
<string name="retry_send">Riprovo t drgosh mesazhin</string>
<!-- reasons for a disabled message composer -->
<string name="messaging_disabled_not_in_group">Smund t shkruani, ngaq sjeni n kt grup. Pr tu br pjes, krkojani nj antari tjetr.</string>
<string name="messaging_disabled_mailing_list">Drgimi i mesazheve n lista postimesh nuk mbulohet ende</string>
<string name="cannot_display_unsuported_file_type">Smund t shfaqet ky lloj kartelash: %s</string>
<string name="attachment_failed_to_load">Su arrit t ngarkohet bashkngjitje</string>
<!-- For recording Voice messages: Description for the "Lock" button allowing to lift the thumb from the record button while recording continues -->
<string name="lock_recording">Kye Incizimin</string>
<!-- mailing lists -->
<string name="mailing_list">List Postimesh</string>
<string name="mailing_list_profile_info">Ndryshime n emr dhe figur liste postimesh aplikohen vetm n kt pajisje.</string>
<!-- webxdc -->
<!-- "Start..." button for an app -->
<string name="start_app">Niseni</string>
<!-- this is a warning that is shown when one tries to send something to a chat that is not yet accepted. -->
<string name="accept_request_first">Ju lutemi, s pari pranoni krkesn pr fjalosje.</string>
<!-- title shown above a list of chats where one should be selected (eg. when sharing files from a webxdc). the placeholder will be replaced by a file name -->
<string name="send_file_to">Drgoni %1$s pr </string>
<!-- title shown above a list contacts where one should be selected (eg. when a webxdc attempts to send a message to a chat) -->
<string name="send_message_to">Drgoni Mesazh pr</string>
<!-- map -->
<string name="filter_map_on_time">Shfaq vendndodhje n rrjedh kohore</string>
<string name="show_location_traces">Shfaq gjurm</string>
<string name="add_poi">Drgo pik interesi</string>
<!-- chat audit log -->
<string name="chat_audit_log_empty_message">Mesazhet e sistemit n kt fjalosje do t shfaqen ktu</string>
<string name="chat_audit_log_title">Regjistr Auditimi Fjalosjeje %1$s</string>
<string name="chat_audit_log_description">Shfaq vetm mesazhe sistemi dhe informacionesh; e dobishme pr gjetjen e veprimeve t fundit pa u dashur t parakalohet npr mjaft mesazhe.</string>
<!-- punycode warning / labeled links -->
<!-- placeholder is domain/hostname that should be trusted -->
<string name="open_external_url_trust_domain">Mos pyet srish pr %1$s</string>
<string name="puny_code_warning_header">U pikas lidhje e dyshimt</string>
<!-- placeholder contains the hostname converted to ascii -->
<string name="puny_code_warning_question">Jeni i sigurt se doni t vizitohet %1$s?</string>
<!-- this message is shown whenever a link with non-latin characters is clicked. first placeholder is original hostname with special chars, second placeholder is hostname encoded in ascii -->
<string name="puny_code_warning_description">Ndoqt nj lidhje e cila mund t jet duke shfaqur keq shenja, duke prdorur t ngjashme prej alfabetesh t tjer. Ndjekja e lidhjes s quajtur %1$s do t shpjer te %2$s, ka sht normale pr shenja alfabetesh jo latin. Nse sprisnit shenja t tilla, kjo lidhje mund t jet e dmshme</string>
<!-- search -->
<string name="search">Krko</string>
<string name="search_in_chat">Krko n Fjalosje</string>
<string name="search_files">Krko n Kartela</string>
<string name="search_explain">Krkoni pr fjalosje, kontakte dhe mesazhe.</string>
<string name="search_no_result_for_x">S\u gjetn prfundime pr %s</string>
<!-- create/edit groups, contact/group profile -->
<string name="group_name">Emr Grupi</string>
<string name="group_avatar">Avatar Grupi</string>
<string name="remove_group_image">Hiqe Figurn e Grupit</string>
<string name="change_group_image">Ndryshoni Figur Grupi</string>
<string name="group_create_button">Krijoni Grup</string>
<string name="group_please_enter_group_name">Ju lutemi, jepni nj emr pr grupin.</string>
<string name="group_add_members">Shtoni Antar</string>
<string name="group_self_not_in_group">Q t kryeni kt veprim, duhet t jeni antar i grupit.</string>
<string name="profile_encryption">Fshehtzim</string>
<string name="profile_shared_chats">Fjalosje t Prbashkta</string>
<string name="related_chats">Fjalosje t Afrta</string>
<string name="tab_contact">Kontakt</string>
<string name="tab_group">Grup</string>
<string name="tab_gallery">Galeri</string>
<string name="tab_docs">Dokumente</string>
<string name="tab_links">Lidhje</string>
<string name="tab_map">Hart</string>
<string name="tab_gallery_empty_hint">Figurat dhe videot e dhna n kt fjalosje do t shfaqen ktu.</string>
<string name="tab_docs_empty_hint">Dokumentet, muzika dhe kartela t tjera t dhna n kt fjalosje do t shfaqen ktu.</string>
<string name="tab_image_empty_hint">Figurat e dhna n kt fjalosje do t shfaqen ktu.</string>
<string name="tab_video_empty_hint">Videot e dhna n kt fjalosje do t shfaqen ktu.</string>
<string name="tab_audio_empty_hint">Kartelat audio dhe mesazhet zanore t dhna n kt fjalosje do t shfaqen ktu.</string>
<string name="tab_webxdc_empty_hint">Ktu do t shfaqen aplikacione private t prbashkt n kt fjalosje </string>
<string name="tab_all_media_empty_hint">Ktu do t duke media e dhn n fardo fjalosjeje.</string>
<string name="media_preview">Paraparje Mediash</string>
<!-- option to show images in the gallery with the correct width/height aspect (instead of square); other gallery apps may be a source of inspiration for translation :) -->
<string name="aspect_ratio_grid">Mozaik Prpjestimor </string>
<!-- option to show images in the gallery as square (instead of using correct width/height) -->
<string name="square_grid">Mozaik Katror</string>
<string name="send_message">Drgo Mesazh</string>
<!-- Placeholder %1$s will be replaced by the name of the contact changing their address. Placeholders %2$s and %3$s will be replaced by old/new email addresses. -->
<string name="aeap_addr_changed">%1$s ndryshoi adresn e vet nga %2$s n %3$s</string>
<!-- the explanation is shown (1) as a modal dialog with the buttons "Cancel" and "Continue" as well as (2) as a device message -->
<string name="aeap_explanation">Ndryshuat adresn tuaj nga %1$s n %2$s.\n\nNse drgoni tani nj mesazh te nj grup i verifikuar, kontaktet atje do t zvendsojn automatikisht adresn tuaj t vjetr me t ren.\n\nsht tejet e kshillueshme t ujdisni shrbimin tuaj t vjetr t email-it t prcjell krejt email-et te adresa juaj e re email. Prndryshe, mund t humbni mesazhe t kontakteve q se kan marr ende adresn tuaj t re.</string>
<!-- Multi Device -->
<!-- "Second Device" can also be translated as "Another Device", if that is catchier in the destination language. However, make sure to use the term consistently. -->
<string name="multidevice_title">Shtoni Pajisje t Dyt</string>
<string name="multidevice_same_network_hint">Sigurohuni se t dy pajisjet jan n t njjtin rrjet Wi-Fi ose klasik</string>
<string name="multidevice_this_creates_a_qr_code">Kjo krijon nj kod QR q pajisja e dyt mund ta skanoj pr t kopjuar llogarin.</string>
<string name="multidevice_install_dc_on_other_device">Instaloni Delta Chat-in n pajisjen tuaj tjetr (path_to_url
<!-- "I Already Have a Profile / Add as Second Device should be the same text as defined by the keys onboarding_alternative_logins and multidevice_receiver_title -->
<string name="multidevice_tap_scan_on_other_device">Nisni Delta Chat-in, prekni mbi Shtoje si Pajisje t Dyt dhe skanoni kodin e treguar ktu</string>
<!-- Shown inside a "QR code card" with very limited space; please formulate the text as short as possible therefore. The placeholder will be replaced by name and/or address eg. "Scan to set up second device for Alice (alice@example.org)" -->
<string name="multidevice_qr_subtitle">Skanojeni, q t ujdisni pajise t dyt pr %1$s</string>
<string name="multidevice_receiver_title">Shtoni Pajisje t Dyt</string>
<string name="multidevice_open_settings_on_other_device">Te pajisja e par, kaloni te Rregullime / Shtoje si Pajisje t Dyt dhe skanoni kodin e treguar ktu</string>
<string name="multidevice_receiver_scanning_ask">T kopjohet llogaria nga pajisja tjetr te kjo pajisje?</string>
<string name="multidevice_abort">T ndrpritet ujdisja e pajisjes s dyt?</string>
<string name="multidevice_abort_will_invalidate_copied_qr">Kjo do t bj t pavlefshm kodin QR t kopjuar n t papastr.</string>
<string name="multidevice_experimental_hint">(eksperimentale, lyp versionin 1.36)</string>
<string name="multidevice_transfer_done_devicemsg"> Llogaria u shprngul te pajisja juaj e dyt.</string>
<!-- Shown beside progress bar, stay short -->
<string name="preparing_account">Po prgatitet llogaria</string>
<!-- Shown beside progress bar, stay short -->
<string name="waiting_for_receiver">Po pritet pr marrs</string>
<!-- Shown beside progress bar, stay short -->
<string name="receiver_connected">Marrsi u lidh</string>
<!-- Shown beside progress bar, stay short -->
<string name="transferring">Po shprngulet</string>
<string name="troubleshooting">Diagnostikim</string>
<!-- Connectivity -->
<!-- Headline for the "Inbox" eg. in the "Connectivity" view -->
<string name="incoming_messages">Mesazhe t Marr</string>
<!-- Headline for the "Outbox" eg. in the "Connectivity" view -->
<string name="outgoing_messages">Mesazhe t Drguar</string>
<!-- Headline in the "Connectivity" view. Placeholder will be replaced by the domain of the configured email-address. -->
<string name="storage_on_domain">Depozitim n %1$s</string>
<string name="connectivity">Aftsi lidhjeje</string>
<!-- Shown in the title bar if the app is "Not connected"; prefer short strings. -->
<string name="connectivity_not_connected">I palidhur</string>
<!-- Shown in the title bar if the app is "Connecting"; prefer short strings. The ellipsis is a single character (), not three (...) -->
<string name="connectivity_connecting">Po lidhet</string>
<!-- Shown in the title bar if the app is "Updating" (eg. getting new/old message, sync things); prefer short strings. The ellipsis is a single character (), not three (...) -->
<string name="connectivity_updating">Po prditsohet</string>
<!-- Shown in the setting if the app is "Connected" -->
<string name="connectivity_connected">I lidhur</string>
<string name="sending">Po drgohet</string>
<string name="last_msg_sent_successfully">Mesazhi i fundit i drguar me sukses.</string>
<string name="not_supported_by_provider">I pambuluar nga furnizuesi juaj i shrbimit</string>
<!-- Subtitle in quota context of "Connetivity" view. Should be be plural always, no number is prefixed. -->
<string name="messages">Mesazhe</string>
<!-- Used for describing resource usage, resulting string will be eg. "1.2 GiB of 3 GiB used" -->
<string name="part_of_total_used">%1$s nga %2$s gjithsej</string>
<!-- welcome and login -->
<!-- Primary button on the welcome screen, allows to create an instant profile -->
<string name="onboarding_create_instant_account">Le Tia Fillojm!</string>
<!-- Secondary button on the welcome screen, allows to "Add as Second Device", "Restore from Backup" -->
<string name="onboarding_alternative_logins">Kam Krendenciale Tashm</string>
<!-- Button, allows to log in to existing email accounts, setting ports, passwords and so on -->
<string name="manual_account_setup_option">Hyrje Klasike Me Email</string>
<!-- Instant onboarding title (there is not more to do than to set name and avatar) -->
<string name="instant_onboarding_title">Profili Juaj</string>
<!-- The placeholder will be replaced by the default onboarding server -->
<string name="instant_onboarding_agree_default2">Rregulla Privatsie pr %1$s</string>
<!-- The placeholder will be replaced by instance name, the whole text will link to the instance page -->
<string name="instant_onboarding_agree_instance">Rreth profilesh n %1$s</string>
<!-- Confirmation button on the instant onboarding screen -->
<string name="instant_onboarding_create">Pranojeni & Krijoni Profil</string>
<!-- Secondary, link-like button to open a page with other possible instances -->
<string name="instant_onboarding_show_more_instances">Prdor Shrbyes Tjetr</string>
<string name="instant_onboarding_other_server">Paraqit Shrbyes Chatmail</string>
<!-- Hint about what happens when "Create Profile" button in pressed; the placeholder will be replaced by the group name -->
<string name="instant_onboarding_group_info">Krijoni nj profil, q t merrni pjes te grupi %1$s.</string>
<!-- Hint about what happens when "Create Profile" button in pressed; the placeholder will be replaced by contact name and/or address -->
<string name="instant_onboarding_contact_info">Krijoni nj profil, q t bisedoni me %1$s.</string>
<!-- Question shown when another user's QR code is scanned from onboarding screen -->
<string name="instant_onboarding_confirm_contact">Doni t krijohet nj profil i ri dhe t fillohet t bisedohet me %1$s?</string>
<!-- Question shown when group's QR code is scanned from onboarding screen -->
<string name="instant_onboarding_confirm_group">Doni t krijohet nj profil i ri dhe t hyhet te grupi %1$s i fjalosjeve?</string>
<string name="welcome_chat_over_email">Fjalosje e Decentralizuar, e Parrezik</string>
<string name="scan_invitation_code">Skanoni Kod Ftese</string>
<string name="login_title">Hyni</string>
<!-- for classic email, we use the classical term "Account" -->
<string name="login_header">Hyni te Llogaria juaj Email</string>
<!-- for classic email, we use the classical term "Account" -->
<string name="login_explain">Hyni me nj llogari email ekzistuese.</string>
<string name="login_subheader">Pr shrbime t njohura email-i, rregullimet shtes caktohen automatikisht. Ndonjher shrbyesi IMAP lyp t aktivizohet te pjesa e dukshme web. Pr ndihm kshillohuni me shrbimin tuaj email ose shok tuajt.</string>
<string name="login_no_servers_hint">S\ka shrbyes Delta Chat, t dhnat tuaja rrin n pajisjen tuaj!</string>
<string name="login_inbox">T marr</string>
<string name="login_imap_login">Emr Hyrjeje n IMAP</string>
<string name="login_imap_server">Shrbyes IMAP</string>
<string name="login_imap_port">Port IMAP</string>
<string name="login_imap_security">Siguri IMAP</string>
<string name="login_outbox">T drguar</string>
<string name="login_smtp_login">Emr Hyrjeje SMTP</string>
<string name="login_smtp_password">Fjalkalim SMTP</string>
<string name="login_smtp_server">Shrbyes SMTP</string>
<string name="login_smtp_port">Port SMTP</string>
<string name="login_smtp_security">Siguri SMTP</string>
<string name="login_auth_method">Metod Autorizimi</string>
<!-- the word "SOCKS5" here and in the following strings should not be translated in most cases -->
<string name="login_socks5">SOCKS5</string>
<string name="login_socks5_use_socks5">Prdor SOCKS5</string>
<string name="login_socks5_host">Streh SOCKS5</string>
<string name="login_socks5_port">Port SOCKS5</string>
<string name="login_socks5_user">Prdorues SOCKS5</string>
<string name="login_socks5_password">Fjalkalim SOCKS5</string>
<string name="login_info_oauth2_title">T vazhdohet me rregullimin e thjeshtuar?</string>
<string name="login_info_oauth2_text">Adresa email e dhn mbulon nj ujdisje t thjeshtuar (OAuth 2.0).\n\nN hapin pasues, ju lutemi, lejojeni Delta Chat-in t veproj si aplikacioni juaj pr Fjalosje Prmes Email-i.\n\nS\ka shrbyes Delta Chat, t dhnat tuaja rrin n pajisjen tuaj!</string>
<string name="login_certificate_checks">Kontrolle Dshmish</string>
<string name="login_error_mail">Ju lutemi, jepni nj adres email t vlefshme</string>
<string name="login_error_server">Ju lutemi, jepni nj shrbyes / adres IP t vlefshme</string>
<string name="login_error_port">Ju lutemi, jepni nj port t vlefshme (165535)</string>
<string name="login_error_required_fields">Ju lutemi, jepni nj adres email dhe fjalkalim t vlefshm</string>
<string name="import_backup_title">Rikthe prej Kopjeruajtje</string>
<string name="import_backup_ask">U gjet kopjeruajtje te %1$s.\n\nDoni t importohen dhe prdoren krejt t dhnat dhe rregullimet prej atij?</string>
<string name="import_backup_no_backup_found">S\u gjetn kopjeruajtje.\n\nKopjojeni kopjeruajtjen te %1$s dhe riprovoni. Ndryshe, shtypni Filloni t shkmbeni mesazhe, q t vazhdoni me procesin normal t rregullimit.</string>
<!-- Translators: %1$s will be replaced by the e-mail address -->
<string name="login_error_cannot_login">S\bhet dot hyrja si %1$s. Ju lutemi, shihni nse adresa email dhe fjalkalimi jan t sakt.</string>
<!-- TLS certificate checks -->
<string name="accept_invalid_certificates">Prano dshmi t pavlefshme</string>
<string name="switch_account">Ndrroni Llogari</string>
<string name="add_account">Shtoni Llogari</string>
<string name="delete_account">Fshije Llogarin</string>
<string name="delete_account_ask">Jeni i sigurt se doni t fshihen t dhnat e llogaris tuaj?</string>
<string name="delete_account_explain_with_name">Krejt t dhnat e llogaris pr %s n kt pajisje do t fshihen, prfshi ato t ujdisjes tuaj pr fshehtzim skaj-m-skaj, kontakte, fjalosje, mesazhe dhe media. Ky veprim smund t zhbhet.</string>
<string name="unconfigured_account">Llogari e paformsuar</string>
<string name="unconfigured_account_hint">Q ta formsoni, hapeni llogarin.</string>
<string name="try_connect_now">Provo t lidhesh tani</string>
<string name="sync_all">Njkohsoji Krejt</string>
<!-- Translations: %1$s will be replaced by a more detailed error message -->
<string name="configuration_failed_with_error">Formsimi dshtoi. Gabim: %1$s</string>
<!-- share and forward messages -->
<!-- Translators: shown above a chat/contact list when selecting recipients to forward messages -->
<string name="forward_to">Prcilljani</string>
<string name="share_multiple_attachments">T drgohen %1$d kartela te fjalosja e przgjedhur?\n\nKartelat drgohen t pandryshuara, n madhsin e tyre origjinale (p.sh., figurat dhe videot nuk rikodohen).</string>
<string name="share_multiple_attachments_multiple_chats">Doni t drgohet %1$d kartel(a) te %2$d fjalosje?\n\nKartelat drgohen t pandryshuara, n madhsin e tyre origjinale (p.sh., figura dhe video nuk rikodohen).</string>
<string name="share_text_multiple_chats">T drgohet ky tekst te %1$d fjalosje?\n\n%2$s</string>
<string name="share_abort">Ndarja me t tjer dshtoi ngaq mungojn leje.</string>
<!-- preferences -->
<string name="pref_using_custom">Po prdoret vetjak: %s</string>
<string name="pref_using_default">Po prdoret parazgjedhje: %s</string>
<string name="pref_profile_info_headline">Hollsi Profili Tuajt</string>
<string name="pref_profile_photo">Foto Profili</string>
<string name="pref_blocked_contacts">Kontakte t Bllokuar</string>
<string name="blocked_empty_hint">Nse bllokoni kontakte, do t shfaqen ktu.</string>
<!-- for classic email, we use the classical term "Account" -->
<string name="pref_password_and_account_settings">Fjalkalim dhe Llogari</string>
<string name="pref_who_can_see_profile_explain">Fotoja juaj e profilit, emri dhe nnshkrimi do t drgohen tok me mesazhet tuaj, kur komunikoni me prdorues t tjer.</string>
<string name="pref_your_name">Emri juaj</string>
<!-- Translators: Visible only to recipients who DO NOT use Delta Chat, so it's the last line in an E-mail and not a "Status". -->
<string name="pref_default_status_label">Tekst Nnshkrimi</string>
<string name="pref_enter_sends">Tasti Enter Drgon</string>
<string name="pref_enter_sends_explain">Shtypja e tastit Enter do t drgoj mesazhe tekst</string>
<string name="pref_outgoing_media_quality">Cilsi Mediash N Dalje</string>
<string name="pref_outgoing_balanced">E baraspeshuar</string>
<string name="pref_outgoing_worse">Cilsia m e ult, madhsi e vogl</string>
<string name="pref_vibrate">Dridhu</string>
<string name="pref_screen_security">Siguri Ekrani</string>
<!-- Translators: Must indicate that there is no guarantee as the system may not honor our request. -->
<string name="pref_screen_security_explain">Krko t bllokohen foto ekrani n lista t freskta dhe brenda aplikacionit</string>
<string name="pref_screen_security_please_restart_hint">Q t hyjn n fuqi rregullimet mbi sigurin e ekranit, ju lutemi, rinisni aplikacionin.</string>
<string name="pref_notifications">Njoftime</string>
<string name="pref_notifications_show">Shfaqi</string>
<string name="pref_notifications_priority">Prparsi</string>
<string name="pref_notifications_explain">Aktivizoni njoftime sistemi pr mesazhe t reja</string>
<string name="pref_show_notification_content">Shfaq lnd mesazhi n njoftim</string>
<string name="pref_show_notification_content_explain">Shfaq te njoftimet drguesin dhe fjalt e para t mesazhit</string>
<string name="pref_led_color">Ngjyr LED-i</string>
<string name="pref_sound">Tingull</string>
<string name="pref_silent">Heshtazi</string>
<string name="pref_privacy">Privatsi</string>
<string name="pref_chats_and_media">Fjalosje dhe Media</string>
<string name="pref_system_default">Parazgjedhje sistemi</string>
<!-- Translators: as in "opposite of dark" -->
<string name="pref_light_theme">E elt</string>
<string name="pref_dark_theme">E errt</string>
<string name="pref_appearance">Dukje</string>
<string name="pref_theme">Tem</string>
<string name="pref_language">Gjuh</string>
<string name="pref_incognito_keyboard">Tastier Incognito</string>
<!-- Translators: Must indicate that there is no guarantee as the system may not honor our request. -->
<string name="pref_incognito_keyboard_explain">Krkoji tastiers t aktivizoj nxnie t personalizuar</string>
<string name="pref_read_receipts">Dftesa Leximi</string>
<string name="pref_read_receipts_explain">Nse dftesat e leximit jan t aktivizuara, s\do t jeni n gjendje t shihni dftesa leximi prej t tjersh.</string>
<string name="pref_server">Shrbyes</string>
<string name="pref_encryption">Fshehtzim</string>
<string name="pref_manage_keys">Administroni Kye</string>
<string name="pref_use_system_emoji">Prdor Emoji Sistemi</string>
<string name="pref_use_system_emoji_explain">aktivizo mbulimin e brendshm Delta Chat pr emoji-t</string>
<string name="pref_use_inapp_camera">Prdor Kamern e Vet Aplikacionit</string>
<string name="pref_use_inapp_camera_explain">Kamera e vet aplikacionit, zakonisht, ka m pak veori se kamera e sistemit</string>
<string name="pref_show_system_contacts">T Lexoj Libr Adresash Sistemi</string>
<string name="pref_show_system_contacts_explain">Ofro krijim fjalosjesh me kontakte prej libri adresash. Disa shrbime lypin ujdisje fshehtzimi skaj-m-skaj s pari.</string>
<string name="pref_chats">Fjalosje</string>
<string name="pref_in_chat_sounds">Tinguj Brenda Fjalosjeje</string>
<string name="pref_message_text_size">Madhsi Shkronjash Mesazhi</string>
<string name="pref_view_log">Shihni Regjistrin</string>
<string name="pref_saved_log">Regjistri u ruajt te dosja Shkarkime</string>
<string name="pref_save_log_failed">Dshtoi ruajtja e regjistrit</string>
<string name="pref_log_header">Regjistr</string>
<string name="pref_other">T tjera</string>
<string name="pref_backup">Kopjeruajtje</string>
<string name="pref_backup_explain">Kopjeruaji Fjalosjet n Depozitim t Jashtm</string>
<string name="pref_backup_export_explain">Nj kopjeruajtje ju lejon t rregulloni nj instalim t ri n kt apo n nj tjetr pajisje.\n\nKopjeruajtja do t prmbaj krejt mesazhet, kontaktet dhe fjalosjet, si dhe rregullimin tuaj pr Autocrypt skaj-m-skaj. Mbajeni karteln e kopjeruajtjes diku t parrezik, prndryshe fshijeni as m shpejt q t jet e mundur.</string>
<!-- the placeholder will be replaced by the name of the profile's email address -->
<string name="pref_backup_export_x">Eksporto %1$s</string>
<!-- the placeholder will be replaced by the number of profiles to export; the number is always larger than 1 -->
<string name="pref_backup_export_all">Eksporto krejt llogarit e %1$d</string>
<string name="pref_backup_export_start_button">Nis Kopjeruajtjen</string>
<string name="pref_backup_written_to_x">Kopjeruajtje e shkruar me sukses te %1$s</string>
<string name="pref_managekeys_menu_title">Administroni Kye</string>
<string name="pref_managekeys_export_secret_keys">Eksportoni Kye t Fsheht</string>
<string name="pref_managekeys_export_explain">T eksportohen kyet e fsheht te %1$s?</string>
<string name="pref_managekeys_import_secret_keys">Importoni Kye t Fsheht</string>
<string name="pref_managekeys_import_explain">T importohen kye t fsheht prej %1$s?\n\n Kyet e fsheht ekzistues s\do t fshihen\n\n Kyi i fundit i importuar do t prdoret si kyi i ri parazgjedhje, hiq rastin kur prmban te emri i kartels fjaln legacy</string>
<string name="pref_managekeys_secret_keys_exported_to_x">Kye t fsheht shkruar me sukses te %1$s.</string>
<string name="pref_managekeys_secret_keys_imported_from_x">U importuan kye t fsheht nga %1$s.</string>
<!-- No need to translate "Wallpaper" literally. Chose what is common in your language for a "Wallpaper" or a "Background". Avoid adding the term "image" here, as the "Wallpaper" may also be just a single color. -->
<string name="pref_background">Sfond</string>
<string name="pref_background_btn_default">Prdor Figurn Parazgjedhje</string>
<string name="pref_background_btn_gallery">Przgjidhni Nga Galeri</string>
<string name="pref_imap_folder_handling">Trajtim Dosjesh IMAP</string>
<string name="pref_imap_folder_warn_disable_defaults">Nse e ndryshoni kt mundsi, garantoni q shrbyesi juaj dhe klientt tuaj t tjert t jen formsuar pr kt.\n\nPrndryshe gjrat mund t mos punojn fare.</string>
<string name="pref_watch_sent_folder">Vzhgo Dosje T drguarish</string>
<string name="pref_send_copy_to_self">Drgojini Kopje Vetes</string>
<!-- for classic email, we use the classical term "Account" -->
<string name="pref_send_copy_to_self_explain">E domosdoshme kur kjo llogari prdoret n nj numr pajisjesh.</string>
<string name="pref_auto_folder_moves">Kaloji vetvetiu te Dosja DeltaChat</string>
<string name="pref_auto_folder_moves_explain">Bisedat zhvendosen, q t shmanget rrmuja te dosja T marr</string>
<string name="pref_only_fetch_mvbox_title">Sill Vetm nga Dosje DeltaChat</string>
<string name="pref_only_fetch_mvbox_explain">Shprfill dosje t tjera. Lyp q shrbyesi juaj t kaloj mesazhe fjalosjeje te dosje DeltaChat.</string>
<string name="pref_show_emails">Shfaq Email-e Klasik</string>
<string name="pref_show_emails_no">Jo, vetm fjalosje</string>
<string name="pref_show_emails_accepted_contacts">Pr kontakte t pranuar</string>
<string name="pref_show_emails_all">Krejt</string>
<string name="pref_experimental_features">Veori Eksperimentale</string>
<string name="pref_developer_mode">Mnyra Zhvillues</string>
<string name="pref_developer_mode_explain">Aktivizon mundsi diagnostikimi dhe mund ta bj aplikacionin m pak t qndrueshm. Vetm pr zhvillues.</string>
<string name="pref_background_default">Figur parazgjedhje</string>
<string name="pref_background_default_color">Ngjyr parazgjedhje</string>
<string name="pref_background_custom_image">Figur vetjake</string>
<string name="pref_background_custom_color">Ngjyr vetjake</string>
<string name="export_aborted">Eksportimi dshtoi.</string>
<string name="auto_download_messages">Vetshkarko Mesazhet</string>
<!-- %1$s will be replaced by a human-readable number of bytes, eg. 32 KiB, 1 MiB -->
<string name="up_to_x">Deri n %1$s</string>
<string name="up_to_x_most_worse_quality_images">Deri n %1$s, figura me cilsin m t dobt</string>
<string name="up_to_x_most_balanced_quality_images">Deri n %1$s, figurat me cilsin m t baraspeshuar</string>
<string name="download_failed">Shkarkimi dshtoi</string>
<!-- %1$s will be replaced by a human-readable number of bytes, eg. 32 KiB, 1 MiB. Resulting string eg. "1 MiB message" -->
<string name="n_bytes_message">Mesazh %1$s</string>
<!-- %1$s will be replaced by human-readable date and time -->
<string name="download_max_available_until">Shkarko maksimumin e mundshm deri m %1$s</string>
<string name="profile_image_select">Przgjidhni Figur Profili</string>
<string name="select_your_new_profile_image">Przgjidhni figurn tuaj t re t profilit</string>
<string name="profile_image_delete">Fshini Figurn e Profilit</string>
<string name="pref_show_tray_icon">Shfaq Ikon Paneli</string>
<string name="pref_edit_profile">Prpunoni Profil</string>
<string name="disable_imap_idle">aktivizo IMAP IDLE</string>
<string name="disable_imap_idle_explain">Mos e prdor zgjerimin IMAP IDLE, edhe kur shrbyesi e mbulon. Aktivizimi i ksaj mundsie do t vonoj marrjen e mesazheve, aktivizojeni vetm pr testime.</string>
<string name="send_stats_to_devs">Drgojuni zhvilluesve t Delta Chat-it statistika</string>
<!-- Emoji picker and categories -->
<string name="emoji_search_results">Prfundime Krkimi</string>
<string name="emoji_not_found">Su gjetn emoji</string>
<string name="emoji_recent">Prdorur S Fundi</string>
<string name="emoji_people">Njerz & Trupi</string>
<string name="emoji_nature">Kafsh & Natyr</string>
<string name="emoji_foods">Ushqim & Pije</string>
<string name="emoji_activity">Veprimtari</string>
<string name="emoji_places">Udhtime & Vende</string>
<string name="emoji_objects">Objekte</string>
<string name="emoji_symbols">Simbole</string>
<string name="emoji_flags">Flamuj</string>
<!-- Reactions -->
<string name="reactions">Reagime</string>
<!-- Verb, the action of adding a "Reaction" to a message. Used eg. in context menus, similar to "Reply" or "Forward" -->
<string name="react">Reagoni</string>
<!-- %1$s will be replaced by an emoji. %2$s will be replaced by message summary (the summary is often long and whole string gets truncated; words after %2$s will often not being visible). Eg. 'You reacted to "Found my suitcase"'. Use less than 20 characters, otherwise the string will be truncated too soon and too few information are shown. Do not try to translate "reacted to" too strict. Depending on the language, "added to" or "gave to" or just " to" may be shorter and/or clearer and work as well. -->
<string name="reaction_by_you">Reaguat me %1$s ndaj %2$s</string>
<!-- %1$s will be replaced a name. %2$s will be replaced by an emoji. %3$s will be replaced by message summary (the summary is often long and whole string gets truncated; words after %3$s will often not being visible). Eg. 'Alice reacted to "Nice photos"'. Use less than 20 characters, otherwise the string will be truncated too soon and too few information are shown. Do not try to translate "reacted to" too strict. Depending on the language, "added to" or "gave to" or just " to" may be shorter and/or clearer work as well. -->
<string name="reaction_by_other">%1$s reagoi me %2$s ndaj %3$s</string>
<!-- automatically delete message -->
<string name="delete_old_messages">Fshiji Mesazhet e Vjetr</string>
<string name="autodel_device_title">Fshiji Mesazhet prej Pajisjes</string>
<string name="autodel_server_title">Fshiji Mesazhe prej Shrbyesi</string>
<!-- %1$d will be replaced by the number of messages, you can assume plural/lots here. %2$s will be replaced by a timespan option. -->
<string name="autodel_device_ask">Doni t fshihen %1$d mesazhe tani dhe krejt mesazhet e prur rishtazi %2$s n t ardhmen?\n\n Kjo prfshin krejt mediat\n\n Mesazhi do t fshihet, qoft kur sht par, qoft kur ssht par\n\n Mesazhe t ruajtur do t anashkalohen nga fshirja vendore</string>
<!-- %1$d will be replaced by the number of messages, you can assume plural/lots here. %2$s will be replaced by a timespan option. -->
<string name="autodel_server_ask">Doni t fshihen tani %1$d mesazhe dhe krejt mesazhet e prur rishtas %2$s m von n t ardhmen?\n\n Kjo prfshin email-et, media dhe Mesazhe t ruajtur n krejt dosjet e shrbyesit\n\n Mos e prdorni kt funksion, nse doni t mbani t dhnat n shrbyes\n\n Mos e prdorni kt funksion, nse po prdorni klient t tjert prkrah Delta Chat-it</string>
<!-- shown below enabled autodel_server-option, should be a summary of autodel_server_ask and remind about the impact -->
<string name="autodel_server_enabled_hint">Kjo prfshin email-et, media dhe Mesazhe t ruajtur n krejt dosjet e shrbyesit. Mos e prdorni kt funksion, nse doni t mbani t dhnat te shrbyesi ose nse po prdorni klient t tjert prkrah Delta Chat-it</string>
<string name="autodel_server_warn_multi_device_title">Aktivizoni fshirje t menjhershme</string>
<string name="autodel_server_warn_multi_device">Nse aktivizoni fshirje t menjhershme, smund t prdorni pajisje t shumta n kt profil.</string>
<string name="autodel_confirm">E kuptoj, fshiji krejt kto mesazhe</string>
<!-- "At once" in the meaning of "Immediately", without any intervening time. -->
<string name="autodel_at_once">Menjher</string>
<string name="after_30_seconds">Pas 30 sekondash</string>
<string name="after_1_minute">Pas 1 minute</string>
<string name="after_5_minutes">Pas 5 minutash</string>
<string name="after_30_minutes">Pas 30 minutash</string>
<string name="autodel_after_1_hour">Pas 1 ore</string>
<string name="autodel_after_1_day">Pas 1 dite</string>
<string name="autodel_after_1_week">Pas 1 jave</string>
<string name="after_5_weeks">Pas 5 javsh</string>
<string name="autodel_after_1_year">Pas 1 viti</string>
<!-- autocrypt -->
<string name="autocrypt_send_asm_title">Drgo Mesazh Rregullimi Autocrypt-i</string>
<string name="autocrypt_send_asm_explain_before">Nj Mesazh Rregullimi Autocrypt-i ua jep, n mnyr t parrezik, rregullimin tuaj pr fshehtzimin skaj-m-skaj pajisjeve t tjera q prdorin Autocrypt-in.\n\nRregullimi do t fshehtzohet prmes nj kodi rregullimi i cili shfaqet ktu dhe duhet dhn te pajisja tjetr.</string>
<string name="autocrypt_send_asm_button">Drgo Mesazh Rregullimi Autocrypt-i</string>
<string name="autocrypt_send_asm_explain_after">Rregullimi juaj u drgua te ju. Kaloni te pajisja tjetr dhe hapni mesazhin e rregullimit. Do t\ju krkohet nj kod rregullimi. Shtypni atje shifrat vijuese.\n\nPasi t keni mbaruar, pajisja juaj tjetr do t jet gati t prdor Autocrypt-in.</string>
<string name="autocrypt_prefer_e2ee">Paraplqe Fshehtzim Skaj-M-Skaj</string>
<string name="autocrypt_asm_subject">Mesazh Rregullimi Autocrypt-i</string>
<string name="autocrypt_asm_general_body">Ky sht Mesazhi i Rregullimit t Autocrypt-it i prdorur pr t shprngulur rregullimin tuaj skaj-m-skaj n klient t tjer.\n\nQ ta shfshehtzoni rregullimin tuaj, hapeni mesazhin te nj klient q mund t prdor Autocrypt-in dhe jepni kodin e rregullimit t treguar te pajisja q e prodhoi.</string>
<string name="autocrypt_asm_click_body">Ky sht mesazhi i Rregullimit t Autocrypt-it i prdorur pr t shprngulur mes klientsh rregullimin tuaj skaj-m-skaj.\n\nPr ta fshehtzuar dhe prdorur rregullimin tuaj, prekni ose klikoni mbi kt mesazh.</string>
<string name="autocrypt_continue_transfer_title">Mesazh Rregullimi Autocrypt-i</string>
<string name="autocrypt_continue_transfer_please_enter_code">Ju lutemi, jepni kodin e rregullimit q sht shfaqur te pajisja tjetr.</string>
<string name="autocrypt_continue_transfer_succeeded">Rregullimi pr fshehtzim skaj-m-skaj u shprngul. Kjo pajisje tani sht gati t prdor Autocrypt-in me t njjtin rregullim si pajisja tjetr.</string>
<string name="autocrypt_continue_transfer_retry">Riprovo</string>
<string name="autocrypt_bad_setup_code">Kod i gabuar rregullimi. Ju lutemi, riprovoni.\n\nNse s\e mbani mend kodin e rregullimit, thjesht drgoni nj tjetr Mesazh Rregullimi Autocrypt-i prej pajisjes tjetr.</string>
<!-- system messages -->
<!-- deprecated -->
<string name="systemmsg_read_receipt_subject">Mesazhi u hap</string>
<!-- deprecated -->
<string name="systemmsg_read_receipt_body">Mesazhi %1$s q drguat, u shfaq n ekranin e marrsit.\n\nKjo ssht garanci se lnda u lexua.</string>
<string name="systemmsg_cannot_decrypt">Ky mesazh smund t shfshehtzohet.\n\n Mundet tju ndih thjesht ti prgjigjeni ktij mesazhi dhe ti krkoni drguesit ta ridrgoj mesazhin.\n\n Nse sapo riinstaluat Delta Chat-in, ather m e mira sht t riujdisni Delta Chat-in tani dhe t zgjidhni Shtoje si pajisje t dyt, ose t importoni nj kopjeruajtje.</string>
<string name="systemmsg_unknown_sender_for_chat">Drgues i panjohur pr kt fjalosje. Pr m tepr hollsi, shihni \'info\'.</string>
<string name="systemmsg_subject_for_new_contact">Mesazh nga %1$s</string>
<string name="systemmsg_failed_sending_to">Su arrit t drgohej mesazh te %1$s.</string>
<!-- %1$s will be replaced by the old group name, %2$s will be replaced by the new group name -->
<string name="group_name_changed_by_you">E ndryshuat emrin e grupit nga %1$s n %2$s.</string>
<!-- %1$s will be replaced by the old group name, %2$s will be replaced by the new group name, %3$s will be replaced by name and address of the contact who did the action. -->
<string name="group_name_changed_by_other">Emri i grupit u ndryshua nga %1$s n %2$s nga %3$s.</string>
<string name="group_image_changed_by_you">Ndryshuat figurn e grupit</string>
<!-- %1$s will be replaced by name and address of the contact who did the action -->
<string name="group_image_changed_by_other">Figura e grupit u ndryshua nga %1$s.</string>
<!-- %1$s will be replaced by name and address of the contact added to the group -->
<string name="member_x_added">U shtua antar %1$s.</string>
<!-- %1$s will be replaced by name and address of the contact added to the group -->
<string name="add_member_by_you">Shtuat antarin %1$s.</string>
<!-- %1$s will be replaced by name and address of the contact added to the group, %2$s will be replaced by name and address of the contact who did the action -->
<string name="add_member_by_other">Antari %1$s u shtua nga %2$s.</string>
<!-- %1$s will be replaced by name and address of the contact removed from the group -->
<string name="remove_member_by_you">Hoqt antarin %1$s.</string>
<!-- %1$s will be replaced by name and address of the contact removed from the group, %2$s will be replaced by name and address of the contact who did the action -->
<string name="remove_member_by_other">Antari %1$s u hoq nga %2$s.</string>
<!-- "left" in the meaning of "exited" -->
<string name="group_left_by_you">E braktist grupin.</string>
<!-- "left" in the meaning of "exited"; %1$s will be replaced by name and address of the contact leaving the group -->
<string name="group_left_by_other">Grupi u braktis nga %1$s.</string>
<string name="group_image_deleted_by_you">Fshit figurn e grupit.</string>
<!-- %1$s will be replaced by name and address of the contact -->
<string name="group_image_deleted_by_other">Figura e grupit u fshi nga %1$s.</string>
<string name="location_enabled_by_you">Aktivizuat dhnie vendndodhjeje</string>
<!-- %1$s will be replaced by name and address of the contact -->
<string name="location_enabled_by_other">Dhnie vendndodhjeje aktivizuar nga %1$s.</string>
<string name="ephemeral_timer_disabled_by_you">aktivizuat kohmatsin e zhdukjes s mesazheve.</string>
<!-- %1$s will be replaced by name and address of the contact -->
<string name="ephemeral_timer_disabled_by_other">Kohmatsi i zhdukjes s mesazheve u aktivizua nga %1$s.</string>
<!-- %1$s will be replaced by the number of seconds (always >1) the timer is set to -->
<string name="ephemeral_timer_seconds_by_you">E vut kohmatsin e zhdukjes s mesazheve n %1$s s</string>
<!-- %1$s will be replaced by the number of seconds (always >1) the timer is set to, %2$s will be replaced by name and address of the contact -->
<string name="ephemeral_timer_seconds_by_other">Kohmatsi i zhdukjes s mesazheve u vu n %1$s s nga %2$s.</string>
<string name="ephemeral_timer_1_minute_by_you">E vut kohmatsin e zhdukjes s mesazheve n 1 minut.</string>
<!-- %1$s will be replaced by name and address of the contact -->
<string name="ephemeral_timer_1_minute_by_other">Kohmatsi i zhdukjes s mesazheve u vu n 1 minut nga %1$s.</string>
<string name="ephemeral_timer_1_hour_by_you">E vut kohmatsin e zhdukjes s mesazheve n 1 or.</string>
<!-- %1$s will be replaced by name and address of the contact -->
<string name="ephemeral_timer_1_hour_by_other">Kohmatsi i zhdukjes s mesazheve u vu n 1 or nga %1$s.</string>
<string name="ephemeral_timer_1_day_by_you">E vut kohmatsin e zhdukjes s mesazheve n 1 dit.</string>
<!-- %1$s will be replaced by name and address of the contact -->
<string name="ephemeral_timer_1_day_by_other">Kohmatsi i zhdukjes s mesazheve u vu n 1 dit nga %1$s.</string>
<string name="ephemeral_timer_1_week_by_you">E vut kohmatsin e zhdukjes s mesazheve n 1 jav.</string>
<!-- %1$s will be replaced by name and address of the contact -->
<string name="ephemeral_timer_1_week_by_other">Kohmatsi i zhdukjes s mesazheve u vu n 1 jav nga %1$s.</string>
<!-- %1$s will be replaced by the number of minutes (always >1) the timer is set to -->
<string name="ephemeral_timer_minutes_by_you">E vut kohmatsin e zhdukjes s mesazheve n %1$s minuta.</string>
<!-- %1$s will be replaced by the number of minutes (always >1) the timer is set to, %2$s will be replaced by name and address of the contact -->
<string name="ephemeral_timer_minutes_by_other">Kohmatsi i zhdukjes s mesazheve u vu n %1$s minuta nga %2$s.</string>
<!-- %1$s will be replaced by the number of hours (always >1) the timer is set to -->
<string name="ephemeral_timer_hours_by_you">E vut kohmatsin e zhdukjes s mesazheve n %1$s or.</string>
<!-- %1$s will be replaced by the number of hours (always >1) the timer is set to, %2$s will be replaced by name and address of the contact -->
<string name="ephemeral_timer_hours_by_other">Kohmatsi i zhdukjes s mesazheve u vu n %1$s or nga %2$s.</string>
<!-- %1$s will be replaced by the number of days (always >1) the timer is set to -->
<string name="ephemeral_timer_days_by_you">E vut kohmatsin e zhdukjes s mesazheve n %1$s dit.</string>
<!-- %1$s will be replaced by the number of days (always >1) the timer is set to, %2$s will be replaced by name and address of the contact -->
<string name="ephemeral_timer_days_by_other">Kohmatsi i zhdukjes s mesazheve u vu n %1$s dit nga %2$s.</string>
<!-- %1$s will be replaced by the number of weeks (always >1) the timer is set to -->
<string name="ephemeral_timer_weeks_by_you">E vut kohmatsin e zhdukjes s mesazheve n %1$s jav.</string>
<!-- %1$s will be replaced by the number of weeks (always >1) the timer is set to, %2$s will be replaced by name and address of the contact -->
<string name="ephemeral_timer_weeks_by_other">Kohmatsi i zhdukjes s mesazheve u vu n %1$s jav nga %2$s.</string>
<!-- this may be shown instead of the chat's input field, with buttons "More Info" and "OK" -->
<string name="chat_protection_broken">%1$s drgoi nj mesazh nga nj pajisje tjetr.</string>
<string name="chat_protection_enabled_tap_to_learn_more">Nga sot e tutje pr mesazhet garantohet fshehtzimi skaj-m-skaj. Prekeni, q t msoni m tepr.</string>
<string name="chat_protection_enabled_explanation">Tanim pr mesazhet n kt fjalosje garantohet fshehtzimi skaj-m-skaj.\n\nFshehtzimi skaj-m-skaj i mban private mesazhet mes jush dhe partnerve tuaj t fjalosjes. Ato smund ti lexoj as furnizuesi i shrbimit tuaj email.</string>
<string name="chat_protection_broken_tap_to_learn_more">%1$s drgoi nj mesazh nga nj pajisje tjetr. Prekeni, q t msoni m tepr.</string>
<string name="chat_protection_broken_explanation">Fshehtzimi skaj-m-skaj smund t garantohet m, ngaq, sipas gjasash, %1$s riinstaloi Delta Chat-in, ose drgoi nj mesazh nga nj tjetr pajisje.\n\nMund ta takoni dhe t skanoni srish KODIN e tij QR, q t rivendoset fshehtzim skaj-m-skaj i garantuar.</string>
<string name="invalid_unencrypted_tap_to_learn_more"> %1$s lyp fshehtzim, i cili ssht ujdisur ende pr kt fjalosje. Q t msoni m tepr, prekeni.</string>
<string name="invalid_unencrypted_explanation">Pr t vendosur fshehtzim skaj-m-skaj, mund t takoheni personalisht me kontaktet dhe t skanoni kodin e tyre QR, pr ti pranuar.</string>
<string name="encryption_required_for_new_contact">sht i domosdoshm fshehtzim skaj-m-skaj, por pr %1$s ssht ujdisur ende i till.\n\nMund ti jepni lidhjen e ftess tuaj, ose t takoheni personalisht dhe t skanoni kodin e tij QR.</string>
<string name="learn_more">Msoni M Tepr</string>
<string name="devicemsg_self_deleted">Fshit fjalosjen Mesazhe t ruajtur.\n\n Q t prdorni srish veorin Mesazhe t ruajtur, krijoni nj fjalosje t re me veten tuaj.</string>
<!-- %1$s will be replaced by the amount of storage already used, sth. as '500 MB'. If you want to use a percentage sign, type in two of them, eg. %1$s %% -->
<string name="devicemsg_storage_exceeding"> Po mbaron depozita e shrbimit tuaj, prdoren tashm %1$s%%.\n\nKur depozita sht 100%% e prdorur, mund t mos jeni n gjendje t merrni mesazhe.\n\n Ju lutemi, shihni se mos mund t fshini t dhna t vjetra q nga ndrfaqja web e furnizuesit t shrbimit dhe shihni mundsin t aktivizoni Rregullime / Fshi Mesazhe t Vjetr. Se sa depozit sht aktualisht e prdorur mund ta kontrolloni kurdo, q nga \"Rregullime / Lidhje\".</string>
<!-- %1%s will be replaced by date and time in some human-readable format -->
<string name="devicemsg_bad_time"> Data ose koha e pajisjes tuaj duket t jet e pasakt (%1$s).\n\nRregulloni sahatin tuaj q t garantohet se mesazhet tuaj merren sakt.</string>
<string name="devicemsg_update_reminder"> Versioni juaj i Delta Chat-it duket t jet i vjetruar.\n\nKjo mund t shkaktoj probleme, ngaq partnert tuaj t fjalosjes prdorin versione t rinj - dhe ju mungojn veorit m t reja \nPr prditsime, ju lutemi, shihni te path_to_url ose te shitorja juaj e aplikacioneve.</string>
<!-- Some options as "Add Second Device" or "Backup" may require the system PIN/Fingerprint/Gesture/Etc. to be entered in a system dialog. This hint is added to the system dialog, below a title as "Add Second Device" or "Backup". -->
<string name="enter_system_secret_to_continue">Q t vazhdohet, shkyeni</string>
<!-- qr code stuff -->
<string name="qr_code">Kod QR</string>
<string name="load_qr_code_as_image">Ngarkoje Kodin QR si Figur</string>
<string name="qrscan_title">Skanoni Kod QR</string>
<string name="qrscan_hint">Mbajeni kamern tuaj prmbi kodin QR</string>
<string name="qrscan_hint_desktop">Kalojeni kodin QR te kamera</string>
<string name="qrscan_failed">Kodi QR su shkodua dot</string>
<string name="qrscan_ask_join_group">Doni t bheni pjes e grupit %1$s?</string>
<string name="qrscan_fingerprint_mismatch">Shenjat e gishtave t skanuar nuk prputhen me shenjat e gishtave par s fundi pr %1$s.</string>
<string name="qrscan_no_addr_found">Ky kod QR prmban shenja gishtash, por jo adres email.\n\nPr nj verifikim out-of-band, ju lutemi, s pari vendosni me marrsin nj lidhje t fshehtzuar.</string>
<string name="qrscan_contains_text">Tekst kodi QR t skanuar:\n\n%1$s</string>
<string name="qrscan_contains_url">URL kodi QR t skanuar:\n\n%1$s</string>
<string name="qrscan_fingerprint_label">Shenja gishtash</string>
<string name="withdraw_verifycontact_explain">Ky kod QR mund t skanohet nga t tjer pr tu lidhur me ju.\n\nKodin QR mund ta aktivizoni ktu dhe ta riaktivizoni duke e riskanuar.</string>
<string name="withdraw_verifygroup_explain">Ky kod QR mund t skanohet nga t tjer pr tu br pjes e grupit %1$s.\n\nKodin QR mund ta aktivizoni ktu dhe ta riaktivizoni duke e riskanuar.</string>
<string name="withdraw_qr_code">aktivizoni Kodin QR</string>
<!-- "could" in the meaning of "possible at some point in the past, but no longer possible today" -->
<string name="revive_verifycontact_explain">Ky kod QR mund t skanohet nga t tjer pr t ujdisur kontakt me ju.\n\nKodi QR ssht aktiv n kt pajisje.</string>
<!-- "could" in the meaning of "possible at some point in the past, but no longer possible today" -->
<string name="revive_verifygroup_explain">Ky kod QR mund t skanohet nga t tjer pr tu br pjes e grupit %1$s.\n\nKodi QR ssht aktiv n kt pajisje.</string>
<string name="revive_qr_code">Aktivizoni Kod QR</string>
<string name="qrshow_title">Kod QR Ftese</string>
<string name="qrshow_x_joining">%1$s vjen.</string>
<string name="qrshow_x_verified">%1$s u prezantua.</string>
<string name="qrshow_x_has_joined_group">%1$s u b pjes e grupit.</string>
<string name="qrshow_join_group_title">Kod QR Ftese</string>
<!-- This text is shown inside the "QR code card" with very limited space; please formulate the text as short as possible therefore. The placeholder will be replaced by the group name, eg. "Scan to join group \"Testing group\"" -->
<string name="qrshow_join_group_hint">Pr tu br pjes e grupit %1$s, skanojeni</string>
<string name="qrshow_join_contact_title">Kod QR Ftese</string>
<!-- This text is shown inside the "QR code card" with very limited space; please formulate the text as short as possible therefore. The placeholder will be replaced by name and address eg. "Scan to chat with Alice (alice@example.org)" -->
<string name="qrshow_join_contact_hint">Q t bisedoni me %1$s, skanojeni</string>
<string name="qrshow_join_contact_no_connection_toast">S\ka lidhje n internet, s\bhet dot ujdisja e kodit QR.</string>
<string name="qraccount_ask_create_and_login">T krijohet adres email e re te %1$s dhe t bhet hyrja atje?</string>
<string name="qraccount_ask_create_and_login_another">T krijohet adres e re email n %1$s dhe t bhet hyrja atje?\n\nLlogaria juaj ekzistuese sdo t fshihet. Q t kaloni nga nj llogari n tjetrn, prdorni zrin Ndrroni llogari.</string>
<string name="set_name_and_avatar_explain">Caktoni nj emr, q kontaktet tuaj do ta njohin. Mundeni edhe t caktoni nj emr profili.</string>
<string name="please_enter_name">Ju lutemi, jepni nj emr.</string>
<string name="qraccount_qr_code_cannot_be_used">Kodi QR i skanuar smund t prdoret pr t ujdisur nj llogari t re.</string>
<!-- the placeholder will be replaced by the e-mail address of the profile -->
<string name="qrlogin_ask_login">T hyhet si %1$s?</string>
<!-- the placeholder will be replaced by the e-mail address of the profile -->
<string name="qrlogin_ask_login_another">T hyhet si %1$s?\n\nLlogaria juaj ekzistuese sdo t fshihet. Q t kaloni nga nj llogari e juaja n nj tjetr, prdorni zrin Ndrroni Llogari.</string>
<!-- first placeholder will be replaced by name and address of the inviter, second placeholder will be replaced by the name of the inviter. -->
<string name="secure_join_started">%1$s ju ftoi t bheni pjes e ktij grupi.\n\nPo pritet pr pajisjen e %2$s q t prgjigjet</string>
<!-- placeholder will be replaced by the name of the inviter. -->
<string name="secure_join_replies">%1$s u prgjigj, po pritet q t shtohet te grupi</string>
<string name="secure_join_wait">Po vendoset fshehtzim skaj-m-skaj i garantuar, ju lutemi, pritni</string>
<string name="secure_join_wait_timeout">Su vendos dot fshehtzim skaj-m-skaj i garantuar, por mundeni tashm t drgoni nj mesazh.</string>
<string name="contact_verified">%1$s u verifikua.</string>
<string name="contact_not_verified">Svendoset dot fshehtzim i garantuar skaj-m-skaj me %1$s.</string>
<!-- Shown in contact profile. The placeholder will be replaced by the name of the contact that introduced the contact. -->
<string name="verified_by">Sjell nga %1$s</string>
<string name="verified_by_you">Sjell nga un</string>
<!-- translators: "setup" is the "encryption setup" here, as in "Autocrypt Setup Message" -->
<string name="contact_setup_changed">U ndryshua udjisja pr %1$s</string>
<string name="verified_contact_required_explain">Q t garantohet fshehtzim skaj-m-skaj, mund t shtoni n kt grup vetm kontakte me shenjn e gjelbr t verifikimit.\n\nMund t takoheni drejtprsdrejti me kontakte t paverifikuar dhe t skanoni kodin e tyre QR pr ti verifikuar ata.</string>
<string name="copy_qr_data_success">URL-ja QR u kopjua n t papastr</string>
<string name="mailto_dialog_header_select_chat">Przgjidhni fjalosje ku t drgohet mesazhi</string>
<!-- first placeholder is the name of the chat -->
<string name="confirm_replace_draft">%1$s prmban tashm nj skic mesazhi, doni t zvendsohet?</string>
<string name="mailto_link_could_not_be_decoded">su shkodua dot lidhje mailto: %1$s</string>
<!-- notifications -->
<string name="notify_dismiss">Hidhe tej</string>
<string name="notify_reply_button">Prgjigjuni</string>
<string name="notify_new_message">Mesazh i ri</string>
<string name="notify_background_connection_enabled">U vendos lidhje n prapasken</string>
<string name="notify_priority_high">E lart</string>
<string name="notify_priority_max">Maksimale</string>
<string name="notify_name_and_message">Emr dhe mesazh</string>
<string name="notify_name_only">Vetm emr</string>
<string name="notify_no_name_or_message">Pa emr apo mesazh</string>
<string name="notifications_disabled">Njoftimet t aktivizuara</string>
<string name="new_messages">Mesazhe t rinj</string>
<!-- Body text for a generic "New messages" notification. Shown if we do not have more information about a new messages. Note, that the string is also referenced at path_to_url -->
<string name="new_messages_body">Keni mesazhe t rinj</string>
<string name="n_messages_in_m_chats">%1$d mesazhe n %2$d fjalosje</string>
<!-- permissions -->
<string name="perm_required_title">Lypset leje</string>
<string name="perm_continue">Vazhdo</string>
<string name="perm_explain_access_to_camera_denied">Q t mund t bhen foto apo video, kaloni te rregullimet e aplikacionit, przgjidhni Leje dhe aktivizoni Kamern.</string>
<string name="perm_explain_access_to_mic_denied">Q t mund t drgohen mesazhe audio, kaloni te rregullime aplikacioni, przgjidhni Leje dhe aktivizoni Mikrofonin.</string>
<string name="perm_explain_access_to_storage_denied">Q t merren apo drgohen kartela, kaloni te rregullime aplikacioni, przgjidhni Leje dhe aktivizoni Depozitimin.</string>
<string name="perm_explain_access_to_location_denied">Q t mund t bashkngjitet nj vendndodhje, kaloni te rregullimet e aplikacionit, przgjidhni Leje dhe aktivizoni Vendndodhjen.</string>
<string name="perm_explain_access_to_notifications_denied">Q t merrni njoftime, kaloni te Rregullime Sistemi / Aplikacione / Delta Chat dhe aktivizoni Njoftime.</string>
<!-- ImageEditorHud -->
<string name="ImageEditorHud_draw_anywhere_to_blur">Q t turbullohet, vizatoni kudo qoft</string>
<string name="ImageEditorHud_add_text">Shtoni Tekst</string>
<string name="ImageEditorHud_blur">Turbulloje</string>
<string name="ImageEditorHud_brush_marker">Penel Shnimesh</string>
<string name="ImageEditorHud_brush_highlight">Penel Theksimesh</string>
<string name="ImageEditorHud_crop">Qethe</string>
<string name="ImageEditorHud_flip">Ktheje n an tjetr</string>
<string name="ImageEditorHud_rotate">Rrotulloje</string>
<!-- dc_str_* resources -->
<string name="encrypted_message">Mesazh i fshehtzuar</string>
<!-- strings introduced on desktop. we want to share strings between the os, in general, please do not add generic strings here -->
<string name="about_offical_app_desktop">Ky sht aplikacioni zyrtar Delta Chat Desktop.</string>
<string name="about_licensed_under_desktop">Ky program licencohet sipas GNU GPL version 3 dhe kodi burim mund t kihet q prej GitHub-i.</string>
<string name="welcome_desktop">Mir se vini n Delta Chat</string>
<string name="global_menu_preferences_language_desktop">Gjuh</string>
<string name="global_menu_file_desktop">Kartel</string>
<string name="global_menu_file_quit_desktop">Dilni</string>
<string name="global_menu_edit_desktop">Prpunoni</string>
<string name="global_menu_edit_undo_desktop">Zhbje</string>
<string name="global_menu_edit_redo_desktop">Ribje</string>
<string name="global_menu_edit_cut_desktop">Prije</string>
<string name="global_menu_edit_copy_desktop">Kopjoje</string>
<string name="global_menu_edit_paste_desktop">Ngjite</string>
<string name="global_menu_view_desktop">Shiheni</string>
<string name="global_menu_view_floatontop_desktop">Pezull Prsipr</string>
<string name="global_menu_view_developer_desktop">Zhvillues</string>
<string name="global_menu_view_developer_tools_desktop">Mjete Zhvilluesi</string>
<string name="global_menu_help_desktop">Ndihm</string>
<string name="global_menu_help_learn_desktop">Msoni m tepr rreth Delta Chat-it</string>
<string name="global_menu_help_contribute_desktop">Jepni ndihmes n GitHub</string>
<string name="global_menu_help_report_desktop">Njoftoni nj Problem</string>
<string name="global_menu_help_about_desktop">Rreth Delta Chat-it</string>
<string name="global_menu_file_open_desktop">Hap Delta Chat-in</string>
<string name="global_menu_minimize_to_tray">Minimizoje</string>
<string name="no_chat_selected_suggestion_desktop">Przgjidhni nj fjalosje ose krijoni nj t till t re</string>
<string name="write_message_desktop">Shkruani nj mesazh</string>
<string name="encryption_info_title_desktop">Hollsi Fshehtzimi</string>
<string name="delete_message_desktop">Fshije Mesazhin</string>
<string name="more_info_desktop">M tepr Hollsi</string>
<string name="timestamp_format_m_desktop">D MMM</string>
<string name="remove_desktop">Hiqe</string>
<string name="save_desktop">Ruaje</string>
<string name="name_desktop">Emr</string>
<string name="select_group_image_desktop">Przgjidhni Figur Grupi</string>
<string name="export_backup_desktop">Eksportoni Kopjeruajtje</string>
<string name="autocrypt_correct_desktop">Ujdisja e Autocrypt-it u shprngul.</string>
<string name="forget_login_confirmation_desktop">T fshihet kjo hyrje? Do t fshihet gjithka, prfshi rregullimin tuaj pr skaj-m-skaj, kontaktet, fjalosjet, mesazhet dhe mediat. Ky veprim s\mund t zhbhet.</string>
<string name="message_detail_sent_desktop">t drguar</string>
<string name="message_detail_received_desktop">t marr</string>
<string name="menu.view.developer.open.log.folder">Hap Dosje Regjistrash</string>
<string name="menu.view.developer.open.current.log.file">Hap Karteln Regjistr t Tanishme</string>
<string name="explain_desktop_minimized_disabled_tray_pref" tools:ignore="TypographyDashes">Ikona e panelit smund t aktivizohet, ngaq Delta Chat qe nisur me mundsin --minimized.</string>
<string name="no_spellcheck_suggestions_found">Su gjetn sugjerimi drejtshkrimi.</string>
<string name="show_window">Shfaq Dritare</string>
<string name="login_socks5_experimental_warning">Mbulimi pr SOCKS5 aktualisht sht eksperimental. Ju lutemi, prdoreni duke pasur vet prgjegjsin. Nse shtypni nj adres te fusha e email-it, do t ket krkim DNS q nuk do t kalohet prmes SOCKS5.</string>
<!-- title of the "keybindings" dialog (for the keybindings names as such, where possible the normal command strings are used) -->
<string name="keybindings">Kombinim tastesh</string>
<string name="switch_between_chats">Kaloni nga nj Fjalosje n tjetrn</string>
<string name="scroll_messages">Rrshqitni npr Mesazhe</string>
<!-- command to put the cursor to the search input field -->
<string name="focus_search_input">Fokusohu te Krkimi</string>
<!-- command to put the cursor to the message input field -->
<string name="focus_message_input">Fokusohu te Dhnie Mesazhi</string>
<string name="force_refresh_network">Detyro Freskim Rrjeti</string>
<string name="insert_newline">Futni Rresht t Ri</string>
<!-- accessibility, the general idea is to use the normal strings for accessibility hints wherever possible -->
<string name="a11y_delivery_status_error">Gjendje drgimi: Gabim</string>
<string name="a11y_encryption_padlock">Dry fshehtzimi</string>
<string name="a11y_delivery_status_sending">Gjendje drgimi: Po drgohet</string>
<string name="a11y_delivery_status_draft">Gjendje drgimi: Skic</string>
<string name="a11y_delivery_status_delivered">Gjendje drgimi: I drguar</string>
<string name="a11y_delivery_status_read">Gjendje drgimi: I lexuar</string>
<string name="a11y_delivery_status_invalid">Gjendje drgimi e pavlefshme</string>
<string name="a11y_message_context_menu_btn_label">Veprime mesazhesh</string>
<string name="a11y_background_preview_label">Paraparje sfondi</string>
<string name="a11y_disappearing_messages_activated">Zhdukja e mesazheve sht e aktivizuar</string>
<!-- iOS specific strings, developers: please take care to remove strings that are no longer used! -->
<string name="stop_sharing_location">Ndale tregimin e vendndodhjes</string>
<string name="a11y_voice_message_hint_ios">Pas regjistrimit, prekeni dy her q t drgohet. Pr ta hedhur regjistrimin tej, frkojeni majtas-djathtas me dy gishta.</string>
<string name="a11y_connectivity_hint">Prekeni dy her q t shihni hollsi lidhjeje.</string>
<string name="login_error_no_internet_connection">Ska lidhje internet, hyrja dshtoi.</string>
<string name="share_account_not_configured">Llogaria ssht e formsuar.</string>
<string name="cannot_play_audio_file">Kartela audio sluhet dot.</string>
<!-- iOS camera permission alert -->
<string name="perm_ios_explain_access_to_camera_denied">Pr t br foto, regjistruar video ose prdorur skanerin QR-Code, hapni rregullimet e sistemit dhe aktivizoni Kamera.</string>
<string name="open_settings">Hap Rregullimet</string>
<!-- iOS device contact alert -->
<string name="import_device_contacts">Importo kontakte pajisjeje</string>
<string name="import_device_contacts_hint">Pr tu fjalosur me kontakte nga pajisja juaj, hapni Rregullime dhe aktivizoni Kontaktet.</string>
<!-- iOS notification settings -->
<string name="disabled_in_dc">aktivizuar n Delta Chat</string>
<string name="disabled_in_system_settings">aktivizuar te rregullimet e sistemit</string>
<string name="bg_app_refresh_disabled">Rifreskim Aplikacionesh N Prapasken aktivizuar te rregullimet e sistemit</string>
<string name="notifications_avg_minutes">Mesatarisht do %1$d minuta</string>
<string name="notifications_avg_hours">Mesatarisht %1$d or</string>
<string name="last_check_at">Kontrolluar m %1$s</string>
<!-- iOS webxdc selector -->
<string name="webxdc_selector_empty_hint">Ktu do t duken aplikacione private t drguar apo t marr n cilndo fjalosje. Kartela shfaq aplikacione private t saposhkarkuara.</string>
<!-- iOS webxdc shortcut page -->
<string name="shortcut_step1_tap_share_btn">Klikoni butonin pr ndarje</string>
<string name="shortcut_step2_tap_add_to_home_screen">Q ta shtoni aplikacionin te skena juaj e kreut, przgjidhni Shtoje te Skena e Kreut.</string>
<!-- iOS permissions, copy from "deltachat-ios/Info.plist", which is used on missing translations in "deltachat-ios/LANG.lproj/InfoPlist.strings" -->
<string name="InfoPlist_NSCameraUsageDescription">Lejimi i prdorimi t kamers ju bn t mundur t bni foto dhe video.</string>
<string name="InfoPlist_NSContactsUsageDescription">Lejimi i prdorimi t librit tuaj t adresave ju bn t mundur t bisedoni me kontakte prej pajisjes tuaj.</string>
<string name="InfoPlist_NSLocationAlwaysAndWhenInUseUsageDescription">Q t mund tu tregoj t tjerve vendndodhjen tuaj, Delta Chat lyp leje, pr aq koh sa keni aktivizuar tregim vendndodhjeje.</string>
<string name="InfoPlist_NSLocationWhenInUseUsageDescription">Q t mund tu tregoj t tjerve vendndodhjen tuaj, Delta Chat lyp leje, pr aq koh sa keni aktivizuar tregim vendndodhjeje.</string>
<string name="InfoPlist_NSMicrophoneUsageDescription">Delta Chat-i prdor mikrofonin tuaj pr t incizuar dhe drguar mesazhe zanor dhe video me z.</string>
<string name="InfoPlist_NSPhotoLibraryUsageDescription">Delta Chat-i do tju lejoj t zgjidhni cilat foto t drgohen nga fototeka juaj.</string>
<string name="InfoPlist_NSPhotoLibraryAddUsageDescription">Delta Chat dshiron t ruaj figura n fototekn tuaj.</string>
<!-- android specific strings, developers: please take care to remove strings that are no longer used! -->
<string name="pref_instant_delivery">Drgim i Menjhershm</string>
<string name="pref_background_notifications">Prdor Lidhje N Prapasken</string>
<string name="pref_background_notifications_explain">Lyp shprfillje optimizimesh baterie, prdoreni nse Shrbimi Push sht jasht funksionimi</string>
<string name="pref_reliable_service">Detyro Lidhje N Prapasken</string>
<string name="pref_reliable_service_explain">Shkakton nj njoftim permanent</string>
<string name="pref_background_notifications_rationale">Q t ruhet lidhja me shrbyesin tuaj t email-eve dhe t merren mesazhe n prapasken, n hapin pasues shprfillini optimizimet pr baterin.\n\nDelta Chat-i prdor pak burime dhe kujdeset t mos e shteroj baterin tuaj.</string>
<!-- disabling "Reliable service" will hide a the maybe annoying permanent-notification with the drawback that new-message-notifications get potentially unreliable -->
<string name="perm_enable_bg_reminder_title">Prekeni ktu q t merrni mesazhe, teksa Delta Chat rri n prapasken.</string>
<string name="perm_enable_bg_already_done">E keni lejuar tashm Delta Chat-in t marr mesazhe n prapasken.\n\nNse mesazhet prap nuk mbrrijn n prapasken, ju lutemi, kontrolloni edhe rregullimet e sistemit tuaj.</string>
<!-- device messages for updates -->
<string name="update_1_46_android">Hapa t Rinj Mirseardhjeje Etj.:\n\n Regjistrohuni te shrbyes t siguruar, t shpejt, chatmail-i (path_to_url ose prdorni shrbyes klasik email-i\n\n Njoftime PUSH pr fardo shrbyesi chatmail\n\n Lidhuni me shokt tuaj n mnyr t parrezik, prmes Bashkngjitni kontakte\n\n Reagoni me fardo emoxhi\n\n Fiksoni fjalosje drejt e nga krkimi dhe PLOT t TJERA te %1$s</string>
<string name="update_1_46_ios">Hapa t Rinj Mirseardhjeje dhe t Tjera:\n\n Regjistrohuni te shrbyes t siguruar, t shpejt chatmail-i (path_to_url ose prdorni shrbyes klasik email-i\n\n Njoftime PUSH pr fardo shrbyesish chatmail\n\n Merrni Kontakte bashkmgjitur dhe lidhuni me shokt tuaj\n\n Przgjedhje m e shpejt reagimeshETJ, te %1$s</string>
<string name="update_switch_profile_placement"> Mundsia Ndrroni Profil u hoq: Q t shtoni, ose ndrroni profile, prekni figurn e profilit tuaj n cepin e siprm t skens kryesore </string>
</resources>
``` | /content/code_sandbox/src/main/res/values-sq/strings.xml | xml | 2016-07-03T07:32:36 | 2024-08-16T16:51:15 | deltachat-android | deltachat/deltachat-android | 1,082 | 28,367 |
```xml
import { LayoutType } from './LayoutType';
import { LayoutNode } from './LayoutTreeCrawler';
import {
Layout,
LayoutTopTabs,
LayoutComponent,
LayoutStack,
LayoutBottomTabs,
LayoutSideMenu,
LayoutSplitView,
ExternalComponent,
} from '../interfaces/Layout';
import { UniqueIdProvider } from '../adapters/UniqueIdProvider';
export class LayoutTreeParser {
constructor(private uniqueIdProvider: UniqueIdProvider) {
this.parse = this.parse.bind(this);
}
public parse(api: Layout): LayoutNode {
if (api.topTabs) {
return this.topTabs(api.topTabs);
} else if (api.sideMenu) {
return this.sideMenu(api.sideMenu);
} else if (api.bottomTabs) {
return this.bottomTabs(api.bottomTabs);
} else if (api.stack) {
return this.stack(api.stack);
} else if (api.component) {
return this.component(api.component);
} else if (api.externalComponent) {
return this.externalComponent(api.externalComponent);
} else if (api.splitView) {
return this.splitView(api.splitView);
}
throw new Error(`unknown LayoutType "${Object.keys(api)}"`);
}
private topTabs(api: LayoutTopTabs): LayoutNode {
return {
id: api.id || this.uniqueIdProvider.generate(LayoutType.TopTabs),
type: LayoutType.TopTabs,
data: { options: api.options },
children: api.children ? api.children.map(this.parse) : [],
};
}
private sideMenu(api: LayoutSideMenu): LayoutNode {
return {
id: api.id || this.uniqueIdProvider.generate(LayoutType.SideMenuRoot),
type: LayoutType.SideMenuRoot,
data: { options: api.options },
children: this.sideMenuChildren(api),
};
}
private sideMenuChildren(api: LayoutSideMenu): LayoutNode[] {
const children: LayoutNode[] = [];
if (api.left) {
children.push({
id: this.uniqueIdProvider.generate(LayoutType.SideMenuLeft),
type: LayoutType.SideMenuLeft,
data: {},
children: [this.parse(api.left)],
});
}
children.push({
id: this.uniqueIdProvider.generate(LayoutType.SideMenuCenter),
type: LayoutType.SideMenuCenter,
data: {},
children: [this.parse(api.center)],
});
if (api.right) {
children.push({
id: this.uniqueIdProvider.generate(LayoutType.SideMenuRight),
type: LayoutType.SideMenuRight,
data: {},
children: [this.parse(api.right)],
});
}
return children;
}
private bottomTabs(api: LayoutBottomTabs): LayoutNode {
return {
id: api.id || this.uniqueIdProvider.generate(LayoutType.BottomTabs),
type: LayoutType.BottomTabs,
data: { options: api.options },
children: api.children ? api.children.map(this.parse) : [],
};
}
private stack(api: LayoutStack): LayoutNode {
return {
id: api.id || this.uniqueIdProvider.generate(LayoutType.Stack),
type: LayoutType.Stack,
data: { options: api.options },
children: api.children ? api.children.map(this.parse) : [],
};
}
private component(api: LayoutComponent): LayoutNode {
return {
id: api.id || this.uniqueIdProvider.generate(LayoutType.Component),
type: LayoutType.Component,
data: {
name: api.name.toString(),
options: api.options,
passProps: api.passProps,
},
children: [],
};
}
private externalComponent(api: ExternalComponent): LayoutNode {
return {
id: api.id || this.uniqueIdProvider.generate(LayoutType.ExternalComponent),
type: LayoutType.ExternalComponent,
data: {
name: api.name.toString(),
options: api.options,
passProps: api.passProps,
},
children: [],
};
}
private splitView(api: LayoutSplitView): LayoutNode {
const master = api.master ? this.parse(api.master) : undefined;
const detail = api.detail ? this.parse(api.detail) : undefined;
return {
id: api.id || this.uniqueIdProvider.generate(LayoutType.SplitView),
type: LayoutType.SplitView,
data: { options: api.options },
children: master && detail ? [master, detail] : [],
};
}
}
``` | /content/code_sandbox/lib/src/commands/LayoutTreeParser.ts | xml | 2016-03-11T11:22:54 | 2024-08-15T09:05:44 | react-native-navigation | wix/react-native-navigation | 13,021 | 943 |
```xml
/*************************************************************
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
/**
* @fileoverview Implements the MmlMglyph node
*
* @author dpvc@mathjax.org (Davide Cervone)
*/
import {PropertyList} from '../../Tree/Node.js';
import {AbstractMmlTokenNode, TEXCLASS} from '../MmlNode.js';
/*****************************************************************/
/**
* Implements the MmlMglyph node class (subclass of AbstractMmlTokenNode)
*/
export class MmlMglyph extends AbstractMmlTokenNode {
/**
* @override
*/
public static defaults: PropertyList = {
...AbstractMmlTokenNode.defaults,
alt: '',
src: '',
index: '',
width: 'auto',
height: 'auto',
valign: '0em'
};
/**
* TeX class is ORD
*/
protected texclass = TEXCLASS.ORD;
/**
* @override
*/
public get kind() {
return 'mglyph';
}
/**
* @override
*/
public verifyAttributes(options: PropertyList) {
const {src, fontfamily, index} = this.attributes.getList('src', 'fontfamily', 'index');
if (src === '' && (fontfamily === '' || index === '')) {
this.mError('mglyph must have either src or fontfamily and index attributes', options, true);
} else {
super.verifyAttributes(options);
}
}
}
``` | /content/code_sandbox/ts/core/MmlTree/MmlNodes/mglyph.ts | xml | 2016-02-23T09:52:03 | 2024-08-16T04:46:50 | MathJax-src | mathjax/MathJax-src | 2,017 | 347 |
```xml
<resources>
<string name="app_name">NetworkTest</string>
</resources>
``` | /content/code_sandbox/chapter9/NetworkTest/app/src/main/res/values/strings.xml | xml | 2016-10-04T02:55:57 | 2024-08-16T11:00:26 | booksource | guolindev/booksource | 3,105 | 20 |
```xml
import { assert } from 'chai';
import { NO_ADDITIONAL_NODES_PRESET } from '../../../../../src/options/presets/NoCustomNodes';
import { readFileAsString } from '../../../../helpers/readFileAsString';
import { JavaScriptObfuscator } from '../../../../../src/JavaScriptObfuscatorFacade';
describe('IdentifierReplacer', () => {
describe('Reserved names', () => {
describe('Variant #1: ignore local reserved names', () => {
let obfuscatedCode: string;
before(() => {
const code: string = readFileAsString(__dirname + '/fixtures/local-reserved-names.js');
obfuscatedCode = JavaScriptObfuscator.obfuscate(
code,
{
...NO_ADDITIONAL_NODES_PRESET,
reservedNames: ['[abc|ghi]']
}
).getObfuscatedCode();
});
it('Should keep reserved names without transformations when `reservedNames` option is enabled', () => {
assert.match(
obfuscatedCode,
/var abc *= *0x1; *var _0x([a-f0-9]){4,6} *= *0x2; *var ghi *= *0x3;/
);
});
});
describe('Variant #1: ignore global reserved names', () => {
let obfuscatedCode: string;
before(() => {
const code: string = readFileAsString(__dirname + '/fixtures/global-reserved-names.js');
obfuscatedCode = JavaScriptObfuscator.obfuscate(
code,
{
...NO_ADDITIONAL_NODES_PRESET,
renameGlobals: true,
reservedNames: ['[abc|ghi]']
}
).getObfuscatedCode();
});
it('Should keep reserved names without transformations when `reservedNames` option is enabled', () => {
assert.match(
obfuscatedCode,
/var abc *= *0x1; *var _0x([a-f0-9]){4,6} *= *0x2; *var ghi *= *0x3;/
);
});
});
});
});
``` | /content/code_sandbox/test/functional-tests/node-transformers/rename-identifiers-transformers/identifier-replacer/IdentifierReplacer.spec.ts | xml | 2016-05-09T08:16:53 | 2024-08-16T19:43:07 | javascript-obfuscator | javascript-obfuscator/javascript-obfuscator | 13,358 | 434 |
```xml
import * as React from 'react';
import { HashRouter as Router, Route } from 'react-router-dom';
import { Screen1 } from './Screen1';
import { Screen2 } from './Screen2';
import { Header } from './Header';
import { Product } from './Product';
export class App extends React.Component<{}, {}> {
public render(): React.ReactElement<{}> {
return (
<Router>
<div>
<h2>App</h2>
<Header />
{/* The different screens will be re-rendered here */}
<Route path="/screen1" component={Screen1} />
<Route path="/screen2" component={Screen2} />
<Route path="/products/:id" component={Product} />
<div>Footer</div>
</div>
</Router>
);
}
}
``` | /content/code_sandbox/samples/react-multiscreen-webpart/src/webparts/multiScreenWebPart/components/App.tsx | xml | 2016-08-30T17:21:43 | 2024-08-16T18:41:32 | sp-dev-fx-webparts | pnp/sp-dev-fx-webparts | 2,027 | 183 |
```xml
/*
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
// TypeScript Version: 4.1
/**
* Interface describing `sdeg2rad`.
*/
interface Routine {
/**
* Converts each element in a single-precision floating-point strided array `x` from degrees to radians and assigns the results to elements in a single-precision floating-point strided array `y`.
*
* @param N - number of indexed elements
* @param x - input array
* @param strideX - `x` stride length
* @param y - destination array
* @param strideY - `y` stride length
* @returns `y`
*
* @example
* var Float32Array = require( '@stdlib/array/float32' );
*
* var x = new Float32Array( [ 0.0, 30.0, 45.0, 60.0, 90.0 ] );
* var y = new Float32Array( [ 0.0, 0.0, 0.0, 0.0, 0.0 ] );
*
* sdeg2rad( x.length, x, 1, y, 1 );
* // y => <Float32Array>[ 0.0, ~0.524, ~0.785, ~1.047, ~1.571 ]
*/
( N: number, x: Float32Array, strideX: number, y: Float32Array, strideY: number ): Float32Array;
/**
* Converts each element in a single-precision floating-point strided array `x` from degrees to radians and assigns the results to elements in a single-precision floating-point strided array `y` using alternative indexing semantics.
*
* @param N - number of indexed elements
* @param x - input array
* @param strideX - `x` stride length
* @param offsetX - starting index for `x`
* @param y - destination array
* @param strideY - `y` stride length
* @param offsetY - starting index for `y`
* @returns `y`
*
* @example
* var Float32Array = require( '@stdlib/array/float32' );
*
* var x = new Float32Array( [ 0.0, 30.0, 45.0, 60.0, 90.0 ] );
* var y = new Float32Array( [ 0.0, 0.0, 0.0, 0.0, 0.0 ] );
*
* sdeg2rad.ndarray( x.length, x, 1, 0, y, 1, 0 );
* // y => <Float32Array>[ 0.0, ~0.524, ~0.785, ~1.047, ~1.571 ]
*/
ndarray( N: number, x: Float32Array, strideX: number, offsetX: number, y: Float32Array, strideY: number, offsetY: number ): Float32Array;
}
/**
* Converts each element in a single-precision floating-point strided array `x` from degrees to radians and assigns the results to elements in a single-precision floating-point strided array `y`.
*
* @param N - number of indexed elements
* @param x - input array
* @param strideX - `x` stride length
* @param y - destination array
* @param strideY - `y` stride length
* @returns `y`
*
* @example
* var Float32Array = require( '@stdlib/array/float32' );
*
* var x = new Float32Array( [ 0.0, 30.0, 45.0, 60.0, 90.0 ] );
* var y = new Float32Array( [ 0.0, 0.0, 0.0, 0.0, 0.0 ] );
*
* sdeg2rad( x.length, x, 1, y, 1 );
* // y => <Float32Array>[ 0.0, ~0.524, ~0.785, ~1.047, ~1.571 ]
*
* @example
* var Float32Array = require( '@stdlib/array/float32' );
*
* var x = new Float32Array( [ 0.0, 30.0, 45.0, 60.0, 90.0 ] );
* var y = new Float32Array( [ 0.0, 0.0, 0.0, 0.0, 0.0 ] );
*
* sdeg2rad.ndarray( x.length, x, 1, 0, y, 1, 0 );
* // y => <Float32Array>[ 0.0, ~0.524, ~0.785, ~1.047, ~1.571 ]
*/
declare var sdeg2rad: Routine;
// EXPORTS //
export = sdeg2rad;
``` | /content/code_sandbox/lib/node_modules/@stdlib/math/strided/special/sdeg2rad/docs/types/index.d.ts | xml | 2016-03-24T04:19:52 | 2024-08-16T09:03:19 | stdlib | stdlib-js/stdlib | 4,266 | 1,138 |
```xml
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RippleDocModule } from '@doc/ripple/rippledoc.module';
import { RippleDemo } from './rippledemo';
import { RippleDemoRoutingModule } from './rippledemo-routing.module';
@NgModule({
imports: [CommonModule, RippleDemoRoutingModule, RippleDocModule],
declarations: [RippleDemo]
})
export class RippleDemoModule {}
``` | /content/code_sandbox/src/app/showcase/pages/ripple/rippledemo.module.ts | xml | 2016-01-16T09:23:28 | 2024-08-16T19:58:20 | primeng | primefaces/primeng | 9,969 | 93 |
```xml
/*
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
*/
import styled from 'styled-components';
import {TreeNode as BaseTreeNode} from '@carbon/react';
import {INSTANCE_HISTORY_LEFT_PADDING} from 'modules/constants';
const TreeNode = styled(BaseTreeNode)`
.cds--tree-node__label {
height: 2rem;
.cds--tree-parent-node__toggle {
margin-left: ${INSTANCE_HISTORY_LEFT_PADDING};
}
}
.cds--tree-node__label__details {
width: 100%;
}
`;
export {TreeNode};
``` | /content/code_sandbox/operate/client/src/App/ProcessInstance/FlowNodeInstancesTree/styled.ts | xml | 2016-03-20T03:38:04 | 2024-08-16T19:59:58 | camunda | camunda/camunda | 3,172 | 133 |
```xml
import { graphql } from "react-relay";
import { Environment } from "relay-runtime";
import {
createSubscription,
SubscriptionVariables,
} from "coral-framework/lib/relay";
import { GQLMODERATION_QUEUE } from "coral-framework/schema";
import { ModerateCountsCommentLeftSubscription } from "coral-admin/__generated__/ModerateCountsCommentLeftSubscription.graphql";
import changeQueueCount from "./changeQueueCount";
const ModerateCountsCommentLeftSubscription = createSubscription(
"subscribeToCommentLeft",
(
environment: Environment,
variables: SubscriptionVariables<ModerateCountsCommentLeftSubscription>
) => ({
subscription: graphql`
subscription ModerateCountsCommentLeftSubscription(
$storyID: ID
$siteID: ID
) {
commentLeftModerationQueue(storyID: $storyID, siteID: $siteID) {
queue
}
}
`,
variables,
updater: (store) => {
const root = store.getRootField("commentLeftModerationQueue")!;
const queue = root.getValue("queue") as GQLMODERATION_QUEUE;
const change = -1;
changeQueueCount(store, change, queue, variables.storyID);
},
})
);
export default ModerateCountsCommentLeftSubscription;
``` | /content/code_sandbox/client/src/core/client/admin/routes/Moderate/ModerateNavigation/ModerateCountsCommentLeftSubscription.tsx | xml | 2016-10-31T16:14:05 | 2024-08-06T16:15:57 | talk | coralproject/talk | 1,881 | 270 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="path_to_url">
<item android:drawable="?android:colorBackground" />
<!-- You can insert your own image assets here -->
<item
android:left="128dp"
android:right="128dp"
android:drawable="@drawable/launch_icon"
android:gravity="center" />
</layer-list>
``` | /content/code_sandbox/app/src/main/res/drawable/launch_background.xml | xml | 2016-02-21T04:39:19 | 2024-08-16T13:35:51 | GeometricWeather | WangDaYeeeeee/GeometricWeather | 2,420 | 101 |
```xml
window['CKEDITOR_BASEPATH'] = '//cdn.ckeditor.com/4.6.2/full-all/';
``` | /content/code_sandbox/src/app/pages/editors/ckeditor/ckeditor.loader.ts | xml | 2016-05-25T10:09:03 | 2024-08-16T16:34:03 | ngx-admin | akveo/ngx-admin | 25,169 | 23 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict>
<key>ACPI</key>
<dict>
<key>DSDT</key>
<dict>
<key>Debug</key>
<false/>
<key>#DropOEM_DSM</key>
<dict>
<key>ATI</key>
<true/>
<key>Firewire</key>
<true/>
<key>HDA</key>
<true/>
<key>HDMI</key>
<true/>
<key>IDE</key>
<true/>
<key>IntelGFX</key>
<true/>
<key>LAN</key>
<true/>
<key>LPC</key>
<false/>
<key>NVidia</key>
<true/>
<key>SATA</key>
<true/>
<key>SmBUS</key>
<false/>
<key>USB</key>
<true/>
<key>WIFI</key>
<true/>
</dict>
<key>Fixes</key>
<dict>
<key>AddDTGP_0001</key>
<true/>
<key>AddMCHC_0008</key>
<false/>
<key>FakeLPC_0020</key>
<false/>
<key>FixAirport_4000</key>
<true/>
<key>FixDarwin_0002</key>
<true/>
<key>FixDisplay_0100</key>
<true/>
<key>FixFirewire_0800</key>
<true/>
<key>FixHDA_8000</key>
<true/>
<key>FixHPET_0010</key>
<true/>
<key>FixIDE_0200</key>
<false/>
<key>FixIPIC_0040</key>
<true/>
<key>FixLAN_2000</key>
<true/>
<key>FixSATA_0400</key>
<false/>
<key>FixSBUS_0080</key>
<true/>
<key>FixShutdown_0004</key>
<true/>
<key>FixUSB_1000</key>
<true/>
<key>NewWay_80000000</key>
<true/>
<key>FIX_RTC_20000</key>
<true/>
<key>FIX_TMR_40000</key>
<true/>
<key>AddIMEI_80000</key>
<false/>
<key>FIX_INTELGFX_100000</key>
<false/>
<key>FIX_WAK_200000</key>
<true/>
<key>DeleteUnused_400000</key>
<true/>
<key>FIX_ADP1_800000</key>
<true/>
<key>AddPNLF_1000000</key>
<true/>
<key>FIX_S3D_2000000</key>
<true/>
<key>FIX_ACST_4000000</key>
<true/>
<key>AddHDMI_8000000</key>
<true/>
<key>FixRegions_10000000</key>
<true/>
</dict>
<key>Name</key>
<string>DSDT.aml</string>
<key>#Patches</key>
<array>
<dict>
<key>Comment</key>
<string>Remove battery device from desktop</string>
<key>Find</key>
<data>W4IeQkFUMQhfSElEDEHQDAoIX1VJRAEUCF9TVEEApAA=</data>
<key>Replace</key>
<data></data>
</dict>
<dict>
<key>Comment</key>
<string>Add _SUN property for GIGE</string>
<key>Find</key>
<data>UFhTWAhfQURSAAhfUFJXEgYC</data>
<key>Replace</key>
<data>UFhTWAhfQURSAAhfU1VOCgQIX1BSVxIGAg==</data>
</dict>
<dict>
<key>Comment</key>
<string>Rename GFX0 to IGPU</string>
<key>Find</key>
<data>R0ZYMA==</data>
<key>Replace</key>
<data>SUdQVQ==</data>
</dict>
<dict>
<key>Comment</key>
<string>Rename HDEF to AZAL</string>
<key>Find</key>
<data>SERFRg==</data>
<key>Replace</key>
<data>QVpBTA==</data>
</dict>
</array>
<key>ReuseFFFF</key>
<false/>
<key>#Rtc8Allowed</key>
<false/>
<key>#SuspendOverride</key>
<false/>
</dict>
<key>#DropMCFG</key>
<false/>
<key>DropTables</key>
<array>
<dict>
<key>Signature</key>
<string>DMAR</string>
</dict>
<dict>
<key>Signature</key>
<string>SSDT</string>
<key>TableId</key>
<string>CpuPm</string>
</dict>
<dict>
<key>#Length</key>
<integer>720</integer>
<key>Signature</key>
<string>SSDT</string>
<key>TableId</key>
<string>Cpu0Ist</string>
</dict>
</array>
<key>HaltEnabler</key>
<true/>
<key>#PatchAPIC</key>
<false/>
<key>#ResetAddress</key>
<string>0x64</string>
<key>#ResetValue</key>
<string>0xFE</string>
<key>SSDT</key>
<dict>
<key>#DoubleFirstState</key>
<true/>
<key>#DropOem</key>
<true/>
<key>Generate</key>
<dict>
<key>CStates</key>
<true/>
<key>PStates</key>
<true/>
</dict>
<key>#MaxMultiplier</key>
<integer>12</integer>
<key>#MinMultiplier</key>
<integer>8</integer>
<key>#PLimitDict</key>
<integer>1</integer>
<key>#PluginType</key>
<integer>0</integer>
<key>#UnderVoltStep</key>
<integer>1</integer>
<key>#UseSystemIO</key>
<false/>
<key>#EnableC7</key>
<false/>
<key>#EnableC6</key>
<true/>
<key>#EnableC4</key>
<false/>
<key>#EnableC2</key>
<false/>
<key>#C3Latency</key>
<string>0x03E7</string>
</dict>
<key>#smartUPS</key>
<false/>
<key>#SortedOrder</key>
<array>
<string>SSDT-3.aml</string>
<string>SSDT-1.aml</string>
<string>SSDT-2.aml</string>
</array>
</dict>
<key>Boot</key>
<dict>
<key>#Arguments</key>
<string>-v arch=i386 slide=0 darkwake=0</string>
<key>Arguments</key>
<string>kext-dev-mode=1 rootless=0</string>
<key>DefaultLoader</key>
<string>boot.efi</string>
<key>DefaultVolume</key>
<string>LastBootedVolume</string>
<key>NeverHibernate</key>
<false/>
<key>Fast</key>
<false/>
<key>Legacy</key>
<string>PBR</string>
<key>#LegacyBiosDefaultEntry</key>
<integer>0</integer>
<key>Debug</key>
<false/>
<key>Timeout</key>
<integer>5</integer>
<key>#XMPDetection</key>
<string>-1</string>
</dict>
<key>CPU</key>
<dict>
<key>#BusSpeedkHz</key>
<integer>133330</integer>
<key>#UseARTFrequency</key>
<true/>
<key>#FrequencyMHz</key>
<integer>3140</integer>
<key>#QPI</key>
<integer>4800</integer>
<key>#Type</key>
<string>0x0201</string>
<key>#SavingMode</key>
<integer>7</integer>
<key>#TurboDisable</key>
<true/>
</dict>
<key>Devices</key>
<dict>
<key>NoDefaultProperties</key>
<false/>
<key>#AddProperties</key>
<array>
<dict>
<key>Device</key>
<string>NVidia</string>
<key>Key</key>
<string>AAPL,HasPanel</string>
<key>Value</key>
<data>AQAAAA==</data>
</dict>
<dict>
<key>Device</key>
<string>NVidia</string>
<key>Key</key>
<string>AAPL,Haslid</string>
<key>Value</key>
<data>AQAAAA==</data>
</dict>
</array>
<key>Audio</key>
<dict>
<key>ResetHDA</key>
<true/>
<key>#Inject</key>
<string>0x0887</string>
</dict>
<key>FakeID</key>
<dict>
<key>#ATI</key>
<string>0x67501002</string>
<key>#IntelGFX</key>
<string>0x01268086</string>
<key>#LAN</key>
<string>0x100E8086</string>
<key>#NVidia</key>
<string>0x11de10de</string>
<key>#SATA</key>
<string>0x25628086</string>
<key>#WIFI</key>
<string>0x431214e4</string>
<key>#XHCI</key>
<string>0x0</string>
<key>#IMEI</key>
<string>0x1e208086</string>
</dict>
<key>#InjectString</key>
<false/>
<key>UseIntelHDMI</key>
<false/>
<key>#SetIntelBacklight</key>
<false/>
<key>#ForceHPET</key>
<false/>
<key>#Properties</key>
<string>your_sha256_hashyour_sha256_hashyour_sha256_hash610079006f00750074002d00690064000000080000000c000000</string>
<key>USB</key>
<dict>
<key>AddClockID</key>
<true/>
<key>FixOwnership</key>
<true/>
<key>HighCurrent</key>
<false/>
<key>Inject</key>
<true/>
</dict>
</dict>
<key>#DisableDrivers</key>
<array>
<string>CsmVideoDxe</string>
<string>VBoxExt4</string>
</array>
<key>GUI</key>
<dict>
<key>#Custom</key>
<dict>
<key>Entries</key>
<array>
<dict>
<key>AddArguments</key>
<string>-v</string>
<key>Arguments</key>
<string>Kernel=mach_kernel</string>
<key>Disabled</key>
<true/>
<key>Hidden</key>
<false/>
<key>Hotkey</key>
<string>M</string>
<key>InjectKexts</key>
<false/>
<key>NoCaches</key>
<false/>
<key>Path</key>
<string>\EFI\BOOT\BOOTX64.efi</string>
<key>Title</key>
<string>MyCustomEntry</string>
<key>Type</key>
<string>OSXRecovery</string>
<key>Volume</key>
<string>D68F1885-571C-4441-8DD5-F14803EFEF54</string>
</dict>
<dict>
<key>Hidden</key>
<false/>
<key>InjectKexts</key>
<false/>
<key>NoCaches</key>
<false/>
<key>SubEntries</key>
<array>
<dict>
<key>AddArguments</key>
<string>-v</string>
<key>Title</key>
<string>Boot OS X 10.8.5 (12F36) Mountain Lion in Verbose Mode</string>
</dict>
</array>
<key>Title</key>
<string>OS X 10.8.5 (12F36) Mountain Lion</string>
<key>Type</key>
<string>OSX</string>
<key>Volume</key>
<string>454794AC-760D-46E8-8F77-D6EB23D2FD32</string>
</dict>
</array>
<key>Legacy</key>
<array>
<dict>
<key>Disabled</key>
<true/>
<key>Hidden</key>
<false/>
<key>Hotkey</key>
<string>L</string>
<key>Title</key>
<string>MyLegacyEntry</string>
<key>Type</key>
<string>Windows</string>
<key>Volume</key>
<string>89433CD3-21F2-4D3C-95FC-722C48066D3A</string>
</dict>
</array>
<key>Tool</key>
<array>
<dict>
<key>Arguments</key>
<string>-b</string>
<key>Disabled</key>
<false/>
<key>Hidden</key>
<false/>
<key>Hotkey</key>
<string>S</string>
<key>Path</key>
<string>\EFI\CLOVER\TOOLS\Shell64-v1.efi</string>
<key>Title</key>
<string>MyCustomShell</string>
<key>Volume</key>
<string>D68F1885-571C-4441-8DD5-F14803EFEF54</string>
</dict>
</array>
</dict>
<key>#CustomIcons</key>
<false/>
<key>#Hide</key>
<array>
<string>Windows</string>
<string>BOOTX64.EFI</string>
</array>
<key>#Language</key>
<string>ru:0</string>
<key>#Mouse</key>
<dict>
<key>Enabled</key>
<true/>
<key>Mirror</key>
<false/>
<key>Speed</key>
<integer>2</integer>
</dict>
<key>#Scan</key>
<dict>
<key>Entries</key>
<true/>
<key>Legacy</key>
<false/>
<key>Tool</key>
<true/>
</dict>
<key>ScreenResolution</key>
<string>1280x1024</string>
<key>#ConsoleMode</key>
<string>0</string>
<key>#TextOnly</key>
<false/>
<key>Theme</key>
<string>black_green</string>
</dict>
<key>Graphics</key>
<dict>
<key>#CustomEDID</key>
<data>AP///////your_sha256_hashiGgcFCEHzAgIFYAS88QAAAY3iGgcFCEHzAgIFYAS88QAAAAAAAA/gBXNjU3RwAxNTRXUDEKAAAA/gAjMz1IZYSq/wIBCiAgAJo=</data>
<key>#DualLink</key>
<integer>0</integer>
<key>#FBName</key>
<string>Makakakakala</string>
<key>#Inject</key>
<dict>
<key>ATI</key>
<true/>
<key>Intel</key>
<false/>
<key>NVidia</key>
<false/>
</dict>
<key>#InjectEDID</key>
<true/>
<key>#LoadVBios</key>
<false/>
<key>#NVCAP</key>
<string>04000000000003000C0000000000000A00000000</string>
<key>#PatchVBios</key>
<false/>
<key>#NvidiaGeneric</key>
<true/>
<key>#NvidiaSingle</key>
<false/>
<key>#PatchVBiosBytes</key>
<array>
<dict>
<key>Find</key>
<data>gAeoAqAF</data>
<key>Replace</key>
<data>gAeoAjgE</data>
</dict>
</array>
<key>#VRAM</key>
<integer>1024</integer>
<key>#VideoPorts</key>
<integer>2</integer>
<key>#Connectors</key>
<array/>
<key>#display-cfg</key>
<string>03010300FFFF0001</string>
<key>#ig-platform-id</key>
<string>0x01620005</string>
</dict>
<key>KernelAndKextPatches</key>
<dict>
<key>#ATIConnectorsController</key>
<string>6000</string>
<key>#ATIConnectorsData</key>
<string>your_sha256_hash10000000100000000001000000000001</string>
<key>#ATIConnectorsPatch</key>
<string>your_sha256_hash00000000000000000000000000000000</string>
<key>AppleRTC</key>
<true/>
<key>AsusAICPUPM</key>
<false/>
<key>Debug</key>
<false/>
<key>KernelCpu</key>
<false/>
<key>#FakeCPUID</key>
<string>0x010676</string>
<key>KernelPm</key>
<false/>
<key>KernelLapic</key>
<false/>
<key>KernelHaswellE</key>
<false/>
<key>#KextsToPatch</key>
<array>
<dict>
<key>Find</key>
<data>SGVhZHBob25lcwA=</data>
<key>Name</key>
<string>VoodooHDA</string>
<key>Replace</key>
<data>VGVsZXBob25lcwA=</data>
</dict>
<dict>
<key>Comment</key>
<string>Patch_to_not_load_this_driver</string>
<key>Find</key>
<string>0x04020000</string>
<key>InfoPlistPatch</key>
<true/>
<key>Name</key>
<string>AppleHDAController</string>
<key>Replace</key>
<string>0x44220000</string>
</dict>
<dict>
<key>Comment</key>
<string>Make all drives to be internal</string>
<key>Find</key>
<data>RXh0ZXJuYWw=</data>
<key>Name</key>
<string>AppleAHCIPort</string>
<key>Replace</key>
<data>SW50ZXJuYWw=</data>
</dict>
<dict>
<key>Comment</key>
<string>TRIM function for non-Apple SSDs</string>
<key>Find</key>
<data>QVBQTEUgU1NEAA==</data>
<key>Name</key>
<string>IOAHCIBlockStorage</string>
<key>Replace</key>
<data>AAAAAAAAAAAAAA==</data>
</dict>
<dict>
<key>Comment</key>
<string>Second Stage patch 1</string>
<key>Find</key>
<data>hcB0XUg=</data>
<key>Name</key>
<string>IOGraphicsFamily</string>
<key>Replace</key>
<data>McB0W0g=</data>
</dict>
<dict>
<key>Comment</key>
<string>Second Stage patch 2</string>
<key>Find</key>
<data>QYjE6wM=</data>
<key>Name</key>
<string>IOGraphicsFamily</string>
<key>Replace</key>
<data>QYjE6yM=</data>
</dict>
</array>
</dict>
<key>RtVariables</key>
<dict>
<key>MLB</key>
<string>C02032109R5DC771H</string>
<key>ROM</key>
<string>UseMacAddr0</string>
<key>CsrActiveConfig</key>
<string>0x67</string>
<key>BooterConfig</key>
<string>0x28</string>
</dict>
<key>SMBIOS</key>
<dict>
<key>#BiosReleaseDate</key>
<string>05/03/10</string>
<key>#BiosVendor</key>
<string>Apple Inc.</string>
<key>#BiosVersion</key>
<string>MB11.88Z.0061.B03.0809221748</string>
<key>#Board-ID</key>
<string>Mac-F4208CC8</string>
<key>#BoardManufacturer</key>
<string>Apple Inc.</string>
<key>#BoardSerialNumber</key>
<string>C02032101R5DC771H</string>
<key>#BoardType</key>
<integer>10</integer>
<key>#BoardVersion</key>
<string>Proto1</string>
<key>#ChassisAssetTag</key>
<string>LatitudeD420</string>
<key>#ChassisManufacturer</key>
<string>Apple Inc.</string>
<key>#ChassisType</key>
<integer>16</integer>
<key>#Family</key>
<string>MacBook</string>
<key>#FirmwareFeatures</key>
<string>0xC0001403</string>
<key>#LocationInChassis</key>
<string>MLB</string>
<key>Manufacturer</key>
<string>Apple Inc.</string>
<key>#Memory</key>
<dict>
<key>Channels</key>
<integer>2</integer>
<key>Modules</key>
<array>
<dict>
<key>Frequency</key>
<integer>1333</integer>
<key>Part</key>
<string>C0001403</string>
<key>Serial</key>
<string>00001001</string>
<key>Size</key>
<integer>4096</integer>
<key>Slot</key>
<integer>0</integer>
<key>Type</key>
<string>DDR3</string>
<key>Vendor</key>
<string>Kingston</string>
</dict>
<dict>
<key>Frequency</key>
<integer>1333</integer>
<key>Part</key>
<string>C0001404</string>
<key>Serial</key>
<string>00001002</string>
<key>Size</key>
<integer>4096</integer>
<key>Slot</key>
<integer>2</integer>
<key>Type</key>
<string>DDR3</string>
<key>Vendor</key>
<string>Kingston</string>
</dict>
</array>
<key>SlotCount</key>
<integer>4</integer>
</dict>
<key>#Mobile</key>
<true/>
<key>#ProductName</key>
<string>MacBook1,1</string>
<key>#SerialNumber</key>
<string>4H629LYAU9C</string>
<key>#SmUUID</key>
<string>00000000-0000-1000-8000-010203040506</string>
<key>#Trust</key>
<true/>
<key>#Version</key>
<string>1.0</string>
<key>#PlatformFeature</key>
<integer>3</integer>
<key>#Slots</key>
<array>
<dict>
<key>Device</key>
<string>ATI</string>
<key>ID</key>
<integer>1</integer>
<key>Type</key>
<integer>16</integer>
<key>Name</key>
<string>PCIe Slot 0</string>
</dict>
<dict>
<key>Device</key>
<string>WIFI</string>
<key>ID</key>
<integer>0</integer>
<key>Type</key>
<integer>1</integer>
<key>Name</key>
<string>Airport</string>
</dict>
</array>
</dict>
<key>SystemParameters</key>
<dict>
<key>InjectKexts</key>
<string>Detect</string>
<key>#BacklightLevel</key>
<string>0x0501</string>
<key>#CustomUUID</key>
<string>511CE201-1000-4000-9999-010203040506</string>
<key>InjectSystemID</key>
<true/>
<key>#DefaultBackgroundColor</key>
<string>0xF0F0F0</string>
</dict>
</dict>
</plist>
``` | /content/code_sandbox/Clover-Configs/Acer/E1-572G/CLOVER/doc/config-sample.plist | xml | 2016-11-05T04:22:54 | 2024-08-12T19:25:53 | Hackintosh-Installer-University | huangyz0918/Hackintosh-Installer-University | 3,937 | 6,686 |
```xml
import "../../utilities/globals/index.js";
export { graphql } from "./graphql.js";
export { withQuery } from "./query-hoc.js";
export { withMutation } from "./mutation-hoc.js";
export { withSubscription } from "./subscription-hoc.js";
export { withApollo } from "./withApollo.js";
export * from "./types.js";
``` | /content/code_sandbox/src/react/hoc/index.ts | xml | 2016-02-26T20:25:00 | 2024-08-16T10:56:57 | apollo-client | apollographql/apollo-client | 19,304 | 72 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Simple File Manager</string>
<string name="app_launcher_name">Gestor de fitxers</string>
<string name="press_back_again">Premeu enrere de nou per sortir</string>
<string name="go_to_home_folder">Ves a la carpeta d\'inici</string>
<string name="set_as_home_folder">Estableix com a carpeta d\'inici</string>
<string name="home_folder_updated">S\'ha actualitzat la carpeta d\'inici</string>
<string name="copy_path">Copia el cam al porta-retalls</string>
<string name="path_copied">S\'ha copiat el cam</string>
<string name="select_audio_file">Seleccioneu un fitxer d\'udio</string>
<string name="search_folder">Cerca carpeta</string>
<string name="rooted_device_only">Aquesta operaci noms funciona en dispositius amb root</string>
<string name="recents">Recents</string>
<string name="show_recents">Mostra els recents</string>
<string name="pdf_viewer">Visualitzador de PDF</string>
<string name="invert_colors">Inverteix els colors</string>
<!-- Open as -->
<string name="open_as">Obre com a</string>
<string name="text_file">Fitxer de text</string>
<string name="image_file">Fitxer d\'imatge</string>
<string name="audio_file">Fitxer d\'udio</string>
<string name="video_file">Fitxer de vdeo</string>
<string name="other_file">Altres fitxers</string>
<!-- Compression -->
<string name="compress">Comprimeix</string>
<string name="compress_pro">Comprimeix (Pro)</string>
<string name="decompress">Descomprimeix</string>
<string name="compress_as">Comprimeix com a</string>
<string name="compressing">S\'est comprimint</string>
<string name="decompressing">S\'est descomprimint</string>
<string name="compression_successful">Compressi correcta</string>
<string name="decompression_successful">Descompressi correcta</string>
<string name="compressing_failed">Ha fallat la compressi</string>
<string name="decompressing_failed">Ha fallat la descompressi</string>
<!-- Favorites -->
<string name="manage_favorites">Gestiona els preferits</string>
<string name="go_to_favorite">Ves als preferits</string>
<string name="favorites_activity_placeholder">Podeu afegir carpetes que utilitzeu amb freqncia als preferits per accedir fcilment des de qualsevol lloc.</string>
<!-- File Editor -->
<string name="file_editor">Editor de fitxers</string>
<!-- Storage analysis -->
<string name="storage_analysis">Anlisi d\'emmagatzematge</string>
<string name="images">Imatges</string>
<string name="videos">Vdeos</string>
<string name="audio">udio</string>
<string name="documents">Documents</string>
<string name="downloads">Baixades</string>
<string name="archives">Arxius</string>
<string name="others">Altres</string>
<string name="storage_free">lliure</string>
<string name="total_storage">Emmagatzematge total: %s</string>
<!-- Settings -->
<string name="enable_root_access">Habilita l\'accs root</string>
<string name="press_back_twice">Cal que premeu Enrere dues vegades per sortir de l\'aplicaci</string>
<!--
Haven't found some strings? There's more at
path_to_url
-->
</resources>
``` | /content/code_sandbox/app/src/main/res/values-ca/strings.xml | xml | 2016-07-12T20:06:21 | 2024-08-16T13:08:21 | Simple-File-Manager | SimpleMobileTools/Simple-File-Manager | 1,490 | 913 |
```xml
import {
CancelIcon,
ChevronDownIcon,
ChevronUpIcon,
DuplicateRowIcon,
GripperDotsVerticalIcon,
LockIcon,
UnlockIcon,
} from '@fluentui/react-icons-mdl2';
import * as React from 'react';
import type { ControlElementsProp, FullField, Translations } from 'react-querybuilder';
import { getCompatContextProvider } from 'react-querybuilder';
import { FluentActionElement } from './FluentActionElement';
import { FluentDragHandle } from './FluentDragHandle';
import { FluentNotToggle } from './FluentNotToggle';
import { FluentValueEditor } from './FluentValueEditor';
import { FluentValueSelector } from './FluentValueSelector';
export * from './FluentActionElement';
export * from './FluentDragHandle';
export * from './FluentNotToggle';
export * from './FluentValueEditor';
export * from './FluentValueSelector';
export const fluentControlElements = {
actionElement: FluentActionElement,
dragHandle: FluentDragHandle,
notToggle: FluentNotToggle,
valueEditor: FluentValueEditor,
valueSelector: FluentValueSelector,
} satisfies ControlElementsProp<FullField, string>;
export const fluentTranslations = {
removeGroup: { label: <CancelIcon /> },
removeRule: { label: <CancelIcon /> },
cloneRule: { label: <DuplicateRowIcon /> },
cloneRuleGroup: { label: <DuplicateRowIcon /> },
dragHandle: { label: <GripperDotsVerticalIcon /> },
lockGroup: { label: <UnlockIcon /> },
lockRule: { label: <UnlockIcon /> },
lockGroupDisabled: { label: <LockIcon /> },
lockRuleDisabled: { label: <LockIcon /> },
shiftActionDown: { label: <ChevronDownIcon /> },
shiftActionUp: { label: <ChevronUpIcon /> },
} satisfies Partial<Translations>;
export const QueryBuilderFluent = getCompatContextProvider({
controlElements: fluentControlElements,
translations: fluentTranslations,
});
``` | /content/code_sandbox/packages/fluent/src/index.tsx | xml | 2016-06-17T22:03:19 | 2024-08-16T10:28:42 | react-querybuilder | react-querybuilder/react-querybuilder | 1,131 | 444 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="path_to_url" xmlns:xsi="path_to_url" xmlns:activiti="path_to_url" xmlns:bpmndi="path_to_url" xmlns:omgdc="path_to_url" xmlns:omgdi="path_to_url" typeLanguage="path_to_url" expressionLanguage="path_to_url" targetNamespace="path_to_url">
<signal id="stopSignal" name="stopSignal"></signal>
<process id="signalEvent" name="Signal Event Handler JUnit" isExecutable="true">
<startEvent id="start" name="Start JUnit"></startEvent>
<sequenceFlow id="flow1" name="" sourceRef="start" targetRef="waitingsubprocess"></sequenceFlow>
<subProcess id="waitingsubprocess" name="Waiting sub process">
<startEvent id="sub-start" name="Start"></startEvent>
<sequenceFlow id="flow6" name="" sourceRef="sub-start" targetRef="timer"></sequenceFlow>
<intermediateCatchEvent id="timer" name="Wait another day before making the test. ">
<timerEventDefinition>
<timeDuration>P1D</timeDuration>
</timerEventDefinition>
</intermediateCatchEvent>
<sequenceFlow id="flow7" name="" sourceRef="timer" targetRef="sub-end"></sequenceFlow>
<endEvent id="sub-end" name="End"></endEvent>
</subProcess>
<sequenceFlow id="flow2" sourceRef="waitingsubprocess" targetRef="end"></sequenceFlow>
<boundaryEvent id="waitStopSignal" name="Wait the stop signal" cancelActivity="true" attachedToRef="waitingsubprocess">
<signalEventDefinition signalRef="stopSignal"></signalEventDefinition>
</boundaryEvent>
<sequenceFlow id="flow8" sourceRef="waitStopSignal" targetRef="end"></sequenceFlow>
<endEvent id="end" name="End JUnit"></endEvent>
</process>
</definitions>
``` | /content/code_sandbox/modules/flowable-rest/src/test/resources/org/flowable/rest/service/api/legacy/SignalEventSubscriptionResourceTest.testSignalEvent.bpmn20.xml | xml | 2016-10-13T07:21:43 | 2024-08-16T15:23:14 | flowable-engine | flowable/flowable-engine | 7,715 | 458 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="path_to_url">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release_vc6|Win32">
<Configuration>Release_vc6</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release_vc6|x64">
<Configuration>Release_vc6</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{A07B8EAC-C363-466A-AC97-4C89677366B9}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>Win32Project1</RootNamespace>
<ProjectName>v8_5_1</ProjectName>
<WindowsTargetPlatformVersion>
</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_vc6|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140_xp</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_vc6|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<OutDir>$(SolutionDir)..\out\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)..\out\tmp\$(ProjectName)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">
<OutDir>$(SolutionDir)..\out\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)..\out\tmp\$(ProjectName)\$(Configuration)\</IntDir>
<IncludePath>$(SolutionDir)..\vc6\include\crt;$(SolutionDir)..\vc6\include\wnet</IncludePath>
<ReferencePath>
</ReferencePath>
<LibraryPath>$(SolutionDir)..\vc6\lib</LibraryPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_vc6|x64'">
<IncludePath>$(SolutionDir)..\vc6\include\crt;$(SolutionDir)..\vc6\include\wnet</IncludePath>
<ReferencePath />
<LibraryPath>$(SolutionDir)..\vc6\lib</LibraryPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<OutDir>$(SolutionDir)..\out\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)..\out\tmp\$(ProjectName)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<OutDir>$(SolutionDir)..\out\$(Platform)$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)..\out\tmp\$(Platform)$(ProjectName)\$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<OutDir>$(SolutionDir)..\out\$(Platform)$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)..\out\tmp\$(Platform)$(ProjectName)\$(Configuration)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>V8_NO_FAST_TLS;WIN32;_DEBUG;_LIB;V8_TARGET_ARCH_IA32=1;V8_DEPRECATION_WARNINGS;NVALGRIND;ENABLE_HANDLE_ZAPPING;V8_USE_EXTERNAL_STARTUP_DATA=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
<AdditionalIncludeDirectories>../../v8_5_1</AdditionalIncludeDirectories>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<MinimalRebuild>true</MinimalRebuild>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
<Lib>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
</Lib>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>V8_NO_FAST_TLS;WIN32;_DEBUG;_LIB;V8_TARGET_ARCH_X64=1;V8_DEPRECATION_WARNINGS;NVALGRIND;ENABLE_HANDLE_ZAPPING;V8_USE_EXTERNAL_STARTUP_DATA=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
<AdditionalIncludeDirectories>../../v8_5_1</AdditionalIncludeDirectories>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
<Lib>
<OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
</Lib>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>Full</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>V8_NO_FAST_TLS;NDEBUG;WIN32;_LIB;V8_USE_EXTERNAL_STARTUP_DATA=1;USING_VC6RT=1;V8_TARGET_ARCH_IA32=1;V8_DEPRECATION_WARNINGS;NVALGRIND;ENABLE_HANDLE_ZAPPING;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
<AdditionalIncludeDirectories>../../v8_5_1</AdditionalIncludeDirectories>
<ExceptionHandling>false</ExceptionHandling>
<BufferSecurityCheck>false</BufferSecurityCheck>
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
<DisableSpecificWarnings>4800;4530</DisableSpecificWarnings>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>
<AdditionalOptions>/Zc:threadSafeInit- %(AdditionalOptions)</AdditionalOptions>
<StringPooling>true</StringPooling>
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_vc6|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>Full</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>V8_NO_FAST_TLS;NDEBUG;WIN32;_LIB;V8_USE_EXTERNAL_STARTUP_DATA=1;USING_VC6RT=1;V8_TARGET_ARCH_IA32=1;V8_DEPRECATION_WARNINGS;NVALGRIND;ENABLE_HANDLE_ZAPPING;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
<AdditionalIncludeDirectories>../../v8_5_1</AdditionalIncludeDirectories>
<ExceptionHandling>false</ExceptionHandling>
<BufferSecurityCheck>false</BufferSecurityCheck>
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
<DisableSpecificWarnings>4800;4530</DisableSpecificWarnings>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>
<AdditionalOptions>/Zc:threadSafeInit- %(AdditionalOptions)</AdditionalOptions>
<StringPooling>true</StringPooling>
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>Full</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>V8_NO_FAST_TLS;NDEBUG;WIN32;_LIB;V8_USE_EXTERNAL_STARTUP_DATA=1;V8_TARGET_ARCH_IA32=1;V8_DEPRECATION_WARNINGS;NVALGRIND;ENABLE_HANDLE_ZAPPING;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
<AdditionalIncludeDirectories>../../v8_5_1</AdditionalIncludeDirectories>
<ExceptionHandling>false</ExceptionHandling>
<BufferSecurityCheck>false</BufferSecurityCheck>
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
<DisableSpecificWarnings>4800;4530</DisableSpecificWarnings>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>
<AdditionalOptions>/Zc:threadSafeInit- %(AdditionalOptions)</AdditionalOptions>
<StringPooling>true</StringPooling>
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>Full</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>V8_NO_FAST_TLS;NDEBUG;WIN32;_LIB;V8_USE_EXTERNAL_STARTUP_DATA=1;V8_TARGET_ARCH_X64=1;V8_DEPRECATION_WARNINGS;NVALGRIND;ENABLE_HANDLE_ZAPPING;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
<AdditionalIncludeDirectories>../../v8_5_1</AdditionalIncludeDirectories>
<ExceptionHandling>false</ExceptionHandling>
<BufferSecurityCheck>false</BufferSecurityCheck>
<FavorSizeOrSpeed>Size</FavorSizeOrSpeed>
<DisableSpecificWarnings>4800;4530</DisableSpecificWarnings>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>
<AdditionalOptions>/Zc:threadSafeInit- %(AdditionalOptions)</AdditionalOptions>
<StringPooling>true</StringPooling>
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="..\..\v8_5_1\include\v8-debug.h" />
<ClInclude Include="..\..\v8_5_1\include\v8-platform.h" />
<ClInclude Include="..\..\v8_5_1\include\v8-profiler.h" />
<ClInclude Include="..\..\v8_5_1\include\v8-testing.h" />
<ClInclude Include="..\..\v8_5_1\include\v8-util.h" />
<ClInclude Include="..\..\v8_5_1\include\v8-version.h" />
<ClInclude Include="..\..\v8_5_1\include\v8.h" />
<ClInclude Include="..\..\v8_5_1\include\v8config.h" />
<ClInclude Include="..\..\v8_5_1\src\accessors.h" />
<ClInclude Include="..\..\v8_5_1\src\address-map.h" />
<ClInclude Include="..\..\v8_5_1\src\allocation-site-scopes.h" />
<ClInclude Include="..\..\v8_5_1\src\allocation.h" />
<ClInclude Include="..\..\v8_5_1\src\api-arguments.h" />
<ClInclude Include="..\..\v8_5_1\src\api-experimental.h" />
<ClInclude Include="..\..\v8_5_1\src\api-natives.h" />
<ClInclude Include="..\..\v8_5_1\src\api.h" />
<ClInclude Include="..\..\v8_5_1\src\arguments.h" />
<ClInclude Include="..\..\v8_5_1\src\assembler.h" />
<ClInclude Include="..\..\v8_5_1\src\assert-scope.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\ast-expression-rewriter.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\ast-expression-visitor.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\ast-literal-reindexer.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\ast-numbering.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\ast-value-factory.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\ast.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\modules.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\prettyprinter.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\scopeinfo.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\scopes.h" />
<ClInclude Include="..\..\v8_5_1\src\ast\variables.h" />
<ClInclude Include="..\..\v8_5_1\src\atomic-utils.h" />
<ClInclude Include="..\..\v8_5_1\src\background-parsing-task.h" />
<ClInclude Include="..\..\v8_5_1\src\bailout-reason.h" />
<ClInclude Include="..\..\v8_5_1\src\base\accounting-allocator.h" />
<ClInclude Include="..\..\v8_5_1\src\base\adapters.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_arm64_gcc.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_arm_gcc.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_atomicword_compat.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_mac.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_mips64_gcc.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_mips_gcc.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_portable.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_ppc_gcc.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_s390_gcc.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_tsan.h" />
<ClInclude Include="..\..\v8_5_1\src\base\atomicops_internals_x86_msvc.h" />
<ClInclude Include="..\..\v8_5_1\src\base\bits.h" />
<ClInclude Include="..\..\v8_5_1\src\base\build_config.h" />
<ClInclude Include="..\..\v8_5_1\src\base\compiler-specific.h" />
<ClInclude Include="..\..\v8_5_1\src\base\cpu.h" />
<ClInclude Include="..\..\v8_5_1\src\base\division-by-constant.h" />
<ClInclude Include="..\..\v8_5_1\src\base\flags.h" />
<ClInclude Include="..\..\v8_5_1\src\base\functional.h" />
<ClInclude Include="..\..\v8_5_1\src\base\iterator.h" />
<ClInclude Include="..\..\v8_5_1\src\base\lazy-instance.h" />
<ClInclude Include="..\..\v8_5_1\src\base\logging.h" />
<ClInclude Include="..\..\v8_5_1\src\base\macros.h" />
<ClInclude Include="..\..\v8_5_1\src\base\once.h" />
<ClInclude Include="..\..\v8_5_1\src\base\platform\condition-variable.h" />
<ClInclude Include="..\..\v8_5_1\src\base\platform\elapsed-timer.h" />
<ClInclude Include="..\..\v8_5_1\src\base\platform\mutex.h" />
<ClInclude Include="..\..\v8_5_1\src\base\platform\platform.h" />
<ClInclude Include="..\..\v8_5_1\src\base\platform\semaphore.h" />
<ClInclude Include="..\..\v8_5_1\src\base\platform\time.h" />
<ClInclude Include="..\..\v8_5_1\src\base\qnx-math.h" />
<ClInclude Include="..\..\v8_5_1\src\base\safe_conversions.h" />
<ClInclude Include="..\..\v8_5_1\src\base\safe_conversions_impl.h" />
<ClInclude Include="..\..\v8_5_1\src\base\safe_math.h" />
<ClInclude Include="..\..\v8_5_1\src\base\safe_math_impl.h" />
<ClInclude Include="..\..\v8_5_1\src\base\smart-pointers.h" />
<ClInclude Include="..\..\v8_5_1\src\base\sys-info.h" />
<ClInclude Include="..\..\v8_5_1\src\base\utils\random-number-generator.h" />
<ClInclude Include="..\..\v8_5_1\src\base\win32-headers.h" />
<ClInclude Include="..\..\v8_5_1\src\basic-block-profiler.h" />
<ClInclude Include="..\..\v8_5_1\src\bignum-dtoa.h" />
<ClInclude Include="..\..\v8_5_1\src\bignum.h" />
<ClInclude Include="..\..\v8_5_1\src\bit-vector.h" />
<ClInclude Include="..\..\v8_5_1\src\bootstrapper.h" />
<ClInclude Include="..\..\v8_5_1\src\builtins.h" />
<ClInclude Include="..\..\v8_5_1\src\cached-powers.h" />
<ClInclude Include="..\..\v8_5_1\src\cancelable-task.h" />
<ClInclude Include="..\..\v8_5_1\src\char-predicates-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\char-predicates.h" />
<ClInclude Include="..\..\v8_5_1\src\checks.h" />
<ClInclude Include="..\..\v8_5_1\src\code-factory.h" />
<ClInclude Include="..\..\v8_5_1\src\code-stubs.h" />
<ClInclude Include="..\..\v8_5_1\src\codegen.h" />
<ClInclude Include="..\..\v8_5_1\src\collector.h" />
<ClInclude Include="..\..\v8_5_1\src\compilation-cache.h" />
<ClInclude Include="..\..\v8_5_1\src\compilation-dependencies.h" />
<ClInclude Include="..\..\v8_5_1\src\compilation-statistics.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\access-builder.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\access-info.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\all-nodes.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\ast-graph-builder.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\ast-loop-assignment-analyzer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\basic-block-instrumentor.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\branch-elimination.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\bytecode-branch-analysis.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\bytecode-graph-builder.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\change-lowering.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\coalesced-live-ranges.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\code-generator-impl.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\code-generator.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\code-stub-assembler.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\common-node-cache.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\common-operator-reducer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\common-operator.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\control-builders.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\control-equivalence.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\control-flow-optimizer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\dead-code-elimination.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\diamond.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\escape-analysis-reducer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\escape-analysis.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\frame-elider.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\frame-states.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\frame.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\gap-resolver.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\graph-reducer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\graph-replay.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\graph-trimmer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\graph-visualizer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\graph.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\greedy-allocator.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\ia32\instruction-codes-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\compiler\instruction-codes.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\instruction-scheduler.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\instruction-selector-impl.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\instruction-selector.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\instruction.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\int64-lowering.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-builtin-reducer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-call-reducer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-context-specialization.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-create-lowering.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-frame-specialization.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-generic-lowering.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-global-object-specialization.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-graph.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-inlining-heuristic.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-inlining.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-intrinsic-lowering.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-native-context-specialization.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-operator.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\js-typed-lowering.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\jump-threading.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\linkage.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\live-range-separator.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\liveness-analyzer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\load-elimination.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\loop-analysis.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\loop-peeling.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\machine-operator-reducer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\machine-operator.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\move-optimizer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\node-aux-data.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\node-cache.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\node-marker.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\node-matchers.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\node-properties.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\node.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\opcodes.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\operator-properties.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\operator.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\osr.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\pipeline-statistics.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\pipeline.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\raw-machine-assembler.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\register-allocator-verifier.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\register-allocator.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\representation-change.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\schedule.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\scheduler.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\select-lowering.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\simplified-lowering.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\simplified-operator-reducer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\simplified-operator.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\source-position.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\state-values-utils.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\tail-call-optimization.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\type-hint-analyzer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\type-hints.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\typer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\value-numbering-reducer.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\verifier.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\wasm-compiler.h" />
<ClInclude Include="..\..\v8_5_1\src\compiler\x64\instruction-codes-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\compiler\zone-pool.h" />
<ClInclude Include="..\..\v8_5_1\src\context-measure.h" />
<ClInclude Include="..\..\v8_5_1\src\contexts-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\contexts.h" />
<ClInclude Include="..\..\v8_5_1\src\conversions-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\conversions.h" />
<ClInclude Include="..\..\v8_5_1\src\counters.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\compilation-phase.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-alias-analysis.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-bce.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-canonicalize.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-check-elimination.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-dce.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-dehoist.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-environment-liveness.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-escape-analysis.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-flow-engine.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-gvn.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-infer-representation.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-infer-types.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-instructions.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-load-elimination.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-mark-deoptimize.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-mark-unreachable.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-osr.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-range-analysis.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-redundant-phi.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-removable-simulates.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-representation-changes.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-sce.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-store-elimination.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-types.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen-uint32-analysis.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\hydrogen.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\ia32\lithium-codegen-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\crankshaft\ia32\lithium-gap-resolver-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\crankshaft\ia32\lithium-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\crankshaft\lithium-allocator-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\lithium-allocator.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\lithium-codegen.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\lithium-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\lithium.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\typing.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\unique.h" />
<ClInclude Include="..\..\v8_5_1\src\crankshaft\x64\lithium-codegen-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\crankshaft\x64\lithium-gap-resolver-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\crankshaft\x64\lithium-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\date.h" />
<ClInclude Include="..\..\v8_5_1\src\dateparser-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\dateparser.h" />
<ClInclude Include="..\..\v8_5_1\src\debug\debug-evaluate.h" />
<ClInclude Include="..\..\v8_5_1\src\debug\debug-frames.h" />
<ClInclude Include="..\..\v8_5_1\src\debug\debug-scopes.h" />
<ClInclude Include="..\..\v8_5_1\src\debug\debug.h" />
<ClInclude Include="..\..\v8_5_1\src\debug\liveedit.h" />
<ClInclude Include="..\..\v8_5_1\src\deoptimizer.h" />
<ClInclude Include="..\..\v8_5_1\src\disasm.h" />
<ClInclude Include="..\..\v8_5_1\src\disassembler.h" />
<ClInclude Include="..\..\v8_5_1\src\diy-fp.h" />
<ClInclude Include="..\..\v8_5_1\src\double.h" />
<ClInclude Include="..\..\v8_5_1\src\dtoa.h" />
<ClInclude Include="..\..\v8_5_1\src\effects.h" />
<ClInclude Include="..\..\v8_5_1\src\elements-kind.h" />
<ClInclude Include="..\..\v8_5_1\src\elements.h" />
<ClInclude Include="..\..\v8_5_1\src\execution.h" />
<ClInclude Include="..\..\v8_5_1\src\extensions\externalize-string-extension.h" />
<ClInclude Include="..\..\v8_5_1\src\extensions\free-buffer-extension.h" />
<ClInclude Include="..\..\v8_5_1\src\extensions\gc-extension.h" />
<ClInclude Include="..\..\v8_5_1\src\extensions\statistics-extension.h" />
<ClInclude Include="..\..\v8_5_1\src\extensions\trigger-failure-extension.h" />
<ClInclude Include="..\..\v8_5_1\src\external-reference-table.h" />
<ClInclude Include="..\..\v8_5_1\src\factory.h" />
<ClInclude Include="..\..\v8_5_1\src\fast-accessor-assembler.h" />
<ClInclude Include="..\..\v8_5_1\src\fast-dtoa.h" />
<ClInclude Include="..\..\v8_5_1\src\field-index-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\field-index.h" />
<ClInclude Include="..\..\v8_5_1\src\field-type.h" />
<ClInclude Include="..\..\v8_5_1\src\fixed-dtoa.h" />
<ClInclude Include="..\..\v8_5_1\src\flag-definitions.h" />
<ClInclude Include="..\..\v8_5_1\src\flags.h" />
<ClInclude Include="..\..\v8_5_1\src\frames-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\frames.h" />
<ClInclude Include="..\..\v8_5_1\src\full-codegen\full-codegen.h" />
<ClInclude Include="..\..\v8_5_1\src\futex-emulation.h" />
<ClInclude Include="..\..\v8_5_1\src\gdb-jit.h" />
<ClInclude Include="..\..\v8_5_1\src\global-handles.h" />
<ClInclude Include="..\..\v8_5_1\src\globals.h" />
<ClInclude Include="..\..\v8_5_1\src\handles-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\handles.h" />
<ClInclude Include="..\..\v8_5_1\src\hashmap.h" />
<ClInclude Include="..\..\v8_5_1\src\heap-symbols.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\array-buffer-tracker.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\gc-idle-time-handler.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\gc-tracer.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\heap-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\heap.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\incremental-marking-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\incremental-marking-job.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\incremental-marking.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\mark-compact-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\mark-compact.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\memory-reducer.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\object-stats.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\objects-visiting-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\objects-visiting.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\page-parallel-job.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\remembered-set.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\scavenge-job.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\scavenger-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\scavenger.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\slot-set.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\spaces-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\spaces.h" />
<ClInclude Include="..\..\v8_5_1\src\heap\store-buffer.h" />
<ClInclude Include="..\..\v8_5_1\src\ia32\assembler-ia32-inl.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\ia32\assembler-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\ia32\code-stubs-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\ia32\codegen-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\ia32\frames-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\ia32\macro-assembler-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\ia32\simulator-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\icu_util.h" />
<ClInclude Include="..\..\v8_5_1\src\ic\access-compiler.h" />
<ClInclude Include="..\..\v8_5_1\src\ic\call-optimization.h" />
<ClInclude Include="..\..\v8_5_1\src\ic\handler-compiler.h" />
<ClInclude Include="..\..\v8_5_1\src\ic\ic-compiler.h" />
<ClInclude Include="..\..\v8_5_1\src\ic\ic-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\ic\ic-state.h" />
<ClInclude Include="..\..\v8_5_1\src\ic\ic.h" />
<ClInclude Include="..\..\v8_5_1\src\ic\stub-cache.h" />
<ClInclude Include="..\..\v8_5_1\src\identity-map.h" />
<ClInclude Include="..\..\v8_5_1\src\interface-descriptors.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\bytecode-array-builder.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\bytecode-array-iterator.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\bytecode-generator.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\bytecode-register-allocator.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\bytecode-traits.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\bytecodes.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\constant-array-builder.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\control-flow-builders.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\handler-table-builder.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\interpreter-assembler.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\interpreter-intrinsics.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\interpreter.h" />
<ClInclude Include="..\..\v8_5_1\src\interpreter\source-position-table.h" />
<ClInclude Include="..\..\v8_5_1\src\isolate-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\isolate.h" />
<ClInclude Include="..\..\v8_5_1\src\json-parser.h" />
<ClInclude Include="..\..\v8_5_1\src\json-stringifier.h" />
<ClInclude Include="..\..\v8_5_1\src\keys.h" />
<ClInclude Include="..\..\v8_5_1\src\layout-descriptor-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\layout-descriptor.h" />
<ClInclude Include="..\..\v8_5_1\src\libplatform\default-platform.h" />
<ClInclude Include="..\..\v8_5_1\src\libplatform\task-queue.h" />
<ClInclude Include="..\..\v8_5_1\src\libplatform\worker-thread.h" />
<ClInclude Include="..\..\v8_5_1\src\list-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\list.h" />
<ClInclude Include="..\..\v8_5_1\src\locked-queue-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\locked-queue.h" />
<ClInclude Include="..\..\v8_5_1\src\log-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\log-utils.h" />
<ClInclude Include="..\..\v8_5_1\src\log.h" />
<ClInclude Include="..\..\v8_5_1\src\lookup.h" />
<ClInclude Include="..\..\v8_5_1\src\machine-type.h" />
<ClInclude Include="..\..\v8_5_1\src\macro-assembler.h" />
<ClInclude Include="..\..\v8_5_1\src\messages.h" />
<ClInclude Include="..\..\v8_5_1\src\msan.h" />
<ClInclude Include="..\..\v8_5_1\src\objects-body-descriptors-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\objects-body-descriptors.h" />
<ClInclude Include="..\..\v8_5_1\src\objects-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\objects.h" />
<ClInclude Include="..\..\v8_5_1\src\optimizing-compile-dispatcher.h" />
<ClInclude Include="..\..\v8_5_1\src\ostreams.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\expression-classifier.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\func-name-inferrer.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\parameter-initializer-rewriter.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\parser-base.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\parser.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\preparse-data-format.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\preparse-data.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\preparser.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\rewriter.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\scanner-character-streams.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\scanner.h" />
<ClInclude Include="..\..\v8_5_1\src\parsing\token.h" />
<ClInclude Include="..\..\v8_5_1\src\pending-compilation-error-handler.h" />
<ClInclude Include="..\..\v8_5_1\src\perf-jit.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\allocation-tracker.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\circular-queue-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\circular-queue.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\cpu-profiler-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\cpu-profiler.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\heap-profiler.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\heap-snapshot-generator-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\heap-snapshot-generator.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\profile-generator-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\profile-generator.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\sampler.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\sampling-heap-profiler.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\strings-storage.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\unbound-queue-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\profiler\unbound-queue.h" />
<ClInclude Include="..\..\v8_5_1\src\property-descriptor.h" />
<ClInclude Include="..\..\v8_5_1\src\property-details.h" />
<ClInclude Include="..\..\v8_5_1\src\property.h" />
<ClInclude Include="..\..\v8_5_1\src\prototype.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\bytecodes-irregexp.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\ia32\regexp-macro-assembler-ia32.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\regexp\interpreter-irregexp.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\jsregexp-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\jsregexp.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\regexp-ast.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\regexp-macro-assembler-irregexp-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\regexp-macro-assembler-irregexp.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\regexp-macro-assembler-tracer.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\regexp-macro-assembler.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\regexp-parser.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\regexp-stack.h" />
<ClInclude Include="..\..\v8_5_1\src\regexp\x64\regexp-macro-assembler-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\register-configuration.h" />
<ClInclude Include="..\..\v8_5_1\src\runtime-profiler.h" />
<ClInclude Include="..\..\v8_5_1\src\runtime\runtime-utils.h" />
<ClInclude Include="..\..\v8_5_1\src\runtime\runtime.h" />
<ClInclude Include="..\..\v8_5_1\src\safepoint-table.h" />
<ClInclude Include="..\..\v8_5_1\src\signature.h" />
<ClInclude Include="..\..\v8_5_1\src\simulator.h" />
<ClInclude Include="..\..\v8_5_1\src\small-pointer-list.h" />
<ClInclude Include="..\..\v8_5_1\src\snapshot\code-serializer.h" />
<ClInclude Include="..\..\v8_5_1\src\snapshot\deserializer.h" />
<ClInclude Include="..\..\v8_5_1\src\snapshot\natives.h" />
<ClInclude Include="..\..\v8_5_1\src\snapshot\partial-serializer.h" />
<ClInclude Include="..\..\v8_5_1\src\snapshot\serializer-common.h" />
<ClInclude Include="..\..\v8_5_1\src\snapshot\snapshot-source-sink.h" />
<ClInclude Include="..\..\v8_5_1\src\snapshot\startup-serializer.h" />
<ClInclude Include="..\..\v8_5_1\src\source-position.h" />
<ClInclude Include="..\..\v8_5_1\src\splay-tree-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\splay-tree.h" />
<ClInclude Include="..\..\v8_5_1\src\startup-data-util.h" />
<ClInclude Include="..\..\v8_5_1\src\string-builder.h" />
<ClInclude Include="..\..\v8_5_1\src\string-search.h" />
<ClInclude Include="..\..\v8_5_1\src\string-stream.h" />
<ClInclude Include="..\..\v8_5_1\src\strtod.h" />
<ClInclude Include="..\..\v8_5_1\src\third_party\fdlibm\fdlibm.h" />
<ClInclude Include="..\..\v8_5_1\src\third_party\valgrind\valgrind.h" />
<ClInclude Include="..\..\v8_5_1\src\third_party\vtune\ittnotify_config.h" />
<ClInclude Include="..\..\v8_5_1\src\third_party\vtune\ittnotify_types.h" />
<ClInclude Include="..\..\v8_5_1\src\third_party\vtune\jitprofiling.h" />
<ClInclude Include="..\..\v8_5_1\src\third_party\vtune\v8-vtune.h" />
<ClInclude Include="..\..\v8_5_1\src\tracing\trace-event.h" />
<ClInclude Include="..\..\v8_5_1\src\transitions-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\transitions.h" />
<ClInclude Include="..\..\v8_5_1\src\type-cache.h" />
<ClInclude Include="..\..\v8_5_1\src\type-feedback-vector-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\type-feedback-vector.h" />
<ClInclude Include="..\..\v8_5_1\src\type-info.h" />
<ClInclude Include="..\..\v8_5_1\src\types.h" />
<ClInclude Include="..\..\v8_5_1\src\typing-asm.h" />
<ClInclude Include="..\..\v8_5_1\src\typing-reset.h" />
<ClInclude Include="..\..\v8_5_1\src\unicode-cache-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\unicode-cache.h" />
<ClInclude Include="..\..\v8_5_1\src\unicode-decoder.h" />
<ClInclude Include="..\..\v8_5_1\src\unicode-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\unicode.h" />
<ClInclude Include="..\..\v8_5_1\src\utils-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\utils.h" />
<ClInclude Include="..\..\v8_5_1\src\v8.h" />
<ClInclude Include="..\..\v8_5_1\src\v8memory.h" />
<ClInclude Include="..\..\v8_5_1\src\v8threads.h" />
<ClInclude Include="..\..\v8_5_1\src\vector.h" />
<ClInclude Include="..\..\v8_5_1\src\version.h" />
<ClInclude Include="..\..\v8_5_1\src\vm-state-inl.h" />
<ClInclude Include="..\..\v8_5_1\src\vm-state.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\asm-wasm-builder.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\ast-decoder.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\decoder.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\encoder.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\module-decoder.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\wasm-external-refs.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\wasm-js.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\wasm-macro-gen.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\wasm-module.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\wasm-opcodes.h" />
<ClInclude Include="..\..\v8_5_1\src\wasm\wasm-result.h" />
<ClInclude Include="..\..\v8_5_1\src\x64\assembler-x64-inl.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\x64\assembler-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\x64\code-stubs-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\x64\codegen-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\x64\frames-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\x64\macro-assembler-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\x64\simulator-x64.h">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClInclude>
<ClInclude Include="..\..\v8_5_1\src\zone-allocator.h" />
<ClInclude Include="..\..\v8_5_1\src\zone-containers.h" />
<ClInclude Include="..\..\v8_5_1\src\zone.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\gen\v8_5_1\experimental-extras-libraries.cc" />
<ClCompile Include="..\..\gen\v8_5_1\experimental-libraries.cc" />
<ClCompile Include="..\..\gen\v8_5_1\extras-libraries.cc" />
<ClCompile Include="..\..\gen\v8_5_1\libraries.cc" />
<ClCompile Include="..\..\v8_5_1\src\accessors.cc" />
<ClCompile Include="..\..\v8_5_1\src\address-map.cc" />
<ClCompile Include="..\..\v8_5_1\src\allocation-site-scopes.cc" />
<ClCompile Include="..\..\v8_5_1\src\allocation.cc" />
<ClCompile Include="..\..\v8_5_1\src\api-arguments.cc" />
<ClCompile Include="..\..\v8_5_1\src\api-experimental.cc" />
<ClCompile Include="..\..\v8_5_1\src\api-natives.cc" />
<ClCompile Include="..\..\v8_5_1\src\api.cc" />
<ClCompile Include="..\..\v8_5_1\src\arguments.cc" />
<ClCompile Include="..\..\v8_5_1\src\assembler.cc" />
<ClCompile Include="..\..\v8_5_1\src\assert-scope.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\ast-expression-rewriter.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\ast-expression-visitor.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\ast-literal-reindexer.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\ast-numbering.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\ast-value-factory.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\ast.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\modules.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\prettyprinter.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\scopeinfo.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\scopes.cc" />
<ClCompile Include="..\..\v8_5_1\src\ast\variables.cc" />
<ClCompile Include="..\..\v8_5_1\src\background-parsing-task.cc" />
<ClCompile Include="..\..\v8_5_1\src\bailout-reason.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\accounting-allocator.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\bits.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\cpu.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\division-by-constant.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\functional.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\logging.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\once.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\platform\condition-variable.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\platform\mutex.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\platform\platform-win32.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\platform\semaphore.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\platform\time.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\sys-info.cc" />
<ClCompile Include="..\..\v8_5_1\src\base\utils\random-number-generator.cc" />
<ClCompile Include="..\..\v8_5_1\src\basic-block-profiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\bignum-dtoa.cc" />
<ClCompile Include="..\..\v8_5_1\src\bignum.cc" />
<ClCompile Include="..\..\v8_5_1\src\bit-vector.cc" />
<ClCompile Include="..\..\v8_5_1\src\bootstrapper.cc" />
<ClCompile Include="..\..\v8_5_1\src\builtins.cc" />
<ClCompile Include="..\..\v8_5_1\src\cached-powers.cc" />
<ClCompile Include="..\..\v8_5_1\src\cancelable-task.cc" />
<ClCompile Include="..\..\v8_5_1\src\char-predicates.cc" />
<ClCompile Include="..\..\v8_5_1\src\code-factory.cc" />
<ClCompile Include="..\..\v8_5_1\src\code-stubs-hydrogen.cc" />
<ClCompile Include="..\..\v8_5_1\src\code-stubs.cc" />
<ClCompile Include="..\..\v8_5_1\src\codegen.cc" />
<ClCompile Include="..\..\v8_5_1\src\compilation-cache.cc" />
<ClCompile Include="..\..\v8_5_1\src\compilation-dependencies.cc" />
<ClCompile Include="..\..\v8_5_1\src\compilation-statistics.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\access-builder.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\access-info.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\all-nodes.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\ast-graph-builder.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\ast-loop-assignment-analyzer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\basic-block-instrumentor.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\branch-elimination.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\bytecode-branch-analysis.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\bytecode-graph-builder.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\c-linkage.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\change-lowering.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\coalesced-live-ranges.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\code-generator.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\code-stub-assembler.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\common-node-cache.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\common-operator-reducer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\common-operator.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\control-builders.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\control-equivalence.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\control-flow-optimizer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\dead-code-elimination.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\escape-analysis-reducer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\escape-analysis.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\frame-elider.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\frame-states.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\frame.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\gap-resolver.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\graph-reducer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\graph-replay.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\graph-trimmer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\graph-visualizer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\graph.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\greedy-allocator.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\ia32\code-generator-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\compiler\ia32\instruction-scheduler-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\compiler\ia32\instruction-selector-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\compiler\instruction-scheduler.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\instruction-selector.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\instruction.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\int64-lowering.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-builtin-reducer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-call-reducer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-context-specialization.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-create-lowering.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-frame-specialization.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-generic-lowering.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-global-object-specialization.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-graph.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-inlining-heuristic.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-inlining.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-intrinsic-lowering.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-native-context-specialization.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-operator.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\js-typed-lowering.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\jump-threading.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\linkage.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\live-range-separator.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\liveness-analyzer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\load-elimination.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\loop-analysis.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\loop-peeling.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\machine-operator-reducer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\machine-operator.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\move-optimizer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\node-cache.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\node-marker.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\node-matchers.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\node-properties.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\node.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\opcodes.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\operator-properties.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\operator.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\osr.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\pipeline-statistics.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\pipeline.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\raw-machine-assembler.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\register-allocator-verifier.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\register-allocator.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\representation-change.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\schedule.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\scheduler.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\select-lowering.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\simplified-lowering.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\simplified-operator-reducer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\simplified-operator.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\source-position.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\state-values-utils.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\tail-call-optimization.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\type-hint-analyzer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\type-hints.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\typer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\value-numbering-reducer.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\verifier.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\wasm-compiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\wasm-linkage.cc" />
<ClCompile Include="..\..\v8_5_1\src\compiler\x64\code-generator-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\compiler\x64\instruction-scheduler-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\compiler\x64\instruction-selector-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\compiler\zone-pool.cc" />
<ClCompile Include="..\..\v8_5_1\src\context-measure.cc" />
<ClCompile Include="..\..\v8_5_1\src\contexts.cc" />
<ClCompile Include="..\..\v8_5_1\src\conversions.cc" />
<ClCompile Include="..\..\v8_5_1\src\counters.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\compilation-phase.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-bce.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-canonicalize.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-check-elimination.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-dce.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-dehoist.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-environment-liveness.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-escape-analysis.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-gvn.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-infer-representation.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-infer-types.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-instructions.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-load-elimination.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-mark-deoptimize.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-mark-unreachable.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-osr.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-range-analysis.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-redundant-phi.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-removable-simulates.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-representation-changes.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-sce.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-store-elimination.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-types.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen-uint32-analysis.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\hydrogen.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\ia32\lithium-codegen-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\crankshaft\ia32\lithium-gap-resolver-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\crankshaft\ia32\lithium-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\crankshaft\lithium-allocator.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\lithium-codegen.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\lithium.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\typing.cc" />
<ClCompile Include="..\..\v8_5_1\src\crankshaft\x64\lithium-codegen-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\crankshaft\x64\lithium-gap-resolver-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\crankshaft\x64\lithium-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\date.cc" />
<ClCompile Include="..\..\v8_5_1\src\dateparser.cc" />
<ClCompile Include="..\..\v8_5_1\src\debug\debug-evaluate.cc" />
<ClCompile Include="..\..\v8_5_1\src\debug\debug-frames.cc" />
<ClCompile Include="..\..\v8_5_1\src\debug\debug-scopes.cc" />
<ClCompile Include="..\..\v8_5_1\src\debug\debug.cc" />
<ClCompile Include="..\..\v8_5_1\src\debug\ia32\debug-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\debug\liveedit.cc" />
<ClCompile Include="..\..\v8_5_1\src\debug\x64\debug-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\deoptimizer.cc" />
<ClCompile Include="..\..\v8_5_1\src\disassembler.cc" />
<ClCompile Include="..\..\v8_5_1\src\diy-fp.cc" />
<ClCompile Include="..\..\v8_5_1\src\dtoa.cc" />
<ClCompile Include="..\..\v8_5_1\src\elements-kind.cc" />
<ClCompile Include="..\..\v8_5_1\src\elements.cc" />
<ClCompile Include="..\..\v8_5_1\src\execution.cc" />
<ClCompile Include="..\..\v8_5_1\src\extensions\externalize-string-extension.cc" />
<ClCompile Include="..\..\v8_5_1\src\extensions\free-buffer-extension.cc" />
<ClCompile Include="..\..\v8_5_1\src\extensions\gc-extension.cc" />
<ClCompile Include="..\..\v8_5_1\src\extensions\statistics-extension.cc" />
<ClCompile Include="..\..\v8_5_1\src\extensions\trigger-failure-extension.cc" />
<ClCompile Include="..\..\v8_5_1\src\external-reference-table.cc" />
<ClCompile Include="..\..\v8_5_1\src\factory.cc" />
<ClCompile Include="..\..\v8_5_1\src\fast-accessor-assembler.cc" />
<ClCompile Include="..\..\v8_5_1\src\fast-dtoa.cc" />
<ClCompile Include="..\..\v8_5_1\src\field-type.cc" />
<ClCompile Include="..\..\v8_5_1\src\fixed-dtoa.cc" />
<ClCompile Include="..\..\v8_5_1\src\flags.cc" />
<ClCompile Include="..\..\v8_5_1\src\frames.cc" />
<ClCompile Include="..\..\v8_5_1\src\full-codegen\full-codegen.cc" />
<ClCompile Include="..\..\v8_5_1\src\full-codegen\ia32\full-codegen-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\full-codegen\x64\full-codegen-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\futex-emulation.cc" />
<ClCompile Include="..\..\v8_5_1\src\gdb-jit.cc" />
<ClCompile Include="..\..\v8_5_1\src\global-handles.cc" />
<ClCompile Include="..\..\v8_5_1\src\handles.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\array-buffer-tracker.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\gc-idle-time-handler.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\gc-tracer.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\heap.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\incremental-marking-job.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\incremental-marking.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\mark-compact.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\memory-reducer.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\object-stats.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\objects-visiting.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\remembered-set.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\scavenge-job.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\scavenger.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\spaces.cc" />
<ClCompile Include="..\..\v8_5_1\src\heap\store-buffer.cc" />
<ClCompile Include="..\..\v8_5_1\src\ia32\assembler-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ia32\builtins-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ia32\code-stubs-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ia32\codegen-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ia32\cpu-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ia32\deoptimizer-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ia32\disasm-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ia32\frames-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ia32\interface-descriptors-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ia32\macro-assembler-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ia32\simulator-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\icu_util.cc" />
<ClCompile Include="..\..\v8_5_1\src\ic\access-compiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\ic\call-optimization.cc" />
<ClCompile Include="..\..\v8_5_1\src\ic\handler-compiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\ic\ia32\access-compiler-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ic\ia32\handler-compiler-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ic\ia32\ic-compiler-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ic\ia32\ic-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ic\ia32\stub-cache-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ic\ic-compiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\ic\ic-state.cc" />
<ClCompile Include="..\..\v8_5_1\src\ic\ic.cc" />
<ClCompile Include="..\..\v8_5_1\src\ic\stub-cache.cc" />
<ClCompile Include="..\..\v8_5_1\src\ic\x64\access-compiler-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ic\x64\handler-compiler-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ic\x64\ic-compiler-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ic\x64\ic-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\ic\x64\stub-cache-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\identity-map.cc" />
<ClCompile Include="..\..\v8_5_1\src\interface-descriptors.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\bytecode-array-builder.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\bytecode-array-iterator.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\bytecode-generator.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\bytecode-register-allocator.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\bytecodes.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\constant-array-builder.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\control-flow-builders.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\handler-table-builder.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\interpreter-assembler.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\interpreter-intrinsics.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\interpreter.cc" />
<ClCompile Include="..\..\v8_5_1\src\interpreter\source-position-table.cc" />
<ClCompile Include="..\..\v8_5_1\src\isolate.cc" />
<ClCompile Include="..\..\v8_5_1\src\keys.cc" />
<ClCompile Include="..\..\v8_5_1\src\layout-descriptor.cc" />
<ClCompile Include="..\..\v8_5_1\src\libplatform\default-platform.cc" />
<ClCompile Include="..\..\v8_5_1\src\libplatform\task-queue.cc" />
<ClCompile Include="..\..\v8_5_1\src\libplatform\worker-thread.cc" />
<ClCompile Include="..\..\v8_5_1\src\log-utils.cc" />
<ClCompile Include="..\..\v8_5_1\src\log.cc" />
<ClCompile Include="..\..\v8_5_1\src\lookup.cc" />
<ClCompile Include="..\..\v8_5_1\src\machine-type.cc" />
<ClCompile Include="..\..\v8_5_1\src\messages.cc" />
<ClCompile Include="..\..\v8_5_1\src\objects-debug.cc" />
<ClCompile Include="..\..\v8_5_1\src\objects-printer.cc" />
<ClCompile Include="..\..\v8_5_1\src\objects.cc" />
<ClCompile Include="..\..\v8_5_1\src\optimizing-compile-dispatcher.cc" />
<ClCompile Include="..\..\v8_5_1\src\ostreams.cc" />
<ClCompile Include="..\..\v8_5_1\src\parsing\func-name-inferrer.cc" />
<ClCompile Include="..\..\v8_5_1\src\parsing\parameter-initializer-rewriter.cc" />
<ClCompile Include="..\..\v8_5_1\src\parsing\parser.cc" />
<ClCompile Include="..\..\v8_5_1\src\parsing\pattern-rewriter.cc" />
<ClCompile Include="..\..\v8_5_1\src\parsing\preparse-data.cc" />
<ClCompile Include="..\..\v8_5_1\src\parsing\preparser.cc" />
<ClCompile Include="..\..\v8_5_1\src\parsing\rewriter.cc" />
<ClCompile Include="..\..\v8_5_1\src\parsing\scanner-character-streams.cc" />
<ClCompile Include="..\..\v8_5_1\src\parsing\scanner.cc" />
<ClCompile Include="..\..\v8_5_1\src\parsing\token.cc" />
<ClCompile Include="..\..\v8_5_1\src\pending-compilation-error-handler.cc" />
<ClCompile Include="..\..\v8_5_1\src\perf-jit.cc" />
<ClCompile Include="..\..\v8_5_1\src\profiler\allocation-tracker.cc" />
<ClCompile Include="..\..\v8_5_1\src\profiler\cpu-profiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\profiler\heap-profiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\profiler\heap-snapshot-generator.cc" />
<ClCompile Include="..\..\v8_5_1\src\profiler\profile-generator.cc" />
<ClCompile Include="..\..\v8_5_1\src\profiler\sampler.cc" />
<ClCompile Include="..\..\v8_5_1\src\profiler\sampling-heap-profiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\profiler\strings-storage.cc" />
<ClCompile Include="..\..\v8_5_1\src\property-descriptor.cc" />
<ClCompile Include="..\..\v8_5_1\src\property.cc" />
<ClCompile Include="..\..\v8_5_1\src\regexp\ia32\regexp-macro-assembler-ia32.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|x64'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\regexp\interpreter-irregexp.cc" />
<ClCompile Include="..\..\v8_5_1\src\regexp\jsregexp.cc" />
<ClCompile Include="..\..\v8_5_1\src\regexp\regexp-ast.cc" />
<ClCompile Include="..\..\v8_5_1\src\regexp\regexp-macro-assembler-irregexp.cc" />
<ClCompile Include="..\..\v8_5_1\src\regexp\regexp-macro-assembler-tracer.cc" />
<ClCompile Include="..\..\v8_5_1\src\regexp\regexp-macro-assembler.cc" />
<ClCompile Include="..\..\v8_5_1\src\regexp\regexp-parser.cc" />
<ClCompile Include="..\..\v8_5_1\src\regexp\regexp-stack.cc" />
<ClCompile Include="..\..\v8_5_1\src\regexp\x64\regexp-macro-assembler-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\register-configuration.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime-profiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-array.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-atomics.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-classes.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-collections.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-compiler.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-date.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-debug.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-forin.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-function.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-futex.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-generator.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-i18n.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-internal.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-interpreter.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-json.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-literals.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-liveedit.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-maths.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-numbers.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-object.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-observe.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-operators.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-proxy.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-regexp.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-scopes.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-simd.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-strings.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-symbol.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-test.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-typedarray.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime-uri.cc" />
<ClCompile Include="..\..\v8_5_1\src\runtime\runtime.cc" />
<ClCompile Include="..\..\v8_5_1\src\safepoint-table.cc" />
<ClCompile Include="..\..\v8_5_1\src\snapshot\code-serializer.cc" />
<ClCompile Include="..\..\v8_5_1\src\snapshot\deserializer.cc" />
<ClCompile Include="..\..\v8_5_1\src\snapshot\natives-common.cc" />
<ClCompile Include="..\..\v8_5_1\src\snapshot\partial-serializer.cc" />
<ClCompile Include="..\..\v8_5_1\src\snapshot\serializer-common.cc" />
<ClCompile Include="..\..\v8_5_1\src\snapshot\serializer.cc" />
<ClCompile Include="..\..\v8_5_1\src\snapshot\snapshot-common.cc" />
<ClCompile Include="..\..\v8_5_1\src\snapshot\snapshot-empty.cc" />
<ClCompile Include="..\..\v8_5_1\src\snapshot\snapshot-source-sink.cc" />
<ClCompile Include="..\..\v8_5_1\src\snapshot\startup-serializer.cc" />
<ClCompile Include="..\..\v8_5_1\src\startup-data-util.cc" />
<ClCompile Include="..\..\v8_5_1\src\string-builder.cc" />
<ClCompile Include="..\..\v8_5_1\src\string-stream.cc" />
<ClCompile Include="..\..\v8_5_1\src\strtod.cc" />
<ClCompile Include="..\..\v8_5_1\src\third_party\fdlibm\fdlibm.cc" />
<ClCompile Include="..\..\v8_5_1\src\third_party\vtune\jitprofiling.cc" />
<ClCompile Include="..\..\v8_5_1\src\tracing\trace-event.cc" />
<ClCompile Include="..\..\v8_5_1\src\transitions.cc" />
<ClCompile Include="..\..\v8_5_1\src\type-cache.cc" />
<ClCompile Include="..\..\v8_5_1\src\type-feedback-vector.cc" />
<ClCompile Include="..\..\v8_5_1\src\type-info.cc" />
<ClCompile Include="..\..\v8_5_1\src\types.cc" />
<ClCompile Include="..\..\v8_5_1\src\typing-asm.cc" />
<ClCompile Include="..\..\v8_5_1\src\typing-reset.cc" />
<ClCompile Include="..\..\v8_5_1\src\unicode-decoder.cc" />
<ClCompile Include="..\..\v8_5_1\src\unicode.cc" />
<ClCompile Include="..\..\v8_5_1\src\utils.cc" />
<ClCompile Include="..\..\v8_5_1\src\v8.cc" />
<ClCompile Include="..\..\v8_5_1\src\v8threads.cc" />
<ClCompile Include="..\..\v8_5_1\src\version.cc" />
<ClCompile Include="..\..\v8_5_1\src\wasm\asm-wasm-builder.cc" />
<ClCompile Include="..\..\v8_5_1\src\wasm\ast-decoder.cc" />
<ClCompile Include="..\..\v8_5_1\src\wasm\encoder.cc" />
<ClCompile Include="..\..\v8_5_1\src\wasm\module-decoder.cc" />
<ClCompile Include="..\..\v8_5_1\src\wasm\wasm-js.cc" />
<ClCompile Include="..\..\v8_5_1\src\wasm\wasm-module.cc" />
<ClCompile Include="..\..\v8_5_1\src\wasm\wasm-opcodes.cc" />
<ClCompile Include="..\..\v8_5_1\src\wasm\wasm-result.cc" />
<ClCompile Include="..\..\v8_5_1\src\x64\assembler-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\x64\builtins-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\x64\code-stubs-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\x64\codegen-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\x64\cpu-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\x64\deoptimizer-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\x64\disasm-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\x64\frames-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\x64\interface-descriptors-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\x64\macro-assembler-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\x64\simulator-x64.cc">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">true</ExcludedFromBuild>
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Release_vc6|Win32'">true</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\v8_5_1\src\zone.cc" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\v8_5_1\src\base.isolate" />
<None Include="..\..\v8_5_1\src\compiler\STYLE" />
<None Include="..\..\v8_5_1\src\d8_js2c.vcxproj.filters" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
``` | /content/code_sandbox/build/v8_5_1/v8_5_1.vcxproj | xml | 2016-09-27T03:41:10 | 2024-08-16T10:42:57 | miniblink49 | weolar/miniblink49 | 7,069 | 32,132 |
```xml
/*
* @license Apache-2.0
*
*
*
* path_to_url
*
* Unless required by applicable law or agreed to in writing, software
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*/
/* eslint-disable @typescript-eslint/no-unused-expressions */
import Uniform = require( './index' );
// TESTS //
// The function returns a distribution instance...
{
new Uniform(); // $ExpectType Uniform
new Uniform( 1.0, 2.0 ); // $ExpectType Uniform
}
// The compiler throws an error if the function is provided values other than two numbers...
{
new Uniform( true, 2.0 ); // $ExpectError
new Uniform( false, 2.0 ); // $ExpectError
new Uniform( '5', 2.0 ); // $ExpectError
new Uniform( [], 2.0 ); // $ExpectError
new Uniform( {}, 2.0 ); // $ExpectError
new Uniform( ( x: number ): number => x, 2.0 ); // $ExpectError
new Uniform( 1.0, true ); // $ExpectError
new Uniform( 1.0, false ); // $ExpectError
new Uniform( 1.0, '5' ); // $ExpectError
new Uniform( 1.0, [] ); // $ExpectError
new Uniform( 1.0, {} ); // $ExpectError
new Uniform( 1.0, ( x: number ): number => x ); // $ExpectError
}
// The compiler throws an error if the function is provided an unsupported number of arguments...
{
new Uniform( 0.0 ); // $ExpectError
new Uniform( 0.0, 1.0, 2.0 ); // $ExpectError
}
``` | /content/code_sandbox/lib/node_modules/@stdlib/stats/base/dists/uniform/ctor/docs/types/test.ts | xml | 2016-03-24T04:19:52 | 2024-08-16T09:03:19 | stdlib | stdlib-js/stdlib | 4,266 | 381 |
```xml
<deployment version='1.0'>
<test />
<staging />
<prod>
<region active="true">us-east</region>
<region active="false">us-west-1</region>
</prod>
</deployment>
``` | /content/code_sandbox/config-application-package/src/test/resources/app-with-deployment/deployment.xml | xml | 2016-06-03T20:54:20 | 2024-08-16T15:32:01 | vespa | vespa-engine/vespa | 5,524 | 55 |
```xml
export { default as blackFriday2023VPNYearlyConfig } from './configuration';
export { default as useBlackFriday2023VPNYearly } from './useOffer';
export { default as blackFriday2023VPNYearlyEligibility } from './eligibility';
``` | /content/code_sandbox/packages/components/containers/offers/operations/blackFridayVPN2023Yearly/index.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 56 |
```xml
import { AbstractRouteGenerator } from '@tsoa/cli';
export class DummyRouteGenerator extends AbstractRouteGenerator<any> {
private static CALL_COUNT = 0;
GenerateCustomRoutes(): Promise<void> {
DummyRouteGenerator.CALL_COUNT += 1;
return Promise.resolve(undefined);
}
public static getCallCount(): number {
return this.CALL_COUNT;
}
}
``` | /content/code_sandbox/tests/esm/fixtures/templating/dummyRouteGenerator.ts | xml | 2016-06-17T10:42:50 | 2024-08-16T05:57:17 | tsoa | lukeautry/tsoa | 3,408 | 82 |
```xml
import { Stack } from "@fluentui/react";
import { Icon } from '@fluentui/react';
import * as React from "react";
import styles from "./ChatStreaming.module.scss";
import MarkdownContent from "./MarkdownContent";
import ThinkingIndicator from "./ThinkingIndicator";
export interface IAssistantResponseProps {
message: string;
disableMarkdown?: boolean;
thinking?: boolean;
}
export default class AssistantResponse extends React.Component<
IAssistantResponseProps,
{}
> {
public render(): React.ReactElement<IAssistantResponseProps> {
return (
<Stack horizontal className={styles.assistantResponse}>
<div className={styles.avatar}>
<Icon iconName="Robot" />
</div>
<div className={styles.messageBox}>
{this.props.thinking && this.props.message.length === 0 &&
<ThinkingIndicator />
}
{this.props.disableMarkdown && this.props.message.length > 0 &&
<p className={styles.message}>{this.props.message}</p>
}
{!this.props.disableMarkdown && this.props.message.length > 0 &&
<MarkdownContent className={styles.message}>{this.props.message}</MarkdownContent>
}
<div className={styles.beak}/>
</div>
</Stack>
);
}
}
``` | /content/code_sandbox/samples/react-azure-openai-api-stream/src/webparts/chatStreaming/components/AssistantResponse.tsx | xml | 2016-08-30T17:21:43 | 2024-08-16T18:41:32 | sp-dev-fx-webparts | pnp/sp-dev-fx-webparts | 2,027 | 264 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<local:TestContentPage xmlns="path_to_url" xmlns:x="path_to_url" xmlns:local="clr-namespace:Xamarin.Forms.Controls" x:Class="Xamarin.Forms.Controls.Issues.Issue4356">
<StackLayout Orientation="Vertical">
<StackLayout Orientation="Horizontal">
<Button Text="Add item" HorizontalOptions="CenterAndExpand" Command="{Binding AddCommand}" />
<Button Text="Remove item" HorizontalOptions="CenterAndExpand" Command="{Binding RemoveCommand}" />
</StackLayout>
<ListView x:Name="listView"
ItemsSource="{Binding FavoriteArticles}"
HasUnevenRows="True"
IsPullToRefreshEnabled="True"
HorizontalOptions="FillAndExpand"
VerticalOptions="FillAndExpand"
SeparatorVisibility="None"
SeparatorColor="Transparent"
BackgroundColor="#F0F0F0"
RefreshCommand="{Binding LoadFavoritesCommand}"
IsRefreshing="{Binding IsBusy, Mode=OneWay}">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell Height="85">
<!-- <ViewCell.ContextActions>
<MenuItem Clicked="OnDelete" CommandParameter="{Binding .}" Text="Delete" IsDestructive="True" />
</ViewCell.ContextActions>-->
<Grid Padding="10,5">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<StackLayout Grid.Column="1" Padding="5" Spacing="1" VerticalOptions="Center">
<Label Text="{Binding ArticleTitle}" FontSize="Medium" FontAttributes="Bold" TextColor="#333333" LineBreakMode="WordWrap" />
<Label Text="{Binding AuthorString}" FontSize="Small" TextColor="#919191" LineBreakMode="TailTruncation" />
<Label Text="{Binding FormattedPostedDate}" FontSize="Small" TextColor="#919191" LineBreakMode="NoWrap" />
<Label Text="{Binding ItemId}" FontSize="Small" TextColor="#919191" LineBreakMode="NoWrap" IsVisible="false" />
</StackLayout>
</Grid>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
</local:TestContentPage>
``` | /content/code_sandbox/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue4356.xaml | xml | 2016-03-18T15:52:03 | 2024-08-16T16:25:43 | Xamarin.Forms | xamarin/Xamarin.Forms | 5,637 | 518 |
```xml
import { requestAsyncStorage } from './request-async-storage.external'
import type { ResponseCookies } from '../../server/web/spec-extension/cookies'
import { actionAsyncStorage } from './action-async-storage.external'
import { RedirectStatusCode } from './redirect-status-code'
const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT'
export enum RedirectType {
push = 'push',
replace = 'replace',
}
export type RedirectError<U extends string> = Error & {
digest: `${typeof REDIRECT_ERROR_CODE};${RedirectType};${U};${RedirectStatusCode};`
mutableCookies: ResponseCookies
}
export function getRedirectError(
url: string,
type: RedirectType,
statusCode: RedirectStatusCode = RedirectStatusCode.TemporaryRedirect
): RedirectError<typeof url> {
const error = new Error(REDIRECT_ERROR_CODE) as RedirectError<typeof url>
error.digest = `${REDIRECT_ERROR_CODE};${type};${url};${statusCode};`
const requestStore = requestAsyncStorage.getStore()
if (requestStore) {
error.mutableCookies = requestStore.mutableCookies
}
return error
}
/**
* This function allows you to redirect the user to another URL. It can be used in
* [Server Components](path_to_url
* [Route Handlers](path_to_url and
* [Server Actions](path_to_url
*
* - In a Server Component, this will insert a meta tag to redirect the user to the target page.
* - In a Route Handler or Server Action, it will serve a 307/303 to the caller.
*
* Read more: [Next.js Docs: `redirect`](path_to_url
*/
export function redirect(
/** The URL to redirect to */
url: string,
type: RedirectType = RedirectType.replace
): never {
const actionStore = actionAsyncStorage.getStore()
throw getRedirectError(
url,
type,
// If we're in an action, we want to use a 303 redirect
// as we don't want the POST request to follow the redirect,
// as it could result in erroneous re-submissions.
actionStore?.isAction
? RedirectStatusCode.SeeOther
: RedirectStatusCode.TemporaryRedirect
)
}
/**
* This function allows you to redirect the user to another URL. It can be used in
* [Server Components](path_to_url
* [Route Handlers](path_to_url and
* [Server Actions](path_to_url
*
* - In a Server Component, this will insert a meta tag to redirect the user to the target page.
* - In a Route Handler or Server Action, it will serve a 308/303 to the caller.
*
* Read more: [Next.js Docs: `redirect`](path_to_url
*/
export function permanentRedirect(
/** The URL to redirect to */
url: string,
type: RedirectType = RedirectType.replace
): never {
const actionStore = actionAsyncStorage.getStore()
throw getRedirectError(
url,
type,
// If we're in an action, we want to use a 303 redirect
// as we don't want the POST request to follow the redirect,
// as it could result in erroneous re-submissions.
actionStore?.isAction
? RedirectStatusCode.SeeOther
: RedirectStatusCode.PermanentRedirect
)
}
/**
* Checks an error to determine if it's an error generated by the
* `redirect(url)` helper.
*
* @param error the error that may reference a redirect error
* @returns true if the error is a redirect error
*/
export function isRedirectError<U extends string>(
error: unknown
): error is RedirectError<U> {
if (
typeof error !== 'object' ||
error === null ||
!('digest' in error) ||
typeof error.digest !== 'string'
) {
return false
}
const digest = error.digest.split(';')
const [errorCode, type] = digest
const destination = digest.slice(2, -2).join(';')
const status = digest.at(-2)
const statusCode = Number(status)
return (
errorCode === REDIRECT_ERROR_CODE &&
(type === 'replace' || type === 'push') &&
typeof destination === 'string' &&
!isNaN(statusCode) &&
statusCode in RedirectStatusCode
)
}
/**
* Returns the encoded URL from the error if it's a RedirectError, null
* otherwise. Note that this does not validate the URL returned.
*
* @param error the error that may be a redirect error
* @return the url if the error was a redirect error
*/
export function getURLFromRedirectError<U extends string>(
error: RedirectError<U>
): U
export function getURLFromRedirectError(error: unknown): string | null {
if (!isRedirectError(error)) return null
// Slices off the beginning of the digest that contains the code and the
// separating ';'.
return error.digest.split(';').slice(2, -2).join(';')
}
export function getRedirectTypeFromError<U extends string>(
error: RedirectError<U>
): RedirectType {
if (!isRedirectError(error)) {
throw new Error('Not a redirect error')
}
return error.digest.split(';', 2)[1] as RedirectType
}
export function getRedirectStatusCodeFromError<U extends string>(
error: RedirectError<U>
): number {
if (!isRedirectError(error)) {
throw new Error('Not a redirect error')
}
return Number(error.digest.split(';').at(-2))
}
``` | /content/code_sandbox/packages/next/src/client/components/redirect.ts | xml | 2016-10-05T23:32:51 | 2024-08-16T19:44:30 | next.js | vercel/next.js | 124,056 | 1,180 |
```xml
/*your_sha256_hash-----------------------------
*your_sha256_hash----------------------------*/
import { RequestType } from 'vscode-languageclient';
// --------------------------------- < Read Credential Request > -------------------------------------------------
// Read Credential request message callback declaration
export namespace ReadCredentialRequest {
export const type = new RequestType<Credential, Credential, void, void>('credential/read');
}
/**
* Parameters to initialize a connection to a database
*/
export class Credential {
/**
* Unique ID identifying the credential
*/
public credentialId: string;
/**
* password
*/
public password: string;
}
// --------------------------------- </ Read Credential Request > -------------------------------------------------
// --------------------------------- < Save Credential Request > -------------------------------------------------
// Save Credential request message callback declaration
export namespace SaveCredentialRequest {
export const type = new RequestType<Credential, boolean, void, void>('credential/save');
}
// --------------------------------- </ Save Credential Request > -------------------------------------------------
// --------------------------------- < Delete Credential Request > -------------------------------------------------
// Delete Credential request message callback declaration
export namespace DeleteCredentialRequest {
export const type = new RequestType<Credential, boolean, void, void>('credential/delete');
}
// --------------------------------- </ Delete Credential Request > -------------------------------------------------
export class SaveResultsRequestParams {
ownerUri: string;
filePath: string;
batchIndex: number;
resultSetIndex: number;
rowStartIndex: number;
rowEndIndex: number;
columnStartIndex: number;
columnEndIndex: number;
}
export class SaveResultsAsCsvRequestParams extends SaveResultsRequestParams {
includeHeaders: boolean = true;
delimiter: string = ',';
lineSeperator: string = undefined;
textIdentifier: string = '\"';
encoding: string = 'utf-8';
}
export class SaveResultsAsJsonRequestParams extends SaveResultsRequestParams {
// TODO: Define config for JSON
}
export class SaveResultsAsExcelRequestParams extends SaveResultsRequestParams {
includeHeaders: boolean = true;
}
export class SaveResultRequestResult {
messages: string;
}
// --------------------------------- < Save Results as CSV Request > ------------------------------------------
// save results in csv format
export namespace SaveResultsAsCsvRequest {
export const type = new RequestType<SaveResultsAsCsvRequestParams, SaveResultRequestResult, void, void>('query/saveCsv');
}
// --------------------------------- </ Save Results as CSV Request > ------------------------------------------
// --------------------------------- < Save Results as JSON Request > ------------------------------------------
// save results in json format
export namespace SaveResultsAsJsonRequest {
export const type = new RequestType<SaveResultsAsJsonRequestParams, SaveResultRequestResult, void, void>('query/saveJson');
}
// --------------------------------- </ Save Results as JSON Request > ------------------------------------------
// --------------------------------- < Save Results as Excel Request > ------------------------------------------
// save results in Excel format
export namespace SaveResultsAsExcelRequest {
export const type = new RequestType<SaveResultsAsExcelRequestParams, SaveResultRequestResult, void, void>('query/saveExcel');
}
// --------------------------------- </ Save Results as Excel Request > ------------------------------------------
``` | /content/code_sandbox/src/models/contracts.ts | xml | 2016-06-26T04:38:04 | 2024-08-16T20:04:12 | vscode-mssql | microsoft/vscode-mssql | 1,523 | 611 |
```xml
import { NextApiRequest, NextApiResponse } from "next";
import Unsplash, { toJson } from "unsplash-js";
export default function getCollectionPhotos(
req: NextApiRequest,
res: NextApiResponse,
) {
const {
query: { id },
} = req;
return new Promise((resolve) => {
const u = new Unsplash({ accessKey: process.env.UNSPLASH_ACCESS_KEY });
u.collections
.getCollectionPhotos(parseInt(id.toString()))
.then(toJson)
.then((json) => {
res.setHeader("Cache-Control", "max-age=180000");
res.status(200).json(json);
resolve();
})
.catch((error) => {
res.status(405).json(error);
resolve();
});
});
}
``` | /content/code_sandbox/examples/with-unsplash/pages/api/photo/[id].tsx | xml | 2016-10-05T23:32:51 | 2024-08-16T19:44:30 | next.js | vercel/next.js | 124,056 | 172 |
```xml
import assert from 'assert';
import plist from '..';
describe('plist', function () {
describe('build()', function () {
it('should create a plist XML string from a String', function () {
const xml = plist.build('test');
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<string>test</string>
</plist>`
);
});
it('should create a plist XML integer from a whole Number', function () {
const xml = plist.build(3);
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<integer>3</integer>
</plist>`
);
});
it('should create a plist XML real from a fractional Number', function () {
const xml = plist.build(Math.PI);
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<real>3.141592653589793</real>
</plist>`
);
});
it('should create a plist XML date from a Date', function () {
const xml = plist.build(new Date('2010-02-08T21:41:23Z'));
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<date>2010-02-08T21:41:23Z</date>
</plist>`
);
});
it('should create a plist XML date from a Buffer', function () {
const xml = plist.build(Buffer.from(''));
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<data>4piD</data>
</plist>`
);
});
it('should create a plist XML true from a `true` Boolean', function () {
const xml = plist.build(true);
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<true/>
</plist>`
);
});
it('should create a plist XML false from a `false` Boolean', function () {
const xml = plist.build(false);
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<false/>
</plist>`
);
});
it('should create a plist XML dict from an Object', function () {
const xml = plist.build({ foo: 'bar' });
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict>
<key>foo</key>
<string>bar</string>
</dict>
</plist>`
);
});
it('should create a plist XML array from an Array', function () {
const xml = plist.build([1, 'foo', false, new Date(1234)]);
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<array>
<integer>1</integer>
<string>foo</string>
<false/>
<date>1970-01-01T00:00:01Z</date>
</array>
</plist>`
);
});
it('should properly encode an empty string', function () {
const xml = plist.build({ a: '' });
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict>
<key>a</key>
<string/>
</dict>
</plist>`
);
});
it('should omit undefined values', function () {
const xml = plist.build({ a: undefined });
assert.strictEqual(
xml,
`<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict/>
</plist>`
);
});
});
});
``` | /content/code_sandbox/packages/@expo/plist/src/__tests__/build-test.ts | xml | 2016-08-15T17:14:25 | 2024-08-16T19:54:44 | expo | expo/expo | 32,004 | 1,160 |
```xml
import { CryptoFunctionService } from "@bitwarden/common/platform/abstractions/crypto-function.service";
import { WebCryptoFunctionService } from "@bitwarden/common/platform/services/web-crypto-function.service";
export class RendererCryptoFunctionService
extends WebCryptoFunctionService
implements CryptoFunctionService
{
constructor(win: Window | typeof global) {
super(win);
}
// We can't use the `argon2-browser` implementation because it loads WASM and the Content Security Policy doesn't allow it.
// Rather than trying to weaken the policy, we'll just use the Node.js implementation though the IPC channel.
// Note that the rest of the functions on this service will be inherited from the WebCryptoFunctionService, as those work just fine.
async argon2(
password: string | Uint8Array,
salt: string | Uint8Array,
iterations: number,
memory: number,
parallelism: number,
): Promise<Uint8Array> {
return await ipc.platform.crypto.argon2(password, salt, iterations, memory, parallelism);
}
}
``` | /content/code_sandbox/apps/desktop/src/app/services/renderer-crypto-function.service.ts | xml | 2016-03-09T23:14:01 | 2024-08-16T15:07:51 | clients | bitwarden/clients | 8,877 | 230 |
```xml
import {DecoratorTypes, Store} from "@tsed/core";
import {Controller, INJECTABLE_PROP} from "@tsed/di";
import {Orm} from "./orm.js";
import {MikroORM} from "@mikro-orm/core";
@Controller("/users")
export class UsersCtrl {
@Orm()
public readonly orm!: MikroORM;
}
describe("@Orm", () => {
it("should decorate property", () => {
expect(Store.from(UsersCtrl).get(INJECTABLE_PROP)).toEqual({
orm: {
propertyKey: "orm",
bindingType: DecoratorTypes.PROP,
resolver: expect.any(Function)
}
});
});
});
``` | /content/code_sandbox/packages/orm/mikro-orm/src/decorators/orm.spec.ts | xml | 2016-02-21T18:38:47 | 2024-08-14T21:19:48 | tsed | tsedio/tsed | 2,817 | 147 |
```xml
<?xml version="1.0" encoding="utf-8"?>
path_to_url
Unless required by applicable law or agreed to in writing, software
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<shape xmlns:android="path_to_url"
android:tint="?android:attr/colorForeground">
<solid android:color="#1f000000" />
<size
android:height="1dp"
android:width="1dp" />
</shape>
``` | /content/code_sandbox/bottomsheetpickers/src/main/res/drawable/bsp_list_divider_material.xml | xml | 2016-10-06T01:20:05 | 2024-08-05T10:12:07 | BottomSheetPickers | philliphsu/BottomSheetPickers | 1,101 | 108 |
```xml
import { ApolloLink } from "./ApolloLink.js";
export const empty = ApolloLink.empty;
``` | /content/code_sandbox/src/link/core/empty.ts | xml | 2016-02-26T20:25:00 | 2024-08-16T10:56:57 | apollo-client | apollographql/apollo-client | 19,304 | 20 |
```xml
import * as React from 'react';
import { ButtonSize } from '../components/Button/Button.types';
const buttonContext = React.createContext<ButtonContextValue | undefined>(undefined);
/**
* @internal
* Internal context value used to update default values between internal components
*/
export interface ButtonContextValue {
size?: ButtonSize;
}
const buttonContextDefaultValue: ButtonContextValue = {};
/**
* @internal
* Internal context provider used to update default values between internal components
*/
export const ButtonContextProvider = buttonContext.Provider;
/**
* @internal
* Internal context hook used to update default values between internal components
*/
export const useButtonContext = () => React.useContext(buttonContext) ?? buttonContextDefaultValue;
``` | /content/code_sandbox/packages/react-components/react-button/library/src/contexts/ButtonContext.ts | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 145 |
```xml
<resources>
<style name="AppTheme" parent="AppTheme.Base" />
<style name="CustomBottomSheetDialogTheme" parent="Theme.Design.Light.BottomSheetDialog">
<item name="bottomSheetStyle">@style/CustomBottomSheetStyle</item>
</style>
<style name="CustomBottomSheetStyle" parent="Widget.Design.BottomSheet.Modal">
<item name="android:background">@android:color/transparent</item>
</style>
</resources>
``` | /content/code_sandbox/app/src/main/res/values/styles.xml | xml | 2016-01-10T12:21:23 | 2024-08-16T13:03:46 | Simple-Music-Player | SimpleMobileTools/Simple-Music-Player | 1,277 | 104 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~
-->
<metadata xmlns="path_to_url">
<datatypes>
<datatype id="boolean" class="com.haulmont.chile.core.datatypes.impl.BooleanDatatype"
default="true"/>
<datatype id="int" class="com.haulmont.chile.core.datatypes.impl.IntegerDatatype"
default="true"
format="0" groupingSeparator=""/>
<datatype id="long" class="com.haulmont.chile.core.datatypes.impl.LongDatatype"
default="true"
format="0" groupingSeparator=""/>
<datatype id="double" class="com.haulmont.chile.core.datatypes.impl.DoubleDatatype"
default="true"
format="0.###" decimalSeparator="." groupingSeparator=""/>
<datatype id="decimal" class="com.haulmont.chile.core.datatypes.impl.BigDecimalDatatype"
default="true"
format="0.####" decimalSeparator="." groupingSeparator=""/>
<datatype id="string" class="com.haulmont.chile.core.datatypes.impl.StringDatatype"
default="true"/>
<datatype id="dateTime" class="com.haulmont.chile.core.datatypes.impl.DateTimeDatatype"
default="true"
format="yyyy-MM-dd HH:mm:ss.SSS"/>
<datatype id="localDateTime" class="com.haulmont.chile.core.datatypes.impl.LocalDateTimeDatatype"
default="true"
format="yyyy-MM-dd HH:mm:ss.SSS"/>
<datatype id="offsetDateTime" class="com.haulmont.chile.core.datatypes.impl.OffsetDateTimeDatatype"
default="true"
format="yyyy-MM-dd HH:mm:ss.SSS Z"/>
<datatype id="date" class="com.haulmont.chile.core.datatypes.impl.DateDatatype"
default="true"
format="yyyy-MM-dd"/>
<datatype id="localDate" class="com.haulmont.chile.core.datatypes.impl.LocalDateDatatype"
default="true"
format="yyyy-MM-dd"/>
<datatype id="time" class="com.haulmont.chile.core.datatypes.impl.TimeDatatype"
default="true"
format="HH:mm:ss"/>
<datatype id="localTime" class="com.haulmont.chile.core.datatypes.impl.LocalTimeDatatype"
default="true"
format="HH:mm:ss"/>
<datatype id="offsetTime" class="com.haulmont.chile.core.datatypes.impl.OffsetTimeDatatype"
default="true"
format="HH:mm:ss Z"/>
<datatype id="uuid" class="com.haulmont.chile.core.datatypes.impl.UUIDDatatype"
default="true"/>
<datatype id="byteArray" class="com.haulmont.chile.core.datatypes.impl.ByteArrayDatatype"
default="true"/>
<datatype id="char" class="com.haulmont.chile.core.datatypes.impl.CharacterDatatype"
default="true"/>
</datatypes>
<metadata-model root-package="com.haulmont.cuba">
<class>com.haulmont.cuba.core.entity.AbstractNotPersistentEntity</class>
<class>com.haulmont.cuba.core.entity.KeyValueEntity</class>
<class>com.haulmont.cuba.core.entity.diff.EntityBasicPropertyDiff</class>
<class>com.haulmont.cuba.core.entity.diff.EntityClassPropertyDiff</class>
<class>com.haulmont.cuba.core.entity.diff.EntityCollectionPropertyDiff</class>
<class>com.haulmont.cuba.core.entity.diff.EntityDiff</class>
<class>com.haulmont.cuba.core.entity.diff.EntityPropertyDiff</class>
<class>com.haulmont.cuba.core.global.LockInfo</class>
<class>com.haulmont.cuba.security.entity.EntityLogAttr</class>
<class>com.haulmont.cuba.security.entity.UserSessionEntity</class>
<class>com.haulmont.cuba.core.config.AppPropertyEntity</class>
<class>com.haulmont.cuba.core.entity.CategoryAttributeEnumValue</class>
<class>com.haulmont.cuba.core.entity.CategoryAttributeConfiguration</class>
<class>com.haulmont.cuba.core.entity.AttributeLocaleData</class>
<class>com.haulmont.cuba.core.entity.ScreenProfilerEvent</class>
</metadata-model>
</metadata>
``` | /content/code_sandbox/modules/global/src/com/haulmont/cuba/metadata.xml | xml | 2016-03-24T07:55:56 | 2024-07-14T05:13:48 | cuba | cuba-platform/cuba | 1,342 | 991 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="path_to_url"
android:id="@+id/snackbarCustomTv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/snackbar_custom_bg"
android:drawableLeft="@mipmap/ic_launcher"
android:drawablePadding="@dimen/spacing_16"
android:gravity="center_vertical"
android:padding="@dimen/spacing_16"
android:text="@string/snackbar_custom_view"
android:textColor="@color/white"
android:textSize="@dimen/font_24" />
``` | /content/code_sandbox/feature/utilcode/pkg/src/main/res/layout/snackbar_custom.xml | xml | 2016-07-30T18:18:32 | 2024-08-16T01:37:59 | AndroidUtilCode | Blankj/AndroidUtilCode | 33,178 | 148 |
```xml
import { Component, TemplateRef } from '@angular/core';
import { UntypedFormControl } from '@angular/forms';
@Component({
selector: 'td-dynamic-textarea',
styleUrls: ['./dynamic-textarea.component.scss'],
templateUrl: './dynamic-textarea.component.html',
})
export class TdDynamicTextareaComponent {
control!: UntypedFormControl;
label = '';
hint = '';
name = '';
required = false;
errorMessageTemplate!: TemplateRef<any>;
placeholder = '';
}
``` | /content/code_sandbox/libs/angular-dynamic-forms/src/lib/dynamic-elements/dynamic-textarea/dynamic-textarea.component.ts | xml | 2016-07-11T23:30:52 | 2024-08-15T15:20:45 | covalent | Teradata/covalent | 2,228 | 102 |
```xml
import { UPLOAD_TIMEOUT } from '../../drive/constants';
import type { CreateDriveFile, Thumbnail, UpdateFileRevision } from '../../interfaces/drive/file';
export const queryCreateFile = (shareId: string, data: CreateDriveFile) => {
return {
method: 'post',
timeout: UPLOAD_TIMEOUT,
url: `drive/shares/${shareId}/files`,
silence: true,
data,
};
};
export const queryFileRevisions = (shareId: string, linkId: string) => {
return {
method: 'get',
url: `drive/shares/${shareId}/files/${linkId}/revisions`,
silence: true,
};
};
export const queryFileRevision = (
shareId: string,
linkId: string,
revisionId: string,
pagination?: { FromBlockIndex: number; PageSize: number }
) => {
const query = {
method: 'get',
url: `drive/shares/${shareId}/files/${linkId}/revisions/${revisionId}`,
silence: true,
};
if (pagination) {
return {
...query,
params: pagination,
};
}
return query;
};
export const queryFileRevisionThumbnail = (
shareId: string,
linkId: string,
revisionId: string,
thumbnailType: 1 | 2 | 3 = 1
) => {
return {
method: 'get',
url: `drive/shares/${shareId}/files/${linkId}/revisions/${revisionId}/thumbnail?Type=${thumbnailType}`,
silence: true,
};
};
/**
* This route should never be called without also instanciating a verifier.
* See the file uploader in the Drive app.
*/
export const queryVerificationData = (shareId: string, linkId: string, revisionId: string) => {
return {
method: 'get',
url: `drive/shares/${shareId}/links/${linkId}/revisions/${revisionId}/verification`,
silence: true,
};
};
export const queryRequestUpload = (data: {
BlockList: {
Hash: string;
EncSignature: string;
Size: number;
Index: number;
Verifier: {
Token: string;
};
}[];
ThumbnailList?: Omit<Thumbnail, 'ThumbnailID'>[];
AddressID: string;
ShareID: string;
LinkID: string;
RevisionID: string;
Thumbnail?: number;
ThumbnailHash?: string;
ThumbnailSize?: number;
}) => {
return {
method: 'post',
url: 'drive/blocks',
data,
};
};
export const queryFileBlock = (url: string) => {
return {
method: 'get',
output: 'stream',
credentials: 'omit',
url,
};
};
export const queryUploadFileBlock = (url: string, chunk: Uint8Array) => {
return {
method: 'put',
input: 'binary',
data: new Blob([chunk]),
url,
};
};
export const queryCreateFileRevision = (
shareId: string,
linkId: string,
currentRevisionId: string,
clientUID?: string
) => {
return {
method: 'post',
timeout: UPLOAD_TIMEOUT,
url: `drive/shares/${shareId}/files/${linkId}/revisions`,
silence: true,
data: {
CurrentRevisionID: currentRevisionId,
ClientUID: clientUID,
},
};
};
export const queryUpdateFileRevision = (
shareID: string,
linkID: string,
revisionId: string,
data: UpdateFileRevision
) => {
return {
method: 'put',
timeout: UPLOAD_TIMEOUT,
url: `drive/shares/${shareID}/files/${linkID}/revisions/${revisionId}`,
data,
};
};
export const queryDeleteFileRevision = (shareId: string, linkId: string, revisionId: string) => {
return {
method: 'delete',
url: `drive/shares/${shareId}/files/${linkId}/revisions/${revisionId}`,
};
};
export const queryRestoreFileRevision = (shareId: string, linkId: string, revisionId: string) => {
return {
method: 'post',
url: `drive/shares/${shareId}/files/${linkId}/revisions/${revisionId}/restore`,
};
};
``` | /content/code_sandbox/packages/shared/lib/api/drive/files.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 958 |
```xml
import angular from 'angular';
import { StoreKey } from './store.enum';
import { StoreContent } from './store.interface';
export abstract class StoreService {
$q: ng.IQService;
dbName = 'xbs-store';
storeName = 'xbs';
constructor($q: ng.IQService) {
this.$q = $q;
}
protected abstract clear(): ng.IPromise<void>;
get<T = StoreContent>(keys?: string | string[]): ng.IPromise<T> {
// If no keys provided, get all keys from store
return (angular.isUndefined(keys ?? undefined) ? this.keys() : this.$q.resolve(keys)).then((allKeys) => {
// Ensure the keys param is an array before processing
const keysArr = Array.isArray(allKeys) ? (allKeys as string[]) : [allKeys];
return this.getFromStore(keysArr)
.then((keyValues) => {
// Convert the keys and key values into a return object
return keysArr.reduce((prev, current, index) => {
const next = angular.copy(prev);
next[current as string] = keyValues[index];
return next;
}, {} as T);
})
.then((storeContent) => {
// If result object only has one key, simply return the key value
if (storeContent && Object.keys(storeContent).length === 1) {
return storeContent[keysArr[0] as string];
}
return storeContent;
});
});
}
protected abstract getFromStore<T = StoreContent>(keys: string[]): ng.IPromise<T[]>;
init(): ng.IPromise<void> {
return this.clear()
.then(() => {
return this.$q.all([
this.setInStore(StoreKey.AlternateSearchBarPosition, false),
this.setInStore(StoreKey.AutoFetchMetadata, true),
this.setInStore(StoreKey.CheckForAppUpdates, true),
this.setInStore(StoreKey.DarkModeEnabled, false),
this.setInStore(StoreKey.DefaultToFolderView, false),
this.setInStore(StoreKey.DisplayHelp, true),
this.setInStore(StoreKey.DisplayOtherSyncsWarning, false),
this.setInStore(StoreKey.DisplayPermissions, false),
this.setInStore(StoreKey.DisplayTelemetryCheck, true),
this.setInStore(StoreKey.DisplayUpdated, false),
this.setInStore(StoreKey.SyncBookmarksToolbar, false),
this.setInStore(StoreKey.SyncEnabled, false),
this.setInStore(StoreKey.TelemetryEnabled, true)
]);
})
.then(() => {});
}
protected abstract keys(): ng.IPromise<string[]>;
remove(keys: string | string[]): ng.IPromise<void> {
const keysArr = Array.isArray(keys) ? keys : [keys];
return this.removeFromStore(keysArr);
}
protected abstract removeFromStore(keys: string[]): ng.IPromise<void>;
set(key: string, value?: any): ng.IPromise<void> {
if (angular.isUndefined(key ?? undefined)) {
return this.$q.resolve();
}
return this.$q((resolve, reject) => {
(angular.isUndefined(value ?? undefined)
? this.removeFromStore(Array.isArray(key) ? key : [key])
: this.setInStore(key, value)
)
.then(resolve)
.catch(reject);
});
}
protected abstract setInStore(key: string, value: any): ng.IPromise<void>;
}
``` | /content/code_sandbox/src/modules/shared/store/store.service.ts | xml | 2016-05-05T20:59:25 | 2024-08-13T14:13:34 | app | xbrowsersync/app | 1,478 | 757 |
```xml
import { UIRenderHtmlCardProps } from '../../toolkit/toolkit-types';
const html = `<div style="text-align: center;">
This text is centered!
</div>`;
const cssInheritanceConfig: UIRenderHtmlCardProps = {
title: 'CSS Inheritance Example',
caption: '',
props: {
source: {
html
}
},
preferHtmlSrc: true
};
export default cssInheritanceConfig;
``` | /content/code_sandbox/doc-tools/doc-pages/src/pages/cards/cssInheritanceConfig.tsx | xml | 2016-11-29T10:50:53 | 2024-08-08T06:53:22 | react-native-render-html | meliorence/react-native-render-html | 3,445 | 96 |
```xml
import logger from "coral-server/logger";
import { createFetch } from "coral-server/services/fetch";
import { GQLMODERATION_QUEUE } from "coral-server/graph/schema/__generated__/types";
import {
CommentCreatedCoralEventPayload,
CommentEnteredModerationQueueCoralEventPayload,
CommentFeaturedCoralEventPayload,
CommentReplyCreatedCoralEventPayload,
} from "../../events";
import {
CoralEventListener,
CoralEventPublisherFactory,
} from "../../publisher";
import { CoralEventType } from "../../types";
import SlackPublishEvent, { Trigger } from "./publishEvent";
type SlackCoralEventListenerPayloads =
| CommentFeaturedCoralEventPayload
| CommentEnteredModerationQueueCoralEventPayload
| CommentCreatedCoralEventPayload
| CommentReplyCreatedCoralEventPayload;
export class SlackCoralEventListener
implements CoralEventListener<SlackCoralEventListenerPayloads>
{
public readonly name = "slack";
public readonly events = [
CoralEventType.COMMENT_FEATURED,
CoralEventType.COMMENT_ENTERED_MODERATION_QUEUE,
CoralEventType.COMMENT_CREATED,
CoralEventType.COMMENT_REPLY_CREATED,
];
private readonly fetch = createFetch({ name: "slack" });
/**
* postMessage will prepare and send the incoming Slack webhook.
* @param hookURL url to the Slack webhook that we should send the message to
* @param content the content for the message
*/
private async postMessage(hookURL: string, content: any) {
// Send the post to the Slack URL. We don't wrap this in a try/catch because
// it's handled in the calling function.
const res = await this.fetch(hookURL, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(content),
});
// Check that the request was completed successfully.
if (!res.ok) {
throw new Error(`slack returned non-200 status code: ${res.status}`);
}
}
private getActionType(
payload: SlackCoralEventListenerPayloads
): Trigger | null {
switch (payload.type) {
case CoralEventType.COMMENT_CREATED:
case CoralEventType.COMMENT_REPLY_CREATED:
return "created";
case CoralEventType.COMMENT_ENTERED_MODERATION_QUEUE:
if (payload.data.queue === GQLMODERATION_QUEUE.REPORTED) {
return "reported";
} else if (payload.data.queue === GQLMODERATION_QUEUE.PENDING) {
return "pending";
}
break;
case CoralEventType.COMMENT_FEATURED:
return "featured";
}
return null;
}
public initialize: CoralEventPublisherFactory<SlackCoralEventListenerPayloads> =
(ctx) => async (payload) => {
const {
tenant: { id: tenantID, slack },
} = ctx;
if (
// If slack is not defined,
!slack ||
// Or there are no slack channels,
slack.channels.length === 0 ||
// Or each channel isn't enabled or configured right.
slack.channels.every((c) => !c.enabled || !c.hookURL)
) {
// Exit out then.
return;
}
const actionType = this.getActionType(payload);
if (!actionType) {
return;
}
const comment = await ctx.loaders.Comments.comment.load(
payload.data.commentID
);
if (!comment || !comment.authorID) {
return;
}
const author = await ctx.loaders.Users.user.load(comment.authorID);
if (!author) {
return;
}
const story = await ctx.loaders.Stories.story.load(payload.data.storyID);
if (!story) {
return;
}
const publishEvent = new SlackPublishEvent(
actionType,
comment,
story,
author
);
// For each channel that is enabled with configuration.
for (const channel of slack.channels) {
if (!channel.enabled || !channel.hookURL) {
continue;
}
if (publishEvent.shouldPublishToChannel(channel)) {
try {
// Post the message to slack.
await this.postMessage(
channel.hookURL,
publishEvent.getContent(ctx)
);
} catch (err) {
logger.error(
{ err, tenantID, payload, channel },
"could not post the comment to slack"
);
}
}
}
};
}
``` | /content/code_sandbox/server/src/core/server/events/listeners/slack/slack.ts | xml | 2016-10-31T16:14:05 | 2024-08-06T16:15:57 | talk | coralproject/talk | 1,881 | 960 |
```xml
import { createSlice } from '@reduxjs/toolkit';
import type { ModelState } from '@proton/account';
import { getInitialModelState, serverEvent } from '@proton/account';
import type { ProtonThunkArguments } from '@proton/redux-shared-store-types';
import { createAsyncModelThunk, createHooks, handleAsyncModel, previousSelector } from '@proton/redux-utilities';
import { getUnreadBreachesCount } from '@proton/shared/lib/api/breaches';
import type { Api } from '@proton/shared/lib/interfaces';
import type { BreachesCount } from '@proton/shared/lib/interfaces';
const name = 'breachesCount';
const fetchUnreadBreachCount = (api: Api) =>
api(getUnreadBreachesCount()).then(({ Count }: BreachesCount) => {
return { Count, Refresh: true };
});
export interface UserBreachesState {
[name]: ModelState<BreachesCount>;
}
type SliceState = UserBreachesState[typeof name];
type Model = NonNullable<SliceState['value']>;
// selectors
export const selectBreachesCount = (state: UserBreachesState) => state[name];
export const selectShouldBreachAlertsRefresh = (state: UserBreachesState) => state[name].value?.Refresh;
export const selectUnreadBreachesCount = (state: UserBreachesState) => state[name].value?.Count;
const modelThunk = createAsyncModelThunk<Model, UserBreachesState, ProtonThunkArguments>(`${name}/fetch`, {
miss: ({ extraArgument }) => {
return fetchUnreadBreachCount(extraArgument.api);
},
previous: previousSelector(selectBreachesCount),
});
const initialState = getInitialModelState<Model>();
const slice = createSlice({
name,
initialState,
reducers: {
decreaseUnreadBreachCount: (state) => {
if (state.value && state.value.Count > 0) {
state.value.Count -= 1;
}
},
setUnreadBreachesCount: (state, action) => {
if (state.value && action.payload) {
state.value.Count = action.payload;
}
},
},
extraReducers: (builder) => {
handleAsyncModel(builder, modelThunk);
builder.addCase(serverEvent, (state, action) => {
if (state.value && action.payload.BreachAlerts) {
state.value.Count += action.payload.BreachAlerts.length;
state.value.Refresh = !state.value.Refresh;
}
});
},
});
export const { decreaseUnreadBreachCount, setUnreadBreachesCount } = slice.actions;
export const breachesCountReducer = { [name]: slice.reducer };
export const breachesCountThunk = modelThunk.thunk;
const hooks = createHooks(breachesCountThunk, selectBreachesCount);
export const useBreachesCounts = hooks.useValue;
export const useGetBreachesCounts = hooks.useGet;
``` | /content/code_sandbox/packages/components/components/drawer/views/SecurityCenter/BreachAlerts/slice/breachNotificationsSlice.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 620 |
```xml
/* This file is a part of @mdn/browser-compat-data
* See LICENSE file for more information. */
import { updateFeatures } from '../utils.js';
const command = {
command: 'add <tag> <bcd-id..>',
desc: 'Add the following tag to the BCD features',
/**
* handler - Action to perform for 'tags add'
* @param argv Parameter list
*/
handler: (argv) => {
updateFeatures(argv['bcd-id'], (json) => {
// If there is no tags entry, create one
if (!json['tags']) {
json['tags'] = [];
}
// Add the tag
if (!json['tags'].includes(argv['tag'])) {
json['tags'].push(argv['tag']);
}
return json;
});
},
};
export default command;
``` | /content/code_sandbox/scripts/bulk-editor/tags/add.ts | xml | 2016-03-29T18:50:07 | 2024-08-16T11:36:33 | browser-compat-data | mdn/browser-compat-data | 4,876 | 184 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.