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 { createAction, createAsyncThunk } from '@reduxjs/toolkit'; import type { ApiEvent } from '@proton/activation/src/api/api.interface'; import { loadImporters } from './importers/importers.actions'; import { loadReports } from './reports/reports.actions'; import type { EasySwitchThunkExtra } from './store...
/content/code_sandbox/packages/activation/src/logic/actions.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
158
```xml import { getDictionary } from "../../get-dictionary"; import { Locale } from "../../i18n-config"; import Counter from "./components/counter"; import LocaleSwitcher from "./components/locale-switcher"; export default async function IndexPage({ params: { lang }, }: { params: { lang: Locale }; }) { const dic...
/content/code_sandbox/examples/app-dir-i18n-routing/app/[lang]/page.tsx
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
153
```xml import React from 'react'; import ls from './Window.less' import cx from 'classnames'; import {NOOP} from 'gems/func'; import {FaTimes} from 'react-icons/fa'; export interface WindowProps { initWidth?: number; initHeight?: number; initLeft?: number; initTop?: number; initRight?: number; initBottom...
/content/code_sandbox/modules/ui/components/Window.tsx
xml
2016-08-26T21:55:19
2024-08-15T01:02:53
jsketcher
xibyte/jsketcher
1,461
2,628
```xml import { ChangeDetectionStrategy, Component, computed, signal, } from '@angular/core' import { ColumnDef, type ColumnOrderState, type ColumnPinningState, createAngularTable, FlexRenderDirective, getCoreRowModel, type VisibilityState, } from '@tanstack/angular-table' import { makeData } from...
/content/code_sandbox/examples/angular/column-pinning/src/app/app.component.ts
xml
2016-10-20T17:25:08
2024-08-16T17:23:37
table
TanStack/table
24,696
807
```xml declare var require: any; const fs = require('fs'); const lines = fs.readFileSync("COVERAGE.md", "utf8").split('\n').filter(l => /^\s*\- \[|^### /.test(l)); let i = 0; let stats = processLines(0); printStats("Total", stats); function printStats(title, stats) { console.log(title, Math.round(stats.total * 1...
/content/code_sandbox/scripts/calc_conformance.ts
xml
2016-07-24T23:05:37
2024-08-12T19:23:59
ts2c
andrei-markeev/ts2c
1,252
380
```xml import { WhereExpressionBuilder } from "./WhereExpressionBuilder" /** * Syntax sugar. * Allows to use brackets in WHERE expressions for better syntax. */ export class Brackets { readonly "@instanceof" = Symbol.for("Brackets") /** * WHERE expression that will be taken into brackets. */ ...
/content/code_sandbox/src/query-builder/Brackets.ts
xml
2016-02-29T07:41:14
2024-08-16T18:28:52
typeorm
typeorm/typeorm
33,875
128
```xml /** @jsx jsx */ import { Editor } from 'slate' import { jsx } from '../../..' export const input = ( <editor> <block>one</block> </editor> ) export const test = editor => { return Editor.point(editor, [0], { edge: 'start' }) } export const output = { path: [0, 0], offset: 0 } ```
/content/code_sandbox/packages/slate/test/interfaces/Editor/point/path-start.tsx
xml
2016-06-18T01:52:42
2024-08-16T18:43:42
slate
ianstormtaylor/slate
29,492
87
```xml import { BaseResponse } from "../../../../models/response/base.response"; export class OrganizationUserBulkPublicKeyResponse extends BaseResponse { id: string; userId: string; key: string; constructor(response: any) { super(response); this.id = this.getResponseProperty("Id"); this.userId = ...
/content/code_sandbox/libs/common/src/admin-console/abstractions/organization-user/responses/organization-user-bulk-public-key.response.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
83
```xml import { ComponentSlotStylesPrepared, ICSSInJSStyle } from '@fluentui/styles'; import { AttachmentDescriptionStylesProps } from '../../../../components/Attachment/AttachmentDescription'; import { AttachmentVariables } from './attachmentVariables'; export const attachmentDescriptionStyles: ComponentSlotStylesPr...
/content/code_sandbox/packages/fluentui/react-northstar/src/themes/teams/components/Attachment/attachmentDescriptionStyles.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
120
```xml export function Feature() {} ```
/content/code_sandbox/src/extension/features/__mocks__/feature.ts
xml
2016-01-03T05:38:10
2024-08-13T16:08:09
toolkit-for-ynab
toolkit-for-ynab/toolkit-for-ynab
1,418
6
```xml import { expect, galata, IJupyterLabPageFixture, test } from '@jupyterlab/galata'; import * as path from 'path'; const fileName = 'markdown_notebook.ipynb'; async function enterEditingModeForScreenshot( page: IJupyterLabPageFixture, cellIndex: number ) { await page.notebook.enterCellEditingMode(...
/content/code_sandbox/galata/test/jupyterlab/notebook-markdown.test.ts
xml
2016-06-03T20:09:17
2024-08-16T19:12:44
jupyterlab
jupyterlab/jupyterlab
14,019
719
```xml import * as dayjs from "dayjs"; import * as relativeTime from "dayjs/plugin/relativeTime"; import { AssigneeImg, CheckBox, Count, FlexContent, Idle, MainInfo, MessageContent, RowContent, RowItem, SmallTextOneLine, } from "./styles"; import { CustomerName, EllipsisContent, Flex as FlexR...
/content/code_sandbox/packages/plugin-inbox-ui/src/inbox/components/leftSidebar/ConversationItem.tsx
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
1,246
```xml import React, { useState, useRef } from 'react'; import { View, ScrollView, StyleSheet, Text, Dimensions, KeyboardAvoidingView, Platform, Vibration, } from 'react-native'; import { Input, SearchBar, Icon, Button, ThemeProvider, InputProps, } from 'react-native-elements'; import { Head...
/content/code_sandbox/src/views/inputs.tsx
xml
2016-09-04T22:44:08
2024-07-13T15:14:00
react-native-elements-app
react-native-elements/react-native-elements-app
1,285
2,495
```xml export * from './BannerCard'; ```
/content/code_sandbox/samples/react-news-banner/src/components/BannerCard/index.ts
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
8
```xml import * as fs from "fs"; import * as path from "path"; import * as inquirer from "inquirer"; import * as JSZip from "jszip"; import { Organization } from "@bitwarden/common/admin-console/models/domain/organization"; import { LogService } from "@bitwarden/common/platform/abstractions/log.service"; import { Uti...
/content/code_sandbox/apps/cli/src/utils.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
1,984
```xml import React from "react"; import { gql, useQuery, useMutation } from "@apollo/client"; import Alert from "@erxes/ui/src/utils/Alert/index"; import confirm from "@erxes/ui/src/utils/confirmation/confirm"; import { __ } from "@erxes/ui/src/utils/index"; import { router } from "@erxes/ui/src/utils"; import Repo...
/content/code_sandbox/packages/plugin-insight-ui/src/containers/report/Report.tsx
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
771
```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>com.vladsch.flexmark</groupId> <artifactId>flexmark-java</artifactId> <version>0.64.8</ver...
/content/code_sandbox/flexmark-ext-autolink/pom.xml
xml
2016-01-23T15:29:29
2024-08-15T04:04:18
flexmark-java
vsch/flexmark-java
2,239
433
```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.example</groupId> <artifactId>kafka-sample-03</artifactId> <version>3.2.0-SNAPSHOT</version> <packaging>jar</packaging> ...
/content/code_sandbox/samples/sample-03/pom.xml
xml
2016-03-02T17:01:33
2024-08-16T16:24:00
spring-kafka
spring-projects/spring-kafka
2,129
419
```xml <ImmutableTypeMultipleConstructors Flag="true" Num="100" Name="hello" xmlns="clr-namespace:MonoTests.System.Xaml;assembly=System.Xaml.TestCases" xmlns:x="path_to_url"> </ImmutableTypeMultipleConstructors> ```
/content/code_sandbox/src/Test/System.Xaml.TestCases/XmlFiles/ImmutableTypeMultipleConstructors2.xml
xml
2016-08-25T20:07:20
2024-08-13T22:23:35
CoreWF
UiPath/CoreWF
1,126
51
```xml import { TestBed } from '@angular/core/testing'; import { DomSanitizer } from '@angular/platform-browser'; import { TrustHtmlPipe } from '~/app/shared/pipes/trust-html.pipe'; describe('TrustHtmlPipe', () => { let pipe: TrustHtmlPipe; let domSanitizer: DomSanitizer; beforeEach(() => { TestBed.configu...
/content/code_sandbox/deb/openmediavault/workbench/src/app/shared/pipes/trust-html.pipe.spec.ts
xml
2016-05-03T10:35:34
2024-08-16T08:03:04
openmediavault
openmediavault/openmediavault
4,954
130
```xml import * as chai from "chai"; import * as chaiAsPromised from "chai-as-promised"; import * as nock from "nock"; chai.use(chaiAsPromised); nock.disableNetConnect(); ```
/content/code_sandbox/mocha/setup.ts
xml
2016-09-22T23:13:54
2024-08-16T17:59:09
firebase-functions
firebase/firebase-functions
1,015
45
```xml /* * This software is released under MIT license. * The full license information can be found in LICENSE in the root directory of this project. */ import { renderIcon } from '../icon.renderer.js'; import { IconShapeTuple } from '../interfaces/icon.interfaces.js'; const icon = { outline: '<path d="M30,32H6...
/content/code_sandbox/packages/core/src/icon/shapes/stop.ts
xml
2016-09-29T17:24:17
2024-08-11T17:06:15
clarity
vmware-archive/clarity
6,431
209
```xml import { Component } from '@angular/core'; import { Code } from '@domain/code'; @Component({ selector: 'wai-aria-doc', template: ` <app-docsectiontext> <p> ARIA refers to "Accessible Rich Internet Applications" is a suite to fill the gap where semantic HTML is inadequ...
/content/code_sandbox/src/app/showcase/doc/guides/accessibility/waiariadoc.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
947
```xml /* Handling multiple instances of the orchestrator being injected is * necessary to ensure that the content-scripts are properly loaded * and unloaded as needed. This can be particularly important during * updates or hot-reload scenarios, where multiple instances of the * orchestrator may be living simultane...
/content/code_sandbox/applications/pass-extension/src/app/content/orchestrator.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
1,132
```xml import { CustomEvent } from '@antv/g'; import { G2Spec, ELEMENT_CLASS_NAME } from '../../../src'; import { LEGEND_ITEMS_CLASS_NAME } from '../../../src/interaction/legendFilter'; import { profit } from '../../data/profit'; import { dispatchPointermove } from './utils'; export function profitIntervalLegendFilter...
/content/code_sandbox/__tests__/plots/tooltip/profit-interval-legend-filter-ordinal.ts
xml
2016-05-26T09:21:04
2024-08-15T16:11:17
G2
antvis/G2
12,060
324
```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 { BaseData, ExportableEntity } from '@shared/models/base-data'; import { DeviceId } from './id/device-id'; import { ...
/content/code_sandbox/ui-ngx/src/app/shared/models/device.models.ts
xml
2016-12-01T09:33:30
2024-08-16T19:58:25
thingsboard
thingsboard/thingsboard
16,820
6,638
```xml /** * Type definitions for require(), which is necessary in Jest tests when resetting * the module cache or explicitly requiring mocks or actual modules. * * These type definitions are from the @types/node definitions. */ type NodeRequireFunction = (id: string) => any; interface NodeRequire extends NodeReq...
/content/code_sandbox/packages/expo-module-scripts/ts-declarations/jest-require/index.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
255
```xml <?xml version="1.0" encoding="UTF-8"?> <document filename='bm_eu-019-reg.xml'> <table id='1'> <region id='1' page='3'> <instruction instr-id='1426'/> <instruction instr-id='1426' subinstr-id='2'/> <instruction instr-id='1426' subinstr-id='4'/> <instruction instr-id='1...
/content/code_sandbox/tests/files/tabula/icdar2013-dataset/competition-dataset-eu/eu-019-reg.xml
xml
2016-06-18T11:48:49
2024-08-15T18:32:02
camelot
atlanhq/camelot
3,628
1,541
```xml import * as assert from 'assert'; import { beautifyDocument } from '../../src/snippetCompletionProvider'; import { MarkdownString } from 'vscode'; suite('Snippet Completion Provider', () => { test('should render document correctly', () => { // /* eslint-disable prefer-arrow-callback, prefer-arrow/prefer-arr...
/content/code_sandbox/test/standard-mode-suite/snippetCompletionProvider.test.ts
xml
2016-08-12T15:02:43
2024-08-15T03:36:05
vscode-java
redhat-developer/vscode-java
2,064
195
```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 itermaxabs = require( './index' ); /** * Returns an iterator protocol-compliant object. * * @returns itera...
/content/code_sandbox/lib/node_modules/@stdlib/stats/iter/maxabs/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
339
```xml export declare function getRouterDirectory(projectRoot: string): string; export declare function getRewriteRequestUrl(projectRoot: string): (url: string) => string; ```
/content/code_sandbox/packages/@expo/metro-config/build/rewriteRequestUrl.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
35
```xml import React, { memo, type SVGProps } from 'react'; export const SvgIcnUser = memo<SVGProps<SVGSVGElement>>(props => ( <svg width="1em" height="1em" viewBox="0 0 14 14" fill="none" xmlns="path_to_url" role="img" {...props} > <path fill="none" d="M0 0h14v14H0z" /> <path ...
/content/code_sandbox/packages/insomnia/src/ui/components/assets/svgr/IcnUser.tsx
xml
2016-04-23T03:54:26
2024-08-16T16:50:44
insomnia
Kong/insomnia
34,054
498
```xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="path_to_url" package="com.journaldev.androidmaterialcomponentdialog"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_...
/content/code_sandbox/Android/AndroidMaterialComponentDialog/app/src/main/AndroidManifest.xml
xml
2016-05-02T05:43:21
2024-08-16T06:51:39
journaldev
WebJournal/journaldev
1,314
154
```xml import * as React from 'react'; import { SearchBox } from '@fluentui/react'; const Scenario = () => <SearchBox placeholder="Search" />; export default Scenario; ```
/content/code_sandbox/apps/perf-test/src/scenarios/SearchBox.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
39
```xml <?xml version="1.0" encoding="UTF-8"?> <document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="16097.2" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES"> <device id="retina6_1" orien...
/content/code_sandbox/LoopUI/StatusHighlightHUDView.xib
xml
2016-05-24T03:26:56
2024-08-12T13:34:08
Loop
LoopKit/Loop
1,467
939
```xml import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { HttpClientModule } from '@angular/common/http'; import { RouterModule } from '@angular/router'; import { AppComponent } from './app.component'; import { HomeComponent } from './home.component'; import...
/content/code_sandbox/oauth-rest/oauth-ui-authorization-code-angular/src/main/resources/src/app/app.module.ts
xml
2016-03-02T09:04:07
2024-08-06T03:02:12
spring-security-oauth
Baeldung/spring-security-oauth
1,982
143
```xml <run> <desc> path_to_url QGIS #29400 - Polygons which fail with simple noding. </desc> <precisionModel type="FLOATING"/> <case> <desc> QGIS #29400 - 1 - Extract containing geometry which fails with simple noding. </desc> <a> your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_ha...
/content/code_sandbox/modules/tests/src/test/resources/testxml/robust/overlay/TestOverlay-qgis-29400.xml
xml
2016-01-25T18:08:41
2024-08-15T17:34:53
jts
locationtech/jts
1,923
1,255
```xml <?xml version="1.0" encoding="utf-8"?> <doc> <assembly> <name>System.Threading</name> </assembly> <members> <member name="T:System.Threading.AbandonedMutexException"> <summary> <see cref="T:System.Threading.Mutex" /> throw .</summary> <filterpriority>1</filterpriority> </mem...
/content/code_sandbox/packages/System.Threading.4.0.0/ref/netcore50/ko/System.Threading.xml
xml
2016-04-24T09:50:47
2024-08-16T11:45:14
ILRuntime
Ourpalm/ILRuntime
2,976
29,136
```xml <?xml version="1.0" encoding="utf-8"?> <ListView xmlns:android="path_to_url" android:id="@android:id/list" android:layout_width="match_parent" android:layout_height="match_parent" /> ```
/content/code_sandbox/confetti-sample/src/main/res/layout/activity_main.xml
xml
2016-08-19T06:57:38
2024-08-02T01:38:58
confetti
jinatonic/confetti
1,307
52
```xml // src/jQuery.d.ts declare namespace jQuery { interface AjaxSettings { method?: 'GET' | 'POST'; data?: any; } function ajax(url: string, settings?: AjaxSettings): void; } ```
/content/code_sandbox/examples/declaration-files/13-avoid-name-conflict/src/jQuery.d.ts
xml
2016-05-11T03:02:41
2024-08-16T12:59:57
typescript-tutorial
xcatliu/typescript-tutorial
10,361
49
```xml <?xml version="1.0" encoding="utf-8"?> <resources> </resources> ```
/content/code_sandbox/app/src/main/res/values/colors.xml
xml
2016-08-22T08:04:39
2024-08-12T03:30:30
InfiniteCycleViewPager
Devlight/InfiniteCycleViewPager
5,754
21
```xml import { parseFileName } from '@standardnotes/utils' import { FeatureStatus, FeaturesClientInterface, GenerateUuid, ItemManagerInterface, MutatorClientInterface, } from '@standardnotes/services' import { NativeFeatureIdentifier, NoteType } from '@standardnotes/features' import { AegisToAuthenticatorCon...
/content/code_sandbox/packages/ui-services/src/Import/Importer.ts
xml
2016-12-05T23:31:33
2024-08-16T06:51:19
app
standardnotes/app
5,180
1,767
```xml import { buildSchema, parse } from 'graphql'; import { envelop } from '@envelop/core'; import { useExecutor } from '@graphql-tools/executor-envelop'; import { Executor } from '@graphql-tools/utils'; describe('Envelop', () => { const schema = buildSchema(/* GraphQL */ ` type Query { hello: String ...
/content/code_sandbox/packages/executors/envelop/tests/envelop.spec.ts
xml
2016-03-22T00:14:38
2024-08-16T02:02:06
graphql-tools
ardatan/graphql-tools
5,331
644
```xml import path from "path"; import { readFile } from "fs-extra"; import invariant from "invariant"; import { CollectionPermission, UserRole } from "@shared/types"; import WelcomeEmail from "@server/emails/templates/WelcomeEmail"; import env from "@server/env"; import { InvalidAuthenticationError, Authentication...
/content/code_sandbox/server/commands/accountProvisioner.ts
xml
2016-05-22T21:31:47
2024-08-16T19:57:22
outline
outline/outline
26,751
1,576
```xml import type { CreateOptions, InferAttributes, InferCreationAttributes, SaveOptions, WhereOptions, } from "sequelize"; import { ForeignKey, AfterSave, BeforeCreate, BelongsTo, Column, IsIP, IsUUID, Table, DataType, Length, } from "sequelize-typescript"; import { globalEventQueue } fr...
/content/code_sandbox/server/models/Event.ts
xml
2016-05-22T21:31:47
2024-08-16T19:57:22
outline
outline/outline
26,751
988
```xml import { useContextBridge } from "@Core/Hooks"; import { Setting } from "@Core/Settings/Setting"; import { Button, Input, Tooltip } from "@fluentui/react-components"; import { DismissRegular } from "@fluentui/react-icons"; import { useState } from "react"; import { useTranslation } from "react-i18next"; type Re...
/content/code_sandbox/src/renderer/Core/Settings/Pages/SearchEngine/RescanInterval.tsx
xml
2016-10-11T04:59:52
2024-08-16T11:53:31
ueli
oliverschwendener/ueli
3,543
479
```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> ...
/content/code_sandbox/deps/boost_1_66_0/libs/endian/test/msvc/deprecated_test/deprecated_test.vcxproj
xml
2016-09-05T10:18:44
2024-08-11T13:21:40
LiquidCore
LiquidPlayer/LiquidCore
1,010
1,009
```xml <?xml version="1.0" encoding="utf-8"?> <ripple xmlns:android="path_to_url" android:color="@color/black_10_transparent"> <item android:id="@android:id/mask"> <shape android:shape="rectangle"> <solid android:color="@android:color/white" /> </shape> </item> </ripple> ```
/content/code_sandbox/sample/src/main/res/drawable-v21/selector_black_10_transparent.xml
xml
2016-08-20T19:25:32
2024-08-08T10:05:22
PageIndicatorView
romandanylyk/PageIndicatorView
4,621
82
```xml export function charlie() { return 'charlie'; } ```
/content/code_sandbox/src/compilerOptions/__tests__/cases/case3/pkgC/input/charlie.ts
xml
2016-10-28T10:37:16
2024-07-27T15:17:43
fuse-box
fuse-box/fuse-box
4,003
14
```xml import * as defaultSaveStateData from './DefaultSaveStates.json'; export type SettingCallback = (saveManager: SaveManager, key: string) => void; interface SaveStateMap { [k: string]: string; } export const enum SaveStateLocation { LocalStorage, SessionStorage, Defaults, None, } interface...
/content/code_sandbox/src/SaveManager.ts
xml
2016-10-06T21:43:45
2024-08-16T17:03:52
noclip.website
magcius/noclip.website
3,206
967
```xml import * as React from 'react'; import Icon from '../icon'; import type { IconProps } from '../icon'; const SvgWarningCircle = (props: IconProps, svgRef?: React.Ref<SVGSVGElement>) => { const newProps = { ...props, name: 'SvgWarningCircle' }; return React.createElement(Icon, { ...newProps, component...
/content/code_sandbox/packages/zarm-icons/src/react/WarningCircle.tsx
xml
2016-07-13T11:45:37
2024-08-12T19:23:48
zarm
ZhongAnTech/zarm
1,707
618
```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/client/ClientService.ts
xml
2016-07-21T15:34:05
2024-08-16T11:40:13
wire-webapp
wireapp/wire-webapp
1,125
1,201
```xml <?xml version="1.0" encoding="utf-8"?> <resources> <color name="colorPrimary">#3F51B5</color> <color name="colorPrimaryDark">#303F9F</color> <color name="colorAccent">#FF4081</color> <color name="shapeRed">#F44336</color> <color name="trailRed">#B71C1C</color> <color name="backgroundRed...
/content/code_sandbox/Lesson06-Visualizer-Preferences/T06.09-Solution-EditTextPreference/app/src/main/res/values/colors.xml
xml
2016-11-02T04:41:25
2024-08-12T19:38:05
ud851-Exercises
udacity/ud851-Exercises
2,039
206
```xml export const enum ASSISTANT_TYPE { SERVER = 'SERVER', LOCAL = 'LOCAL', } export const enum GENERATION_TYPE { WRITE_FULL_EMAIL = 'WRITE_FULL_EMAIL', SHORTEN = 'SHORTEN', PROOFREAD = 'PROOFREAD', EXPAND = 'EXPAND', FORMALIZE = 'FORMALIZE', FRIENDLY = 'FRIENDLY', CUSTOM_REFINE =...
/content/code_sandbox/packages/shared/lib/assistant/types.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
265
```xml import { IAutomation, IAutomationHistory, ITrigger } from '../../types'; import EmptyState from '@erxes/ui/src/components/EmptyState'; import React from 'react'; import Row from './Row'; import Table from '@erxes/ui/src/components/table'; import { __ } from '@erxes/ui/src/utils/core'; import withTableWrapper fr...
/content/code_sandbox/packages/plugin-automations-ui/src/components/histories/Histories.tsx
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
480
```xml import { filter, mergeMap, tap } from 'rxjs/operators'; import { getPrimaryFieldOfPrimaryKey } from './rx-schema-helper.ts'; import { WrappedRxStorageInstance } from './rx-storage-helper.ts'; import type { BulkWriteRow, EventBulk, RxChangeEvent, RxDocumentData, RxDocumentWriteData, RxJson...
/content/code_sandbox/src/plugin-helpers.ts
xml
2016-12-02T19:34:42
2024-08-16T15:47:20
rxdb
pubkey/rxdb
21,054
2,437
```xml /* * This software is released under MIT license. * The full license information can be found in LICENSE in the root directory of this project. */ import { renderIcon } from '../icon.renderer.js'; import { IconShapeTuple } from '../interfaces/icon.interfaces.js'; const icon = { outline: '<polygon poin...
/content/code_sandbox/packages/core/src/icon/shapes/vmw-app.ts
xml
2016-09-29T17:24:17
2024-08-11T17:06:15
clarity
vmware-archive/clarity
6,431
963
```xml import { type FC } from 'react'; import ButtonLike from '@proton/atoms/Button/ButtonLike'; import type { ImportProvider } from '@proton/pass/lib/import/types'; import { ImportIcon } from './ImportIcon'; import './ImportProviderItem.scss'; export const ImportProviderItem: FC<{ value: ImportProvider; t...
/content/code_sandbox/packages/pass/components/Import/ImportProviderItem.tsx
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
199
```xml <vector xmlns:android="path_to_url" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <group> <clip-path android:pathData="M0,0h24v24h-24z"/> <path android:pathData="M12,23C18.075,23 23,18.075 23,12C23,5.925 18.075,1 12,1C...
/content/code_sandbox/shared/original-core-ui/src/main/res/drawable/ic_forward_circle.xml
xml
2016-05-04T11:46:20
2024-08-15T16:29:10
android
meganz/android
1,537
295
```xml <!-- ~ 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 expre...
/content/code_sandbox/test/e2e/sql/src/test/resources/cases/dql/dataset/empty_storage_units/postgresql/select_postgresql_pg_catalog_pg_stats.xml
xml
2016-01-18T12:49:26
2024-08-16T15:48:11
shardingsphere
apache/shardingsphere
19,707
222
```xml import { makeExecutableSchema } from '@graphql-tools/schema'; import { assertSome } from '@graphql-tools/utils'; import { RemoveObjectFieldDirectives, wrapSchema } from '@graphql-tools/wrap'; import { assertGraphQLObjectType } from '../../testing/assertion.js'; describe('RemoveObjectFieldDirectives', () => { ...
/content/code_sandbox/packages/wrap/tests/transformRemoveObjectFieldDirectives.test.ts
xml
2016-03-22T00:14:38
2024-08-16T02:02:06
graphql-tools
ardatan/graphql-tools
5,331
865
```xml import { expect } from 'chai'; import { describe, it } from 'mocha'; import { genFuzzStrings } from '../genFuzzStrings.js'; function expectFuzzStrings(options: { allowedChars: ReadonlyArray<string>; maxLength: number; }) { return expect([...genFuzzStrings(options)]); } describe('genFuzzStrings', () => {...
/content/code_sandbox/grafast/grafast/vendor/graphql-js/__testUtils__/__tests__/genFuzzStrings-test.ts
xml
2016-04-14T21:29:19
2024-08-16T17:12:51
crystal
graphile/crystal
12,539
479
```xml import * as React from 'react'; import { styled } from '@fluentui/react'; import { IHomePageProps, IHomePageStyles, IHomePageStyleProps } from './HomePage.types'; import { getStyles } from './HomePage.styles'; import { HomePageBase } from './HomePage.base'; export const HomePage: React.FunctionComponent<IHomePa...
/content/code_sandbox/apps/public-docsite/src/pages/HomePage/HomePage.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
106
```xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="path_to_url" xmlns:tools="path_to_url" android:id="@android:id/background" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/widget_m3_background" android:theme="@sty...
/content/code_sandbox/app/src/main/res/layout/widget_init.xml
xml
2016-02-21T04:39:19
2024-08-16T13:35:51
GeometricWeather
WangDaYeeeeee/GeometricWeather
2,420
192
```xml import type { Meta, StoryObj } from '@storybook/react'; import { fn } from '@storybook/test'; import { Button } from './Button'; // More on how to set up stories at: path_to_url#default-export const meta: Meta<typeof Button> = { title: 'Example/Button', component: Button, parameters: { // Optional pa...
/content/code_sandbox/code/frameworks/experimental-nextjs-vite/template/cli/ts-3-8/Button.stories.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
317
```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>BuildMachineOSBuild</key> <string>17B1003</string> <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleExecutable</key> <string>Lilu</string> <key>...
/content/code_sandbox/Clover-Configs/XiaoMi/15.6-inch/CLOVER/kexts/Other/Lilu.kext/Contents/Info.plist
xml
2016-11-05T04:22:54
2024-08-12T19:25:53
Hackintosh-Installer-University
huangyz0918/Hackintosh-Installer-University
3,937
793
```xml import colors from "./colors"; import { compat } from "./compatibility"; import sharedVariables from "./sharedVariables"; const streamVariables = { ...sharedVariables, palette: { ...sharedVariables.palette, /** Color palette that is used as the primary color. */ primary: { 100: compat(colo...
/content/code_sandbox/client/src/core/client/ui/theme/streamVariables.ts
xml
2016-10-31T16:14:05
2024-08-06T16:15:57
talk
coralproject/talk
1,881
210
```xml import { EncryptedPayloadInterface } from '@standardnotes/models' import { AbstractKeySplit } from './AbstractKeySplit' export type KeyedDecryptionSplit = AbstractKeySplit<EncryptedPayloadInterface> ```
/content/code_sandbox/packages/encryption/src/Domain/Split/KeyedDecryptionSplit.ts
xml
2016-12-05T23:31:33
2024-08-16T06:51:19
app
standardnotes/app
5,180
43
```xml import { FC, ReactElement } from 'react'; import { Trans } from '@translations'; import { Network } from '@types'; interface OwnProps { walletType: string | ReactElement<string>; network: Network; } type Props = OwnProps; const UnsupportedNetwork: FC<Props> = ({ walletType, network }) => { return ( ...
/content/code_sandbox/src/components/WalletUnlock/UnsupportedNetwork.tsx
xml
2016-12-04T01:35:27
2024-08-14T21:41:58
MyCrypto
MyCryptoHQ/MyCrypto
1,347
132
```xml import * as React from 'react'; import * as ReactTestUtils from 'react-dom/test-utils'; import * as ReactDOM from 'react-dom'; import * as renderer from 'react-test-renderer'; import { BaseExtendedPicker } from './BaseExtendedPicker'; import { BaseFloatingPicker, SuggestionsStore } from '../FloatingPicker/index'...
/content/code_sandbox/packages/react/src/components/ExtendedPicker/BaseExtendedPicker.test.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
2,561
```xml <?xml version="1.0"?> <!-- 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" BASI...
/content/code_sandbox/pulsar-functions/runtime-all/pom.xml
xml
2016-06-28T07:00:03
2024-08-16T17:12:43
pulsar
apache/pulsar
14,047
1,285
```xml import { initEvent, serverEvent, startLogoutListener, userSettingsThunk, userThunk, welcomeFlagsActions, } from '@proton/account'; import * as bootstrap from '@proton/account/bootstrap'; import { getDecryptedPersistedState } from '@proton/account/persist/helper'; import { createCalendarMo...
/content/code_sandbox/applications/account/src/app/content/bootstrap.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
976
```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>AppleSecurityExtension</key> <true/> <key>BuildMachineOSBuild</key> <string>16G29</string> <key>CFBundleDevelopmentRegion</key> <string>en</string> <key>CFBundleExec...
/content/code_sandbox/Clover-Configs/Lenovo/IdeaPad 300s/CLOVER/kexts/Other/LiluFriend.kext/Contents/Info.plist
xml
2016-11-05T04:22:54
2024-08-12T19:25:53
Hackintosh-Installer-University
huangyz0918/Hackintosh-Installer-University
3,937
1,052
```xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="path_to_url" xmlns:tools="path_to_url" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_mar...
/content/code_sandbox/sample/src/main/res/layout/activity_main.xml
xml
2016-04-29T02:58:10
2024-07-12T03:39:45
GifLoadingView
Rogero0o/GifLoadingView
1,329
185
```xml import "reflect-metadata" import { createTestingConnections, closeTestingConnections, reloadTestingDatabases, } from "../../utils/test-utils" import { DataSource } from "../../../src/data-source/DataSource" import { expect } from "chai" import { Session as baseEntity } from "./entity/session" import ...
/content/code_sandbox/test/github-issues/6714/issue-6714.ts
xml
2016-02-29T07:41:14
2024-08-16T18:28:52
typeorm
typeorm/typeorm
33,875
456
```xml import type { ElementType, ReactNode } from 'react'; import { forwardRef } from 'react'; import { Avatar } from '@proton/atoms/Avatar'; import type { PolymorphicForwardRefExoticComponent, PolymorphicPropsWithRef } from '@proton/react-polymorphic-types'; import { getInitials } from '@proton/shared/lib/helpers/st...
/content/code_sandbox/applications/account/src/app/single-signup-v2/AccountSwitcherItem.tsx
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
441
```xml import { ConfigurationTarget, Uri } from 'vscode'; import { IInterpreterPathService } from '../../../common/types'; import { IPythonPathUpdaterService } from '../types'; export class WorkspacePythonPathUpdaterService implements IPythonPathUpdaterService { constructor(private workspace: Uri, private readonly...
/content/code_sandbox/src/client/interpreter/configuration/services/workspaceUpdaterService.ts
xml
2016-01-19T10:50:01
2024-08-12T21:05:24
pythonVSCode
DonJayamanne/pythonVSCode
2,078
147
```xml import '../../icon/style'; import '../../loading/style'; import '../../style'; import './index.scss'; ```
/content/code_sandbox/packages/zarm/src/pull/style/index.ts
xml
2016-07-13T11:45:37
2024-08-12T19:23:48
zarm
ZhongAnTech/zarm
1,707
20
```xml import Panels from '../../../src/panels'; import Panel from '../../../src/panels/model/Panel'; import Editor from '../../../src/editor/model/Editor'; describe('Panels', () => { describe('Main', () => { let em: Editor; let obj: Panels; beforeEach(() => { em = new Editor({}); obj = new ...
/content/code_sandbox/test/specs/panels/index.ts
xml
2016-01-22T00:23:19
2024-08-16T11:20:59
grapesjs
GrapesJS/grapesjs
21,687
1,210
```xml <epp xmlns="urn:ietf:params:xml:ns:epp-1.0"> <command> <renew> <domain:renew xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"> <domain:name>%NAME%</domain:name> <domain:curExpDate>2000-04-03</domain:curExpDate> <domain:period unit="y">%PERIOD%</domain:period> </do...
/content/code_sandbox/core/src/test/resources/google/registry/flows/domain/domain_renew_fee.xml
xml
2016-02-29T20:16:48
2024-08-15T19:49:29
nomulus
google/nomulus
1,685
205
```xml import { Matrix4InOut, Vector3 as Vec3 } from './mat4' /** * Set the components of a vec3 to the given values * @ignore * @param out the receiving vector * @param x X component * @param y Y component * @param z Z component * @returns out */ export function set(out: Vec3, x: number, y: number, z: number)...
/content/code_sandbox/src/core/util/vec3.ts
xml
2016-02-03T02:41:32
2024-08-15T16:51:49
maptalks.js
maptalks/maptalks.js
4,272
1,444
```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 { ComponentFixture, TestBed } from "@angular/core/testing"; import { MatDialogModule } from "@angular/material/dialog"; import { Act...
/content/code_sandbox/experimental/traffic-portal/src/app/core/cdns/cdn-detail/cdn-detail.component.spec.ts
xml
2016-09-02T07:00:06
2024-08-16T03:50:21
trafficcontrol
apache/trafficcontrol
1,043
777
```xml import * as React from 'react'; import { styled } from '../../Utilities'; import { OverlayBase } from './Overlay.base'; import { getStyles } from './Overlay.styles'; import type { IOverlayProps, IOverlayStyleProps, IOverlayStyles } from './Overlay.types'; export const Overlay: React.FunctionComponent<IOverlayPr...
/content/code_sandbox/packages/react/src/components/Overlay/Overlay.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
105
```xml import * as React from 'react'; import createSvgIcon from '../utils/createSvgIcon'; const QuickNoteIcon = createSvgIcon({ svg: ({ classes }) => ( <svg xmlns="path_to_url" viewBox="0 0 2048 2048" className={classes.svg} focusable="false"> <path d="M1920 128v1792H640l-512-512V128h1792zM640 1739v-331H3...
/content/code_sandbox/packages/react-icons-mdl2/src/components/QuickNoteIcon.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
150
```xml /* * Squidex Headless CMS * * @license */ import { Meta, moduleMetadata, StoryObj } from '@storybook/angular'; import { map, Observable, timer } from 'rxjs'; import { AutocompleteComponent, AutocompleteSource, LocalizerService, RootViewComponent } from '@app/framework'; const TRANSLATIONS = { 'common.s...
/content/code_sandbox/frontend/src/app/framework/angular/forms/editors/autocomplete.stories.ts
xml
2016-08-29T05:53:40
2024-08-16T17:39:38
squidex
Squidex/squidex
2,222
545
```xml // See LICENSE.txt for license information. // ******************************************************************* // - [#] indicates a test step (e.g. # Go to a screen) // - [*] indicates an assertion (e.g. * Check the title) // - Use element testID when selecting an element. Create one if none. // ***********...
/content/code_sandbox/detox/e2e/test/messaging/message_post.e2e.ts
xml
2016-10-07T16:52:32
2024-08-16T12:08:38
mattermost-mobile
mattermost/mattermost-mobile
2,155
855
```xml <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="path_to_url"> <item android:state_activated="true" android:drawable="@color/tab_bar_underline" /> <item android:drawable="@android:color/transparent"/> </selector> ```
/content/code_sandbox/sample/src/main/res/drawable/tab_bar_underline_selector.xml
xml
2016-10-06T22:42:42
2024-08-16T18:32:58
lottie-android
airbnb/lottie-android
34,892
63
```xml import {getAncestors} from '../../src/utils/getAncestors'; test('returns an array of ancestors', () => { expect( getAncestors( [ {id: '0', parentId: null}, {id: '1', parentId: '0'}, {id: '2', parentId: '1'}, ], '2', ), ).toEqual([ {id: '1', parentId: '0'...
/content/code_sandbox/packages/react/test/unit/getAncestors.test.ts
xml
2016-03-29T17:00:47
2024-08-16T16:29:40
floating-ui
floating-ui/floating-ui
29,450
112
```xml import type { BrowserWindowNotifier } from "@Core/BrowserWindowNotifier"; import type { SettingsManager } from "@Core/SettingsManager"; import type { FavoriteManager as FavoriteManagerInterface } from "./Contract"; export class FavoriteManager implements FavoriteManagerInterface { private readonly settingKe...
/content/code_sandbox/src/main/Core/FavoriteManager/FavoriteManager.ts
xml
2016-10-11T04:59:52
2024-08-16T11:53:31
ueli
oliverschwendener/ueli
3,543
292
```xml export {BreakpointObserverOverviewExample} from './breakpoint-observer-overview/breakpoint-observer-overview-example'; ```
/content/code_sandbox/src/components-examples/cdk/layout/index.ts
xml
2016-01-04T18:50:02
2024-08-16T11:21:13
components
angular/components
24,263
26
```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 {DOCUMENT} from '@angular/common'; import {Inject, Injectable, OnDestroy, APP_ID, inject} from '@angular/core'; import {Platform} from '@angular/cdk/platform'; imp...
/content/code_sandbox/src/cdk/a11y/aria-describer/aria-describer.ts
xml
2016-01-04T18:50:02
2024-08-16T11:21:13
components
angular/components
24,263
2,580
```xml import { expect } from 'chai'; import sinon from 'sinon'; import { testInjector } from '@stryker-mutator/test-helpers'; import { schema } from '@stryker-mutator/api/core'; import { HtmlReporter } from '../../../src/reporters/html-reporter.js'; import { reporterUtil } from '../../../src/reporters/reporter-util.j...
/content/code_sandbox/packages/core/test/unit/reporters/html-reporter.spec.ts
xml
2016-02-12T13:14:28
2024-08-15T18:38:25
stryker-js
stryker-mutator/stryker-js
2,561
640
```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. --> <!-- COMPLETED (7) Color the primary and secondary text appropriately --> <!-- COMPLETED...
/content/code_sandbox/S12.01-Solution-DimensionsColorsAndFonts/app/src/main/res/layout/forecast_list_item.xml
xml
2016-11-02T04:42:26
2024-08-12T19:38:06
ud851-Sunshine
udacity/ud851-Sunshine
1,999
837
```xml import * as pulumi from "@pulumi/pulumi"; export class FailsOnDelete extends pulumi.CustomResource { constructor(name: string, opts?: pulumi.CustomResourceOptions) { super("testprovider:index:FailsOnDelete", name, {}, opts); } } ```
/content/code_sandbox/tests/integration/deleted_with/nodejs/failsOnDelete.ts
xml
2016-10-31T21:02:47
2024-08-16T19:47:04
pulumi
pulumi/pulumi
20,743
57
```xml import Html from 'slate-html-serializer'; import { TextJSON, InlineJSON, Value, Node as SlateNode, BlockJSON, DocumentJSON, Mark, NodeJSON, MarkJSON, Block, } from 'slate'; import React from 'react'; import BaseMarkPlugins from './base-mark-plugins'; import TemplatePlugins, { VARIABLE_TYPE }...
/content/code_sandbox/app/src/components/composer-editor/conversion.tsx
xml
2016-10-13T06:45:50
2024-08-16T18:14:37
Mailspring
Foundry376/Mailspring
15,331
3,826
```xml import { ALMOST_ALL_MAIL } from '@proton/shared/lib/mail/mailSettings'; import { mockUseFolders, mockUseLabels, mockUseMailSettings } from '@proton/testing/index'; import { mockUseScheduleSendFeature } from 'proton-mail/helpers/test/mockUseScheduleSendFeature'; import { useLocationFieldOptions } from './useLoc...
/content/code_sandbox/applications/mail/src/app/components/header/search/AdvancedSearchFields/useLocationFieldOptions.test.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
548
```xml <ResourceDictionary xmlns="path_to_url" xmlns:x="path_to_url" xmlns:iconPacks="using:MahApps.Metro.IconPacks" xmlns:converter="using:MahApps.Metro.IconPacks.Converter"> <ControlTemplate x:Key="MahApps.Templates.PackIconPixelartIcons" TargetType="ic...
/content/code_sandbox/src/MahApps.Metro.IconPacks.PixelartIcons/Themes/UAP/PackIconPixelartIcons.xaml
xml
2016-07-17T00:10:12
2024-08-16T16:16:36
MahApps.Metro.IconPacks
MahApps/MahApps.Metro.IconPacks
1,748
588
```xml <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="path_to_url"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="debug|x64"> <Configuration>debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfigura...
/content/code_sandbox/APEX_1.4/snippets/compiler/vc14win64-PhysX_3.4/SnippetResourcesLoading.vcxproj
xml
2016-10-12T16:34:31
2024-08-16T09:40:38
PhysX-3.4
NVIDIAGameWorks/PhysX-3.4
2,343
4,500
```xml <?xml version="1.0" encoding="UTF-8"?> <!-- * 2023 and later: Unicode, Inc. and others. --> <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>com.ibm.icu</groupId> <artifactId>icu4j-root</artifactId...
/content/code_sandbox/icu4j/main/common_tests/pom.xml
xml
2016-01-08T02:42:32
2024-08-16T18:14:55
icu
unicode-org/icu
2,693
851
```xml import React from 'react'; import { Text, StyleSheet, Platform, BackHandler as RNBackHandler, BackHandlerStatic as RNBackHandlerStatic, } from 'react-native'; import { act, fireEvent, render } from '@testing-library/react-native'; import Dialog from '../../components/Dialog/Dialog'; import Button fro...
/content/code_sandbox/src/components/__tests__/Dialog.test.tsx
xml
2016-10-19T05:56:53
2024-08-16T08:48:04
react-native-paper
callstack/react-native-paper
12,646
1,100