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 type CognitiveServicesAudioOutputFormat = | 'audio-16khz-128kbitrate-mono-mp3' | 'audio-16khz-32kbitrate-mono-mp3' | 'audio-16khz-64kbitrate-mono-mp3' | 'audio-24khz-160kbitrate-mono-mp3' | 'audio-24khz-48kbitrate-mono-mp3' | 'audio-24khz-96kbitrate-mono-mp3' | 'audio-48khz-192kbitrate-mono-mp3' ...
/content/code_sandbox/packages/bundle/src/types/CognitiveServicesAudioOutputFormat.ts
xml
2016-07-07T23:16:57
2024-08-16T00:12:37
BotFramework-WebChat
microsoft/BotFramework-WebChat
1,567
451
```xml // See LICENSE in the project root for license information. import type { ISpecChange } from '../parsing/compareSpec'; export const displaySpecChanges = (specChanges: Map<string, ISpecChange>, dep: string): string => { switch (specChanges.get(dep)?.type) { case 'add': return '[Added by .pnpmfile.cj...
/content/code_sandbox/apps/lockfile-explorer-web/src/helpers/displaySpecChanges.ts
xml
2016-09-30T00:28:20
2024-08-16T18:54:35
rushstack
microsoft/rushstack
5,790
127
```xml import * as React from 'react'; import { CdsTag as Tag } from '@cds/core/tag'; import '@cds/core/tag/register'; import { createComponent } from '@lit-labs/react'; import { logReactVersion } from '../utils/index.js'; export const CdsTag = createComponent(React, 'cds-tag', Tag, {}, 'CdsTag'); logReactVersion(Rea...
/content/code_sandbox/packages/react/src/tag/index.tsx
xml
2016-09-29T17:24:17
2024-08-11T17:06:15
clarity
vmware-archive/clarity
6,431
86
```xml import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { CalendarDemo } from './calendardemo'; @NgModule({ imports: [RouterModule.forChild([{ path: '', component: CalendarDemo }])], exports: [RouterModule] }) export class CalendarDemoRoutingModule {} ```
/content/code_sandbox/src/app/showcase/pages/calendar/calendardemo-routing.module.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
63
```xml import { gql } from "@apollo/client" const chatMessageInserted = gql` subscription chatMessageInserted($chatId: String!) { chatMessageInserted(chatId: $chatId) { _id content createdUser { _id email details { avatar fullName } } ...
/content/code_sandbox/exm-web/modules/feed/graphql/subscriptions.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
175
```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 mapBy2 = require( './index' ); /** * Accessor callback. * * @returns accessed values */ function accessor(...
/content/code_sandbox/lib/node_modules/@stdlib/strided/base/map-by2/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
7,941
```xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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" tools:context="com.hitomi.fungamerefreshdemo.ListViewActivity"> <!-- app:m...
/content/code_sandbox/fungamerefreshdemo/src/main/res/layout/activity_list_view.xml
xml
2016-03-01T07:28:09
2024-08-16T02:11:49
FunGameRefresh
Hitomis/FunGameRefresh
1,326
230
```xml import * as React from 'react'; import * as ReactDom from 'react-dom'; import { Version } from '@microsoft/sp-core-library'; import { IPropertyPaneConfiguration, PropertyPaneTextField, PropertyPaneToggle } from '@microsoft/sp-property-pane'; import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base...
/content/code_sandbox/samples/react-myonedrive/src/webparts/myonedrivefiles/MyonedrivefilesWebPart.ts
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
711
```xml import type Client from '../../util/client'; import { parseArguments } from '../../util/get-args'; import getProjectByCwdOrLink from '../../util/projects/get-project-by-cwd-or-link'; import handleError from '../../util/handle-error'; import { isErrnoException } from '@vercel/error-utils'; import ms from 'ms'; im...
/content/code_sandbox/packages/cli/src/commands/rollback/index.ts
xml
2016-09-09T01:12:08
2024-08-16T17:39:45
vercel
vercel/vercel
12,545
537
```xml <?xml version="1.0" encoding="utf-8"?> Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. --> <selector xmlns:android="path_to_url"> <item android:state_activated="true" android:drawable="@color/bookmark_drawer_selected_background_color" /> ...
/content/code_sandbox/libraries_res/chrome_res/src/main/res/drawable/bookmark_drawer_item_background.xml
xml
2016-07-04T07:28:36
2024-08-15T05:20:42
AndroidChromium
JackyAndroid/AndroidChromium
3,090
91
```xml import type { Configuration } from '@rspack/core'; const getAssetsRule = () => { const assetsRule = [ [/\.woff2?$/], [/\.ttf$/], [/\.eot$/], [/\.svg$/], [/\.(png|jpg|webp|jpeg|gif)$/i], ]; const queryRules = [{ resourceQuery: /raw/, type: 'asset/source', }, { resourceQuery: /url/, ...
/content/code_sandbox/packages/rspack-config/src/assetsRule.ts
xml
2016-11-03T06:59:15
2024-08-16T10:11:29
ice
alibaba/ice
17,815
216
```xml /** * Disposable interface. * * @public * {@docCategory IDisposable} */ export interface IDisposable { dispose: () => void; } ```
/content/code_sandbox/packages/utilities/src/IDisposable.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
30
```xml import * as React from 'react'; import { Placeholder } from "@pnp/spfx-controls-react/lib/Placeholder"; import { MessageBar, MessageBarType, MessageBarButton } from 'office-ui-fabric-react'; import { IAdaptiveCardHostProps } from './IAdaptiveCardHostProps'; import { AppContext } from '../../services/AppContext...
/content/code_sandbox/samples/react-adaptivecards-hooks/src/controls/AdaptiveCardHost/AdaptiveCardHost.tsx
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
772
```xml import { ISchema } from '../../core/nodeSchema'; import { htmlEntitiesToUnicode } from '../../helpers/entities'; import { ASTNode, ASTType } from '../../interfaces/AST'; import { ITransformer } from '../../interfaces/ITransformer'; //const Factories: { [key: string]: () => ASTNode } = {}; function createJSXFac...
/content/code_sandbox/src/compiler/transformers/shared/JSXTransformer.ts
xml
2016-10-28T10:37:16
2024-07-27T15:17:43
fuse-box
fuse-box/fuse-box
4,003
1,443
```xml import * as React from 'react'; import { mount } from '@cypress/react'; import root from 'react-shadow'; import { useFocusVisible } from './useFocusVisible'; import { FOCUS_VISIBLE_ATTR } from '../focus/constants'; describe('useFocusVisible', () => { it('should apply focus visible attribute elements in an ope...
/content/code_sandbox/packages/react-components/react-tabster/src/hooks/useFocusVisible.cy.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
595
```xml import * as React from 'react' import { ScaleDiverging, ScaleQuantize, ScaleSequential } from 'd3-scale' import { CompleteTheme, ValueFormat } from '@nivo/core' import { SymbolProps } from './svg/symbols/types' /** * This can be used to add effect on legends on interaction. */ type EffectProps = { on: 'ho...
/content/code_sandbox/packages/legends/src/types.ts
xml
2016-04-16T03:27:56
2024-08-16T03:38:37
nivo
plouc/nivo
13,010
1,052
```xml export default defineNuxtPlugin(async () => { await new Promise(resolve => setTimeout(resolve, 1)) useNuxtApp() }) ```
/content/code_sandbox/test/fixtures/basic-types/modules/runtime/plugin.ts
xml
2016-10-26T11:18:47
2024-08-16T19:32:46
nuxt
nuxt/nuxt
53,705
30
```xml import React, { useState } from "react"; /** * ActiveDescendant is the id of the current active selection, which needs to be passed to `aria-activedescendant` prop */ export type ActiveDescendant = string | undefined; /** EventHandlers are the ones that should be passed to the TextField */ export interface E...
/content/code_sandbox/client/src/core/client/ui/hooks/useComboBox.ts
xml
2016-10-31T16:14:05
2024-08-06T16:15:57
talk
coralproject/talk
1,881
770
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>net8.0</TargetFramework> <LangVersion>latest</LangVersion> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <...
/content/code_sandbox/backend/src/Squidex.Domain.Apps.Entities.MongoDb/Squidex.Domain.Apps.Entities.MongoDb.csproj
xml
2016-08-29T05:53:40
2024-08-16T17:39:38
squidex
Squidex/squidex
2,222
491
```xml import { useContext } from 'react'; import { RaRecord } from '../../types'; import { CreateContext } from './CreateContext'; import { CreateControllerResult } from './useCreateController'; /** * Hook to read the create controller props from the CreateContext. * * Used within a <CreateContextProvider> (e.g. ...
/content/code_sandbox/packages/ra-core/src/controller/create/useCreateContext.tsx
xml
2016-07-13T07:58:54
2024-08-16T18:32:27
react-admin
marmelab/react-admin
24,624
174
```xml import { defineComponent, h, ExtractPropTypes } from 'vue' export const LoadingIndicatorProps = { width: { type: String, default: '1.6rem' }, height: { type: String, default: '1rem' }, gap: { type: String, default: '1rem' }, radius: { type: String, default: '1px' ...
/content/code_sandbox/src/components/common/loading-indicator/index.ts
xml
2016-09-23T02:02:33
2024-08-16T03:13:52
surmon.me
surmon-china/surmon.me
2,092
404
```xml <?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="path_to_url"> <item android:state_pressed="false" android:state_selected="false" android:drawable="@color/cellback" /> <item android:state_pressed="true" > <shape> <gradient android:startColor="#...
/content/code_sandbox/Xamarin.Forms.ControlGallery.Android/Resources/drawable/CustomSelector.xml
xml
2016-03-18T15:52:03
2024-08-16T16:25:43
Xamarin.Forms
xamarin/Xamarin.Forms
5,637
145
```xml /** * This file is part of OpenMediaVault. * * @license path_to_url GPL Version 3 * @author Volker Theile <volker.theile@openmediavault.org> * * OpenMediaVault is free software: you can redistribute it and/or modify * any later version. * * OpenMediaVault is distributed in the hope that it will be ...
/content/code_sandbox/deb/openmediavault/workbench/src/app/core/components/intuition/models/tabs-page-config.type.ts
xml
2016-05-03T10:35:34
2024-08-16T08:03:04
openmediavault
openmediavault/openmediavault
4,954
375
```xml import { TemplateRef } from '@angular/core'; import { MenuItem } from 'primeng/api'; import { Breadcrumb } from './breadcrumb'; /** * Defines valid templates in Breadcumb. * @group Templates */ export interface BreadcumbTemplates { /** * Custom template of item. */ item(context: { /...
/content/code_sandbox/src/app/components/breadcrumb/breadcrumb.interface.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
176
```xml /************************************************************* * * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ /** * @fileoverview Implements the CommonMmultiscripts wrapper...
/content/code_sandbox/ts/output/common/Wrappers/mmultiscripts.ts
xml
2016-02-23T09:52:03
2024-08-16T04:46:50
MathJax-src
mathjax/MathJax-src
2,017
2,598
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net6.0</TargetFramework> </PropertyGroup> <PropertyGroup> <AssemblyName>Roslynator.Testing.Console</AssemblyName> <RootNamespace>Roslynator.Testing</RootNamespace> </PropertyGroup> <ItemGr...
/content/code_sandbox/src/Tests/TestConsole/TestConsole.csproj
xml
2016-04-26T18:51:53
2024-08-16T05:58:36
roslynator
dotnet/roslynator
3,030
118
```xml import { bind } from 'decko'; import React from 'react'; import ChartConfigDropdown, { IOption, } from 'shared/view/elements/ChartConfigDropdown/ChartConfigDropdown'; import { listAverage, listCount, listMedian, listStdev, listSum, listVariance, } from 'shared/utils/statMethods/AggregationTypes'; ...
/content/code_sandbox/webapp/client/src/pages/authorized/ProjectsPages/ProjectDetailsPages/ChartsPage/Charts/AggregationChart/AggregationChartManager.tsx
xml
2016-10-19T01:07:26
2024-08-14T03:53:55
modeldb
VertaAI/modeldb
1,689
2,133
```xml import { PrimaryGeneratedColumn } from "../../../../src/decorator/columns/PrimaryGeneratedColumn" import { Column } from "../../../../src/decorator/columns/Column" import { TreeParent } from "../../../../src/decorator/tree/TreeParent" import { TreeChildren } from "../../../../src/decorator/tree/TreeChildren" imp...
/content/code_sandbox/test/github-issues/9534/entity/Category.ts
xml
2016-02-29T07:41:14
2024-08-16T18:28:52
typeorm
typeorm/typeorm
33,875
258
```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>author</key> <string>Ike Ku</string> <key>colorSpaceName</key> <string>sRGB</string> <key>name</key> <string>ayu</string> <key>semanticClass</key> <string>a...
/content/code_sandbox/widgets/Widget - ayu-dark.stTheme
xml
2016-09-15T12:39:36
2024-08-16T08:00:38
ayu
dempfi/ayu
4,258
717
```xml import { Injectable } from '@angular/core'; import { GetMonthViewArgs, MonthView, GetWeekViewHeaderArgs, WeekDay, GetWeekViewArgs, WeekView, getMonthView, getWeekViewHeader, getWeekView, } from 'calendar-utils'; import { DateAdapter } from '../../../date-adapters/date-adapter'; @Injectable() e...
/content/code_sandbox/projects/angular-calendar/src/modules/common/calendar-utils/calendar-utils.provider.ts
xml
2016-04-26T15:19:33
2024-08-08T14:23:40
angular-calendar
mattlewis92/angular-calendar
2,717
183
```xml <vector android:height="24dp" android:tint="#000000" android:viewportHeight="24" android:viewportWidth="24" android:width="24dp" xmlns:android="path_to_url"> <path android:fillColor="@android:color/white" android:pathData="M12,2C6.5,2 2,6.5 2,12s4.5,10 10,10s10,-4.5 10,-10S17.5,2 12,2zM16.2,16.2L11,1...
/content/code_sandbox/app/src/main/res/drawable/ic_hour.xml
xml
2016-08-21T09:18:13
2024-08-16T02:55:58
apkupdater
rumboalla/apkupdater
2,835
158
```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>NSExtension</key> <dict> <key>NSExtensionAttributes</key> <dict> <key>NSExtensionActivationRule</key> <dict> <key>NSExtensionActivationSupportsFileWithMaxCo...
/content/code_sandbox/ios/App/Floccus New Bookmark/Info.plist
xml
2016-06-04T23:37:43
2024-08-16T18:50:46
floccus
floccusaddon/floccus
5,473
327
```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. --> <android.support.design.widget.AppBarLayout xmlns:android="path_to_url" xmlns:app="pat...
/content/code_sandbox/sample/src/main/res/layout/toolbar_scroll.xml
xml
2016-11-02T00:49:15
2024-08-02T07:46:16
Album
yanzhenjie/Album
2,504
140
```xml import fs from 'fs'; import type { Server } from 'http'; import http from 'http'; import type { AddressInfo } from 'net'; import path from 'path'; import util from 'util'; import { BrowserLauncher, Configuration, launchPlaywright, PlaywrightLauncher } from '@crawlee/playwright'; // @ts-expect-error no types imp...
/content/code_sandbox/test/core/browser_launchers/playwright_launcher.test.ts
xml
2016-08-26T18:35:03
2024-08-16T16:40:08
crawlee
apify/crawlee
14,153
2,155
```xml import { PlacementEnum, AbstractExpression } from "./AbstractExpression"; import { TextAlignmentEnum } from "../../../Common/Enums/TextAlignment"; import { FontStyles } from "../../../Common/Enums/FontStyles"; export class UnknownExpression extends AbstractExpression { constructor(label: string, placement: ...
/content/code_sandbox/src/MusicalScore/VoiceData/Expressions/UnknownExpression.ts
xml
2016-02-08T15:47:01
2024-08-16T17:49:53
opensheetmusicdisplay
opensheetmusicdisplay/opensheetmusicdisplay
1,416
270
```xml <?xml version="1.0" encoding="utf-8"?> <resources> <integer name="translation_completeness">58</integer> </resources> ```
/content/code_sandbox/app/src/main/res/values-cy/translation_info.xml
xml
2016-07-02T10:44:04
2024-08-16T18:55:54
StreetComplete
streetcomplete/StreetComplete
3,781
35
```xml import { PrimaryGeneratedColumn } from "../../../../src" import { Entity } from "../../../../src" @Entity() export class Author { @PrimaryGeneratedColumn("uuid") id: string } ```
/content/code_sandbox/test/github-issues/3604/entity/Author.ts
xml
2016-02-29T07:41:14
2024-08-16T18:28:52
typeorm
typeorm/typeorm
33,875
39
```xml import React, { Fragment } from 'react'; import { EyeIcon } from '@storybook/icons'; import ListItem from './ListItem'; export default { component: ListItem, }; export const All = { render: () => ( <div> <ListItem loading /> <ListItem title="Default" /> <ListItem title="Default icon...
/content/code_sandbox/code/core/src/components/components/tooltip/ListItem.stories.tsx
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
1,573
```xml import { shuffle } from 'lodash'; import { Repository } from '../core/repository'; import Bluebird = require('bluebird'); export class SimulateService extends Repository { private get preLoginFlowRequests(): Array<() => any> { return [ () => this.client.account.readMsisdnHeader().catch(() => undefin...
/content/code_sandbox/src/services/simulate.service.ts
xml
2016-06-09T12:14:48
2024-08-16T10:07:22
instagram-private-api
dilame/instagram-private-api
5,877
847
```xml import { fetchCount, fetchData } from '../fetch-data' export default async function Home() { const data = await fetchData() return ( <h1> Dashboard {data} <div> Fetch Count: <span id="count">{fetchCount}</span> </div> </h1> ) } ```
/content/code_sandbox/test/e2e/app-dir/app-prefetch/app/prefetch-auto-route-groups/(dashboard)/page.tsx
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
71
```xml import { MessagingChannel } from '@botpress/messaging-client' import { getAdminKey, getMessagingURL } from './messaging_helpers' const messagingUrl = getMessagingURL() const adminKey = getAdminKey() async function main() { const channel = new MessagingChannel({ url: messagingUrl, adminKey }) const client =...
/content/code_sandbox/integrations/webchat/local/test_create_client.ts
xml
2016-11-16T21:57:59
2024-08-16T18:45:35
botpress
botpress/botpress
12,401
85
```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 { ArrayLike } from '@stdlib/types/array...
/content/code_sandbox/lib/node_modules/@stdlib/strided/base/binary/docs/types/index.d.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
1,436
```xml import EmptyState from '@erxes/ui/src/components/EmptyState'; import Spinner from '@erxes/ui/src/components/Spinner'; import { __ } from '@erxes/ui/src/utils'; import React from 'react'; import { Link } from 'react-router-dom'; import { INotification } from '../types'; import NotificationRow from './Notification...
/content/code_sandbox/packages/ui-notifications/src/components/NotificationsLatest.tsx
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
405
```xml import { customElement } from 'lit'; import { ClarityIcons } from '@cds/core/icon/icon.service.js'; import { minusIcon } from '@cds/core/icon/shapes/minus.js'; import { plusIcon } from '@cds/core/icon/shapes/plus.js'; import { CdaCounter } from './counter.element.js'; import '@cds/core/button/register.js'; impor...
/content/code_sandbox/apps/core-simple-devapp/src/counter/register.ts
xml
2016-09-29T17:24:17
2024-08-11T17:06:15
clarity
vmware-archive/clarity
6,431
147
```xml import 'reflect-metadata'; import request from 'supertest'; import accountsExpress from '../../../src/express-middleware'; import express from 'express'; function getApp(accountsServer: any, path?: string) { const router = accountsExpress(accountsServer as any, { path: path ?? '' }); const expressApp = expr...
/content/code_sandbox/packages/rest-express/__tests__/endpoints/password/add-email.ts
xml
2016-10-07T01:43:23
2024-07-14T11:57:08
accounts
accounts-js/accounts
1,492
574
```xml import * as compose from "lodash.flowright"; import { ISegment } from "@erxes/ui-segments/src/types"; import { QueryResponse } from "@erxes/ui/src/types"; import React from "react"; import { gql } from "@apollo/client"; import { graphql } from "@apollo/client/react/hoc"; import { queries as segmentQueries } fro...
/content/code_sandbox/packages/ui-automations/src/containers/forms/actions/AttriibutionForms.tsx
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
348
```xml import * as React from 'react'; import descriptionMd from './Description.md'; import { Flex, FlexItem, Provider, teamsTheme } from '@fluentui/react-northstar'; import { makeStyles } from '@fluentui/react-components'; import { Flex as FlexShim, flexItem } from '@fluentui/react-migration-v0-v9'; const useStyles =...
/content/code_sandbox/packages/react-components/react-migration-v0-v9/stories/src/Flex/index.stories.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
664
```xml export { default } from './ComponentBundleSizeExample'; ```
/content/code_sandbox/packages/fluentui/docs/src/components/ComponentDoc/ComponentBundleSizeExample/index.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
12
```xml export enum NotificationType { error = 1, warning = 2, info = 3, } export interface NotificationDTO { type: NotificationType; message: string; details?: any; request?: { method: string; url: string; statusCode: number; }; } ```
/content/code_sandbox/src/common/entities/NotificationDTO.ts
xml
2016-03-12T11:46:41
2024-08-16T19:56:44
pigallery2
bpatrik/pigallery2
1,727
68
```xml /** @jsx jsx */ import { Transforms } from 'slate' import { jsx } from '../../..' export const run = editor => { Transforms.move(editor, { edge: 'end', reverse: true, distance: 6 }) } export const input = ( <editor> <block> one <anchor /> two <focus /> three </block> </editor> ) ...
/content/code_sandbox/packages/slate/test/transforms/move/end/to-backward-reverse.tsx
xml
2016-06-18T01:52:42
2024-08-16T18:43:42
slate
ianstormtaylor/slate
29,492
125
```xml import { type FC } from 'react'; import { DropdownDebug } from 'proton-pass-extension/lib/components/Settings/debug/DropdownDebug'; import { NotificationDebug } from 'proton-pass-extension/lib/components/Settings/debug/NotificationDebug'; import { Button } from '@proton/atoms/Button'; import Icon from '@proton...
/content/code_sandbox/applications/pass-extension/src/app/pages/settings/Views/Developer.tsx
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
529
```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. --> <layout> <data> <variable name="users" type=...
/content/code_sandbox/DataBinding/DataBoundList/app/src/main/res/layout/activity_main.xml
xml
2016-03-08T22:27:22
2024-08-02T07:38:15
android-ui-toolkit-demos
googlearchive/android-ui-toolkit-demos
1,109
678
```xml /* * one or more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. */ import {Modal, DurationChart} from 'components'; import {t} from 'translation'; import { AnalysisProcessDefinitionParameters, OutlierNode, shou...
/content/code_sandbox/optimize/client/src/components/Analysis/TaskAnalysis/OutlierDetailsModal.tsx
xml
2016-03-20T03:38:04
2024-08-16T19:59:58
camunda
camunda/camunda
3,172
423
```xml import React from 'react'; import { observer } from 'mobx-react'; import { omit, filter, escapeRegExp } from 'lodash'; import { discreetWalletAmount } from '../../../features/discreet-mode/replacers/discreetWalletAmount'; import WalletsDropdownLabel from './WalletsDropdownLabel'; import { useDiscreetModeFeature ...
/content/code_sandbox/source/renderer/app/components/widgets/forms/WalletsDropdown.tsx
xml
2016-10-05T13:48:54
2024-08-13T22:03:19
daedalus
input-output-hk/daedalus
1,230
600
```xml import { program } from 'commander'; import { execaCommand } from 'execa'; import { existsSync } from 'fs'; import { copy, emptyDir, remove, writeFile } from 'fs-extra'; import { glob } from 'glob'; import { dirname, join, relative } from 'path'; import { temporaryDirectory } from '../../code/core/src/common/ut...
/content/code_sandbox/scripts/sandbox/publish.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
1,039
```xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="path_to_url" android:id="@+id/root" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <FrameLayout android:id="@+id/fragment_container" android:layo...
/content/code_sandbox/core-sample-app/src/main/res/layout/activity_fragment_example.xml
xml
2016-08-29T12:04:03
2024-08-16T13:03:46
android-youtube-player
PierfrancescoSoffritti/android-youtube-player
3,391
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 zeros = require( '@stdlib/ndarray/zeros' ); import strides = require( './index' ); // TESTS // // The fu...
/content/code_sandbox/lib/node_modules/@stdlib/ndarray/base/strides/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
548
```xml import { DialogModule } from "@angular/cdk/dialog"; import { CommonModule } from "@angular/common"; import { Component, NgZone, OnDestroy, OnInit } from "@angular/core"; import { ReactiveFormsModule, FormsModule } from "@angular/forms"; import { firstValueFrom } from "rxjs"; import { JslibModule } from "@bitwar...
/content/code_sandbox/apps/desktop/src/auth/two-factor-auth-duo.component.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
857
```xml export * from './Tooltip'; export { default as Tooltip } from './Tooltip'; ```
/content/code_sandbox/packages/components/components/tooltip/index.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
17
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFrameworks>$(NetToolMinimum);$(NetFrameworkToolCurrent)</TargetFrameworks> <IsPackable>true</IsPackable> <IsShippingPackage>true</IsShippingPackage> <IncludeBuildOutput>false</IncludeBuildOutput> <SuppressDependenciesWhenPacking>true...
/content/code_sandbox/src/Compatibility/ApiCompat/Microsoft.DotNet.ApiCompat.Task/Microsoft.DotNet.ApiCompat.Task.csproj
xml
2016-07-22T21:26:02
2024-08-16T17:23:58
sdk
dotnet/sdk
2,627
1,122
```xml import * as ngCore from "@angular/core"; import { BrowserModule } from "@angular/platform-browser"; import { AppComponent } from "./app-component"; declare const zoid: any; declare const MyLoginZoidComponent: any; const MyLoginZoidComponentModule = MyLoginZoidComponent.driver( "angular2", ngCore ); @ngCor...
/content/code_sandbox/demo/frameworks/angular2_TypeScript/app-module.ts
xml
2016-05-27T17:05:58
2024-08-13T09:22:20
zoid
krakenjs/zoid
2,003
115
```xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="path_to_url" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingTop="@dimen/dialog_vertical_margin" android:paddingBottom="@dimen/dialog_vertical_margin"...
/content/code_sandbox/app/src/main/res/layout/quest_lanes_select_lanes.xml
xml
2016-07-02T10:44:04
2024-08-16T18:55:54
StreetComplete
streetcomplete/StreetComplete
3,781
215
```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> <dimen name="dp_1">1dp</dimen> <dimen name="dp_10">10dp</dimen> <dimen...
/content/code_sandbox/sample/src/main/res/values/dimens.xml
xml
2016-09-11T05:17:34
2024-08-15T05:40:06
AndPermission
yanzhenjie/AndPermission
6,624
217
```xml import { Moment } from 'moment-timezone'; import React, { CSSProperties, FC } from 'react'; import { useTheme } from '@fluentui/react'; import { EventOccurrence } from 'model'; import { IViewCommands } from '../IViewCommands'; import { WeekInfo } from './Builder'; import { ContentRow } from './ContentRow'; impor...
/content/code_sandbox/samples/react-rhythm-of-business-calendar/src/components/views/month/Week.tsx
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
276
```xml type MessageProps = { children?: React.ReactNode; type: 'error' | 'loading' | 'no-data'; }; export default function Message({ children, type }: MessageProps): React.ReactElement { return <div className={`react-pdf__message react-pdf__message--${type}`}>{children}</div>; } ```
/content/code_sandbox/packages/react-pdf/src/Message.tsx
xml
2016-08-01T13:46:02
2024-08-16T16:54:44
react-pdf
wojtekmaj/react-pdf
9,159
68
```xml import * as vscode from "vscode"; export enum SystemColorTheme { Light = "Light", Dark = "Dark", } export class EditorColorThemesHelper { public static isAutoDetectColorSchemeEnabled(): boolean { return !!vscode.workspace.getConfiguration("window").get("autoDetectColorScheme"); } ...
/content/code_sandbox/src/common/editorColorThemesHelper.ts
xml
2016-01-20T21:10:07
2024-08-16T15:29:52
vscode-react-native
microsoft/vscode-react-native
2,617
198
```xml import { ComponentFixture, TestBed } from '@angular/core/testing'; import { VulnerabilityFilterComponent } from './vulnerability-filter.component'; import { OptionType } from '../security-hub.interface'; import { SharedTestingModule } from '../../../../../shared/shared.module'; import { NO_ERRORS_SCHEMA } from '...
/content/code_sandbox/src/portal/src/app/base/left-side-nav/interrogation-services/vulnerability-database/vulnerability-filter/vulnerability-filter.component.spec.ts
xml
2016-01-28T21:10:28
2024-08-16T15:28:34
harbor
goharbor/harbor
23,335
219
```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/dml/dataset/tbl/update_single_table.xml
xml
2016-01-18T12:49:26
2024-08-16T15:48:11
shardingsphere
apache/shardingsphere
19,707
223
```xml import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { MenubarDemo } from './menubardemo'; @NgModule({ imports: [RouterModule.forChild([{ path: '', component: MenubarDemo }])], exports: [RouterModule] }) export class MenubarDemoRoutingModule {} ```
/content/code_sandbox/src/app/showcase/pages/menubar/menubardemo-routing.module.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
66
```xml export function defaultTo<T>(value: T): (v: T | undefined) => T { return (v: T | undefined) => (v === undefined ? value : v); } type Obj = object; export type Nested<T, K extends keyof T> = T extends object ? Exclude<T[K], undefined> : never; export type NestedKey<T, K extends keyof T> = keyof Nested<T, K>...
/content/code_sandbox/packages/client/src/util/pipe.ts
xml
2016-05-16T10:42:22
2024-08-16T02:29:06
vscode-spell-checker
streetsidesoftware/vscode-spell-checker
1,377
927
```xml <?xml version="1.0" encoding="utf-8"?> <paths> <external-path name="images" path="Android/data/de.westnordost.streetcomplete.debug/files/Pictures" /> </paths> ```
/content/code_sandbox/app/src/debug/res/xml/file_paths.xml
xml
2016-07-02T10:44:04
2024-08-16T18:55:54
StreetComplete
streetcomplete/StreetComplete
3,781
47
```xml export * from './constants'; export * from './types'; // loadSite is NOT exported (see comment in file) ```
/content/code_sandbox/packages/public-docsite-setup/src/index.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
25
```xml import { getSnapshot, unprotect, recordPatches, types, IType, IJsonPatch, Instance, cast, IAnyModelType, IMSTMap } from "../../src" import { expect, test } from "bun:test" function testPatches<C, S, T extends object>( type: IType<C, S, T>, snapshot: C, fn: any, expectedPatches: IJson...
/content/code_sandbox/__tests__/core/recordPatches.test.ts
xml
2016-09-04T18:28:25
2024-08-16T08:48:55
mobx-state-tree
mobxjs/mobx-state-tree
6,917
1,991
```xml import type { Meta, StoryObj } from '@storybook/svelte'; import Button from './Button.svelte'; // More on how to set up stories at: path_to_url const meta: Meta<Button> = { title: 'Example/Button', component: Button, tags: ['autodocs'], argTypes: { backgroundColor: { control: 'color' }, size: {...
/content/code_sandbox/code/renderers/svelte/template/cli/ts-3-8/Button.stories.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
231
```xml <vector xmlns:android="path_to_url" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24" android:tint="#FFFFFF"> <path android:fillColor="@android:color/white" android:pathData="M4.25,5.61C6.27,8.2 10,13 10,13v6c0,0.55 0.45,1 1,1h2c0....
/content/code_sandbox/app/src/main/res/drawable/ic_filter_alt_24dp.xml
xml
2016-04-20T21:29:44
2024-08-16T16:14:46
mpv-android
mpv-android/mpv-android
1,964
204
```xml import { useField } from 'formik'; import { string } from 'yup'; import { getEnvironments } from '@/react/portainer/environments/environment.service'; import { useDebounce } from '@/react/hooks/useDebounce'; import { FormControl } from '@@/form-components/FormControl'; import { Input } from '@@/form-components...
/content/code_sandbox/app/react/portainer/environments/wizard/EnvironmentsCreationView/shared/NameField.tsx
xml
2016-05-19T20:15:28
2024-08-16T19:15:14
portainer
portainer/portainer
30,083
447
```xml <?xml version="1.0" encoding="utf-8"?> <resources xmlns:tools="path_to_url" tools:ignore="ImpliedQuantity, ExtraTranslation, MissingTranslation"> <!-- The name of the Device or Folder Sub State when its code is NO_SYNC_ERROR --> <string name="general_sync_no_error">No h erros de sincronizao</string> ...
/content/code_sandbox/shared/resources/src/main/res/values-pt/strings_shared.xml
xml
2016-05-04T11:46:20
2024-08-15T16:29:10
android
meganz/android
1,537
13,739
```xml <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="path_to_url"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <...
/content/code_sandbox/deps/boost_1_66_0/libs/icl/test/cmp_clang_ttp_passing2_/vc10_cmp_clang_ttp_passing2.vcxproj
xml
2016-09-05T10:18:44
2024-08-11T13:21:40
LiquidCore
LiquidPlayer/LiquidCore
1,010
1,338
```xml <vector xmlns:android="path_to_url" android:width="24dp" android:height="24dp" android:viewportWidth="24" android:viewportHeight="24"> <group> <clip-path android:pathData="M2,2h20v20h-20z"/> <path android:pathData="M12,22C17.523,22 22,17.523 22,12C22,6.477 17.523,2 12,2C...
/content/code_sandbox/app/src/main/res/drawable/ic_generator_filled.xml
xml
2016-04-30T16:43:17
2024-08-16T19:45:08
android
bitwarden/android
6,085
1,896
```xml export function platformMappingHandler(value) { const formattedString = value .substring(value?.lastIndexOf('{') + 1, value?.lastIndexOf('}') - 1) .replace(/ /g, '') .replace(/\r\n/g, ''); const platforms = formattedString.split(','); const platformTypes = { ios: '', android: '', web: '' }; ...
/content/code_sandbox/scripts/docgen/src/utils/platformMappingHandler.ts
xml
2016-09-08T14:21:41
2024-08-16T10:11:29
react-native-elements
react-native-elements/react-native-elements
24,875
208
```xml <?xml version="1.0" encoding="utf-8"?> <resources> <string name="action_cancel"></string> <string name="action_start"></string> <string name="action_stop"></string> <string name="notification_pending_text"></string> <string name="notification_started_text"></string> <string name="notific...
/content/code_sandbox/rxdownload4-notification/src/main/res/values-zh/strings.xml
xml
2016-10-28T04:13:42
2024-08-02T07:46:08
RxDownload
ssseasonnn/RxDownload
4,135
107
```xml export * from "./Base64ConversionModule"; ```
/content/code_sandbox/src/main/Extensions/Base64Conversion/index.ts
xml
2016-10-11T04:59:52
2024-08-16T11:53:31
ueli
oliverschwendener/ueli
3,543
10
```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 erfc = require( './index' ); // TESTS // // The function returns a number... { erfc( 8 ); // $ExpectTyp...
/content/code_sandbox/lib/node_modules/@stdlib/math/base/special/erfc/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
228
```xml import * as React from 'react'; import { Shadow } from './ShadowHelper'; import { VerticalStackBasicExample } from '../Stack/Stack.Vertical.Basic.Example'; export const ShadowDOMStackExample: React.FunctionComponent = () => { return ( <Shadow> <VerticalStackBasicExample /> </Shadow> ); }; ```
/content/code_sandbox/packages/react-examples/src/react/ShadowDOM/ShadowDOM.Stack.Example.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
70
```xml <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="path_to_url"> <ItemGroup> <ClInclude Include="..\..\test\plus_qq_test.cpp"> <Filter>qvm\test</Filter> </ClInclude> </ItemGroup> <ItemGroup> <Filter Include="qvm"> <UniqueIdentifier>{4B7B1E03-2AB4-05B2-07B8-4...
/content/code_sandbox/deps/boost_1_66_0/libs/qvm/bld/test/plus_qq_test.vcxproj.filters
xml
2016-09-05T10:18:44
2024-08-11T13:21:40
LiquidCore
LiquidPlayer/LiquidCore
1,010
176
```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. --> <LinearLayout xmlns:android="path_to_url" android:orientation="vertical" android:layout_wid...
/content/code_sandbox/app/src/main/res/layout/ab_header.xml
xml
2016-07-08T03:18:40
2024-08-14T02:54:51
talon-for-twitter-android
klinker24/talon-for-twitter-android
1,189
114
```xml <TS language="ru" version="2.1"> <context> <name>AddressBookPage</name> <message> <source>Right-click to edit address or label</source> <translation> </translation> </message> <message> <source>Create a new address</source> <translation> </translation> <...
/content/code_sandbox/src/qt/locale/verge_ru.ts
xml
2016-01-23T04:20:14
2024-08-13T18:07:31
verge
vergecurrency/verge
1,402
34,410
```xml <?xml version="1.0" encoding="UTF-8"?> <project name="VisualBench" default="help"> <!-- The local.properties file is created and updated by the 'android' tool. It contains the path to the SDK. It should *NOT* be checked into Version Control Systems. --> <property file="local.properties...
/content/code_sandbox/third_party/skia/platform_tools/android/visualbench/build.xml
xml
2016-09-27T03:41:10
2024-08-16T10:42:57
miniblink49
weolar/miniblink49
7,069
526
```xml <!-- LibreSprite --> <gui> <window id="file_selector" text=""> <vbox id="main"> <box horizontal="true"> <box horizontal="true" noborders="true"> <button text="" id="go_back_button" bevel="2 0 2 0" tooltip="Go back one folder" /> <button text="" id="go_forward_button" bevel="0 2 0 2"...
/content/code_sandbox/data/widgets/file_selector.xml
xml
2016-08-31T17:26:42
2024-08-16T11:45:24
LibreSprite
LibreSprite/LibreSprite
4,717
532
```xml export { List, listClassNames, renderList_unstable, useListStyles_unstable, useList_unstable } from './List'; export type { ListProps, ListSlots, ListState } from './List'; export { ListItem, listItemClassNames, renderListItem_unstable, useListItemStyles_unstable, useListItem_unstable, } from './ListI...
/content/code_sandbox/packages/react-components/react-migration-v0-v9/library/src/components/List/index.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
105
```xml import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { FormsModule } from '@angular/forms'; import { AvatarModule } from 'primeng/avatar'; import { BadgeModule } from 'primeng/badge'; import { AvatarGroupModule } from 'pr...
/content/code_sandbox/src/app/showcase/doc/avatar/avatardoc.module.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
347
```xml <controls:ContentPopup x:Class="Telegram.Views.Settings.Password.SettingsPasswordEmailCodePopup" xmlns="path_to_url" xmlns:x="path_to_url" xmlns:local="using:Telegram.Views.Popups" xmlns:controls="using:Telegram.Controls"...
/content/code_sandbox/Telegram/Views/Settings/Password/SettingsPasswordEmailCodePopup.xaml
xml
2016-05-23T09:03:33
2024-08-16T16:17:48
Unigram
UnigramDev/Unigram
3,744
436
```xml import { HeaderRuleActionType, QueryParamModificationType } from "types"; import { RewriteRuleActionType } from "./types"; export const rewriteRuleActionTypes: Record< number, RewriteRuleActionType | HeaderRuleActionType | QueryParamModificationType > = { 1: HeaderRuleActionType.ADD, 2: HeaderRuleAction...
/content/code_sandbox/app/src/modules/rule-adapters/charles-rule-adapters/rewrite/constants.ts
xml
2016-12-01T04:36:06
2024-08-16T19:12:19
requestly
requestly/requestly
2,121
175
```xml import { Component, NgZone } from "@angular/core"; import { ActivatedRoute } from "@angular/router"; import { GeneratorComponent as BaseGeneratorComponent } from "@bitwarden/angular/tools/generator/components/generator.component"; import { AccountService } from "@bitwarden/common/auth/abstractions/account.servi...
/content/code_sandbox/apps/web/src/app/tools/generator.component.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
481
```xml <?xml version="1.0"?> <robot name="turtlebot3_waffle_sim" xmlns:xacro="path_to_url"> <xacro:arg name="laser_visual" default="false"/> <xacro:arg name="camera_visual" default="false"/> <xacro:arg name="imu_visual" default="false"/> <gazebo reference="base_link"> <material>Gazebo/DarkGrey</materia...
/content/code_sandbox/turtlebot3_description/urdf/turtlebot3_waffle.gazebo.xacro
xml
2016-06-21T07:14:22
2024-08-16T09:12:21
turtlebot3
ROBOTIS-GIT/turtlebot3
1,457
1,868
```xml import {cleanObject, getValue} from "@tsed/core"; import {OperationVerbs} from "../../constants/OperationVerbs.js"; import {JsonMethodStore} from "../../domain/JsonMethodStore.js"; import {JsonMethodPath} from "../../domain/JsonOperation.js"; import {SpecTypes} from "../../domain/SpecTypes.js"; import {JsonSchem...
/content/code_sandbox/packages/specs/schema/src/components/async-api/messageMapper.ts
xml
2016-02-21T18:38:47
2024-08-14T21:19:48
tsed
tsedio/tsed
2,817
464
```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 incrmrmse = require( './index' ); // TESTS // // The function returns an accumulator function... { incr...
/content/code_sandbox/lib/node_modules/@stdlib/stats/incr/mrmse/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
584
```xml <Documentation> <Docs DocId="T:UIKit.UIActionSheet"> <summary>A <see cref="T:UIKit.UIView" /> that displays an action sheet with one or more buttons. (As of iOS 8, devs should use <see cref="T:UIKit.UIAlertController" /> rather than this class.)</summary> <remarks> <para>As of iOS 8, app devs sho...
/content/code_sandbox/docs/api/UIKit/UIActionSheet.xml
xml
2016-04-20T18:24:26
2024-08-16T13:29:19
xamarin-macios
xamarin/xamarin-macios
2,436
672
```xml import * as nls from "vscode-nls"; import { basicCheck, createNotFoundMessage, createVersionErrorMessage, parseVersion, } from "../util"; import { ValidationCategoryE, IValidation, ValidationResultT } from "./types"; nls.config({ messageFormat: nls.MessageFormat.bundle, bundleFormat: nl...
/content/code_sandbox/src/extension/services/validationService/checks/adb.ts
xml
2016-01-20T21:10:07
2024-08-16T15:29:52
vscode-react-native
microsoft/vscode-react-native
2,617
402
```xml import * as React from 'react'; import { Fabric } from 'office-ui-fabric-react'; import { DisplayMode } from '@microsoft/sp-core-library'; import { Placeholder } from "@pnp/spfx-controls-react/lib/PlaceHolder"; import { IConfigProps } from './IConfigProps'; export class Config extends React.Component<IConfigPro...
/content/code_sandbox/samples/react-custompropertypanecontrols/src/webparts/dropdownWithRemoteData/components/Config/Config.tsx
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
189