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 React, { FunctionComponent } from "react"; const MessagesBubbleSquareStarIcon: FunctionComponent = () => { // path_to_url return ( <svg viewBox="0 0 24 24" xmlns="path_to_url"> <path d="M8.223 19.9 3.75 23.25v-4.5h-1.5a1.5 1.5 0 0 1 -1.5 -1.5v-15a1.5 1.5 0 0 1 1.5 -1.5h19.5a1.5 1.5 ...
/content/code_sandbox/client/src/core/client/ui/components/icons/MessagesBubbleSquareStarIcon.tsx
xml
2016-10-31T16:14:05
2024-08-06T16:15:57
talk
coralproject/talk
1,881
424
```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> <!-- Default colors and dimens per Material Design guidelines (Last update: May 2016 re...
/content/code_sandbox/material-design-dimens/src/main/res/values-sw600dp/dimens.xml
xml
2016-05-08T18:56:18
2024-08-07T21:41:38
material-design-dimens
DmitryMalkovich/material-design-dimens
1,349
166
```xml import 'reflect-metadata'; import { assert } from 'chai'; import { ServiceIdentifiers } from '../../../src/container/ServiceIdentifiers'; import { IArrayUtils } from '../../../src/interfaces/utils/IArrayUtils'; import { IInversifyContainerFacade } from '../../../src/interfaces/container/IInversifyContainerFac...
/content/code_sandbox/test/unit-tests/utils/ArrayUtils.spec.ts
xml
2016-05-09T08:16:53
2024-08-16T19:43:07
javascript-obfuscator
javascript-obfuscator/javascript-obfuscator
13,358
2,100
```xml import * as React from 'react'; import { Animated, ColorValue, EasingFunction, Platform, StyleProp, StyleSheet, View, ViewStyle, } from 'react-native'; import useLatestCallback from 'use-latest-callback'; import BottomNavigationBar from './BottomNavigationBar'; import BottomNavigationRouteScree...
/content/code_sandbox/src/components/BottomNavigation/BottomNavigation.tsx
xml
2016-10-19T05:56:53
2024-08-16T08:48:04
react-native-paper
callstack/react-native-paper
12,646
4,971
```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.web.app.ui.serverlogviewer.LogDownloadOptionsWindow" ...
/content/code_sandbox/modules/web/src/com/haulmont/cuba/web/app/ui/serverlogviewer/log-download-options.xml
xml
2016-03-24T07:55:56
2024-07-14T05:13:48
cuba
cuba-platform/cuba
1,342
269
```xml import { PerformanceObserver } from 'perf_hooks' import { warn } from '../../build/output/log' import { bold } from '../picocolors' const LONG_RUNNING_GC_THRESHOLD_MS = 15 const gcEvents: PerformanceEntry[] = [] const obs = new PerformanceObserver((list) => { const entry = list.getEntries()[0] gcEvents.pus...
/content/code_sandbox/packages/next/src/lib/memory/gc-observer.ts
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
238
```xml import * as pulumi from "@pulumi/pulumi"; class FooResource extends pulumi.ComponentResource { constructor(name: string, opts?: pulumi.ComponentResourceOptions) { super("my:module:FooResource", name, {}, opts); } } class ComponentResource extends pulumi.ComponentResource { constructor(name...
/content/code_sandbox/tests/integration/aliases/nodejs/rename_component_child/step2/index.ts
xml
2016-10-31T21:02:47
2024-08-16T19:47:04
pulumi
pulumi/pulumi
20,743
125
```xml // Styles import './VStepper.sass' // Components import { VStepperSymbol } from './shared' import { makeVStepperActionsProps, VStepperActions } from './VStepperActions' import { VStepperHeader } from './VStepperHeader' import { VStepperItem } from './VStepperItem' import { VStepperWindow } from './VStepperWindo...
/content/code_sandbox/packages/vuetify/src/components/VStepper/VStepper.tsx
xml
2016-09-12T00:39:35
2024-08-16T20:06:39
vuetify
vuetifyjs/vuetify
39,539
1,402
```xml import React from 'react' import styles from './Bio.module.css' import { getGravatarURL } from '../utils/getGravatarURL' interface BioProps { className?: string } function Bio(props: BioProps) { let photoURL = getGravatarURL({ email: "test1@example.com", size: 56, }) return ( <div cl...
/content/code_sandbox/examples/blog-typescript/src/components/Bio.tsx
xml
2016-09-24T07:44:26
2024-07-11T14:52:12
navi
frontarm/navi
2,070
254
```xml import { describe, expect, it, vi } from 'vitest'; import type { JsPackageManager } from 'storybook/internal/common'; import type { StorybookConfig } from 'storybook/internal/types'; import * as findUp from 'find-up'; import * as rendererHelpers from '../helpers/detectRenderer'; import { newFrameworks } from ...
/content/code_sandbox/code/lib/cli-storybook/src/automigrate/fixes/new-frameworks.test.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
4,902
```xml import { ChangeDetectionStrategy, Component } from '@angular/core'; import { Car } from '@domain/car'; import { Code } from '@domain/code'; import { CarService } from '@service/carservice'; interface Column { field: string; header: string; } @Component({ selector: 'virtual-scroll-doc', template...
/content/code_sandbox/src/app/showcase/doc/table/virtualscrolldoc.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
1,312
```xml import * as React from 'react'; import Attributes from 'shared/view/domain/ModelRecord/ModelRecordProps/Attributes/Attributes/Attributes'; import { IRow } from '../types'; interface ILocalProps { row: IRow; } type AllProps = ILocalProps; class AttributesColumn extends React.PureComponent<AllProps> { pub...
/content/code_sandbox/webapp/client/src/features/experimentRuns/view/ExperimentRuns/Table/ColumnDefinitions/Attributes/AttributesColumn.tsx
xml
2016-10-19T01:07:26
2024-08-14T03:53:55
modeldb
VertaAI/modeldb
1,689
116
```xml <?xml version="1.0" encoding="utf-8"?> <layout xmlns:android="path_to_url" xmlns:app="path_to_url" xmlns:tools="path_to_url"> <data> <variable name="item" type="com.topjohnwu.magisk.view.TappableHeadlineItem" /> <variable name="listener" ...
/content/code_sandbox/app/apk/src/main/res/layout/item_tappable_headline.xml
xml
2016-09-08T12:42:53
2024-08-16T19:41:25
Magisk
topjohnwu/Magisk
46,424
528
```xml export interface NgSwAdapter { newRequest(req: string | Request, init?: Object): Request; newResponse(body: string | Blob, init?: Object): Response; readonly scope: string; } export interface Clock { dateNow(): number; setTimeout(fn: Function, delay: number); } export class BrowserClock implements Cl...
/content/code_sandbox/service-worker/worker/src/worker/facade/adapter.ts
xml
2016-01-25T17:36:44
2024-08-15T10:53:22
mobile-toolkit
angular/mobile-toolkit
1,336
106
```xml import { UnavailabilityError } from 'expo-modules-core'; type ShareOptions = { title?: string; text?: string; url?: string }; export default { async isAvailableAsync(): Promise<boolean> { if (typeof navigator === 'undefined') { return false; } return !!navigator.share; }, async shareAs...
/content/code_sandbox/packages/expo-sharing/src/ExpoSharing.web.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
138
```xml <?xml version="1.0" encoding="utf-8"?> <resources> <string name="about_android">%1$s Android-forrit</string> <string name="about_title">Um hugbnainn</string> <string name="about_version">tgfa %1$s</string> <string name="about_version_with_build">tgfa %1$s, byggingarnmer %2$s</string> <strin...
/content/code_sandbox/app/src/main/res/values-is/strings.xml
xml
2016-06-06T21:23:36
2024-08-16T18:22:36
android
nextcloud/android
4,122
21,708
```xml import { tokens, Injector, commonTokens, PluginContext } from '@stryker-mutator/api/plugin'; import { disableTypeChecks } from '@stryker-mutator/instrumenter'; import { coreTokens } from '../di/index.js'; import { TSConfigPreprocessor } from './ts-config-preprocessor.js'; import { FilePreprocessor } from './f...
/content/code_sandbox/packages/core/src/sandbox/create-preprocessor.ts
xml
2016-02-12T13:14:28
2024-08-15T18:38:25
stryker-js
stryker-mutator/stryker-js
2,561
184
```xml import { AsyncLocalStorage } from 'node:async_hooks' import type { RequestStore } from '../../client/components/request-async-storage.external' import type { StaticGenerationStore } from '../../client/components/static-generation-async-storage.external' import type { IncrementalCache } from './incremental-cache'...
/content/code_sandbox/packages/next/src/server/lib/patch-fetch.test.ts
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
692
```xml import typeDefs from './graphql/typeDefs'; import resolvers from './graphql/resolvers'; import * as permissions from './permissions'; import { setupMessageConsumers } from './messageBroker'; import { getSubdomain } from '@erxes/api-utils/src/core'; import { generateModels } from './connectionResolver'; import l...
/content/code_sandbox/packages/plugin-pricing-api/src/configs.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
196
```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="ja" original="../LocalizableSt...
/content/code_sandbox/src/Cli/dotnet/commands/dotnet-publish/xlf/LocalizableStrings.ja.xlf
xml
2016-07-22T21:26:02
2024-08-16T17:23:58
sdk
dotnet/sdk
2,627
677
```xml <beans xmlns="path_to_url" xmlns:xsi="path_to_url" xmlns:context="path_to_url" xsi:schemaLocation=" path_to_url path_to_url path_to_url path_to_url"> <bean class="com.ctrip.platform.dal.dao.client.DalTransactionalEnabler"/> <context:component-scan ba...
/content/code_sandbox/dal-client/src/test/resources/transactionAbnormalTest.xml
xml
2016-07-26T03:07:03
2024-08-12T03:28:05
dal
ctripcorp/dal
1,246
137
```xml import { DecryptedPayloadInterface, EncryptedPayloadInterface, KeySystemRootKeyInterface, ItemsKeyInterface, RootKeyInterface, KeySystemItemsKeyInterface, } from '@standardnotes/models' export interface AbstractKeySplit<T = EncryptedPayloadInterface | DecryptedPayloadInterface> { usesRootKey?: { ...
/content/code_sandbox/packages/encryption/src/Domain/Split/AbstractKeySplit.ts
xml
2016-12-05T23:31:33
2024-08-16T06:51:19
app
standardnotes/app
5,180
185
```xml import * as _ from "lodash"; import { sendContactsMessage, sendCoreMessage, sendProductsMessage } from "../messageBroker"; export const getConfig = async (subdomain, code, defaultValue?) => { return await sendCoreMessage({ subdomain, action: "getConfig", data: { code, defaultValue }, isR...
/content/code_sandbox/packages/plugin-productplaces-api/src/utils/utils.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
1,600
```xml <?xml version="1.0" encoding="utf-8"?> <layout> <data> <import type="android.view.View" /> <import type="com.eventyay.organizer.utils.DateUtils" /> <import type="android.text.TextUtils"/> <variable name="user" type="com.eventyay.organizer.data.user...
/content/code_sandbox/app/src/main/res/layout/organizer_detail_layout.xml
xml
2016-08-13T08:08:39
2024-08-06T13:58:48
open-event-organizer-android
fossasia/open-event-organizer-android
1,783
2,098
```xml <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.journaldev.mockito.powermock</groupId> <artifactId>Mockito-PowerMock-Examples</artifactId> <version>0.0.1-SNAPSHOT</version> <properties> <testng.version>6....
/content/code_sandbox/Mockito-PowerMock-Examples/pom.xml
xml
2016-05-02T05:43:21
2024-08-16T06:51:39
journaldev
WebJournal/journaldev
1,314
921
```xml <?xml version="1.0" encoding="UTF-8"?> <definitions id="definitions" xmlns="path_to_url" xmlns:activiti="path_to_url" targetNamespace="Examples"> <process id="transactionProcess"> <startEvent id="start" /> <sequenceFlow sourceRef="start" targetRef="tx" /> <transaction id="tx"> <startEven...
/content/code_sandbox/modules/flowable5-test/src/test/resources/org/activiti/engine/test/bpmn/subprocess/transaction/TransactionSubProcessTest.testNestedCancelInner.bpmn20.xml
xml
2016-10-13T07:21:43
2024-08-16T15:23:14
flowable-engine
flowable/flowable-engine
7,715
1,379
```xml <manifest xmlns:android="path_to_url" package="xiaofei.library.hermeseventbus"> <application android:label="@string/app_name"> <service android:name="HermesEventBus$Service"/> </application> </manifest> ```
/content/code_sandbox/hermes-eventbus/src/main/AndroidManifest.xml
xml
2016-07-11T13:52:10
2024-08-15T11:36:01
HermesEventBus
Xiaofei-it/HermesEventBus
1,611
58
```xml import { observer } from "mobx-react"; import { CloseIcon, BackIcon } from "outline-icons"; import { transparentize } from "polished"; import * as React from "react"; import { useTranslation } from "react-i18next"; import { Dialog, DialogBackdrop, useDialogState } from "reakit/Dialog"; import styled, { DefaultTh...
/content/code_sandbox/app/components/Modal.tsx
xml
2016-05-22T21:31:47
2024-08-16T19:57:22
outline
outline/outline
26,751
1,689
```xml <vector xmlns:android="path_to_url" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:pathData="m4,4c-1.657,0 -3,1.343 -3,3v10c0,1.657 1.343,3 3,3 0.552,0 1,-0.448 1,-1s-0.448,-1 -1,-1 -1,-0.448 -1,-1v-10c0,-0.552 0.448,-1 1,-...
/content/code_sandbox/app/src/main/res/drawable/ic_video_join.xml
xml
2016-05-04T11:46:20
2024-08-15T16:29:10
android
meganz/android
1,537
648
```xml /* * one or more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. */ import {shallow} from 'enzyme'; import EmptyState from './EmptyState'; it('should render properly', () => { const node = shallow( <EmptyState ...
/content/code_sandbox/optimize/client/src/modules/components/EmptyState/EmptyState.test.tsx
xml
2016-03-20T03:38:04
2024-08-16T19:59:58
camunda
camunda/camunda
3,172
197
```xml /* * @license Identity * file except in compliance with the proprietary license. */ import styled from "styled-components"; import { TableContainer } from "@carbon/react"; import { layer01, productiveHeading01, spacing04 } from "@carbon/themes"; export const NoDataContainer = styled.div` padding: ${spacin...
/content/code_sandbox/identity/client/src/components/entityList/components.tsx
xml
2016-03-20T03:38:04
2024-08-16T19:59:58
camunda
camunda/camunda
3,172
210
```xml import { HttpErrorResponse } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { BehaviorSubject, Subject } from 'rxjs'; @Injectable({ providedIn: 'root' }) export class HttpErrorReporterService { private _reporter$ = new Subject<HttpErrorResponse>(); private _errors$ = new Beh...
/content/code_sandbox/npm/ng-packs/packages/core/src/lib/services/http-error-reporter.service.ts
xml
2016-12-03T22:56:24
2024-08-16T16:24:05
abp
abpframework/abp
12,657
156
```xml export default interface IAppDataFolderExistsOutput { isError: boolean; errorMessage: string; folderExists: boolean; } ```
/content/code_sandbox/samples/react-followed-drag-and-drop-grid/src/webparts/model/IAppDataFolderExistsOutput.ts
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
28
```xml <resources> <!-- Default screen margins, per the Android Design guidelines. --> <dimen name="nav_header_vertical_spacing">10dp</dimen> <dimen name="nav_header_height">160dp</dimen> <!-- Default screen margins, per the Android Design guidelines. --> <dimen name="activity_horizontal_margin">16d...
/content/code_sandbox/app/src/main/res/values/dimens.xml
xml
2016-03-13T05:16:32
2024-04-29T09:08:01
RxJavaApp
jiang111/RxJavaApp
1,045
113
```xml export class SecretVerificationRequest { masterPasswordHash: string; otp: string; authRequestAccessCode: string; } ```
/content/code_sandbox/libs/common/src/auth/models/request/secret-verification.request.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
28
```xml export default function Home() { return <h1>This is the HOME page</h1>; } ```
/content/code_sandbox/examples/with-prefetching/pages/index.tsx
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
22
```xml import { INotebookModel, NotebookPanel, NotebookToCModel } from '@jupyterlab/notebook'; import { Context } from '@jupyterlab/docregistry'; import { NBTestUtils } from '@jupyterlab/notebook/lib/testutils'; import { Sanitizer } from '@jupyterlab/apputils'; import { signalToPromise } from '@jupyterlab/testin...
/content/code_sandbox/packages/notebook/test/toc.spec.ts
xml
2016-06-03T20:09:17
2024-08-16T19:12:44
jupyterlab
jupyterlab/jupyterlab
14,019
583
```xml import {Store} from "@tsed/core"; import {INJECTABLE_PROP} from "../constants/constants.js"; import type {InjectableProperties} from "../interfaces/InjectableProperties.js"; import {InjectablePropertyType} from "../domain/InjectablePropertyType.js"; /** * Return value from Configuration. * * ## Example * *...
/content/code_sandbox/packages/di/src/common/decorators/value.ts
xml
2016-02-21T18:38:47
2024-08-14T21:19:48
tsed
tsedio/tsed
2,817
313
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net8.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> <AWSProjectType>Lambda</AWSProjectType> <!-- This p...
/content/code_sandbox/Blueprints/BlueprintDefinitions/vs2022/SimpleS3FunctionServerless/template/src/BlueprintBaseName.1/BlueprintBaseName.1.csproj
xml
2016-11-11T20:43:34
2024-08-15T16:57:53
aws-lambda-dotnet
aws/aws-lambda-dotnet
1,558
252
```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 /// <reference types="@stdlib/types"/> import * as random from '@stdlib/types/random'...
/content/code_sandbox/lib/node_modules/@stdlib/random/base/minstd-shuffle/docs/types/index.d.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
1,189
```xml /* eslint-disable @typescript-eslint/no-explicit-any */ import registerDownloader, { download, Options } from 'electron-dl'; import { inject, injectable } from 'inversify'; import _ from 'lodash'; import * as Youtube from '@nuclear/core/src/rest/Youtube'; import { StreamQuery } from '@nuclear/core/src/plugins/pl...
/content/code_sandbox/packages/main/src/services/download/index.ts
xml
2016-09-22T22:58:21
2024-08-16T15:47:39
nuclear
nukeop/nuclear
11,862
360
```xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="path_to_url" android:id="@+id/insert_filename_holder" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="@dimen/activity_margin"> <com.simplemobiletoo...
/content/code_sandbox/app/src/main/res/layout/dialog_insert_filename.xml
xml
2016-07-12T20:06:21
2024-08-16T13:08:21
Simple-File-Manager
SimpleMobileTools/Simple-File-Manager
1,490
384
```xml import { Account } from '../models/account' /** Get the auth key for the user. */ export function getKeyForAccount(account: Account): string { return getKeyForEndpoint(account.endpoint) } /** Get the auth key for the endpoint. */ export function getKeyForEndpoint(endpoint: string): string { const appName =...
/content/code_sandbox/app/src/lib/auth.ts
xml
2016-05-11T15:59:00
2024-08-16T17:00:41
desktop
desktop/desktop
19,544
88
```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" tools:context="org.jak_linux.dns66.main.DNSFragment"> <include...
/content/code_sandbox/app/src/main/res/layout/fragment_dns.xml
xml
2016-10-15T15:27:17
2024-08-16T06:53:53
dns66
julian-klode/dns66
2,104
139
```xml <Grid x:Class="Telegram.Controls.Cells.SharedLinkCell" xmlns="path_to_url" xmlns:x="path_to_url" xmlns:local="using:Telegram.Controls.Items" xmlns:controls="using:Telegram.Controls" xmlns:d="path_to_url" xmlns:mc="path_to_url" mc:Ignorable="d" d:DesignHeight="300" ...
/content/code_sandbox/Telegram/Controls/Cells/SharedLinkCell.xaml
xml
2016-05-23T09:03:33
2024-08-16T16:17:48
Unigram
UnigramDev/Unigram
3,744
419
```xml import * as React from 'react'; import { Autofill } from '../../Autofill'; import type { IPickerItemProps } from './PickerItem.types'; import type { IReactProps, IRefObject, IStyleFunctionOrObject } from '../../Utilities'; import type { ISuggestionModel, ISuggestionsProps } from './Suggestions/Suggestions.types'...
/content/code_sandbox/packages/react/src/components/pickers/BasePicker.types.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
2,578
```xml import { mergeClasses } from '@expo/styleguide'; import { ELEMENT_SPACING, STYLES_SECONDARY } from './styles'; import { DefaultPropsDefinitionData, PropData, PropsDefinitionData, TypeDefinitionData, } from '~/components/plugins/api/APIDataTypes'; import { APISectionDeprecationNote } from '~/components/...
/content/code_sandbox/docs/components/plugins/api/APISectionProps.tsx
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
1,527
```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="zh-Hant" original="../Localiza...
/content/code_sandbox/src/Cli/dotnet/commands/dotnet-workload/repair/xlf/LocalizableStrings.zh-Hant.xlf
xml
2016-07-22T21:26:02
2024-08-16T17:23:58
sdk
dotnet/sdk
2,627
372
```xml import type { DialogProps } from '@fluentui/react-dialog'; import type { PresenceMotionSlotProps } from '@fluentui/react-motion'; import type { ComponentProps, ComponentState, Slot } from '@fluentui/react-utilities'; import type { DrawerMotionParams, OverlayDrawerSurfaceMotionParams } from '../../shared/drawerM...
/content/code_sandbox/packages/react-components/react-drawer/library/src/components/OverlayDrawer/OverlayDrawer.types.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
355
```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>${PRODUCT_NAME}</string> <key>CFBundleExecutable</key> <string>${EXECUTABLE...
/content/code_sandbox/framework/SwiftOCR/GPUImage-master/examples/iOS/FeatureExtractionTest/FeatureExtractionTest/FeatureExtractionTest-Info.plist
xml
2016-04-22T08:39:02
2024-08-16T08:32:39
SwiftOCR
NMAC427/SwiftOCR
4,616
459
```xml import { execAsync } from '@expo/osascript'; import spawnAsync from '@expo/spawn-async'; import { SimulatorAppPrerequisite } from '../SimulatorAppPrerequisite'; jest.mock(`../../../../log`); it(`detects that Simulator.app is installed`, async () => { // Mock Simulator.app installed for CI jest .mocked...
/content/code_sandbox/packages/@expo/cli/src/start/doctor/apple/__tests__/SimulatorAppPrerequisite-test.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
371
```xml import * as path from "path" import * as semver from "semver" import * as fs from "fs" import * as lockfile from "proper-lockfile" import {spawn} from "child_process" import * as zmq from "../../src" console.log(`ZeroMQ version ${zmq.version}`) if (semver.satisfies(zmq.version, ">= 4.2")) { /* Stop pending ...
/content/code_sandbox/test/unit/helpers.ts
xml
2016-02-04T04:42:22
2024-08-15T08:36:05
zeromq.js
zeromq/zeromq.js
1,440
1,801
```xml <clickhouse> <http_authentication_servers> <basic_server> <uri>path_to_url <connection_timeout_ms>1000</connection_timeout_ms> <receive_timeout_ms>1000</receive_timeout_ms> <send_timeout_ms>1000</send_timeout_ms> <max_tries>3</max_tries> <re...
/content/code_sandbox/tests/integration/test_external_http_authenticator/configs/config.xml
xml
2016-06-02T08:28:18
2024-08-16T18:39:33
ClickHouse
ClickHouse/ClickHouse
36,234
138
```xml <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="path_to_url" xmlns:app="path_to_url" android:id="@+id/small_window_layout" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:theme="@style/MyThemeBlue"> <F...
/content/code_sandbox/app/src/main/res/layout/float_lyric_view.xml
xml
2016-04-09T15:47:45
2024-08-14T04:30:04
MusicLake
caiyonglong/MusicLake
2,654
1,277
```xml <?xml version="1.0" encoding="UTF-8"?> <countries> <country id="4" alpha2="af" alpha3="afg" name="Afganistan"/> <country id="248" alpha2="ax" alpha3="ala" name="Insulele land"/> <country id="8" alpha2="al" alpha3="alb" name="Albania"/> <country id="12" alpha2="dz" alpha3="dza" name="Algeria"/> ...
/content/code_sandbox/data/countries/ro/world.xml
xml
2016-01-27T21:41:04
2024-08-16T10:07:17
world_countries
stefangabos/world_countries
1,364
6,020
```xml import { HeadlessSuperConverter } from '@/Components/SuperEditor/Tools/HeadlessSuperConverter' const InitialHTML = `<div> <h1>This is a demo of Super notes</h1> <p><br></p> <p>Super notes are our new <b>rich text</b> experience. With Super notes, you can create <b>rich</b>, <i>dynamic</i> text with powerful ...
/content/code_sandbox/packages/web/src/javascripts/Components/PremiumFeaturesModal/Subviews/SuperDemoInitialValue.ts
xml
2016-12-05T23:31:33
2024-08-16T06:51:19
app
standardnotes/app
5,180
1,716
```xml import { RequestResponseChannels, RequestChannels } from './ipc-shared' // eslint-disable-next-line no-restricted-imports import { ipcRenderer, IpcRendererEvent } from 'electron' /** * Send a message to the main process via channel and expect a result * asynchronously. This is the equivalent of ipcRenderer.in...
/content/code_sandbox/app/src/lib/ipc-renderer.ts
xml
2016-05-11T15:59:00
2024-08-16T17:00:41
desktop
desktop/desktop
19,544
558
```xml import { Subject, filter, firstValueFrom, map, merge, timeout } from "rxjs"; import { PinServiceAbstraction, PinService, InternalUserDecryptionOptionsServiceAbstraction, UserDecryptionOptionsService, AuthRequestServiceAbstraction, AuthRequestService, LoginEmailServiceAbstraction, LogoutReason, }...
/content/code_sandbox/apps/browser/src/background/main.background.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
13,516
```xml jest.mock('toolkit/extension/features/feature'); import { POSStyleCurrencyEntryMode } from '.'; import { createYnabGlobalStructureMock } from './__mocks__/currency-formatter'; import { POSStyleParser } from './pos-style-parser'; export interface YnabGlobalHasWebinstance { YNABSharedLibWebInstance: YNABSharedL...
/content/code_sandbox/src/extension/features/general/pos-style-currency-entry-mode/pos-style-parser.test.ts
xml
2016-01-03T05:38:10
2024-08-13T16:08:09
toolkit-for-ynab
toolkit-for-ynab/toolkit-for-ynab
1,418
982
```xml import { PrismaClient } from '@prisma/client'; import { JobTitleLabels } from '../src/components/shared/JobTitles'; const prisma = new PrismaClient(); type QuestionCreateData = Parameters< typeof prisma.questionsQuestion.create >[0]['data']; function selectRandomRole() { const roles = Object.keys(JobTitl...
/content/code_sandbox/apps/portal/prisma/seed-questions.ts
xml
2016-07-05T05:00:48
2024-08-16T19:01:19
tech-interview-handbook
yangshun/tech-interview-handbook
115,302
1,527
```xml export class AttachmentRequest { fileName: string; key: string; fileSize: number; adminRequest: boolean; } ```
/content/code_sandbox/libs/common/src/vault/models/request/attachment.request.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
28
```xml import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'; import { authURL } from '~/data/api'; import { IAuthMethodList } from '~/types/Auth'; export const authProvidersApi = createApi({ reducerPath: 'providers', baseQuery: fetchBaseQuery({ baseUrl: authURL }), tagTypes: ['Provider'...
/content/code_sandbox/ui/src/app/auth/authApi.ts
xml
2016-11-05T00:09:07
2024-08-16T13:44:10
flipt
flipt-io/flipt
3,489
166
```xml <Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <DefaultItemExcludes>$(DefaultItemExcludes);**\node_modules\**;node_modules\**</DefaultItemExcludes> <TargetFramework>net6.0</TargetFramework> <AssemblyName>Unosquare.PassCore.Web</AssemblyName> <PackageId>Unosquare.PassCore.Web</PackageId> <TypeSc...
/content/code_sandbox/src/Unosquare.PassCore.Web/Unosquare.PassCore.Web.csproj
xml
2016-01-07T21:36:00
2024-08-16T09:03:42
passcore
unosquare/passcore
1,030
881
```xml /** * @license * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, ...
/content/code_sandbox/packages/mdc-ripple/foundation.ts
xml
2016-12-05T16:04:09
2024-08-16T15:42:22
material-components-web
material-components/material-components-web
17,119
4,485
```xml import { ResponsiveRadar } from '@nivo/radar' import { generateWinesTastes } from '@nivo/generators' import { useChart } from '../hooks' const props = { indexBy: 'taste', margin: { top: 60, right: 80, bottom: 20, left: 80 }, } export function Radar() { const [data] = useChart(generateWinesTastes) retu...
/content/code_sandbox/examples/codesandbox/src/charts/Radar.tsx
xml
2016-04-16T03:27:56
2024-08-16T03:38:37
nivo
plouc/nivo
13,010
110
```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 CONDI...
/content/code_sandbox/js/src/util/chunk.ts
xml
2016-02-17T08:00:23
2024-08-16T19:00:48
arrow
apache/arrow
14,094
1,410
```xml <?xml version="1.0" encoding="utf-8"?> <resources> <string name="library_name">Xamarin.Forms.Platform.Android.AppLinks</string> </resources> ```
/content/code_sandbox/Xamarin.Forms.Platform.Android.AppLinks/Resources/values/Strings.xml
xml
2016-03-18T15:52:03
2024-08-16T16:25:43
Xamarin.Forms
xamarin/Xamarin.Forms
5,637
39
```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"> <process id="sim...
/content/code_sandbox/modules/flowable-rest/src/test/resources/org/flowable/rest/service/api/legacy/StartProcessInstanceResourceTest.testStartInstanceWithVariables.bpmn20.xml
xml
2016-10-13T07:21:43
2024-08-16T15:23:14
flowable-engine
flowable/flowable-engine
7,715
222
```xml import * as shiki from 'shiki'; import { JSDOM } from 'jsdom'; import { visit } from 'unist-util-visit'; import theme from './theme.json'; const dom = new JSDOM(); const document = dom.window.document; /** * Some langs are highlighted with different grammar rules but need to be displayed */ const LANG_REPLAC...
/content/code_sandbox/docs/highlight.ts
xml
2016-07-30T01:10:44
2024-08-16T10:19:58
vee-validate
logaretm/vee-validate
10,699
1,030
```xml import { Repository } from '../core/repository'; import { DirectRepositoryCreateGroupThreadResponseRootObject, DirectRepositoryGetPresenceResponseRootObject, DirectRepositoryRankedRecipientsResponseRootObject, } from '../responses'; export class DirectRepository extends Repository { public async createG...
/content/code_sandbox/src/repositories/direct.repository.ts
xml
2016-06-09T12:14:48
2024-08-16T10:07:22
instagram-private-api
dilame/instagram-private-api
5,877
364
```xml /* * * See the LICENSE file at the top-level directory of this distribution * for licensing information. * * Unless otherwise agreed in a custom licensing agreement with the Lisk Foundation, * no part of this software, including this file, may be copied, modified, * propagated, or distributed except accor...
/content/code_sandbox/elements/lisk-p2p/test/functional/maximum_payload.spec.ts
xml
2016-02-01T21:45:35
2024-08-15T19:16:48
lisk-sdk
LiskArchive/lisk-sdk
2,721
708
```xml import { matches, mock } from "jest-mock-extended"; import { BehaviorSubject, of } from "rxjs"; import { UserDecryptionOptionsServiceAbstraction } from "@bitwarden/auth/common"; import { UserDecryptionOptions } from "../../../../auth/src/common/models/domain/user-decryption-options"; import { FakeAccountServic...
/content/code_sandbox/libs/common/src/auth/services/device-trust.service.spec.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
6,518
```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. --> <selector xmlns:android="path_to_url"> <item android:color="?attr/colorOnSurface"/> </sele...
/content/code_sandbox/lib/java/com/google/android/material/timepicker/res/color-night/material_timepicker_modebutton_tint.xml
xml
2016-12-05T16:11:29
2024-08-16T17:51:42
material-components-android
material-components/material-components-android
16,176
76
```xml import {css, html, LitElement, PropertyValues} from "lit"; import {customElement, property, state} from "lit/decorators.js"; import {ErrorObject} from "ajv"; import { Actions, configReducer, CoreActions, coreReducer, createAjv, Dispatch, generateDefaultUISchema, generateJsonSchema...
/content/code_sandbox/ui/component/or-json-forms/src/index.ts
xml
2016-02-03T11:14:02
2024-08-16T12:45:50
openremote
openremote/openremote
1,184
1,221
```xml import {PluginInputHandler} from "./index"; import Msg from "../../models/msg"; import Chan from "../../models/chan"; import {MessageType} from "../../../shared/types/msg"; import {ChanType} from "../../../shared/types/chan"; const commands = ["query", "msg", "say"]; function getTarget(cmd: string, args: strin...
/content/code_sandbox/server/plugins/inputs/msg.ts
xml
2016-02-09T03:16:03
2024-08-16T10:52:38
thelounge
thelounge/thelounge
5,518
732
```xml import Koa from "koa"; import {PlatformKoaSettings} from "./PlatformKoaSettings.js"; export * from "./PlatformKoaSettings.js"; declare global { namespace TsED { export interface Configuration { /** * Configuration related to Koa platform application. */ koa: PlatformKoaSettings;...
/content/code_sandbox/packages/platform/platform-koa/src/interfaces/interfaces.ts
xml
2016-02-21T18:38:47
2024-08-14T21:19:48
tsed
tsedio/tsed
2,817
84
```xml import { beforeEach, describe, expect, it } from 'bun:test'; import { getDefaultConfig } from '../../generator/config/defaultConfig'; import { loadFileIconDefinitions } from '../../generator/fileGenerator'; import type { Config } from '../../models/icons/config'; import type { FileIcons } from '../../models/icon...
/content/code_sandbox/src/core/tests/icons/fileIcons.test.ts
xml
2016-09-09T20:41:42
2024-08-16T07:38:46
vscode-material-icon-theme
material-extensions/vscode-material-icon-theme
2,007
2,049
```xml import cn from "classnames"; import React, { FunctionComponent, HTMLAttributes } from "react"; import { withStyles } from "coral-ui/hocs"; import styles from "./Navigation.css"; interface Props extends HTMLAttributes<any> { className?: string; classes: typeof styles; children?: React.ReactNode; } const...
/content/code_sandbox/client/src/core/client/ui/components/v2/SubBar/Navigation.tsx
xml
2016-10-31T16:14:05
2024-08-06T16:15:57
talk
coralproject/talk
1,881
129
```xml <manifest xmlns:android="path_to_url" package="com.vincent.filepicker"> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <application android:allowBackup="true" android:suppor...
/content/code_sandbox/filepicker/src/main/AndroidManifest.xml
xml
2016-10-26T08:46:20
2024-08-02T07:35:09
MultiType-FilePicker
fishwjy/MultiType-FilePicker
1,398
326
```xml <vector xmlns:android="path_to_url" android:height="34.0dp" android:tint="?attr/colorControlNormal" android:viewportHeight="15" android:viewportWidth="15" android:width="34.0dp"> <path android:fillColor="@android:color/white" android:pathData="M12 0C13 0 13 0 13 1L13 14C13 15 13 15 12 15L3 15C2 15 2 15 2 14L...
/content/code_sandbox/app/src/main/res/drawable/ic_preset_temaki_vending_venus.xml
xml
2016-07-02T10:44:04
2024-08-16T18:55:54
StreetComplete
streetcomplete/StreetComplete
3,781
684
```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 /// <reference types="@stdlib/types"/> import { Collection } from '@stdlib/types/arra...
/content/code_sandbox/lib/node_modules/@stdlib/math/strided/special/cbrt-by/docs/types/index.d.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
1,910
```xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="path_to_url" android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center" android:orientation="horizontal"> <TextView android:id="@+id/txt" android:layout_width="wrap_cont...
/content/code_sandbox/app/src/main/res/layout/item.xml
xml
2016-11-30T10:14:50
2024-08-12T19:26:20
SwissArmyKnife
android-notes/SwissArmyKnife
1,346
166
```xml import {Component} from '@angular/core'; import {MatRadioModule} from '@angular/material/radio'; /** * @title Basic radios */ @Component({ selector: 'radio-overview-example', templateUrl: 'radio-overview-example.html', styleUrl: 'radio-overview-example.css', standalone: true, imports: [MatRadioModul...
/content/code_sandbox/src/components-examples/material/radio/radio-overview/radio-overview-example.ts
xml
2016-01-04T18:50:02
2024-08-16T11:21:13
components
angular/components
24,263
83
```xml <?xml version="1.0" encoding="UTF-8"?> <!-- 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 --> <!DOCTYPE suite SYSTEM "path_to_url" > <suite name="testerina-intg-test-suite"...
/content/code_sandbox/tests/testerina-integration-test/src/test/resources/testng.xml
xml
2016-11-16T14:58:44
2024-08-15T15:15:21
ballerina-lang
ballerina-platform/ballerina-lang
3,561
786
```xml import { exists, isArray, isNode, isNullOrUndefined, isObject, isObjectAndNotArrayNotNode, } from './common-utils'; import { DeepPartial } from '../models'; export function deepMerge<T>( target: DeepPartial<T> | T, source: DeepPartial<T> | T, ): DeepPartial<T> | T { if (isObjectAndNotArrayNotN...
/content/code_sandbox/npm/ng-packs/packages/core/src/lib/utils/object-utils.ts
xml
2016-12-03T22:56:24
2024-08-16T16:24:05
abp
abpframework/abp
12,657
450
```xml export interface BeforeInit { $beforeInit(): void | Promise<any>; } ```
/content/code_sandbox/packages/platform/common/src/interfaces/BeforeInit.ts
xml
2016-02-21T18:38:47
2024-08-14T21:19:48
tsed
tsedio/tsed
2,817
17
```xml export interface CacheEntry<T> { status: number; value: T; } export interface Filter { [key: string]: number; } export interface Sort { sort: 'Time' | 'Size' | 'SnoozeTime'; desc: boolean; } export interface SearchParameters { address?: string; from?: string; to?: string; k...
/content/code_sandbox/applications/mail/src/app/models/tools.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
100
```xml <?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout xmlns:android="path_to_url" xmlns:app="path_to_url" xmlns:tools="path_to_url" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" tools:context...
/content/code_sandbox/app/src/main/res/layout/activity_stock.xml
xml
2016-07-22T19:30:16
2024-08-15T11:03:14
PinnedSectionItemDecoration
oubowu/PinnedSectionItemDecoration
2,083
223
```xml import { TestBed } from '@angular/core/testing'; import { Component } from '@angular/core'; import { NoopAnimationsModule } from '@angular/platform-browser/animations'; import { bubble } from '../../../../../../src/app/data'; import { APP_BASE_HREF } from '@angular/common'; import { BubbleChartModule } from '....
/content/code_sandbox/projects/swimlane/ngx-charts/src/lib/bubble-chart/bubble-chart.component.spec.ts
xml
2016-07-22T15:58:41
2024-08-02T15:56:24
ngx-charts
swimlane/ngx-charts
4,284
399
```xml <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="path_to_url"> <item android:title="@string/menu_1" android:icon="@drawable/ic_apps_black_24dp" /> <item android:title="@string/menu_2" android:icon="@drawable/ic_maps_local_bar" /> <item android:titl...
/content/code_sandbox/demo/src/main/res/menu/bottom_navigation_menu_5.xml
xml
2016-03-17T12:17:56
2024-08-16T05:12:20
ahbottomnavigation
aurelhubert/ahbottomnavigation
3,836
155
```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 FLOAT64_NINF = require( './index' ); // TESTS // // The export is a number... { // eslint-disable-next-...
/content/code_sandbox/lib/node_modules/@stdlib/constants/float64/ninf/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
101
```xml export * from './element.js'; export * from './event.js'; export * from './event-target.js'; export * from './hydrate.js'; export * from './node.js'; export * from './options.js'; export * from './utils.js'; ```
/content/code_sandbox/packages/miniapp-runtime/src/interface/index.ts
xml
2016-11-03T06:59:15
2024-08-16T10:11:29
ice
alibaba/ice
17,815
51
```xml import {test, expect} from 'vitest'; import toLines from './index.js'; test('should return an array for empty input', () => { expect((toLines as () => string[])()).toStrictEqual([]); }); test('should return an array for null input', () => { expect((toLines as (input: any) => string[])(null)).toStrictEqual([...
/content/code_sandbox/@commitlint/to-lines/src/index.test.ts
xml
2016-02-12T08:37:56
2024-08-16T13:28:33
commitlint
conventional-changelog/commitlint
16,499
189
```xml <epp xmlns="urn:ietf:params:xml:ns:epp-1.0"> <command> <update> <domain:update xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"> <domain:name>example.tld</domain:name> <domain:add> <domain:ns> <domain:hostObj>ns2.example.foo</domain:hostObj> </do...
/content/code_sandbox/core/src/test/resources/google/registry/flows/domain/domain_update_metadata.xml
xml
2016-02-29T20:16:48
2024-08-15T19:49:29
nomulus
google/nomulus
1,685
214
```xml // path_to_url import { XmlComponent } from "@file/xml-components"; // <xsd:group name="EG_RunInnerContent"> // ... // <xsd:element name="br" type="CT_Br"/> // <xsd:complexType name="CT_Br"> // <xsd:attribute name="type" type="ST_BrType" use="optional"/> // <xsd:attribute name="clear" type="ST_BrCl...
/content/code_sandbox/src/file/paragraph/run/break.ts
xml
2016-03-26T23:43:56
2024-08-16T13:02:47
docx
dolanmiu/docx
4,139
280
```xml import { GameObject } from '../serialize/GameObject.js'; import { PhysicsEngine, PhysicsEngineOptions } from './PhysicsEngine.js'; import P2, { BodyOptions, CircleOptions } from 'p2'; interface P2PhysicsEngineOptions extends PhysicsEngineOptions { dt?: number } /** * P2PhysicsEngine is a three-dimensional...
/content/code_sandbox/src/physics/P2PhysicsEngine.ts
xml
2016-06-10T12:58:57
2024-08-15T07:16:18
lance
lance-gg/lance
1,570
395
```xml import type { BaseAnnotations } from 'storybook/internal/types'; import { type ReactRenderer, type StoryContext } from './public-types'; export const mount: BaseAnnotations<ReactRenderer>['mount'] = (context: StoryContext) => async (ui) => { if (ui != null) { context.originalStoryFn = () => ui; ...
/content/code_sandbox/code/renderers/react/src/mount.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
90
```xml // The Apollo Client source that is published to npm is prepared via // config/prepareDist.js. // // If a release is being manually published, npm run build (which in turn runs // prepareDist.js via postbuild script) performs all of the necessary processing // to prepare the release. However, if a release is bei...
/content/code_sandbox/config/prepareChangesetsRelease.ts
xml
2016-02-26T20:25:00
2024-08-16T10:56:57
apollo-client
apollographql/apollo-client
19,304
376
```xml import { ICommandBarStyleProps, ICommandBarStyles } from '@fluentui/react/lib/CommandBar'; import * as StyleConstants from '../Constants'; import { IExtendedSemanticColors } from '../IExtendedSemanticColors'; export const CommandBarStyles = (props: ICommandBarStyleProps): Partial<ICommandBarStyles> => { const...
/content/code_sandbox/packages/azure-themes/src/azure/styles/CommandBar.styles.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
164
```xml import { Flex, Heading } from "@chakra-ui/react"; export const Hero = ({ title }: { title: string }) => ( <Flex justifyContent="center" alignItems="center" height="100vh" bgGradient="linear(to-l, heroGradientStart, heroGradientEnd)" bgClip="text" > <Heading fontSize="6vw">{title}</He...
/content/code_sandbox/examples/with-chakra-ui/src/components/Hero.tsx
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
105