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 <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>$(DotNetStableTargetFramework)</TargetFramework> <LibZipSharpBundleAllNativeLibraries>true</LibZipSharpBundleAllNativeLibraries> <OutputPath>..\..\..\..\bin\Test$(Configuration)</OutputPath> <SignAssembly>true</SignAssembly> ...
/content/code_sandbox/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/Xamarin.Android.Build.Tests.csproj
xml
2016-03-30T15:37:14
2024-08-16T19:22:13
android
dotnet/android
1,905
826
```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 { NumericArray } from '@stdlib/types/ar...
/content/code_sandbox/lib/node_modules/@stdlib/stats/base/stdevyc/docs/types/index.d.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
629
```xml import {Knex} from "knex"; import {createColumns} from "../../../src/index.js"; import {User} from "../models/User.js"; export function up(knex: Knex): Promise<any> { return knex.schema.createTable(User.tableName, (table: Knex.TableBuilder) => { createColumns(table, User); }); } export function down(kn...
/content/code_sandbox/packages/orm/objection/test/helpers/migrations/01_users.ts
xml
2016-02-21T18:38:47
2024-08-14T21:19:48
tsed
tsedio/tsed
2,817
98
```xml import { ExpoUpdatesManifest, EmbeddedManifest } from 'expo-manifests'; export type Manifest = ExpoUpdatesManifest | EmbeddedManifest; export declare enum UpdateCheckResultNotAvailableReason { /** * No update manifest or rollback directive received from the update server. */ NO_UPDATE_AVAILABLE...
/content/code_sandbox/packages/expo-updates/build/Updates.types.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
1,907
```xml const GRAPHQL_WS = 'graphql-ws'; // NOTE: This protocol is deprecated and will be removed soon. /** * @deprecated */ const GRAPHQL_SUBSCRIPTIONS = 'graphql-subscriptions'; export { GRAPHQL_WS, GRAPHQL_SUBSCRIPTIONS, }; ```
/content/code_sandbox/src/protocol.ts
xml
2016-07-19T22:58:49
2024-07-02T18:53:16
subscriptions-transport-ws
apollographql/subscriptions-transport-ws
1,517
57
```xml <?xml version="1.0" encoding="UTF-8" standalone="no"?> <launchConfiguration type="org.eclipse.ant.AntLaunchConfigurationType"> <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> <stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${project}"/> <listAttribute key="or...
/content/code_sandbox/tlatools/org.lamport.tlatools/ide/RunAllTLCTests.launch
xml
2016-02-02T08:48:27
2024-08-16T16:50:00
tlaplus
tlaplus/tlaplus
2,271
383
```xml import { DevicePropertiesSection, TaggerSection, TrackedDataSection } from "../common"; import BasicInfoSection from "../common/BasicInfoSection"; import CustomFieldsSection from "@erxes/ui-contacts/src/customers/containers/CustomFieldsSection"; import { ICustomer } from "../../types"; import { IField } f...
/content/code_sandbox/packages/core-ui/src/modules/contacts/customers/components/detail/LeftSidebar.tsx
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
419
```xml import type { Server } from 'http'; import { ENV_VARS } from '@apify/consts'; import log from '@apify/log'; import { BROWSER_POOL_EVENTS, BrowserPool, OperatingSystemsName, PuppeteerPlugin } from '@crawlee/browser-pool'; import { BLOCKED_STATUS_CODES } from '@crawlee/core'; import type { PuppeteerCrawlingContex...
/content/code_sandbox/test/core/crawlers/browser_crawler.test.ts
xml
2016-08-26T18:35:03
2024-08-16T16:40:08
crawlee
apify/crawlee
14,153
7,412
```xml /** @jsx jsx */ import { jsx } from 'slate-hyperscript' export const input = ( <element> <text>word</text> </element> ) export const output = { children: [ { text: 'word', }, ], } ```
/content/code_sandbox/packages/slate-hyperscript/test/fixtures/element-text-string.tsx
xml
2016-06-18T01:52:42
2024-08-16T18:43:42
slate
ianstormtaylor/slate
29,492
63
```xml import { QueryResult } from "../../query-runner/QueryResult" import { QueryRunner } from "../../query-runner/QueryRunner" import { ObjectLiteral } from "../../common/ObjectLiteral" import { TransactionNotStartedError } from "../../error/TransactionNotStartedError" import { TableColumn } from "../../schema-builde...
/content/code_sandbox/src/driver/aurora-mysql/AuroraMysqlQueryRunner.ts
xml
2016-02-29T07:41:14
2024-08-16T18:28:52
typeorm
typeorm/typeorm
33,875
19,416
```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>Vandroiy</string> <key>CodecID</key> <integer>20751</integer> <key>CodecName</key> <string>CX20751_2</string> <key>Files</key> <dict> <key>La...
/content/code_sandbox/Resources/CX20751_2/Info.plist
xml
2016-03-07T20:45:58
2024-08-14T08:57:03
AppleALC
acidanthera/AppleALC
3,420
2,156
```xml import { describe, it, expect, afterEach } from 'vitest'; import fs from 'fs-extra'; import sleep from '../../../src/util/sleep'; import tmp from 'tmp-promise'; import getLatestVersion from '../../../src/util/get-latest-version'; import { join } from 'path'; import { vi } from 'vitest'; tmp.setGracefulCleanup()...
/content/code_sandbox/packages/cli/test/unit/util/get-latest-version.test.ts
xml
2016-09-09T01:12:08
2024-08-16T17:39:45
vercel
vercel/vercel
12,545
1,279
```xml import _ from 'underscore'; import MailspringStore from 'mailspring-store'; import { MessageStore } from 'mailspring-exports'; class GithubStore extends MailspringStore { _link: string = null; _lastItemIds: string[]; // It's very common practive for {MailspringStore}s to listen to other parts of N1. //...
/content/code_sandbox/app/internal_packages/message-view-on-github/lib/github-store.ts
xml
2016-10-13T06:45:50
2024-08-16T18:14:37
Mailspring
Foundry376/Mailspring
15,331
637
```xml <!-- drawable/star-outline.xml --> <vector xmlns:android="path_to_url" xmlns:tools="path_to_url" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#5f6267" android:pathData="M12,15.39L8.24,17.66L9.23,13.38L5.91,10.5...
/content/code_sandbox/app/src/main/res/drawable/ic_thx.xml
xml
2016-02-21T04:39:19
2024-08-16T13:35:51
GeometricWeather
WangDaYeeeeee/GeometricWeather
2,420
236
```xml import { COUPON_CODES, CYCLE, PLANS, PLAN_NAMES } from '@proton/shared/lib/constants'; import { FeatureCode } from '../../../../containers/features'; import { getUnlimitedVPNFeatures, getVPNFeatures } from '../../helpers/offerCopies'; import type { OfferConfig } from '../../interface'; import bannerImage from '...
/content/code_sandbox/packages/components/containers/offers/operations/blackFridayVPN2023Free/configuration.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
603
```xml import { commitMutationPromiseNormalized, createMutation, MutationInput, } from "coral-framework/lib/relay"; import { graphql } from "relay-runtime"; import { Environment } from "relay-runtime"; import { UpdateStorySettingsMutation as MutationTypes } from "coral-admin/__generated__/UpdateStorySettingsMuta...
/content/code_sandbox/client/src/core/client/admin/components/StoryInfoDrawer/UpdateStorySettingsMutation.ts
xml
2016-10-31T16:14:05
2024-08-06T16:15:57
talk
coralproject/talk
1,881
230
```xml /* * Squidex Headless CMS * * @license */ import { UntypedFormControl, Validators } from '@angular/forms'; import { ExtendedFormGroup, Form, hasNoValue$ } from '@app/framework'; import { CreateWorkflowDto } from '../services/workflows.service'; export class AddWorkflowForm extends Form<ExtendedFormGroup, C...
/content/code_sandbox/frontend/src/app/shared/state/workflows.forms.ts
xml
2016-08-29T05:53:40
2024-08-16T17:39:38
squidex
Squidex/squidex
2,222
134
```xml // MIT-style license that can be found in the LICENSE file or at // path_to_url import { Expression, GenericAtRule, Interpolation, StringExpression, css, scss, } from '..'; type EachFn = Parameters<Interpolation['each']>[0]; let node: Interpolation; describe('an interpolation', () => { describe(...
/content/code_sandbox/pkg/sass-parser/lib/src/interpolation.test.ts
xml
2016-10-31T20:15:56
2024-08-16T17:16:45
dart-sass
sass/dart-sass
3,868
4,825
```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 /** * Interface defining function options. */ interface Options { /** * The maximum ...
/content/code_sandbox/lib/node_modules/@stdlib/utils/async/map-values/docs/types/index.d.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
3,341
```xml /* * Squidex Headless CMS * * @license */ import { booleanAttribute, ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, Input, numberAttribute, OnInit, Renderer2 } from '@angular/core'; import * as ProgressBar from 'progressbar.js'; import { TypedSimpleChanges } from '@app/framework/internal...
/content/code_sandbox/frontend/src/app/framework/angular/forms/progress-bar.component.ts
xml
2016-08-29T05:53:40
2024-08-16T17:39:38
squidex
Squidex/squidex
2,222
531
```xml <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="path_to_url" android:shape="rectangle" android:visible="true"> <gradient android:angle="270" android:startColor="#1a5b92" android:endColor="#2c4253" /> </shape> ```
/content/code_sandbox/app/src/main/res/drawable/weather_background_hail_night.xml
xml
2016-02-21T04:39:19
2024-08-16T13:35:51
GeometricWeather
WangDaYeeeeee/GeometricWeather
2,420
75
```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="M7.5 4L7.5 4L7.5 5L4 5C3 5 2 6 2 7L2 9L1.5 9C1.25 9 1 9.25 1 9.5L...
/content/code_sandbox/app/src/main/res/drawable/ic_preset_temaki_well_pump_manual.xml
xml
2016-07-02T10:44:04
2024-08-16T18:55:54
StreetComplete
streetcomplete/StreetComplete
3,781
388
```xml /* eslint-disable max-classes-per-file */ export class BaseError extends Error { logged: boolean; constructor(message?: string, error?: Error) { let errMessage = message; if (error && !message) { errMessage = error.message; } super(errMessage); // Use error param stacktrace if p...
/content/code_sandbox/src/modules/shared/errors/errors.ts
xml
2016-05-05T20:59:25
2024-08-13T14:13:34
app
xbrowsersync/app
1,478
635
```xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="path_to_url" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical"> <com.ldoublem.loadingviewlib.view.LVRing...
/content/code_sandbox/app/src/main/res/layout/layout_test.xml
xml
2016-06-21T07:54:32
2024-08-07T08:00:34
LoadingView
ldoublem/LoadingView
2,727
202
```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_MAX_BASE10_EXPONENT_SUBNORMAL = require( './index' ); // TESTS // // The export is a number... {...
/content/code_sandbox/lib/node_modules/@stdlib/constants/float64/max-base10-exponent-subnormal/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
111
```xml <?xml version="1.0" encoding="UTF-8" standalone="no"?> <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="B...
/content/code_sandbox/Demo04-VR全景视频播放/LearnOpenGLES/Base.lproj/Main.storyboard
xml
2016-03-11T07:58:04
2024-08-16T03:42:56
LearnOpenGLES
loyinglin/LearnOpenGLES
1,618
400
```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="de" original="../VBScriptingRe...
/content/code_sandbox/src/VisualBasic/xlf/VBScriptingResources.de.xlf
xml
2016-08-25T20:07:20
2024-08-13T22:23:35
CoreWF
UiPath/CoreWF
1,126
866
```xml <dict> <key>LayoutID</key> <integer>13</integer> <key>PathMapRef</key> <array> <dict> <key>CodecID</key> <array> <integer>283902549</integer> </array> <key>Headphone</key> <dict/> <key>Inputs</key> <array> <string>Mic</string> <string>LineIn</string> </array> <key>Int...
/content/code_sandbox/Resources/ALC255/layout13.xml
xml
2016-03-07T20:45:58
2024-08-14T08:57:03
AppleALC
acidanthera/AppleALC
3,420
11,679
```xml import * as React from 'react'; // @ts-ignore import { Persona, IPersonaSharedProps } from 'office-ui-fabric-react/lib/Persona'; // @ts-ignore import { IRenderFunction } from 'office-ui-fabric-react/lib/Utilities'; const renderCoin: IRenderFunction<IPersonaSharedProps> = (props: IPersonaSharedProps | undefined...
/content/code_sandbox/packages/codemods/src/codeMods/tests/mock/persona/mPersonaProps.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
169
```xml <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net6.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> <ItemGroup> <PackageReference Include="AWSSDK.Core" Version="3.7.11.14" /> ...
/content/code_sandbox/dotnetv3/dynamodb/scenarios/PartiQL_Basics_Scenario/PartiQL_Basics_Scenario/PartiQL_Basics_Scenario.csproj
xml
2016-08-18T19:06:57
2024-08-16T18:59:44
aws-doc-sdk-examples
awsdocs/aws-doc-sdk-examples
9,298
181
```xml import { ViewColumn, ViewEntity } from "../../../../src" @ViewEntity({ expression: ` select * from test_entity -- V1 simlate view change with comment `, }) export class ViewB { @ViewColumn() id: number @ViewColumn() type: string } ```
/content/code_sandbox/test/github-issues/7586/entity/ViewB.ts
xml
2016-02-29T07:41:14
2024-08-16T18:28:52
typeorm
typeorm/typeorm
33,875
66
```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. --> <launch> <param name="/use_sim_time" value="true" /> <param name="robot_description" textfile="$(find cartographer_ros)/urdf/ba...
/content/code_sandbox/cartographer_ros/launch/grpc_demo_backpack_2d.launch
xml
2016-08-03T10:43:23
2024-08-15T23:40:22
cartographer_ros
cartographer-project/cartographer_ros
1,628
320
```xml export * from './OverlayDrawerSurface'; export * from './OverlayDrawerSurface.types'; ```
/content/code_sandbox/packages/react-components/react-drawer/library/src/components/OverlayDrawer/OverlayDrawerSurface/index.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
18
```xml <Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>netcoreapp2.1</TargetFramework> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> <CodeAnalysisRuleSet /> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform...
/content/code_sandbox/Migration/MigrationV3V4/CSharp/ContosoHelpdeskChatBot-V4NetCore/ContosoHelpdeskChatBot/ContosoHelpdeskChatBot.csproj
xml
2016-09-20T16:17:28
2024-08-16T02:44:00
BotBuilder-Samples
microsoft/BotBuilder-Samples
4,323
256
```xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "path_to_url"> <hibernate-configuration> <session-factory> <!-- Database connection properties - Driver, URL, user, password --> <property name="hibernate.connection.driver_...
/content/code_sandbox/Hibernate/HibernateExample/src/main/resources/hibernate.cfg.xml
xml
2016-05-02T05:43:21
2024-08-16T06:51:39
journaldev
WebJournal/journaldev
1,314
373
```xml /* * path_to_url * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either */ import { expect } from 'chai'; import { AttributesManagerFactory } from '../../lib/attributes/AttributesManagerFactory'; import ...
/content/code_sandbox/ask-sdk-core/tst/attributes/AttributesManagerFactory.spec.ts
xml
2016-06-24T06:26:05
2024-08-14T12:39:19
alexa-skills-kit-sdk-for-nodejs
alexa/alexa-skills-kit-sdk-for-nodejs
3,118
2,549
```xml import { Observable } from "rxjs"; import { UserId } from "../../types/guid"; import { DerivedStateDependencies } from "../../types/state"; import { DeriveDefinition } from "./derive-definition"; import { DerivedState } from "./derived-state"; import { GlobalState } from "./global-state"; // eslint-disable-nex...
/content/code_sandbox/libs/common/src/platform/state/state.provider.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
953
```xml <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="path_to_url"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="debug|x64"> <Configuration>debug</Configuration> <Platform>x64</Platform> </ProjectConfiguration> <ProjectConfigura...
/content/code_sandbox/PhysX_3.4/Source/compiler/vc15win64/LowLevelParticles.vcxproj
xml
2016-10-12T16:34:31
2024-08-16T09:40:38
PhysX-3.4
NVIDIAGameWorks/PhysX-3.4
2,343
5,402
```xml import {MusicSheet} from "../MusicSheet"; import {SourceMeasure} from "../VoiceData/SourceMeasure"; import {Fraction} from "../../Common/DataObjects/Fraction"; import {InstrumentReader} from "./InstrumentReader"; import {IXmlElement} from "../../Common/FileIO/Xml"; import {Instrument} from "../Instrument"; impor...
/content/code_sandbox/src/MusicalScore/ScoreIO/MusicSheetReader.ts
xml
2016-02-08T15:47:01
2024-08-16T17:49:53
opensheetmusicdisplay
opensheetmusicdisplay/opensheetmusicdisplay
1,416
10,735
```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-tree/src/error.ts
xml
2016-02-01T21:45:35
2024-08-15T19:16:48
lisk-sdk
LiskArchive/lisk-sdk
2,721
93
```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 custom Popper.js modifiers * @see path_to_url#custom-modifiers */ import type { Modifier } from "@popperjs...
/content/code_sandbox/packages/core/src/components/popover/customModifiers.ts
xml
2016-10-25T21:17:50
2024-08-16T15:14:48
blueprint
palantir/blueprint
20,593
196
```xml <RelativeLayout xmlns:android="path_to_url" xmlns:tools="path_to_url" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".AlertActivity" > <Button android:id="@+id/one_button_alert" android:layout_width="200dip" android:layout_heig...
/content/code_sandbox/Android/AlertDialog/app/src/main/res/layout/activity_alert.xml
xml
2016-05-02T05:43:21
2024-08-16T06:51:39
journaldev
WebJournal/journaldev
1,314
277
```xml <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "path_to_url"> <mapper namespace="cn.abel.user.dao.RoleDao"> <resultMap id="roleMap" type="cn.abel.user.models.Role"> <id property="id" column="id"/> <result property="name" column="name"/> <result p...
/content/code_sandbox/springboot-dubbo/abel-user-provider/src/main/resources/mapper/RoleDaoMapper.xml
xml
2016-11-07T02:13:31
2024-08-16T08:17:57
springBoot
527515025/springBoot
6,488
522
```xml import type { ChangeEvent, FormEvent } from 'react'; import { useMemo, useState } from 'react'; import { getUnixTime } from 'date-fns'; import { c, msgid } from 'ttag'; import { Button } from '@proton/atoms/Button'; import type { ModalProps } from '@proton/components'; import { Alert, InputFieldTwo, ...
/content/code_sandbox/applications/drive/src/app/components/modals/ShareLinkModal/ShareLinkSettingsModal.tsx
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
2,043
```xml import { METRICS_MAX_JAIL } from '../constants'; import type IMetricsApi from './types/IMetricsApi'; import type IMetricsRequestService from './types/IMetricsRequestService'; import type MetricsRequest from './types/MetricsRequest'; interface BatchOptions { frequency: number; size: number; } class Metr...
/content/code_sandbox/packages/metrics/lib/MetricsRequestService.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
959
```xml import { CommonModule } from '@angular/common'; import { Component, Input, NgModule } from '@angular/core'; import { SharedModule } from 'primeng/api'; /** * InputGroupAddon displays text, icon, buttons and other content can be grouped next to an input. * @group Components */ @Component({ selector: 'p-inp...
/content/code_sandbox/src/app/components/inputgroupaddon/inputgroupaddon.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
241
```xml import * as React from 'react'; import type { BasePickerProps } from '../picker/interface'; import type { PickerColumnItem } from '../picker-view/interface'; export interface BaseSelectProps extends Omit<BasePickerProps, 'visible'> { placeholder?: string; displayRender?: (data?: PickerColumnItem[]) => React...
/content/code_sandbox/packages/zarm/src/select/interface.ts
xml
2016-07-13T11:45:37
2024-08-12T19:23:48
zarm
ZhongAnTech/zarm
1,707
71
```xml /** * Finds the mean of a set of numbers * @throws {Error} if array is empty */ export default function mean(arr: number[]): number; export default function mean(...arr: number[]): number; ```
/content/code_sandbox/packages/array-mean/index.d.ts
xml
2016-06-26T02:04:54
2024-08-15T00:08:43
just
angus-c/just
5,974
45
```xml import { InferAttributes, InferCreationAttributes } from "sequelize"; import { DataType, BelongsTo, ForeignKey, Column, Table, } from "sequelize-typescript"; import Document from "./Document"; import User from "./User"; import IdModel from "./base/IdModel"; import Fix from "./decorators/Fix"; @Table({...
/content/code_sandbox/server/models/Backlink.ts
xml
2016-05-22T21:31:47
2024-08-16T19:57:22
outline
outline/outline
26,751
229
```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 {ChangeDetectionStrategy, Component} from '@angular/core'; import {CommonModule} from '@angular/common'; import {FormsModule} from '@angular/forms'; import {MatBut...
/content/code_sandbox/src/dev-app/radio/radio-demo.ts
xml
2016-01-04T18:50:02
2024-08-16T11:21:13
components
angular/components
24,263
244
```xml import { WebPartContext } from '@microsoft/sp-webpart-base'; import { ClientMode } from './ClientMode'; export interface IGraphConsumerProps { clientMode: ClientMode; context: WebPartContext; } ```
/content/code_sandbox/tutorials/api-scopes/src/webparts/graphConsumer/components/IGraphConsumerProps.ts
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
48
```xml import { Component, Output, EventEmitter } from '@angular/core'; import { InfiniteScrollModule } from "ngx-infinite-scroll"; @Component({ selector: 'modal', templateUrl: './modal.html', standalone: true, imports: [InfiniteScrollModule] }) export class ModalComponent { @Output() onClose = new EventEmit...
/content/code_sandbox/projects/demo/src/app/modal/modal.component.ts
xml
2016-02-05T09:19:39
2024-08-15T16:17:38
ngx-infinite-scroll
orizens/ngx-infinite-scroll
1,231
713
```xml <?xml version="1.0" encoding="UTF-8"?> <!-- 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, WITHO...
/content/code_sandbox/docs/topics/impala_float.xml
xml
2016-04-13T07:00:08
2024-08-16T10:10:44
impala
apache/impala
1,115
1,192
```xml import type { IStorageProvider } from '@unleash/proxy-client-react'; import saveWhitelistedFlagInCookies from './UnleashCookiesProvider'; export default class ProtonUnleashStorageProvider implements IStorageProvider { private prefix = 'unleash:repository'; public async save(name: string, data: any) { ...
/content/code_sandbox/packages/unleash/storage/UnleashStorageProvider.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
172
```xml import { IntermediateModerationPhase, IntermediatePhaseResult, } from "coral-server/services/comments/pipeline"; import { GQLCOMMENT_STATUS, GQLTAG, } from "coral-server/graph/schema/__generated__/types"; export const approveExpertAnswers: IntermediateModerationPhase = ({ tags, }): IntermediatePhaseR...
/content/code_sandbox/server/src/core/server/services/comments/pipeline/phases/approveExpertAnswers.ts
xml
2016-10-31T16:14:05
2024-08-06T16:15:57
talk
coralproject/talk
1,881
121
```xml /** * @file App logger * @module utils/logger * @author Surmon <path_to_url */ // MARK: keep chalk v4.x // path_to_url import chalk from 'chalk' const renderTime = () => { const now = new Date() return `[${now.toLocaleDateString()} ${now.toLocaleTimeString()}]` } const renderScope = (scope: string) =>...
/content/code_sandbox/src/utils/logger.ts
xml
2016-02-13T08:16:02
2024-08-12T08:34:20
nodepress
surmon-china/nodepress
1,421
475
```xml import {gql} from '@shopify/hydrogen'; import type {HydrogenApiRouteOptions, HydrogenRequest} from '@shopify/hydrogen'; import {ProductConnection} from '@shopify/hydrogen/storefront-api-types'; import {PRODUCT_CARD_FRAGMENT} from '~/lib/fragments'; export async function api( _request: HydrogenRequest, {quer...
/content/code_sandbox/packages/hydrogen/test/fixtures/demo-store-ts/src/routes/api/bestSellers.server.ts
xml
2016-09-09T01:12:08
2024-08-16T17:39:45
vercel
vercel/vercel
12,545
233
```xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="path_to_url" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="match_parent" android:layout_height="1px" android:backgrou...
/content/code_sandbox/demo/src/main/res/layout/content_demo12.xml
xml
2016-03-28T09:07:07
2024-08-15T05:22:18
SpringView
liaoinstan/SpringView
1,935
513
```xml <manifest xmlns:android="path_to_url" package="com.sina.util.dnscache"> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-pe...
/content/code_sandbox/httpdns/src/main/AndroidManifest.xml
xml
2016-08-08T13:25:41
2024-08-15T07:21:04
H-Viewer
PureDark/H-Viewer
1,738
162
```xml /** */ import type { Config } from 'jest' // TODO: find a way to consolidate this in one place, with webpack.common.js const ignorePatterns = [ '@buttercup/fetch', '@juliushaertl', '@mdi/svg', '@nextcloud/files', '@nextcloud/upload', '@nextcloud/vue', 'ansi-regex', 'camelcase', 'char-regex', 'hot-pat...
/content/code_sandbox/jest.config.ts
xml
2016-06-02T07:44:14
2024-08-16T18:23:54
server
nextcloud/server
26,415
530
```xml /* * one or more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. */ import {Report, SingleReportConfiguration} from 'types'; import {Spec} from 'immutability-helper'; import CountTargetInput from './CountTargetInput';...
/content/code_sandbox/optimize/client/src/modules/components/TargetSelection/TargetSelection.tsx
xml
2016-03-20T03:38:04
2024-08-16T19:59:58
camunda
camunda/camunda
3,172
395
```xml // luma.gl /* eslint-disable max-len */ import test from 'tape-promise/tape'; import {getTestDevices} from '@luma.gl/test-utils'; import {Framebuffer} from '@luma.gl/core'; const TEST_CASES = [ { title: 'Default attachments', getOpts: device => ({}), pass: false }, { title: 'No attachment...
/content/code_sandbox/modules/core/test/adapter/resources/framebuffer.spec.ts
xml
2016-01-25T09:41:59
2024-08-16T10:03:05
luma.gl
visgl/luma.gl
2,280
1,941
```xml class C { foo: string; thing() { } static other() { } } class D extends C { bar: string; } var d: D; var r = d.foo; var r2 = d.bar; var r3 = d.thing(); var r4 = D.other(); class C2<T> { foo: T; thing(x: T) { } static other<T>(x: T) { } } class D2<T> extends C2<T> { bar: string...
/content/code_sandbox/tests/format/typescript/conformance/classes/classDeclarations/classHeritageSpecification/classExtendingClass.ts
xml
2016-11-29T17:13:37
2024-08-16T17:29:57
prettier
prettier/prettier
48,913
156
```xml <?xml version="1.0" encoding="UTF-8"?> <testsuites> <testsuite name="tensorflow/python/kernel_tests/xent_op_test" tests="1" failures="0" errors="0"> <testcase name="tensorflow/python/kernel_tests/xent_op_test" status="run"></testcase> </testsuite> </testsuites> ```
/content/code_sandbox/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.xml
xml
2016-03-12T06:26:47
2024-08-12T19:21:52
tensorflow-on-raspberry-pi
samjabrahams/tensorflow-on-raspberry-pi
2,242
79
```xml /** * Generic interface for simple, reliable remote function and method invocation. */ export interface TransportClient { invoke(functionName: string, encodedReq: string): Promise<string>; } export type EncodedRequestHandler = (encodedReq: string) => Promise<string>; export interface TransportServer { r...
/content/code_sandbox/packages/reltab/src/remote/Transport.ts
xml
2016-10-24T18:59:04
2024-08-16T16:29:52
tad
antonycourtney/tad
3,125
82
```xml export * from './components/MessageBarGroup/index'; ```
/content/code_sandbox/packages/react-components/react-message-bar/library/src/MessageBarGroup.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
12
```xml import { commonTypes, commonInputs, commonFilters } from './common'; export const types = ` type Voucher @key(fields: "_id") @cacheControl(maxAge: 3) { ${commonTypes} status: String bonusInfo: JSON } type VoucherMain { list: [Voucher] totalCount: Int } `; export const queries = ` ...
/content/code_sandbox/packages/plugin-loyalties-api/src/graphql/schema/voucher.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
207
```xml /* * one or more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. */ import {createIncident, createSequenceFlows} from 'modules/testUtils'; const mockIncidents = { count: 1, incidents: [ createIncident({ ...
/content/code_sandbox/operate/client/src/App/ProcessInstance/TopPanel/index.setup.ts
xml
2016-03-20T03:38:04
2024-08-16T19:59:58
camunda
camunda/camunda
3,172
186
```xml declare interface IWebChatWebPartStrings { AppLocalEnvironmentSharePoint: string; AppLocalEnvironmentTeams: string; AppSharePointEnvironment: string; AppTeamsTabEnvironment: string; BasicGroupName: string; DescriptionFieldLabel: string; DomainFieldLabel: string; PropertyPaneDescription: string; ...
/content/code_sandbox/samples/01.getting-started/l.sharepoint-web-part/src/spfx/src/webparts/webChat/loc/mystrings.d.ts
xml
2016-07-07T23:16:57
2024-08-16T00:12:37
BotFramework-WebChat
microsoft/BotFramework-WebChat
1,567
105
```xml import spawnAsync from '@expo/spawn-async'; import { type ExpoConfig } from 'expo/config'; import { type ModPlatform } from 'expo/config-plugins'; import fs from 'fs/promises'; import path from 'path'; import { directoryExistsAsync } from './dir'; import { resolveFromExpoCli } from './resolveFromExpoCli'; /** ...
/content/code_sandbox/packages/patch-project/src/cli/generateNativeProjects.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
839
```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. --> <manifest xmlns:android="path_to_url" xmlns:tools="path_to_url"> <uses-permission and...
/content/code_sandbox/vertexai/app/src/main/AndroidManifest.xml
xml
2016-04-26T17:13:27
2024-08-16T18:37:58
quickstart-android
firebase/quickstart-android
8,797
242
```xml <?xml version="1.0" encoding="utf-8"?><!-- ~ Meizhi & Gank.io ~ ~ This program is free software: you can redistribute it and/or modify ~ (at your option) any later version. ~ ~ This program is distributed in the hope that it will be useful, but ~ WITHOUT ANY WARRANTY; without even the implied warra...
/content/code_sandbox/app/src/main/res/anim/fade_in.xml
xml
2016-05-09T05:55:34
2024-07-26T07:43:48
T-MVP
north2016/T-MVP
2,709
184
```xml import React from 'react'; type IconProps = React.SVGProps<SVGSVGElement>; export declare const IcListNumbers: (props: IconProps) => React.JSX.Element; export {}; ```
/content/code_sandbox/packages/icons/lib/icListNumbers.d.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
43
```xml <resources xmlns:tools="path_to_url"> <!-- app. --> <string name="app_name">Vreme</string> <string name="geometric_weather">Geo Vreme</string> <!-- keyword. --> <string name="current_location">Sedanja lokacija</string> <string name="default_location">Privzeta lokacija</string> <strin...
/content/code_sandbox/app/src/main/res/values-sl-rSI/strings.xml
xml
2016-02-21T04:39:19
2024-08-16T13:35:51
GeometricWeather
WangDaYeeeeee/GeometricWeather
2,420
4,208
```xml <manifest xmlns:android="path_to_url" package="brian.com.datatool" /> ```
/content/code_sandbox/android/GT_APP/datatool/src/main/AndroidManifest.xml
xml
2016-01-13T10:29:55
2024-08-13T06:40:00
GT
Tencent/GT
4,384
22
```xml <!-- drawable/information-outline.xml --> <vector xmlns:android="path_to_url" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="?attr/colorOnPrimaryContainer" android:pathData="M11,9H13V7H11M12,20C7.59,20 4,16.41 4,12C4...
/content/code_sandbox/app/src/main/res/drawable/ic_about.xml
xml
2016-02-21T04:39:19
2024-08-16T13:35:51
GeometricWeather
WangDaYeeeeee/GeometricWeather
2,420
223
```xml import * as useConfigModule from '@proton/components/hooks/useConfig'; import { APPS, CLIENT_TYPES } from '@proton/shared/lib/constants'; import type { ProtonConfig } from '@proton/shared/lib/interfaces'; export const mockUseConfig = (value?: Partial<ProtonConfig>) => { const spy = vi.spyOn(useConfigModule,...
/content/code_sandbox/packages/testing/lib/vitest/mockUseConfig.ts
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
169
```xml import { AccountsServer } from '@accounts/server'; import { type MutationResolvers } from '../models'; export const Mutation: MutationResolvers = { authenticate: async (_, args, ctx) => { const { serviceName, params } = args; const { injector, infos } = ctx; const authenticated = await injector ...
/content/code_sandbox/modules/module-core/src/resolvers/mutation.ts
xml
2016-10-07T01:43:23
2024-07-14T11:57:08
accounts
accounts-js/accounts
1,492
418
```xml // // // Microsoft Bot Framework: path_to_url // // Bot Framework Emulator Github: // path_to_url // // All rights reserved. // // 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 witho...
/content/code_sandbox/packages/app/client/src/state/sagas/botSagas.ts
xml
2016-11-11T23:15:09
2024-08-16T12:45:29
BotFramework-Emulator
microsoft/BotFramework-Emulator
1,803
1,621
```xml import type { Meta, StoryObj } from '@storybook/vue3'; import { ComponentA } from './ts-named-export/component'; const meta = { component: ComponentA, tags: ['autodocs'], } satisfies Meta<typeof ComponentA>; type Story = StoryObj<typeof meta>; export default meta; export const Default: Story = { args: ...
/content/code_sandbox/code/renderers/vue3/template/stories_vue3-vite-default-ts/component-meta/TsNameExport.stories.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
91
```xml declare interface ISuggestedTeamMembersWebPartStrings { PropertyPaneDescription: string; BasicGroupName: string; DescriptionFieldLabel: string; } declare module 'SuggestedTeamMembersWebPartStrings' { const strings: ISuggestedTeamMembersWebPartStrings; export = strings; } ```
/content/code_sandbox/samples/react-teams-tab-suggested-members/src/webparts/suggestedTeamMembers/loc/mystrings.d.ts
xml
2016-08-30T17:21:43
2024-08-16T18:41:32
sp-dev-fx-webparts
pnp/sp-dev-fx-webparts
2,027
62
```xml <?xml version="1.0" encoding="utf-8" ?> <page version="1.0"> <section layout="row"> <section id="section:box1"> <content> <hit relevance="1.0" source="news"> <id>news-1</id> </hit> <hit relevance="0.5" source="news"> <id>news-2</id> </hit> <...
/content/code_sandbox/container-search/src/test/java/com/yahoo/search/pagetemplates/engine/test/ChoicesResult.xml
xml
2016-06-03T20:54:20
2024-08-16T15:32:01
vespa
vespa-engine/vespa
5,524
481
```xml import { Component } from '@angular/core'; import { Code } from '@domain/code'; @Component({ selector: 'builtin-themes-doc', template: ` <app-docsectiontext> <p> PrimeNG ships with various free themes to choose from. The list below states all the available themes in t...
/content/code_sandbox/src/app/showcase/doc/theming/builtinthemesdoc.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
715
```xml /*your_sha256_hash----------------------------- *your_sha256_hash----------------------------*/ import type { languages } from '../../fillers/monaco-editor-core'; export const conf: languages.LanguageConfiguration = { comments: { lineComment: '//' }, brackets: [ ['{', '}'], ['[', ']'], ['(', ')'] ...
/content/code_sandbox/src/basic-languages/pug/pug.ts
xml
2016-06-07T16:56:31
2024-08-16T17:17:05
monaco-editor
microsoft/monaco-editor
39,508
2,793
```xml <?xml version="1.0" encoding="UTF-8"?> <module type="JAVA_MODULE" version="4"> <component name="FlexmarkExt.ModuleBuildProperties"> <option name="extensionName" value="Util" /> <option name="extensionPackage" value="com.vladsch.flexmark.util.builder" /> <option name="delimiterProcessor" value="fals...
/content/code_sandbox/flexmark-util-builder/flexmark-util-builder.iml
xml
2016-01-23T15:29:29
2024-08-15T04:04:18
flexmark-java
vsch/flexmark-java
2,239
508
```xml import { IPositionStats, IScrollState, IScrollerDistance } from '../../models'; export function shouldFireScrollEvent( container: IPositionStats, distance: IScrollerDistance = { down: 0, up: 0 }, scrollingDown: boolean ) { let remaining: number; let containerBreakpoint: number; if (container.totalTo...
/content/code_sandbox/projects/ngx-infinite-scroll/src/lib/services/scroll-resolver.ts
xml
2016-02-05T09:19:39
2024-08-15T16:17:38
ngx-infinite-scroll
orizens/ngx-infinite-scroll
1,231
727
```xml import { BrushHighlight } from './brushHighlight'; export function brushYRegion(x, y, x1, y1, extent) { const [minX, , maxX] = extent; return [minX, y, maxX, y1]; } export function BrushYHighlight(options) { return BrushHighlight({ ...options, brushRegion: brushYRegion, selectedHandles: ['han...
/content/code_sandbox/src/interaction/brushYHighlight.ts
xml
2016-05-26T09:21:04
2024-08-15T16:11:17
G2
antvis/G2
12,060
95
```xml /* * one or more contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright ownership. */ import {render, screen} from 'modules/testing-library'; import noop from 'lodash/noop'; import {OperationItems} from '../'; import {OperationItem} fro...
/content/code_sandbox/operate/client/src/modules/components/OperationItems/tests/modificationMode.test.tsx
xml
2016-03-20T03:38:04
2024-08-16T19:59:58
camunda
camunda/camunda
3,172
341
```xml <dict> <key>LayoutID</key> <integer>3</integer> <key>PathMapRef</key> <array> <dict> <key>CodecID</key> <array> <integer>283902594</integer> </array> <key>Headphone</key> <dict/> <key>Inputs</key> <array> <string>Mic</string> <string>LineIn</string> </array> <key>IntS...
/content/code_sandbox/Resources/ALC282/layout3.xml
xml
2016-03-07T20:45:58
2024-08-14T08:57:03
AppleALC
acidanthera/AppleALC
3,420
7,844
```xml <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="path_to_url"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> ...
/content/code_sandbox/Chapter 20 Shadow Mapping/Shadows/Shadows.vcxproj
xml
2016-03-25T04:33:36
2024-08-16T10:32:50
d3d12book
d3dcoder/d3d12book
1,487
2,025
```xml describe('Dropdown', () => { const selectors: any = { triggerButtonClass: 'ui-dropdown__trigger-button' }; const dropdownSlotClassNames: any = { clearIndicator: 'ui-dropdown__clear-indicator', container: 'ui-dropdown__container', toggleIndicator: 'ui-dropdown__toggle-indicator', item: 'ui-dro...
/content/code_sandbox/packages/fluentui/e2e/tests/dropdown.spec.ts
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
338
```xml import { Column, CreateDateColumn, Entity, PrimaryGeneratedColumn, UpdateDateColumn, } from "../../../../../src" @Entity() export class Post { @PrimaryGeneratedColumn() id: number @Column({ default: () => "CURRENT_TIMESTAMP" }) col1: Date @Column({ default: () => "CURRE...
/content/code_sandbox/test/github-issues/3991/entity/oracle/Post.ts
xml
2016-02-29T07:41:14
2024-08-16T18:28:52
typeorm
typeorm/typeorm
33,875
870
```xml //# sourceMappingURL=runtime.d.ts.map ```
/content/code_sandbox/packages/expo/build/winter/runtime.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
8
```xml import { Injectable } from "@angular/core"; import { Subject } from "rxjs"; import { ApiService } from "@bitwarden/common/abstractions/api.service"; import { ListResponse } from "@bitwarden/common/models/response/list.response"; import { CryptoService } from "@bitwarden/common/platform/abstractions/crypto.servi...
/content/code_sandbox/bitwarden_license/bit-web/src/app/secrets-manager/projects/project.service.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
1,128
```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 /** * Interface describing `dmaxsorted`. */ interface Routine { /** * Computes the m...
/content/code_sandbox/lib/node_modules/@stdlib/stats/base/dmaxsorted/docs/types/index.d.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
637
```xml import React, { useRef, useState } from 'react' import { useEffectOnce } from 'react-use' import { ButtonProps, LoadingButton, } from '../../../../design/components/atoms/Button' import Form from '../../../../design/components/molecules/Form' import { FormRowProps } from '../../../../design/components/molecu...
/content/code_sandbox/src/mobile/components/organisms/modals/MobileResourceModal.tsx
xml
2016-11-19T14:30:34
2024-08-16T03:13:45
BoostNote-App
BoostIO/BoostNote-App
3,745
543
```xml /** * The inbuilt toEqual() matcher will always return TRUE when provided with 2 ArrayBuffers. * This is because an ArrayBuffer must be wrapped in a new Uint8Array to be accessible. * This custom matcher will automatically instantiate a new Uint8Array on the received value * (and optionally, the expected val...
/content/code_sandbox/libs/common/spec/matchers/to-equal-buffer.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
201
```xml import type { SBType } from '@storybook/core/types'; import { UnknownArgTypesError } from '@storybook/core/preview-errors'; import type { FlowLiteralType, FlowSigType, FlowType } from './types'; const isLiteral = (type: FlowType): type is FlowLiteralType => type.name === 'literal'; const toEnumOption = (eleme...
/content/code_sandbox/code/core/src/docs-tools/argTypes/convert/flow/convert.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
453
```xml /// <reference types="jest-expo/rsc/expect" /> import * as React from 'react'; import { EmptyRoute } from '../EmptyRoute'; import { ErrorBoundary } from '../ErrorBoundary'; import { Screen } from '../Screen'; import { Sitemap } from '../Sitemap'; it(`renders Screen`, async () => { await expect(<Screen />).to...
/content/code_sandbox/packages/expo-router/src/views/__rsc_tests__/views.test.tsx
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
171
```xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="path_to_url" xmlns="path_to_url" xmlns:web="path_to_url" xsi:schemaLocation="path_to_url path_to_url" id="WebApp_ID" version="2.5" metadata-complete="true"> <servlet> <servlet-name>Faces Servlet</servlet-name> <servlet-class>javax.faces.webapp.F...
/content/code_sandbox/PrimeFaces/Primefaces-Themes-Sample/src/main/webapp/WEB-INF/web.xml
xml
2016-05-02T05:43:21
2024-08-16T06:51:39
journaldev
WebJournal/journaldev
1,314
335