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 * as fs from "fs"; import { Document, Packer, Paragraph, LevelFormat } from "docx"; const doc = new Document({ numbering: { config: [ { reference: "ref1", levels: [ { level: 0, form...
/content/code_sandbox/demo/68-numbering-instances-and-starting-number.ts
xml
2016-03-26T23:43:56
2024-08-16T13:02:47
docx
dolanmiu/docx
4,139
451
```xml <!-- //********************************************************* // // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. // //*********************************...
/content/code_sandbox/ApplicationUnderTests/AppUIBasics/ControlPages/GridViewPage.xaml
xml
2016-03-20T08:48:45
2024-08-16T07:55:40
WinAppDriver
microsoft/WinAppDriver
3,626
1,788
```xml import * as React from 'react'; import ComponentExample from '../../../../components/ComponentDoc/ComponentExample'; import NonPublicSection from '../../../../components/ComponentDoc/NonPublicSection'; const Variations = () => ( <NonPublicSection title="Visual tests"> <ComponentExample examplePath="compo...
/content/code_sandbox/packages/fluentui/docs/src/examples/components/Tooltip/Visual/index.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
85
```xml import { configDefaults, defineConfig } from 'vitest/config'; export default defineConfig({ test: { environment: 'jsdom', exclude: [...configDefaults.exclude, 'src/index.test.ts'], pool: 'forks', setupFiles: 'vitest.setup.ts', watch: false, }, }); ```
/content/code_sandbox/packages/react-pdf/vitest.config.ts
xml
2016-08-01T13:46:02
2024-08-16T16:54:44
react-pdf
wojtekmaj/react-pdf
9,159
70
```xml import { Component } from '@angular/core'; import { MenuItem, MessageService } from 'primeng/api'; import { Code } from '@domain/code'; @Component({ selector: 'text-doc', template: ` <app-docsectiontext> <p>Text buttons are displayed as textual elements.</p> </app-docsectiont...
/content/code_sandbox/src/app/showcase/doc/splitbutton/textdoc.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
1,338
```xml import { createSummaryValue, isTooLongForTypeSummary } from '../../utils'; import type { PropType } from '../PropDef'; import type { DocgenFlowType } from '../types'; enum FlowTypesType { UNION = 'union', SIGNATURE = 'signature', } interface DocgenFlowUnionElement { name: string; value?: string; elem...
/content/code_sandbox/code/core/src/docs-tools/argTypes/docgen/flow/createType.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
601
```xml import { forceUnwrap } from '../../src/lib/fatal-error' describe('forceUnwrap', () => { it('fails for null', () => { const message = 'null is an expected failure' try { forceUnwrap(message, null) } catch (e) { const error = e as Error expect(error.message).toBe(message) } }...
/content/code_sandbox/app/test/unit/fatal-error-test.ts
xml
2016-05-11T15:59:00
2024-08-16T17:00:41
desktop
desktop/desktop
19,544
212
```xml <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <widget id="com.ionicframework.starter" version="0.0.1" versionCode="1" xmlns="path_to_url" xmlns:cdv="path_to_url"> <name>Daily Reads</name> <description> Lists Twitter likes </description> <author email="you@example.com" href="path_to_ur...
/content/code_sandbox/28-ionic/dailyreads/mobileapp/config.xml
xml
2016-01-03T17:06:03
2024-08-16T09:19:15
52-technologies-in-2016
shekhargulati/52-technologies-in-2016
7,189
756
```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. export const description = "Capture of exported variable #1"; export const exportedValue = 42; export const func = function () { consol...
/content/code_sandbox/sdk/nodejs/tests/runtime/testdata/closure-tests/cases/119-Capture-of-exported-variable-1/index.ts
xml
2016-10-31T21:02:47
2024-08-16T19:47:04
pulumi
pulumi/pulumi
20,743
73
```xml import { useActiveBreakpoint, useConfig } from '@proton/components/hooks/index'; import { getDisplayContactsInDrawer } from '@proton/shared/lib/drawer/helpers'; const useDisplayContactsWidget = () => { const { viewportWidth } = useActiveBreakpoint(); const { APP_NAME } = useConfig(); const displayC...
/content/code_sandbox/packages/components/hooks/useDisplayContactsWidget.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
124
```xml import path from 'path'; import { promises as fs } from 'fs'; import { Route } from '@vercel/routing-utils'; import { Files, Lambda, NodeVersion, NodejsLambda, debug, glob, } from '@vercel/build-utils'; import { BuildConfig, ImagesConfig, isObjectEmpty } from './_shared'; const VERCEL_BUILD_OUTPUT =...
/content/code_sandbox/packages/static-build/src/utils/build-output-v1.ts
xml
2016-09-09T01:12:08
2024-08-16T17:39:45
vercel
vercel/vercel
12,545
1,672
```xml import { IContext } from "../../connectionResolver"; import { sendCoreMessage } from "../../messageBroker"; import { IRiskIndicatorsDocument } from "../../models/definitions/indicator"; export default { __resolveReference({ _id }, { models }: IContext) { return models.RiskIndicators.findOne({ _id }); },...
/content/code_sandbox/packages/plugin-riskassessment-api/src/dataLoaders/resolvers/riskIndicator.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
141
```xml import React, { useCallback, useEffect, useState } from 'react'; import { Link } from 'react-aria-components'; import { useMount, useMountedState } from 'react-use'; import { SegmentEvent } from '../analytics'; import { Icon } from './icon'; const LOCALSTORAGE_GITHUB_STARS_KEY = 'insomnia:github-stars'; expor...
/content/code_sandbox/packages/insomnia/src/ui/components/github-stars-button.tsx
xml
2016-04-23T03:54:26
2024-08-16T16:50:44
insomnia
Kong/insomnia
34,054
685
```xml // Use of this source code is governed by the license that can be found in the // LICENSE file. #include "nativeui/mac/drag_drop/data_provider.h" #include "nativeui/mac/drag_drop/unique_pasteboard.h" using Data = nu::Clipboard::Data; @implementation DataProvider { nu::UniquePasteboard pasteboard_; } - (in...
/content/code_sandbox/nativeui/mac/drag_drop/data_provider.mm
xml
2016-08-07T07:53:56
2024-08-16T06:07:30
yue
yue/yue
3,415
195
```xml /** A basic function that copies a single file to another file location. */ export declare function copyFilePathToPathAsync(src: string, dest: string): Promise<void>; /** Remove a single file (not directory). Returns `true` if a file was actually deleted. */ export declare function removeFile(filePath: string): ...
/content/code_sandbox/packages/@expo/config-plugins/build/utils/fs.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
67
```xml export const stripQueryParams = (value: string | null = '') => { if (!value) { return ''; } // Safari opens a url as e.g. proton.me/verify#{token}?safariOpen=1 return value.replace(/\?.*/, ''); }; ```
/content/code_sandbox/applications/account/src/app/public/jwt.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
60
```xml <configuration> <appender name="FILE" class="ch.qos.logback.core.FileAppender"> <file>target/solr.log</file> <append>false</append> <encoder> <pattern>%d{ISO8601} %-5level [%thread] [%logger{36}] %msg%n</pattern> </encoder> </appender> <appender name="STD...
/content/code_sandbox/solr/src/test/resources/logback-test.xml
xml
2016-10-13T13:08:14
2024-08-15T07:57:42
alpakka
akka/alpakka
1,265
320
```xml <?xml version="1.0" encoding="utf-8"?> <feed xmlns="path_to_url"> <id>path_to_url <title>tipsi-stripe Blog</title> <updated>2018-03-27T06:00:00Z</updated> <generator>Feed for Node.js</generator> <link rel="alternate" href="path_to_url"/> <subtitle>The best place to stay up-to-date with th...
/content/code_sandbox/docs/blog/atom.xml
xml
2016-10-27T09:03:49
2024-07-16T17:40:56
tipsi-stripe
tipsi/tipsi-stripe
1,134
240
```xml import { wrapWithAbort } from './operators/withabort.js'; import { throwIfAborted } from '../aborterror.js'; /** * Converts the existing async-iterable into a promise which resolves a Set. * * @template TSource The type of elements in the source sequence. * @param {AsyncIterable<TSource>} source The async-i...
/content/code_sandbox/src/asynciterable/toset.ts
xml
2016-02-22T20:04:19
2024-08-09T18:46:41
IxJS
ReactiveX/IxJS
1,319
199
```xml <clickhouse> <keeper_map_path_prefix>/keeper_map_tables</keeper_map_path_prefix> </clickhouse> ```
/content/code_sandbox/tests/integration/test_backup_restore_keeper_map/configs/keeper_map_path_prefix.xml
xml
2016-06-02T08:28:18
2024-08-16T18:39:33
ClickHouse
ClickHouse/ClickHouse
36,234
25
```xml /** * <auto-generated> * Code generated by luis:generate:ts * Tool github: path_to_url * Changes may cause incorrect behavior and will be lost if the code is * regenerated. * </auto-generated> */ import {DateTimeSpec, GeographyV2, InstanceData, IntentData, NumberWithUnits, OrdinalV2} from 'botbuilder-ai' ...
/content/code_sandbox/parsers/LU/JS/packages/lu/test/fixtures/generate/FlightBooking.ts
xml
2016-03-03T23:47:03
2024-08-14T08:40:45
botframework-sdk
microsoft/botframework-sdk
7,459
313
```xml import maxBy from 'lodash/maxBy'; import minBy from 'lodash/minBy'; import kebabCase from 'lodash/kebabCase'; import ownerDocument from 'dom-lib/ownerDocument'; import getOffset from 'dom-lib/getOffset'; import scrollTop from 'dom-lib/scrollTop'; import scrollLeft from 'dom-lib/scrollLeft'; import getPosition fr...
/content/code_sandbox/src/internals/Overlay/positionUtils.ts
xml
2016-06-06T02:27:46
2024-08-16T16:41:54
rsuite
rsuite/rsuite
8,263
2,617
```xml import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { AppDocModule } from '@layout/doc/app.doc.module'; import { AppCodeModule } from '@layout/doc/app.co...
/content/code_sandbox/src/app/showcase/doc/calendar/calendardoc.module.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
561
```xml import { ChargebeeEnabled } from '@proton/shared/lib/interfaces'; import { isChargebeeEnabled } from './PaymentSwitcher'; describe('isChargebeeEnabled', () => { const mockGetUser = jest.fn(); beforeEach(() => { jest.resetAllMocks(); }); it('returns INHOUSE_FORCED when user is logged i...
/content/code_sandbox/packages/components/containers/payments/PaymentSwitcher.test.tsx
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
824
```xml import { RegExpUtils, DOMUtils } from 'mailspring-exports'; function _matchesAnyRegexp(text, regexps) { for (const excludeRegexp of regexps) { if (excludeRegexp.test(text)) { return true; } } return false; } function _runOnTextNode(node, matchers) { // Important: This method iterates thro...
/content/code_sandbox/app/src/services/autolinker.ts
xml
2016-10-13T06:45:50
2024-08-16T18:14:37
Mailspring
Foundry376/Mailspring
15,331
960
```xml import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { TabViewDocModule } from '@doc/tabview/tabviewdoc.module'; import { TabViewDemo } from './tabviewdemo'; import { TabViewDemoRoutingModule } from './tabviewdemo-routing.module'; @NgModule({ imports: [CommonModul...
/content/code_sandbox/src/app/showcase/pages/tabview/tabviewdemo.module.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
98
```xml <?xml version="1.0" encoding="UTF-8" standalone="no"?> <document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="4511" systemVersion="12F45" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"> <dependencies> <deployment defaultVersion="1080" identifier="macosx"/> ...
/content/code_sandbox/MacSVG Plugin Projects/macSVG Plugins/PieChartGenerator/PieChartGenerator/PieChartGenerator.xib
xml
2016-10-17T08:37:55
2024-08-15T15:12:09
macSVG
dsward2/macSVG
1,152
2,610
```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 /** * Returns the expected value for a Frchet distribution with shape `alpha`, scale `...
/content/code_sandbox/lib/node_modules/@stdlib/stats/base/dists/frechet/mean/docs/types/index.d.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
381
```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/colorOnPrimary"...
/content/code_sandbox/lib/java/com/google/android/material/timepicker/res/color/material_timepicker_clock_text_color.xml
xml
2016-12-05T16:11:29
2024-08-16T17:51:42
material-components-android
material-components/material-components-android
16,176
109
```xml <?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="path_to_url" xmlns:app="path_to_url"> <item android:id="@+id/save" android:icon="@drawable/ic_check_vector" android:title="@string/save" app:showAsAction="always" /> <item android:id="@+id/delete" ...
/content/code_sandbox/app/src/main/res/menu/menu_task.xml
xml
2016-01-26T21:02:54
2024-08-15T00:35:32
Simple-Calendar
SimpleMobileTools/Simple-Calendar
3,512
197
```xml import React from 'react'; import { ATTRIBUTES, ATTRIBUTES_TO_PROPS, FILTER_ALLOW, FILTER_CAST_BOOL, FILTER_CAST_NUMBER, } from '../src/constants'; import { Element } from '../src/Element'; import { Parser } from '../src/Parser'; import { CodeTagMatcher, createExpectedToken, LinkFilter, MOCK_MARKUP, pa...
/content/code_sandbox/packages/core/tests/Parser.test.tsx
xml
2016-06-26T22:39:56
2024-08-16T15:54:10
interweave
milesj/interweave
1,075
5,439
```xml #import "AppDelegate.h" #import "RCTPushy.h" #import <React/RCTBridge.h> #import <React/RCTBundleURLProvider.h> #import <React/RCTRootView.h> #import <React/RCTAppSetupUtils.h> #if RCT_NEW_ARCH_ENABLED #import <React/CoreModulesPlugins.h> #import <React/RCTCxxBridgeDelegate.h> #import <React/RCTFabricSurfaceHo...
/content/code_sandbox/Example/testHotUpdate/ios/AwesomeProject/AppDelegate.mm
xml
2016-02-06T14:16:37
2024-08-16T03:03:37
react-native-pushy
reactnativecn/react-native-pushy
1,760
985
```xml <definitions xmlns="path_to_url" xmlns:activiti="path_to_url" targetNamespace="Examples"> <process id="skipExpressionUserTask"> <startEvent id="theStart" name="Start Event"/> <sequenceFlow sourceRef="theStart" targetRef="userTask1" /> <userTask id="userTask1" name="Task1" activiti:skipExp...
/content/code_sandbox/modules/flowable5-test/src/test/resources/org/activiti/examples/bpmn/usertask/SkipExpressionUserTaskTest.testEvents.bpmn20.xml
xml
2016-10-13T07:21:43
2024-08-16T15:23:14
flowable-engine
flowable/flowable-engine
7,715
138
```xml import { inject, injectable, } from 'inversify'; import { ServiceIdentifiers } from '../../container/ServiceIdentifiers'; import * as ESTree from 'estree'; import { TInitialData } from '../../types/TInitialData'; import { TNodeWithLexicalScopeStatements } from '../../types/node/TNodeWithLexicalScopeStatements'...
/content/code_sandbox/src/node-transformers/string-array-transformers/StringArrayScopeCallsWrapperTransformer.ts
xml
2016-05-09T08:16:53
2024-08-16T19:43:07
javascript-obfuscator
javascript-obfuscator/javascript-obfuscator
13,358
2,925
```xml import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; //import { InMemoryWebApiModule } from 'angular-in-memory-web-api'; //import { InMemoryDataService } from './in-memory-da...
/content/code_sandbox/samples/features/json/angularjs/dotnet-tour-of-heroes/wwwroot/app/app.module.ts
xml
2016-03-11T21:42:56
2024-08-16T09:31:00
sql-server-samples
microsoft/sql-server-samples
9,855
200
```xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="path_to_url" xmlns:xsi="path_to_url" xsi:schemaLocation="path_to_url path_to_url"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.camunda</groupId> <artifactId>zeebe-parent</artifactId> <version>8.6.0-SNAPSHOT</version> <relati...
/content/code_sandbox/zeebe/gateway/pom.xml
xml
2016-03-20T03:38:04
2024-08-16T19:59:58
camunda
camunda/camunda
3,172
992
```xml import DropdownToggle from '@erxes/ui/src/components/DropdownToggle'; export default DropdownToggle; ```
/content/code_sandbox/packages/core-ui/src/modules/common/components/DropdownToggle.tsx
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
20
```xml /** * @file Auth token interface * @module module/auth/interface * @author Surmon <path_to_url */ export interface TokenResult { access_token: string expires_in: number } ```
/content/code_sandbox/src/modules/auth/auth.interface.ts
xml
2016-02-13T08:16:02
2024-08-12T08:34:20
nodepress
surmon-china/nodepress
1,421
45
```xml import { Component, h } from '@stencil/core'; @Component({ tag: 'app-home', styleUrl: 'app-home.css', shadow: true }) export class AppHome { render() { return ( <div class='app-home'> <p> Welcome to the Stencil App Starter. You can use this starter to build entire ...
/content/code_sandbox/packages/static-build/test/fixtures/stencil-v1/src/components/app-home/app-home.tsx
xml
2016-09-09T01:12:08
2024-08-16T17:39:45
vercel
vercel/vercel
12,545
151
```xml <?xml version="1.0"?> <package xmlns="path_to_url"> <metadata> <id>itext.commons</id> <version>9.0.0-SNAPSHOT</version> <title>iText commons module</title> <authors>Apryse Software</authors> <owners>Apryse Software</owners> <licenseUrl>path_to_url <projectUrl>path_to_url <icon>I...
/content/code_sandbox/itext/itext.commons/itext-commons.nuspec
xml
2016-06-16T14:34:03
2024-08-14T11:37:28
itext-dotnet
itext/itext-dotnet
1,630
413
```xml import { Runtime } from './runtime'; /** * BFS nodes and execute callback. */ function bfs(node: Node, callback?: (...args: any[]) => void) { const discovered: Node[] = [node]; while (discovered.length) { const currentNode = discovered.shift(); callback && callback(currentNode); const children...
/content/code_sandbox/src/api/node.ts
xml
2016-05-26T09:21:04
2024-08-15T16:11:17
G2
antvis/G2
12,060
909
```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_US</string> <key>CFBundleExecutable</key> <string>$(EXECUTABLE_NAME)</string> <key>CFBundleIdentifier</key> <string>$(PRODU...
/content/code_sandbox/Tests/Info.plist
xml
2016-02-29T23:20:17
2024-08-16T13:21:04
CollectionViewSlantedLayout
yacir/CollectionViewSlantedLayout
2,293
229
```xml import React from 'react'; import { connect } from 'react-redux'; import { Route, RouteComponentProps, Switch, withRouter, } from 'react-router-dom'; import { bindActionCreators, Dispatch } from 'redux'; import { matchRemoteData } from 'shared/utils/redux/communication/remoteData'; import PageCommunicat...
/content/code_sandbox/webapp/client/src/pages/authorized/DatasetPages/DatasetDetailPages/DatasetDetailPages.tsx
xml
2016-10-19T01:07:26
2024-08-14T03:53:55
modeldb
VertaAI/modeldb
1,689
728
```xml <?xml version="1.0"?> <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.yahoo.vespa.jdisc_core</groupId> <artifactId>test_bundles</artif...
/content/code_sandbox/jdisc_core_test/test_bundles/cert-l1-dup/pom.xml
xml
2016-06-03T20:54:20
2024-08-16T15:32:01
vespa
vespa-engine/vespa
5,524
267
```xml import * as React from 'react'; import { useSelector } from 'react-redux'; import * as R from 'ramda'; import Observations from 'your_sha512_hash'; import Parameters from 'shared/view/domain/ModelRecord/ModelRecordProps/Parameters/Parameters'; import ClientSuggestion from 'shared/view/domain/ModelRecord/ModelRe...
/content/code_sandbox/webapp/client/src/features/compareModels/view/CompareEntities/CompareModels/CompareModels.tsx
xml
2016-10-19T01:07:26
2024-08-14T03:53:55
modeldb
VertaAI/modeldb
1,689
1,908
```xml <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="path_to_url"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="debug|Win32"> <Configuration>debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfi...
/content/code_sandbox/PhysX_3.4/Snippets/compiler/vc15win32/SnippetContactModification.vcxproj
xml
2016-10-12T16:34:31
2024-08-16T09:40:38
PhysX-3.4
NVIDIAGameWorks/PhysX-3.4
2,343
4,872
```xml export interface ProtobufMessageClass<T extends ProtobufMessage> { new(): T; deserializeBinary(bytes: Uint8Array): T; } export interface ProtobufMessage { toObject(): {}; serializeBinary(): Uint8Array; } ```
/content/code_sandbox/client/grpc-web/src/message.ts
xml
2016-07-28T15:58:43
2024-08-16T19:26:03
grpc-web
improbable-eng/grpc-web
4,364
51
```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="pl" original="../LocalizableSt...
/content/code_sandbox/src/Cli/dotnet/commands/dotnet-tool/search/xlf/LocalizableStrings.pl.xlf
xml
2016-07-22T21:26:02
2024-08-16T17:23:58
sdk
dotnet/sdk
2,627
1,265
```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/strided/gamma/docs/types/index.d.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
1,149
```xml import { expect, galata, test } from '@jupyterlab/galata'; const DEFAULT_NAME = 'untitled.txt'; const RULERS_CONTENT = `0123456789 0123456789 0123456789 0123456789 0123456789 ...
/content/code_sandbox/galata/test/jupyterlab/codemirror.test.ts
xml
2016-06-03T20:09:17
2024-08-16T19:12:44
jupyterlab
jupyterlab/jupyterlab
14,019
283
```xml import { Operation } from 'slate' export const input = [ { type: 'set_node', path: [0], properties: {}, newProperties: {}, }, { text: '', }, ] export const test = value => { return Operation.isOperationList(value) } export const output = false ```
/content/code_sandbox/packages/slate/test/interfaces/Operation/isOperationList/not-full-operaion.tsx
xml
2016-06-18T01:52:42
2024-08-16T18:43:42
slate
ianstormtaylor/slate
29,492
72
```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 CO...
/content/code_sandbox/traffic_portal/test/integration/specs/Statuses.spec.ts
xml
2016-09-02T07:00:06
2024-08-16T03:50:21
trafficcontrol
apache/trafficcontrol
1,043
508
```xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="path_to_url" android:layout_width="match_parent" android:layout_height="50dp" android:background="@color/white" android:orientation="vertical"> <ImageView android:id="@+id/imgBack" android:layout_width="30d...
/content/code_sandbox/app/src/main/res/layout/layout_navi.xml
xml
2016-11-21T02:35:32
2024-07-16T14:34:43
likequanmintv
chenchengyin/likequanmintv
1,050
384
```xml import { c } from 'ttag'; import { Button, Href } from '@proton/atoms'; import { BRAND_NAME } from '@proton/shared/lib/constants'; import { getKnowledgeBaseUrl } from '@proton/shared/lib/helpers/url'; import type { PromptProps } from '../../../components'; import { Prompt } from '../../../components'; export ...
/content/code_sandbox/packages/components/containers/payments/subscription/PlanLossWarningModal.tsx
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
1,173
```xml <vector xmlns:android="path_to_url" android:width="128dp" android:height="128dp" android:viewportWidth="128" android:viewportHeight="128"> <path android:pathData="M128,64C128,99 99,128 64,128 28.654,128 0,99.346 0,64 0,28.654 28.654,0 64,0c35.346,0 64,28.654 64,64" android:strokeWid...
/content/code_sandbox/app/src/main/res/drawable/ic_quest_building_underground.xml
xml
2016-07-02T10:44:04
2024-08-16T18:55:54
StreetComplete
streetcomplete/StreetComplete
3,781
561
```xml import { dimensions, colors, ContentHeader } from '@erxes/ui/src'; import styled from 'styled-components'; import styledTS from 'styled-components-ts'; export const LoyaltyAmount = styled.div` font-weight: 800; line-height: 20px; padding-left: 15px; display: flex; position: relative; flex-direction:...
/content/code_sandbox/packages/plugin-pos-ui/src/styles.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
2,741
```xml import { Accessibility, toolbarMenuItemBehavior, ToolbarMenuItemBehaviorProps, indicatorBehavior, } from '@fluentui/accessibility'; import * as React from 'react'; import * as _ from 'lodash'; import cx from 'classnames'; import * as PropTypes from 'prop-types'; import { EventListener } from '@fluentui/...
/content/code_sandbox/packages/fluentui/react-northstar/src/components/Toolbar/ToolbarMenuItem.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
3,506
```xml import React from 'react' import { View } from 'react-native' import { useReduxState } from '../../hooks/use-redux-state' import * as selectors from '../../redux/selectors' import { sharedStyles } from '../../styles/shared' import { contentPadding, scaleFactor } from '../../styles/variables' import { Avatar } f...
/content/code_sandbox/packages/components/src/components/widgets/AccountSettings.tsx
xml
2016-11-30T23:24:21
2024-08-16T00:24:59
devhub
devhubapp/devhub
9,652
292
```xml <?xml version="1.0" encoding="utf-8"?> <!-- ~ ~ ~ path_to_url ~ ~ Unless required by applicable law or agreed to in writing, software ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --> <resources> <string name="mtrl_picker_range_header_title">Pumili ng Range</string...
/content/code_sandbox/lib/java/com/google/android/material/datepicker/res/values-tl/strings.xml
xml
2016-12-05T16:11:29
2024-08-16T17:51:42
material-components-android
material-components/material-components-android
16,176
944
```xml import { Optional, Directive, Input, Renderer2, ElementRef, Inject, forwardRef, } from '@angular/core'; import { TdLayoutManageListComponent } from './layout-manage-list.component'; import { BaseLayoutToggleDirective } from '../layout-toggle.class'; @Directive({ selector: '[tdLayoutManageListTog...
/content/code_sandbox/libs/angular/layout/src/layout-manage-list/layout-manage-list.directives.ts
xml
2016-07-11T23:30:52
2024-08-15T15:20:45
covalent
Teradata/covalent
2,228
506
```xml <run> <tolerance>.01</tolerance> <case> <desc> Unary Union causes error with simple floating noding. See path_to_url </desc> <a> MULTILINESTRING ((-0.6576979014845081 1.601480154089968, -0.5760076586550748 1.594118888807711), (-0.5760076586550748 1.594118888807711, -0.4943174158256414 1.586757623525453), (-0....
/content/code_sandbox/modules/tests/src/test/resources/testxml/robust/overlay/TestOverlay-geos-1046-union-lines.xml
xml
2016-01-25T18:08:41
2024-08-15T17:34:53
jts
locationtech/jts
1,923
7,242
```xml import * as React from 'react'; import Typography, { TypographyProps } from '@mui/material/Typography'; import { useFieldValue, useTranslate } from 'ra-core'; import purify from 'dompurify'; import { sanitizeFieldRestProps } from './sanitizeFieldRestProps'; import { FieldProps } from './types'; import { generic...
/content/code_sandbox/packages/ra-ui-materialui/src/field/RichTextField.tsx
xml
2016-07-13T07:58:54
2024-08-16T18:32:27
react-admin
marmelab/react-admin
24,624
548
```xml import { jsx, Component, computeLayout } from '@antv/f-engine'; import { GuideProps } from '../withGuide'; export interface TagGuideProps extends GuideProps { points?: { x: number; y: number }[] | null; canvasWidth?: number; canvasHeight?: number; offsetX?: number | string; offsetY?: number | string; ...
/content/code_sandbox/packages/f2/src/components/guide/views/Tag.tsx
xml
2016-08-29T06:26:23
2024-08-16T15:50:14
F2
antvis/F2
7,877
1,694
```xml <Documentation> <Docs DocId="T:CoreImage.CIHatchedScreen"> <summary>A <see cref="T:CoreImage.CIScreenFilter" /> that filters via a hatched halftone pattern.</summary> <remarks> <para>The following example shows this filter in use</para> <example> <code lang="csharp lang-csharp"><![C...
/content/code_sandbox/docs/api/CoreImage/CIHatchedScreen.xml
xml
2016-04-20T18:24:26
2024-08-16T13:29:19
xamarin-macios
xamarin/xamarin-macios
2,436
431
```xml import React, {Component} from 'react'; import {Svg, G, Path, Polygon} from 'react-native-svg'; class PolygonExample extends Component { static title = 'The following example creates a polygon with three sides'; render() { return ( <Svg height="100" width="100"> <Polygon points="...
/content/code_sandbox/apps/examples/src/examples/Polygon.tsx
xml
2016-01-17T14:29:21
2024-08-16T13:35:44
react-native-svg
software-mansion/react-native-svg
7,397
1,056
```xml /* eslint-disable @typescript-eslint/no-var-requires */ /* * Karma Configuration: "dev" version. * * This configuration relies on a `webpack-dev-server` already running and * bundling `webpack.config.test.js` on port 3001. If this is not running, * then the alternate `karma.conf.js` file will _also_ run the...
/content/code_sandbox/packages/xarc-app-dev/src/config/karma/karma.conf.dev.ts
xml
2016-09-06T19:02:39
2024-08-11T11:43:11
electrode
electrode-io/electrode
2,103
278
```xml import { hooks } from 'botframework-webchat-api'; import { useEffect } from 'react'; const { usePonyfill } = hooks; // TODO: [P2] Dedupe this function from "api", possibly create a new "util" package. /** * Calls a callback function at a specific time. */ export default function useTimer(at: number, fn: () ...
/content/code_sandbox/packages/component/src/hooks/internal/useTimer.ts
xml
2016-07-07T23:16:57
2024-08-16T00:12:37
BotFramework-WebChat
microsoft/BotFramework-WebChat
1,567
252
```xml declare module 'hsv2rgb'; ```
/content/code_sandbox/apps/native-component-list/ts-declarations/hsv2rgb/index.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
9
```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/test/unit/builders/dictionary-tests.ts
xml
2016-02-17T08:00:23
2024-08-16T19:00:48
arrow
apache/arrow
14,094
656
```xml <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="path_to_url"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>10.0.20506</Produc...
/content/code_sandbox/SomeTest/Scripting Define Symbols/Scripting Define Symbols.CSharp.csproj
xml
2016-04-25T14:37:08
2024-08-16T09:19:37
Unity3DTraining
XINCGer/Unity3DTraining
7,368
1,760
```xml import { FluentDesignSystem } from '../fluent-design-system.js'; import { definition } from './progress-bar.definition.js'; definition.define(FluentDesignSystem.registry); const itemRenderer = () => { const progressBar = document.createElement('fluent-progress-bar'); return progressBar; }; export default ...
/content/code_sandbox/packages/web-components/src/progress-bar/progress-bar.bench.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
75
```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 {CommonModule} from '@angular/common'; import {BreakpointObserverOverviewExample} from '@angular/components-examples/cdk/layout'; import {ChangeDetectionStrategy, ...
/content/code_sandbox/src/dev-app/layout/layout-demo.ts
xml
2016-01-04T18:50:02
2024-08-16T11:21:13
components
angular/components
24,263
137
```xml <?xml version="1.0" encoding="UTF-8"?> <!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your blog. --> <!-- It contains information about your blog's posts, comments, and categories. --> <!-- You may use this file to transfer that content from one site to another. --> <!-- This f...
/content/code_sandbox/tests/phpunit/data/export/valid-wxr-1.0.xml
xml
2016-12-05T16:41:44
2024-08-16T18:32:24
wordpress-develop
WordPress/wordpress-develop
2,423
4,083
```xml export interface ISpfxReactDaterangepickerProps { description: string; context: any; } ```
/content/code_sandbox/samples/react-daterangepicker/src/webparts/spfxReactDaterangepicker/components/ISpfxReactDaterangepickerProps.ts
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
22
```xml import { CompositionComponent as CC } from '../runtime'; import { SpaceLayerComposition } from '../spec'; import { mergeData } from './utils'; export type SpaceLayerOptions = Omit<SpaceLayerComposition, 'type'>; /** * @todo Propagate more options to children. */ export const SpaceLayer: CC<SpaceLayerOptions>...
/content/code_sandbox/src/composition/spaceLayer.ts
xml
2016-05-26T09:21:04
2024-08-15T16:11:17
G2
antvis/G2
12,060
219
```xml import { readFileSync } from 'fs'; import { URL } from 'url'; const strykerCoreSchema: Record<string, unknown> = JSON.parse(readFileSync(new URL('../../schema/stryker-core.json', import.meta.url), 'utf-8')); export { strykerCoreSchema }; ```
/content/code_sandbox/packages/api/src/core/stryker-options-schema.ts
xml
2016-02-12T13:14:28
2024-08-15T18:38:25
stryker-js
stryker-mutator/stryker-js
2,561
62
```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 {Directive} from '@angular/core'; /** * Directive whose purpose is to add the mat- CSS styling to this selector. * @docs-private */ @Directive({ selector: '[...
/content/code_sandbox/src/material/list/subheader.ts
xml
2016-01-04T18:50:02
2024-08-16T11:21:13
components
angular/components
24,263
163
```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 xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name=...
/content/code_sandbox/app/src/main/res/values-hu/donottranslate-altchars.xml
xml
2016-01-22T21:40:54
2024-08-16T11:54:30
hackerskeyboard
klausw/hackerskeyboard
1,807
518
```xml import type { RuntimePlugin } from '@ice/runtime/types'; import type { MiniappLifecycles } from '@ice/miniapp-runtime/esm/types'; export function defineMiniappConfig( miniappConfigOrDefineMiniappConfig: MiniappLifecycles | (() => MiniappLifecycles), ): MiniappLifecycles { let miniappLifecycles: MiniappLifec...
/content/code_sandbox/packages/plugin-miniapp/src/runtime/index.ts
xml
2016-11-03T06:59:15
2024-08-16T10:11:29
ice
alibaba/ice
17,815
173
```xml import * as React from "react"; import { IconButton } from "./Button"; interface TimelineFrameProps { frames: pxt.sprite.ImageState[]; colors: string[]; animating?: boolean; interval?: number; showActions?: boolean; duplicateFrame?: () => void; deleteFrame?: () => void; } interface ...
/content/code_sandbox/webapp/src/components/ImageEditor/TimelineFrame.tsx
xml
2016-01-24T19:35:52
2024-08-16T16:39:39
pxt
microsoft/pxt
2,069
1,004
```xml export { Link } from './Link'; export { FontSize } from './FontSize'; export { ImageResize } from './Image'; export { Mention } from './Mention'; export { TableImproved, Cell, Row, Header } from './Table'; export { Variable } from './variable'; export { Subscript } from './Subscript'; export { Superscript } from...
/content/code_sandbox/packages/erxes-ui/src/components/richTextEditor/extensions/index.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
91
```xml import data from '../data' with { type: 'json' } export default function Ts() { return data.foo } ```
/content/code_sandbox/test/integration/import-attributes/pages/ts.ts
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
27
```xml import { readFile } from 'fs-extra'; import { resolve } from 'path'; import type { Task } from '../task'; import { exec } from '../utils/exec'; import { maxConcurrentTasks } from '../utils/maxConcurrentTasks'; // The amount of VCPUs for the check task on CI is 4 (large resource) const amountOfVCPUs = 4; const...
/content/code_sandbox/scripts/tasks/compile.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
415
```xml import { ArcLinkLabel } from './ArcLinkLabel' export const ArcLinkLabelComponent = ArcLinkLabel export * from './ArcLinkLabelsLayer' export * from './canvas' export * from './compute' export * from './props' export * from './types' export * from './useArcLinkLabels' export * from './useArcLinkLabelsTransition' ...
/content/code_sandbox/packages/arcs/src/arc_link_labels/index.ts
xml
2016-04-16T03:27:56
2024-08-16T03:38:37
nivo
plouc/nivo
13,010
84
```xml import React from "react"; import { MdOutlineWarningAmber } from "@react-icons/all-files/md/MdOutlineWarningAmber"; import { IoMdClose } from "@react-icons/all-files/io/IoMdClose"; import "./index.css"; interface BannerProps { warningMessage: string; onBannerClose: () => void; } export const AuthWarningBan...
/content/code_sandbox/app/src/features/onboarding/components/auth/components/Form/components/AuthWarningBanner/index.tsx
xml
2016-12-01T04:36:06
2024-08-16T19:12:19
requestly
requestly/requestly
2,121
154
```xml /** * Adapted from lancaster-university/codal-core * path_to_url#L54 */ namespace pxsim.codal.music.Synthesizer { const sineTone = [0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,3,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,11,11,12,13,13,14,15,16,16,17,18,19,20,21,22,22,23,24,25,26,27,28,29,30,32,33,34,35,36,37,38,40,41,42,43,...
/content/code_sandbox/pxtsim/sound/soundSynthesizer.ts
xml
2016-01-24T19:35:52
2024-08-16T16:39:39
pxt
microsoft/pxt
2,069
1,343
```xml import { RouteObject } from "react-router-dom"; import PATHS from "config/constants/sub/paths"; import { SessionBearSettingsIndex } from "src-SessionBear/layouts/DashboardLayout/features/settings"; import { SessionsSettings } from "features/settings/components/SessionsBookSettings"; import MyTeams from "features...
/content/code_sandbox/app/src/src-SessionBear/routes/settingsRoutes.tsx
xml
2016-12-01T04:36:06
2024-08-16T19:12:19
requestly
requestly/requestly
2,121
295
```xml <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="path_to_url" xmlns:app="path_to_url" xmlns:tools="path_to_url" android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:id="@+id/snapTextView" ...
/content/code_sandbox/app/src/main/res/layout/adapter_snap_padding_start.xml
xml
2016-08-31T07:25:23
2024-08-13T00:30:46
GravitySnapHelper
rubensousa/GravitySnapHelper
4,998
478
```xml /* eslint-disable prefer-arrow-callback */ /* eslint-disable no-unused-expressions */ import { expect } from 'chai'; import * as sinon from 'sinon'; import { IVSCodeManager, INotificationManager, ILanguageResourceManager, } from '../../src/models'; import { VSCodeManager } from '../../src/vscode/vscodeMana...
/content/code_sandbox/test/notification/notificationManager.test.ts
xml
2016-05-30T23:24:37
2024-08-12T22:55:53
vscode-icons
vscode-icons/vscode-icons
4,391
2,886
```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 numel = require( './index' ); // TESTS // // The func...
/content/code_sandbox/lib/node_modules/@stdlib/ndarray/numel/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
283
```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. --> <!DOCTYPE configuration> <configuration scan="true" scanPeriod="10 seconds"> <appende...
/content/code_sandbox/msa/tb/docker/logback.xml
xml
2016-12-01T09:33:30
2024-08-16T19:58:25
thingsboard
thingsboard/thingsboard
16,820
408
```xml /** * include structuredClone in test environment. * @jest-environment ../../../../shared/test.environment.ts */ import { of, firstValueFrom } from "rxjs"; import { awaitAsync, trackEmissions } from "../../spec"; import { distinctIfShallowMatch, reduceCollection } from "./rx"; describe("reduceCollection", ...
/content/code_sandbox/libs/common/src/tools/rx.spec.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
644
```xml <?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">game</string> <string name="debug">regular</string> <string name="press_back_again_to_exit">Press back again to exit</string> </resources> ```
/content/code_sandbox/subs/game/src/main/res/values/strings.xml
xml
2016-08-08T08:52:10
2024-08-12T19:24:13
AndroidAnimationExercise
REBOOTERS/AndroidAnimationExercise
1,868
63
```xml import * as React from 'react'; import { mount } from '@cypress/react'; import { createPresenceComponent } from './createPresenceComponent'; import { MotionBehaviourProvider } from '../contexts/MotionBehaviourContext'; describe('createPresenceComponent', () => { it('should call onMotionCancel', () => { co...
/content/code_sandbox/packages/react-components/react-motion/library/src/factories/createPresenceComponent.cy.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
485
```xml { /* Caps Lock toggles normal capitalization of alphabetic characters */ "Caps Lock" = "caps:capslock"; /* Caps Lock is also a Ctrl */ Control = "caps:ctrl_modifier"; /* Make Caps Lock an additional Backspace */ Backspace = "caps:backspace"; /* Make Caps Lock an additional ESC */ Escape = "caps:e...
/content/code_sandbox/Applications/Preferences/Modules/Keyboard/Resources/CapsLockKey.plist
xml
2016-10-28T07:02:49
2024-08-16T14:14:55
nextspace
trunkmaster/nextspace
1,872
296
```xml // See LICENSE.txt for license information. import type {ChainPostsArgs, SanitizePostsArgs} from '@typings/database/database'; /** * sanitizePosts: Creates arrays of ordered and unordered posts. Unordered posts are those posts that are not * present in the orders array * @param {SanitizePostsArgs} sanitize...
/content/code_sandbox/app/database/operator/utils/post.ts
xml
2016-10-07T16:52:32
2024-08-16T12:08:38
mattermost-mobile
mattermost/mattermost-mobile
2,155
541
```xml import { ExpoConfig, getConfig } from '@expo/config'; import { LocaleMap, getResolvedLocalesAsync } from './getResolvedLocales'; import { env } from '../utils/env'; import { CommandError } from '../utils/errors'; /** Get the public Expo manifest from the local project config. */ export async function getPublic...
/content/code_sandbox/packages/@expo/cli/src/export/getPublicExpoManifest.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
278
```xml import * as React from 'react'; import { IconButton } from '../../Button'; import { Layer } from '../../Layer'; import { Overlay } from '../../Overlay'; import { Popup } from '../../Popup'; import { allowScrollOnElement, allowOverscrollOnElement, classNamesFunction, divProperties, elementContains, ge...
/content/code_sandbox/packages/react/src/components/Panel/Panel.base.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
3,339
```xml import { initEvent, serverEvent, userSettingsThunk, userThunk, welcomeFlagsActions } from '@proton/account'; import * as bootstrap from '@proton/account/bootstrap'; import { getSilentApi } from '@proton/shared/lib/api/helpers/customConfig'; import type { TtagLocaleMap } from '@proton/shared/lib/interfaces'; impo...
/content/code_sandbox/applications/vpn-settings/src/app/bootstrap.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
659
```xml import { Component } from "@angular/core"; import { FormBuilder } from "@angular/forms"; import { FolderAddEditComponent as BaseFolderAddEditComponent } from "@bitwarden/angular/vault/components/folder-add-edit.component"; import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service"; impor...
/content/code_sandbox/apps/desktop/src/vault/app/vault/folder-add-edit.component.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
310