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 { OpenSheetMusicDisplay, CanvasVexFlowBackend } from "../../src"; import { TestUtils } from "./TestUtils"; //import fs from "fs"; // experimental code, shouldn't be included in Karma test suite describe("GeneratePNGImages", () => { // Test all the following xml files: const sampleFilenames: stri...
/content/code_sandbox/test/Util/DiffImages_Test_Experimental.ts
xml
2016-02-08T15:47:01
2024-08-16T17:49:53
opensheetmusicdisplay
opensheetmusicdisplay/opensheetmusicdisplay
1,416
731
```xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="path_to_url" xmlns:xsi="path_to_url" xsi:schemaLocation="path_to_url path_to_url"> <modelVersion>4.0.0</modelVersion> <groupId>com.didispace</groupId> <artifactId>Chapter4-5-1</artifactId> <version>1.0.0</version> <packaging>jar</packaging> <name>Ch...
/content/code_sandbox/1.x/Chapter4-5-1/pom.xml
xml
2016-08-21T03:39:06
2024-08-16T17:54:09
SpringBoot-Learning
dyc87112/SpringBoot-Learning
15,676
447
```xml import React, { useState } from 'react'; import { action } from '@storybook/addon-actions'; import { Playlists } from '../..'; import { swap } from '../storyUtils'; import { PlaylistTrack } from '@nuclear/core/src/helpers/playlist/types'; import { PlaylistsCallbacks, PlaylistsStrings, PlaylistWithLoadingState }...
/content/code_sandbox/packages/ui/stories/components/playlists.stories.tsx
xml
2016-09-22T22:58:21
2024-08-16T15:47:39
nuclear
nukeop/nuclear
11,862
619
```xml /* * Wire * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPO...
/content/code_sandbox/src/script/entity/message/FailedToAddUsersMessage.ts
xml
2016-07-21T15:34:05
2024-08-16T11:40:13
wire-webapp
wireapp/wire-webapp
1,125
177
```xml import * as React from 'react'; import createSvgIcon from '../utils/createSvgIcon'; const FastForwardPointFiveXIcon = createSvgIcon({ svg: ({ classes }) => ( <svg xmlns="path_to_url" viewBox="0 0 2048 2048" className={classes.svg} focusable="false"> <path d="M1024 1030V513l-640 517V-5l640 512V-5l644...
/content/code_sandbox/packages/react-icons-mdl2/src/components/FastForwardPointFiveXIcon.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
726
```xml // Expose this file as a module (see path_to_url export {}; /** * Handle deprecations and missing typings that not available in the main lib.dom.d.ts file. */ declare global { interface Location { /** * @param forcedReload - Firefox non-standard parameter to force reload the page (re-fetch the same...
/content/code_sandbox/packages/expo-updates/src/ts-declarations/lib.dom.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
98
```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 pdifff = require( './index' ); // TESTS // // The function returns a number... { pdifff( 8, 2 ); // $Ex...
/content/code_sandbox/lib/node_modules/@stdlib/math/base/special/pdifff/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
401
```xml export enum MetadataType { PostmanAllV1, PostmanCollectionV1, PostmanCollectionV2 } ```
/content/code_sandbox/client/src/common/enum/metadata_type.ts
xml
2016-09-26T02:47:43
2024-07-24T09:32:20
Hitchhiker
brookshi/Hitchhiker
2,193
28
```xml import { VDOM, VNode } from './types'; import directive from './directive'; export type Element = any; //HTMLElement | SVGSVGElement | SVGElement; export function Fragment(props, ...children): any[] { return collect(children); } const ATTR_PROPS = '_props'; function collect(children) { const ch = []; co...
/content/code_sandbox/src/vdom-my.ts
xml
2016-10-07T02:07:44
2024-08-16T16:03:13
apprun
yysun/apprun
1,177
2,388
```xml //this line uses typescript specific syntax //to demonstrate that transpilation occurs export type API = () => string const api: API = () => 'Hello from a' export default api ```
/content/code_sandbox/test/integration/typescript-workspaces-paths/packages/lib/a/api.ts
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
43
```xml // Vendored / modified from @facebook/metro // path_to_url // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use...
/content/code_sandbox/src/js/tools/vendor/metro/metroBabelTransformer.ts
xml
2016-11-30T14:45:57
2024-08-16T13:21:38
sentry-react-native
getsentry/sentry-react-native
1,558
482
```xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="path_to_url" xmlns:tools="path_to_url" package="com.ncapdevi.sample"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true"...
/content/code_sandbox/app/src/main/AndroidManifest.xml
xml
2016-03-26T23:52:32
2024-08-15T19:57:39
FragNav
ncapdevi/FragNav
1,499
213
```xml import * as React from 'react'; import cx from 'classnames'; import { createSvgIcon } from '../utils/createSvgIcon'; import { iconClassNames } from '../utils/iconClassNames'; export const SpotlightIcon = createSvgIcon({ svg: ({ classes }) => ( <svg style={{ overflow: 'visible' }} className={cl...
/content/code_sandbox/packages/fluentui/react-icons-northstar/src/components/SpotlightIcon.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
1,816
```xml import { createNext, FileRef } from 'e2e-utils' import { NextInstance } from 'e2e-utils' import { renderViaHTTP } from 'next-test-utils' import cheerio from 'cheerio' import path from 'path' import webdriver from 'next-webdriver' const appDir = path.join(__dirname, 'typescript') describe('New Link Behavior', (...
/content/code_sandbox/test/e2e/new-link-behavior/typescript.test.ts
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
296
```xml <clickhouse> <merge_tree> <allow_vertical_merges_from_compact_to_wide_parts>0</allow_vertical_merges_from_compact_to_wide_parts> </merge_tree> </clickhouse> ```
/content/code_sandbox/tests/integration/test_backward_compatibility/configs/no_allow_vertical_merges_from_compact_to_wide_parts.xml
xml
2016-06-02T08:28:18
2024-08-16T18:39:33
ClickHouse
ClickHouse/ClickHouse
36,234
49
```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. --> <resources> <string name="error_a11y_label">Hata: geersiz</string> <string name...
/content/code_sandbox/lib/java/com/google/android/material/checkbox/res/values-tr/strings.xml
xml
2016-12-05T16:11:29
2024-08-16T17:51:42
material-components-android
material-components/material-components-android
16,176
147
```xml <!-- drawable/qrcode_scan.xml --> <vector xmlns:android="path_to_url" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#fff" android:pathData="M4,4H10V10H4V4M20,4V10H14V4H20M14,your_sha256_hash1V16H14V15M16,15V18H18V15...
/content/code_sandbox/Android/app/src/main/res/drawable/ic_qrcode_scan.xml
xml
2016-01-30T13:42:30
2024-08-12T19:21:10
Travel-Mate
project-travel-mate/Travel-Mate
1,292
327
```xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="path_to_url" xmlns:tools="path_to_url" android:id="@+id/notification_big" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content"> <FrameLayout android:layout_width...
/content/code_sandbox/app/src/main/res/layout/notification_big.xml
xml
2016-02-21T04:39:19
2024-08-16T13:35:51
GeometricWeather
WangDaYeeeeee/GeometricWeather
2,420
1,541
```xml <?xml version="1.0" encoding="utf-8"?> <schema targetNamespace="path_to_url" xmlns:doc="path_to_url" xmlns:maml="path_to_url" xmlns="path_to_url" elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all" xml:lang="en"> <!-- Schema documentation --> <annotation> <docume...
/content/code_sandbox/src/Schemas/PSMaml/Maml.xsd
xml
2016-01-13T23:41:35
2024-08-16T19:59:07
PowerShell
PowerShell/PowerShell
44,388
292
```xml <Project Sdk="Microsoft.NET.Sdk"> <Import Project="..\..\..\configureawait.props" /> <Import Project="..\..\..\common.props" /> <PropertyGroup> <TargetFramework>net6.0</TargetFramework> </PropertyGroup> <ItemGroup> <None Remove="Volo.CmsKit.SourceCode.zip" /> <Conte...
/content/code_sandbox/studio/source-codes/Volo.CmsKit.SourceCode/Volo.CmsKit.SourceCode.csproj
xml
2016-12-03T22:56:24
2024-08-16T16:24:05
abp
abpframework/abp
12,657
121
```xml /** * @license * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at path_to_url */ import * as ts from 'typescript'; import {WorkspacePath} from '../../update-tool/file-system'; import {ResolvedResource} from '../../update-tool/component-resource-collec...
/content/code_sandbox/src/cdk/schematics/ng-update/migrations/attribute-selectors.ts
xml
2016-01-04T18:50:02
2024-08-16T11:21:13
components
angular/components
24,263
575
```xml // See LICENSE.txt for license information. import {useEffect} from 'react'; import {useSharedValue} from 'react-native-reanimated'; export const useAutocompleteDefaultAnimatedValues = (position: number, availableSpace: number) => { const animatedPosition = useSharedValue(position); const animatedAvail...
/content/code_sandbox/app/hooks/autocomplete.ts
xml
2016-10-07T16:52:32
2024-08-16T12:08:38
mattermost-mobile
mattermost/mattermost-mobile
2,155
123
```xml import { put, select, takeLeading } from 'redux-saga/effects'; import { c } from 'ttag'; import { type OfflineComponents, getOfflineComponents } from '@proton/pass/lib/cache/crypto'; import { isPaidPlan } from '@proton/pass/lib/user/user.predicates'; import { offlineToggle } from '@proton/pass/store/actions'; i...
/content/code_sandbox/packages/pass/store/sagas/client/offline-toggle.saga.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
463
```xml #include "MacXLocalServerPrivate.h" #include "ServerSide.h" MacXLocalServerPrivate::MacXLocalServerPrivate() { connection = [[NSConnection alloc] init]; server = [[ServerSide alloc] initWithLocalServer:this]; [connection setRootObject:server]; } MacXLocalServerPrivate::~MacXLocalServerPrivate() { ...
/content/code_sandbox/src/MEGASync/platform/macx/MacXLocalServerPrivate.mm
xml
2016-02-10T18:28:05
2024-08-16T19:36:44
MEGAsync
meganz/MEGAsync
1,593
108
```xml /** @public */ export declare namespace A { export class B { myMethod(): void; } } /** @public */ export declare interface A { myProperty: string; } /** * {@link MyNamespace.MyClass.myMethod | the method} * @public */ export declare function failWithAmbiguity(): void; /** * NOTE: The b...
/content/code_sandbox/build-tests/api-extractor-scenarios/etc/docReferences3/rollup.d.ts
xml
2016-09-30T00:28:20
2024-08-16T18:54:35
rushstack
microsoft/rushstack
5,790
169
```xml import { Upload, message, } from 'antd' import type { UploadChangeParam } from 'antd/es/upload' import type { RcFile, UploadFile } from 'antd/es/upload/interface' const DEFAULT_MAX_FILE_SIZE = 65536 //64kb const DEFAULT_MAX_WIDTH = 1920 const DEFAULT_MAX_HEIGHT = 1080 export function getCompressedBase64 ({...
/content/code_sandbox/examples/lambda-function-url/packages/ui/lib/upload.ts
xml
2016-09-13T23:29:07
2024-08-15T09:52:47
serverless-express
CodeGenieApp/serverless-express
5,117
910
```xml <?xml version="1.0" encoding="UTF-8"?> <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>io.debezium</groupId> <artifactId>debezium-quarkus-outbox-reactive-parent</artifactId> <...
/content/code_sandbox/debezium-quarkus-outbox-reactive/runtime/pom.xml
xml
2016-01-22T20:17:05
2024-08-16T13:42:33
debezium
debezium/debezium
10,320
793
```xml import React from 'react'; import InputNumber from '../InputNumber'; // Inherits <input type="number" /> attributes <InputNumber placeholder="Enter number" />; ```
/content/code_sandbox/src/InputNumber/test/InputNumber.test.tsx
xml
2016-06-06T02:27:46
2024-08-16T16:41:54
rsuite
rsuite/rsuite
8,263
34
```xml import { ESLintUtils, TSESTree } from '@typescript-eslint/experimental-utils'; import { parseDecoratorTemplate, reportNestedDisallowedElements } from '../decorator-template-helper'; import { HTMLElement } from '../../types/index'; const disallowedDirective = 'clrPassword'; const containerTagName = 'clr-password...
/content/code_sandbox/packages/eslint-plugin-clarity-adoption/src/rules/no-clr-password/index.ts
xml
2016-09-29T17:24:17
2024-08-11T17:06:15
clarity
vmware-archive/clarity
6,431
515
```xml import { Component, ViewChild } from '@angular/core'; import { delay, map, take } from 'rxjs/operators'; import { Observable, of } from 'rxjs'; import { ITreeOptions, TREE_ACTIONS, TreeComponent, TreeNode } from 'angular-tree-component'; enum NodeType { LoadMore } interface NodeSkip { [key: string]: { ...
/content/code_sandbox/projects/docs-app/src/app/examples/load-more-example/load-more/load-more.component.ts
xml
2016-03-10T21:29:15
2024-08-15T07:07:30
angular-tree-component
CirclonGroup/angular-tree-component
1,093
1,056
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <Authors>Stef Heyenrath</Authors> <TargetFrameworks>net461;net8.0</TargetFrameworks> <DebugType>full</DebugType> <DefineConstants>EF;NET461</DefineConstants> <AssemblyName>EntityFramework.DynamicLinq.Tests</AssemblyNam...
/content/code_sandbox/test/EntityFramework.DynamicLinq.Tests/EntityFramework.DynamicLinq.Tests.csproj
xml
2016-04-08T16:41:51
2024-08-16T05:55:59
System.Linq.Dynamic.Core
zzzprojects/System.Linq.Dynamic.Core
1,537
1,027
```xml <mxfile host="Electron" modified="2024-06-20T10:57:49.788Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/24.5.3 Chrome/124.0.6367.207 Electron/30.0.6 Safari/537.36" etag="3wQ7idSJgU2jZkXYOGPc" compressed="true" version="24.5.3" type="device"><diagram name=...
/content/code_sandbox/src/main/webapp/templates/other/water_cycle.xml
xml
2016-09-06T12:59:15
2024-08-16T13:28:41
drawio
jgraph/drawio
40,265
932
```xml import * as compose from "lodash.flowright"; import { Alert, EmptyState, Spinner, confirm } from "@erxes/ui/src"; import { generateParams, refetchQueries } from "../common/utilss"; import { mutations, queries } from "../graphql"; import { IIndicatorsGroupsQueryResponse } from "../common/types"; import ListComp...
/content/code_sandbox/packages/plugin-riskassessment-ui/src/indicator/groups/containers/List.tsx
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
434
```xml import { Directive, Input, OnInit, TemplateRef, ViewContainerRef } from "@angular/core"; import { AllowedFeatureFlagTypes, FeatureFlag } from "@bitwarden/common/enums/feature-flag.enum"; import { ConfigService } from "@bitwarden/common/platform/abstractions/config/config.service"; import { LogService } from "@b...
/content/code_sandbox/libs/angular/src/directives/if-feature.directive.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
383
```xml import * as React from "react"; import { useTranslation } from "react-i18next"; import styled from "styled-components"; import { s } from "@shared/styles"; import { isMac } from "@shared/utils/browser"; import Flex from "~/components/Flex"; import InputSearch from "~/components/InputSearch"; import Key from "~/c...
/content/code_sandbox/app/scenes/KeyboardShortcuts.tsx
xml
2016-05-22T21:31:47
2024-08-16T19:57:22
outline
outline/outline
26,751
2,749
```xml /* * one or more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. */ import {render, screen} from 'modules/testing-library'; import noop from 'lodash/noop'; import {OperationItems} from '../'; import {OperationItem} fro...
/content/code_sandbox/operate/client/src/modules/components/OperationItems/tests/index.test.tsx
xml
2016-03-20T03:38:04
2024-08-16T19:59:58
camunda
camunda/camunda
3,172
151
```xml import { c } from 'ttag'; import { Button } from '@proton/atoms'; import { FeatureCode, Icon, Tooltip, useFeature, useNotifications, useUser } from '@proton/components'; import clsx from '@proton/utils/clsx'; import { useMailDispatch } from 'proton-mail/store/hooks'; import { canSetExpiration } from '../../.....
/content/code_sandbox/applications/mail/src/app/components/message/extras/expiration/ExtraExpirationTime.tsx
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
621
```xml <clickhouse> <merge_tree> <max_postpone_time_for_failed_mutations_ms>0</max_postpone_time_for_failed_mutations_ms> </merge_tree> </clickhouse> ```
/content/code_sandbox/tests/integration/test_failed_mutations/configs/config.d/no_backoff_mutation_policy.xml
xml
2016-06-02T08:28:18
2024-08-16T18:39:33
ClickHouse
ClickHouse/ClickHouse
36,234
43
```xml export const ORDER_TYPES = { TAKE: "take", EAT: "eat", DELIVERY: "delivery", LOSS: "loss", SPEND: "spend", REJECT: "reject", ALL: ["take", "eat", "delivery", "loss", "spend", "reject"], SALES: ["take", "eat", "delivery"], OUT: ["loss", "spend", "reject"], } export const typeTextDef: any = { ...
/content/code_sandbox/pos/lib/constants.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
429
```xml import { G2Spec } from '../../../src'; export function population2015IntervalPie(): G2Spec { return { type: 'interval', height: 640, data: { type: 'fetch', value: 'data/population2015.csv', }, transform: [{ type: 'stackY' }], coordinate: { type: 'theta' }, scale: { ...
/content/code_sandbox/__tests__/plots/static/population2015-interval-pie.ts
xml
2016-05-26T09:21:04
2024-08-15T16:11:17
G2
antvis/G2
12,060
296
```xml const orIconSet = { size: 24, icons: { "logo": "<path style='pointer-events: var(--or-icon-pointer-events, none);' fill=\"#C4D600\" d=\"m11.96125,23.85096c-6.56773,0 -11.90971,-5.34202 -11.90971,-11.90862l2.49411,0c0,5.19176 4.22389,9.41568 9.41561,9.41568c5.19053,0 9.41561,-4.22392 9.41561,-9.4...
/content/code_sandbox/ui/component/or-icon/src/or-icon-set.ts
xml
2016-02-03T11:14:02
2024-08-16T12:45:50
openremote
openremote/openremote
1,184
2,053
```xml #import "AppDelegate.h" #import "ViewController.h" @implementation AppDelegate @synthesize window = _window; - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimat...
/content/code_sandbox/src/platform/ios/AppDelegate.mm
xml
2016-08-13T22:06:58
2024-08-14T22:00:49
OpenLara
XProger/OpenLara
4,663
166
```xml import { render as rtlRender, RenderOptions } from '@testing-library/react-native'; import * as React from 'react'; import { apiClient } from './apiClient'; import { AppProviders, AppProvidersProps } from './providers/AppProviders'; export * from '@testing-library/react-native'; type AppProviderOptions = { ...
/content/code_sandbox/packages/expo-dev-launcher/bundle/test-utils.tsx
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
230
```xml <vector android:height="24dp" android:viewportHeight="256" android:viewportWidth="256" android:width="24dp" xmlns:android="path_to_url"> <path android:fillColor="#395185" android:pathData="M241.871,256.001C249.673,256.001 256,249.675 256,241.872L256,14.129C256,6.325 249.673,0 241.871,0L14.129,0C6.324,0 0...
/content/code_sandbox/app/src/main/res/drawable/ic_facebook_colored.xml
xml
2016-08-13T08:08:39
2024-08-06T13:58:48
open-event-organizer-android
fossasia/open-event-organizer-android
1,783
369
```xml export { default as FileNameDisplay } from './FileNameDisplay'; ```
/content/code_sandbox/packages/components/components/fileNameDisplay/index.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
13
```xml <?xml version="1.0" encoding="utf-8"?> <Language Code="SR-Cyrl" Name="Serbian (Cyrillic)"> <Text Key="ISO639-1">SR-Cyrl</Text> <Text Key="Ok"> </Text> <Text Key="Cancel"></Text> <Text Key="Close"></Text> <Text Key="Yes"></Text> <Text Key="No"></Text> <Text Key="Mini_Player"> </Text> <Text Key="Re...
/content/code_sandbox/Dopamine/Languages/SR-Cyrl.xml
xml
2016-07-13T21:34:42
2024-08-15T03:30:43
dopamine-windows
digimezzo/dopamine-windows
1,786
6,662
```xml <?xml version="1.0" encoding="UTF-8"?> <definitions id="definitions" xmlns="path_to_url" xmlns:xsi="path_to_url" xmlns:activiti="path_to_url" targetNamespace="Examples"> <process id="inclusiveGwDefaultSequenceFlow"> <startEvent id="theStart" /> <sequenceFlow id="flow1" sourceRef="theStar...
/content/code_sandbox/modules/flowable5-test/src/test/resources/org/activiti/engine/test/bpmn/gateway/InclusiveGatewayTest.testDefaultSequenceFlow.bpmn20.xml
xml
2016-10-13T07:21:43
2024-08-16T15:23:14
flowable-engine
flowable/flowable-engine
7,715
390
```xml import { type RouteMatchFn, getRouteMatcher, } from '../../shared/lib/router/utils/route-matcher' import { getRouteRegex } from '../../shared/lib/router/utils/route-regex' // The last page and matcher that this function handled. let last: { page: string matcher: RouteMatchFn } | null = null /** * Gets...
/content/code_sandbox/packages/next/src/export/helpers/get-params.ts
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
287
```xml <?xml version="1.0" encoding="utf-8"?> <!-- /* //device/apps/common/res/anim/slide_out_right.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. */ --> <set xmlns:android="path_to_url...
/content/code_sandbox/app/src/main/res/anim/slide_out_right.xml
xml
2016-08-15T19:10:31
2024-08-16T19:34:19
Aegis
beemdevelopment/Aegis
8,651
151
```xml import React, { Component, MouseEvent, ReactElement, ReactNode } from 'react'; import PropTypes from 'prop-types'; import { EditorState } from 'draft-js'; import clsx from 'clsx'; import { UndoPluginTheme } from '../theme'; import { UndoPuginStore, UndoRedoButtonProps } from '..'; interface RedoButtonProps exte...
/content/code_sandbox/packages/undo/src/RedoButton/index.tsx
xml
2016-02-26T09:54:56
2024-08-16T18:16:31
draft-js-plugins
draft-js-plugins/draft-js-plugins
4,087
286
```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. */ import { Classes } from "@blueprintjs/core"; /** * Inject some CSS style rules into a new `<style>` element to add padding equal...
/content/code_sandbox/packages/docs-theme/src/components/scrollbar.ts
xml
2016-10-25T21:17:50
2024-08-16T15:14:48
blueprint
palantir/blueprint
20,593
271
```xml export default { cancelText: 'Cancel', confirmText: 'Ok', title: 'please select', }; ```
/content/code_sandbox/packages/zarm/src/date-picker/locale/en_US.tsx
xml
2016-07-13T11:45:37
2024-08-12T19:23:48
zarm
ZhongAnTech/zarm
1,707
26
```xml import { ISPView } from "."; /** * Defines a collection of SharePoint list views */ export interface ISPViews { value: ISPView[]; } ```
/content/code_sandbox/samples/react-adaptivecards-hooks/src/controls/PropertyFieldViewPicker/ISPViews.ts
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
32
```xml import Link from "next/link"; import React from "react"; import { Page } from "../../payload-types"; import { Button } from "../Button"; type CMSLinkType = { type?: "custom" | "reference"; url?: string; newTab?: boolean; reference?: { value: string | Page; relationTo: "pages"; }; label?: str...
/content/code_sandbox/examples/cms-payload/components/Link/index.tsx
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
356
```xml <dc:title>Growth: </dc:title> <dc:creator>Phodal</dc:creator> <dc:rights>CC0 1.0 Universal</dc:rights> <dc:language>zh-CN</dc:language> ```
/content/code_sandbox/build/metadata.xml
xml
2016-02-21T14:37:32
2024-08-16T10:10:23
growth-ebook
phodal/growth-ebook
7,778
52
```xml import * as React from 'react'; import { render, screen, fireEvent } from '@testing-library/react'; import { useStore } from './useStore'; import { StoreContextProvider } from './StoreContextProvider'; import { StoreSetter } from './StoreSetter'; import { localStorageStore } from './localStorageStore'; describ...
/content/code_sandbox/packages/ra-core/src/store/localStorageStore.spec.tsx
xml
2016-07-13T07:58:54
2024-08-16T18:32:27
react-admin
marmelab/react-admin
24,624
539
```xml import * as path from 'path'; import { cleanTask } from 'just-scripts'; import * as glob from 'glob'; export const clean = cleanTask({ paths: [ 'lib', 'temp', 'dist', 'dist-storybook', // Keep this in clean for actually cleaning up legacy content. 'lib-amd', 'lib-commonjs', 'lib-es...
/content/code_sandbox/scripts/tasks/src/clean.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
138
```xml <vector xmlns:android="path_to_url" android:width="16dp" android:height="16dp" android:viewportWidth="16" android:viewportHeight="16"> <path android:pathData="M5.205,1.252C4.638,0.965 3.967,0.965 3.4,1.252C3.111,1.398 2.861,1.649 2.571,1.939L2.357,2.153C2.047,2.463 1.809,2.701 1.628,3.022...
/content/code_sandbox/app/src/main/res/drawable/ic_new_call_rejected.xml
xml
2016-05-04T11:46:20
2024-08-15T16:29:10
android
meganz/android
1,537
1,858
```xml <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="path_to_url"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguratio...
/content/code_sandbox/Dockerfiles/agent/windows/entrypoint/entrypoint.vcxproj
xml
2016-01-19T17:40:41
2024-08-16T08:20:22
datadog-agent
DataDog/datadog-agent
2,766
1,971
```xml export declare function isRunningInExpoGo(): boolean; export declare function getExpoGoProjectConfig(): null; //# sourceMappingURL=ExpoGo.web.d.ts.map ```
/content/code_sandbox/packages/expo/build/environment/ExpoGo.web.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
35
```xml import { EmojiImageProps } from 'packages/emoji/src'; import React, { // PropTypes, Component, ComponentType, MouseEvent, ReactElement, } from 'react'; import { EmojiPluginTheme } from '../../../theme'; import { EmojiShape } from '../../../constants/type'; interface EntryProps { emoji: EmojiShape; ...
/content/code_sandbox/packages/emoji/src/components/EmojiSuggestions/Entry/index.tsx
xml
2016-02-26T09:54:56
2024-08-16T18:16:31
draft-js-plugins
draft-js-plugins/draft-js-plugins
4,087
423
```xml <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="path_to_url" xmlns:x="path_to_url" Title="Move Items Around a Layout" x:Class="Xamarin.Forms.Controls.GalleryPages.DragAndDropGalleries.DragAndDropBetweenLayouts"> <ContentPage.Resources> <DataTemplate ...
/content/code_sandbox/Xamarin.Forms.Controls/GalleryPages/DragAndDropGalleries/DragAndDropBetweenLayouts.xaml
xml
2016-03-18T15:52:03
2024-08-16T16:25:43
Xamarin.Forms
xamarin/Xamarin.Forms
5,637
391
```xml import * as path from 'path'; import { EnvironmentType } from '../../config/EnvironmentType'; import { ICacheStrategy } from '../../config/ICacheProps'; import { ITestBrowserResponse } from '../../testUtils/browserEnv/testBrowserEnv'; import { createIntegrationTest, createTestWorkspace, ITestWorkspace } from '.....
/content/code_sandbox/src/cache/__tests__/cache.meta.fs.test.ts
xml
2016-10-28T10:37:16
2024-07-27T15:17:43
fuse-box
fuse-box/fuse-box
4,003
935
```xml <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="path_to_url"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> ...
/content/code_sandbox/Revive/Revive.vcxproj
xml
2016-04-11T13:12:23
2024-08-15T19:21:20
Revive
LibreVR/Revive
3,586
5,927
```xml import { Fido2UserInterfaceService as Fido2UserInterfaceServiceAbstraction, Fido2UserInterfaceSession, } from "../../abstractions/fido2/fido2-user-interface.service.abstraction"; /** * Noop implementation of the {@link Fido2UserInterfaceService}. * This implementation does not provide any user interface. ...
/content/code_sandbox/libs/common/src/platform/services/fido2/noop-fido2-user-interface.service.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
115
```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 bifurcateValues = require( './index' ); // TESTS // // The function returns group results... { const x ...
/content/code_sandbox/lib/node_modules/@stdlib/array/base/bifurcate-values/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
506
```xml import PropTypes from 'prop-types' export const inheritedColorPropType = PropTypes.oneOfType([ PropTypes.string, PropTypes.func, PropTypes.shape({ theme: PropTypes.string.isRequired, }), PropTypes.shape({ from: PropTypes.string.isRequired, modifiers: PropTypes.arrayOf...
/content/code_sandbox/packages/colors/src/props.ts
xml
2016-04-16T03:27:56
2024-08-16T03:38:37
nivo
plouc/nivo
13,010
64
```xml /* * one or more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. */ import {render, screen, waitFor} from 'modules/testing-library'; import { assignedTaskWithForm, unassignedTaskWithForm, } from 'modules/mock-schem...
/content/code_sandbox/tasklist/client/src/Tasks/Task/FormJS/index.test.tsx
xml
2016-03-20T03:38:04
2024-08-16T19:59:58
camunda
camunda/camunda
3,172
2,851
```xml // This file is generated by genicons.mjs. Do not modify directly. export interface Icon { viewBox: string, contents: string } const materialIconsViewBox: string = '0 -960 960 960'; const bootstrapIconsViewBox: string = '0 0 16 16'; export const IconAccountCircle: Icon = { viewBox: materialIconsViewBox,...
/content/code_sandbox/frontend/components/Common/icons.ts
xml
2016-04-30T21:41:23
2024-08-16T18:27:26
AzuraCast
AzuraCast/AzuraCast
2,978
18,766
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net6.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <ItemGroup> <PackageReference Include="AWSSDK.SQS" Version="3.7.103.7" /> <...
/content/code_sandbox/dotnetv3/cross-service/TopicsAndQueues/Actions/SQSActions/SQSActions.csproj
xml
2016-08-18T19:06:57
2024-08-16T18:59:44
aws-doc-sdk-examples
awsdocs/aws-doc-sdk-examples
9,298
119
```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. --> <RelativeLayout xmlns:android="path_to_url" style="@style/ListItem" android:orientation="horizo...
/content/code_sandbox/app/src/main/res/layout/issues_filter_item.xml
xml
2016-04-09T16:05:02
2024-08-08T06:37:18
trugithub
kba7/trugithub
2,055
251
```xml <vector xmlns:android="path_to_url" android:width="16dp" android:height="16dp" android:viewportWidth="16" android:viewportHeight="16"> <group> <clip-path android:pathData="M0,0h16v16h-16z"/> <path android:pathData="M15.25,8C15.25,12.004 12.004,15.25 8,15.25C3.996,15.25 0...
/content/code_sandbox/icon-pack/src/main/res/drawable/ic_offline_available.xml
xml
2016-05-04T11:46:20
2024-08-15T16:29:10
android
meganz/android
1,537
481
```xml import type {StyleSpecification} from "maplibre-gl"; export class RevisionStore { revisions: (StyleSpecification & {id: string})[]; currentIdx: number; constructor(initialRevisions=[]) { this.revisions = initialRevisions this.currentIdx = initialRevisions.length - 1 } get latest() { ret...
/content/code_sandbox/src/libs/revisions.ts
xml
2016-09-08T17:52:22
2024-08-16T12:54:23
maputnik
maplibre/maputnik
2,046
245
```xml // See LICENSE in the project root for license information. import type { ChildProcess } from 'node:child_process'; import { once } from 'node:events'; import type { IAfterExecuteEventMessage, IRequestRunEventMessage, ISyncEventMessage, IRunCommandMessage, IExitCommandMessage } from '@rushstack/opera...
/content/code_sandbox/libraries/rush-lib/src/logic/operations/IPCOperationRunner.ts
xml
2016-09-30T00:28:20
2024-08-16T18:54:35
rushstack
microsoft/rushstack
5,790
1,651
```xml export class TestingUtilities { public static sleep = (ms) => { return new Promise((resolve) => setTimeout(resolve, ms)); } } ```
/content/code_sandbox/samples/react-graph-auto-batching/tests/TestingUtilities.ts
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
32
```xml import { Component } from "@angular/core"; import { UpdateTempPasswordComponent as BaseUpdateTempPasswordComponent } from "@bitwarden/angular/auth/components/update-temp-password.component"; @Component({ selector: "app-update-temp-password", templateUrl: "update-temp-password.component.html", }) export cla...
/content/code_sandbox/apps/desktop/src/auth/update-temp-password.component.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
71
```xml <?xml version="1.0" encoding="UTF-8"?> <tileset name="psycho" tilewidth="8" tileheight="8" tilecount="160" columns="16"> <image source="psycho.png" trans="0055ff" width="128" height="80"/> </tileset> ```
/content/code_sandbox/samples/UsingTilengine/assets/fox/psycho.tsx
xml
2016-03-24T10:29:27
2024-08-16T12:53:07
ring
ring-lang/ring
1,262
68
```xml import { html } from '@microsoft/fast-element'; import type { Args, Meta } from '@storybook/html'; import { renderComponent } from '../helpers.stories.js'; import type { ToggleButton as FluentToggleButton } from './toggle-button.js'; import { ToggleButtonAppearance, ToggleButtonShape, ToggleButtonSize } from './...
/content/code_sandbox/packages/web-components/src/toggle-button/toggle-button.stories.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
3,447
```xml <?xml version="1.0" encoding="utf-8"?> <resources> <string name="upgrade_msg">Oppgrader til den komplette versjonen av Magisk Manager for fullfre oppsettet. Vil du laste ned og installere?</string> <string name="no_internet_msg">Vennligst koble deg p internettet! oppgradere til den komplette versjonen ...
/content/code_sandbox/app/stub/src/main/res/values-nb/strings.xml
xml
2016-09-08T12:42:53
2024-08-16T19:41:25
Magisk
topjohnwu/Magisk
46,424
108
```xml import { ComponentFixture, TestBed } from '@angular/core/testing'; import { AddWebhookFormComponent } from './add-webhook-form.component'; import { ProjectWebhookService } from '../webhook.service'; import { MessageHandlerService } from '../../../../shared/services/message-handler.service'; import { of } from 'r...
/content/code_sandbox/src/portal/src/app/base/project/webhook/add-webhook-form/add-webhook-form.component.spec.ts
xml
2016-01-28T21:10:28
2024-08-16T15:28:34
harbor
goharbor/harbor
23,335
1,069
```xml <clickhouse> <!-- Sources to read users, roles, access rights, profiles of settings, quotas. --> <user_directories replace="replace"> <users_xml> <!-- Path to configuration file with predefined users. --> <path>users.yaml</path> </users_xml> <local_director...
/content/code_sandbox/tests/integration/test_config_yaml_main/configs/config.d/access_control.xml
xml
2016-06-02T08:28:18
2024-08-16T18:39:33
ClickHouse
ClickHouse/ClickHouse
36,234
112
```xml // automatically generated by the FlatBuffers compiler, do not modify import { Binary } from './binary.js'; import { Bool } from './bool.js'; import { Date } from './date.js'; import { Decimal } from './decimal.js'; import { Duration } from './duration.js'; import { FixedSizeBinary } from './fixed-size-binary.j...
/content/code_sandbox/js/src/fb/type.ts
xml
2016-02-17T08:00:23
2024-08-16T19:00:48
arrow
apache/arrow
14,094
1,585
```xml import React from 'react' import ReactDOM from 'react-dom/client' import './index.css' import { makeData, Person } from './makeData' import { Column, ColumnDef, ExpandedState, flexRender, getCoreRowModel, getExpandedRowModel, getFilteredRowModel, getPaginationRowModel, Row, RowPinningState...
/content/code_sandbox/examples/react/row-pinning/src/main.tsx
xml
2016-10-20T17:25:08
2024-08-16T17:23:37
table
TanStack/table
24,696
2,658
```xml import { Card } from '@fluentui/react-components'; import descriptionMd from './CardDescription.md'; import cardBestpracticesMd from './CardBestPractices.md'; export { Default } from './CardDefault.stories'; export { Orientation } from './CardOrientation.stories'; export { Size } from './CardSize.stories'; expo...
/content/code_sandbox/packages/react-components/react-card/stories/src/Card/index.stories.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
182
```xml <?xml version="1.0"?> <DoodleClassifier> <circle>0</circle> <Run>0</Run> <CV_initial> <Min_area>10</Min_area> <Max_area>200</Max_area> <Threshold>128</Threshold> <Dilations>1</Dilations> </CV_initial> <User_Settings> <IP>localhost</IP> <port>8000</port> <message>/classification</message> <ca...
/content/code_sandbox/apps/DoodleClassifier/bin/data/settings_doodleclassifier.xml
xml
2016-07-13T12:19:49
2024-07-31T14:31:07
ml4a-ofx
ml4a/ml4a-ofx
1,217
147
```xml import type { GraphQLInputType } from "graphql"; import * as graphql from "graphql"; import * as assert from "../assert.js"; import { assertInputStep, inputStep } from "../input.js"; import type { InputStep, NotVariableValueNode } from "../interfaces.js"; import { ExecutableStep } from "../step.js"; import type...
/content/code_sandbox/grafast/grafast/src/steps/__inputList.ts
xml
2016-04-14T21:29:19
2024-08-16T17:12:51
crystal
graphile/crystal
12,539
910
```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. */ import { type CellCoordinate, type Region, Regions } from "../../regions"; export type ContextMenuRenderer = (context: MenuContex...
/content/code_sandbox/packages/table/src/interactions/menus/menuContext.ts
xml
2016-10-25T21:17:50
2024-08-16T15:14:48
blueprint
palantir/blueprint
20,593
453
```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>#Comment</key> <string>This file is for 10.12.6+ with native KabyLake support</string> <key>ACPI</key> <dict> <key>DSDT</key> <dict> <key>Debug</key> <false/>...
/content/code_sandbox/Clover-Configs/XiaoMi/15.6-inch/CLOVER/config_DalianSky.plist
xml
2016-11-05T04:22:54
2024-08-12T19:25:53
Hackintosh-Installer-University
huangyz0918/Hackintosh-Installer-University
3,937
4,734
```xml <?xml version="1.0" encoding="UTF-8"?> <!-- *** GENERATED FROM project.xml - DO NOT EDIT *** *** EDIT ../build.xml INSTEAD *** --> <project name="org.graalvm.visualvm.jfr.streaming-impl" basedir=".."> <property file="nbproject/private/suite-private.properties"/> <property file="nbproject...
/content/code_sandbox/plugins/jfr.streaming/nbproject/build-impl.xml
xml
2016-09-12T14:44:30
2024-08-16T14:41:50
visualvm
oracle/visualvm
2,821
350
```xml import { withAndroidSplashScreen } from '@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/withAndroidSplashScreen'; import { withIosSplashScreen } from '@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/withIosSplashScreen'; import { ConfigPlugin, createRunOncePlugin } from 'ex...
/content/code_sandbox/packages/expo-splash-screen/plugin/src/withSplashScreen.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
185
```xml <!-- Description: feed logo --> <feed xmlns="path_to_url"> <logo>path_to_url </feed> ```
/content/code_sandbox/testdata/parser/atom/atom10_feed_logo.xml
xml
2016-01-23T02:44:34
2024-08-16T15:16:03
gofeed
mmcdole/gofeed
2,547
27
```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. */ // Based on code created by David Phillip Oster on 4/14/11. Revised 4/13/13. // Used with permission. #include "ion/demos/ios/src/IonGL2View....
/content/code_sandbox/ion/demos/ios/src/IonGL2View.mm
xml
2016-01-25T23:13:46
2024-07-11T19:17:57
ion
google/ion
1,431
1,140
```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 sdsdot = require( './index' ); // TESTS // // The function returns a number... { const x = new Float32A...
/content/code_sandbox/lib/node_modules/@stdlib/blas/base/sdsdot/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
4,835
```xml import * as vscode from 'vscode'; import { toAbsoluteRootPath } from './helpers'; export interface FolderAwareItem { workspaceFolder: vscode.WorkspaceFolder; } export class VirtualFolderBasedCache<T extends FolderAwareItem> { // cache folder by its name, which could be either the actual or virtual workspac...
/content/code_sandbox/src/virtual-workspace-folder.ts
xml
2016-10-09T13:06:02
2024-08-13T18:32:04
vscode-jest
jest-community/vscode-jest
2,819
1,023
```xml export { default } from './PrototypePerfExample'; ```
/content/code_sandbox/packages/fluentui/docs/src/components/ComponentDoc/PrototypePerfExample/index.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
12
```xml <?xml version="1.0" encoding="UTF-8"?> <application id="16777223" name="3GPP Gmb" uri="path_to_url"> <!-- This secion/application contains AVPs whose codes collide with other 3GPP AVPs. The modern (non-conflicting) Gmb AVPs are in the SGmb application/section below. If you want to use the Cx/Dx AVPs com...
/content/code_sandbox/utilities/wireshark/diameter/TGPP.xml
xml
2016-10-27T09:31:28
2024-08-16T19:00:35
nexmon
seemoo-lab/nexmon
2,381
21,335
```xml <dict> <key>CommonPeripheralDSP</key> <array> <dict> <key>DeviceID</key> <integer>0</integer> <key>DeviceType</key> <string>Headphone</string> </dict> <dict> <key>DeviceID</key> <integer>0</integer> <key>DeviceType</key> <string>Microphone</string> </dict> </array> <key>PathMa...
/content/code_sandbox/Resources/ALC292/Platforms12.xml
xml
2016-03-07T20:45:58
2024-08-14T08:57:03
AppleALC
acidanthera/AppleALC
3,420
76,158
```xml <Project xmlns="path_to_url" InitialTargets="_SelectOnlySources"> <PropertyGroup> <!-- Keep separate tlog in each multi-bin subproject (all projects, in fact, it does not hurt). Needs a trailing '\'. --> <TLogLocation>$(IntDir)$(ProjectName).tlog\</TLogLocation> <!-- Intentionally sharing,...
/content/code_sandbox/native_client/ctcdecode/third_party/openfst-1.6.9-win/src/openfst.targets
xml
2016-06-02T15:04:53
2024-08-16T13:13:57
DeepSpeech
mozilla/DeepSpeech
24,922
403
```xml import { checkPermission } from '@erxes/api-utils/src'; import { IContext } from '../../../connectionResolver'; import { getIndicatorSubmissions } from '../../../utils'; import * as _lodash from 'lodash'; const formSubmissionQueries = { async indicatorsAssessmentHistory( _root, { indicatorId, ...
/content/code_sandbox/packages/plugin-riskassessment-api/src/graphql/resolvers/queries/formSubmissions.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
376
```xml import { join, leave, getServices, getService, } from '@erxes/api-utils/src/serviceDiscovery'; import redis from '@erxes/api-utils/src/redis'; export { redis, getServices, getService, join, leave }; ```
/content/code_sandbox/packages/workers/src/serviceDiscovery.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
52