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 jest.unmock('events'); jest.unmock('../../src/JestExt/core'); jest.unmock('../../src/JestExt/helper'); jest.unmock('../../src/JestExt/run-mode'); jest.unmock('../../src/appGlobals'); jest.unmock('../../src/errors'); jest.unmock('../test-helper'); const mockPlatform = jest.fn(); const mockRelease = jest.fn(); mo...
/content/code_sandbox/tests/JestExt/core.test.ts
xml
2016-10-09T13:06:02
2024-08-13T18:32:04
vscode-jest
jest-community/vscode-jest
2,819
13,893
```xml import React from 'react'; import { render, screen } from '@testing-library/react'; import Breadcrumb from '../index'; import { toRGB } from '@test/utils'; import '../styles/index.less'; describe('BreadcrumbItem styles', () => { it('Should render correct styles', () => { render( <Breadcrumb> ...
/content/code_sandbox/src/Breadcrumb/test/BreadcrumbItemStylesSpec.tsx
xml
2016-06-06T02:27:46
2024-08-16T16:41:54
rsuite
rsuite/rsuite
8,263
196
```xml export { default } from './ServerModule'; export * from './ServerModule'; ```
/content/code_sandbox/modules/module/server-ts/index.ts
xml
2016-09-08T16:44:45
2024-08-16T06:17:16
apollo-universal-starter-kit
sysgears/apollo-universal-starter-kit
1,684
17
```xml import React, { FunctionComponent } from "react"; import { graphql } from "react-relay"; import { withFragmentContainer } from "coral-framework/lib/relay"; import { DropdownButton } from "coral-ui/components/v2"; import { DashboardSiteContainer_site } from "coral-admin/__generated__/DashboardSiteContainer_site...
/content/code_sandbox/client/src/core/client/admin/routes/Dashboard/DashboardSiteContainer.tsx
xml
2016-10-31T16:14:05
2024-08-06T16:15:57
talk
coralproject/talk
1,881
191
```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. ~ */ --> <resources> <!-- Example customization of dimensions originally defined in...
/content/code_sandbox/rx2sampleapp/src/main/res/values-w820dp/dimens.xml
xml
2016-03-21T18:35:44
2024-08-15T11:55:03
Fast-Android-Networking
amitshekhariitbhu/Fast-Android-Networking
5,667
150
```xml export const dashboardReporterTokens = Object.freeze({ ciProvider: 'ciProvider', dashboardReporterClient: 'dashboardReporterClient', httpClient: 'httpClient', } as const); ```
/content/code_sandbox/packages/core/src/reporters/dashboard-reporter/tokens.ts
xml
2016-02-12T13:14:28
2024-08-15T18:38:25
stryker-js
stryker-mutator/stryker-js
2,561
38
```xml import React, { ComponentType, ReactElement, ReactNode } from 'react'; import clsx from 'clsx'; import { LinkifyPluginTheme } from '../theme'; import { ExtractLinks, extractLinks } from '../utils/extractLinks'; export interface ComponentProps { children: ReactNode; href: string; target: string; rel: str...
/content/code_sandbox/packages/linkify/src/Link/Link.tsx
xml
2016-02-26T09:54:56
2024-08-16T18:16:31
draft-js-plugins
draft-js-plugins/draft-js-plugins
4,087
538
```xml import { commonDragParams, commonDragVariables, commonFields, commonMutationParams, commonMutationVariables } from "../../boards/graphql/mutations"; import { purchaseFields } from "./queries"; const purchaseMutationVariables = ` $productsData: JSON, $paymentsData: JSON, $expensesData: JSON, `; ...
/content/code_sandbox/packages/ui-purchases/src/purchases/graphql/mutations.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
585
```xml // Reexport for backward-compatibility purposes export * from '@gqlapp/database-server-ts'; ```
/content/code_sandbox/packages/server/src/sql/helpers.ts
xml
2016-09-08T16:44:45
2024-08-16T06:17:16
apollo-universal-starter-kit
sysgears/apollo-universal-starter-kit
1,684
21
```xml import 'cypress-real-events/support' import '@cypress/fiddle' import { getFocusableEdges } from '../fixtures/dom-utils.js' declare global { namespace Cypress { interface Chainable { aliasFocusableEdges(options?: { skipAliases: boolean }): Chainable<void> } } } Cypress.Commands.add( 'aliasFo...
/content/code_sandbox/cypress/support/e2e.ts
xml
2016-02-11T11:01:11
2024-08-16T05:48:38
a11y-dialog
KittyGiraudel/a11y-dialog
2,390
570
```xml import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, OnDestroy, OnInit, ViewChild } from "@angular/core"; import { Store } from "@ngxs/store"; import { AutoUnsubscribe } from "app/shared/decorator/autoUnsubscribe"; import { Tab } from "app/shared/tabs/tabs.component"; import { PreferencesState ...
/content/code_sandbox/ui/src/app/views/projectv2/run/run-workflow.component.ts
xml
2016-10-11T08:28:23
2024-08-16T01:55:31
cds
ovh/cds
4,535
416
```xml import * as fs from 'fs-extra'; import walkSync from 'klaw-sync'; import * as path from 'path'; import { ModuleConfiguration } from './ModuleConfiguration'; type PreparedPrefixes = [nameWithExpoPrefix: string, nameWithoutExpoPrefix: string]; /** * prepares _Expo_ prefixes for specified name * @param name mo...
/content/code_sandbox/tools/src/generate-module/configureModule.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
3,300
```xml import { Injectable } from '@angular/core'; import { Subject } from 'rxjs'; @Injectable({ providedIn: 'root', }) export class LoadingService { loading$: Subject<boolean> = new Subject(); startLoading() { this.loading$.next(true); } stopLoading() { this.loading$.next(false); } } ```
/content/code_sandbox/src/Presentation/Web/ClientApp/src/app/shared/services/loading.service.ts
xml
2016-06-03T17:49:56
2024-08-14T02:53:24
AspNetCoreSpa
fullstackproltd/AspNetCoreSpa
1,472
71
```xml export { createHash, createHmac, pbkdf2Sync, randomBytes } from "crypto"; //# sourceMappingURL=crypto.d.ts.map ```
/content/code_sandbox/lib.commonjs/crypto/crypto.d.ts
xml
2016-07-16T04:35:37
2024-08-16T13:37:46
ethers.js
ethers-io/ethers.js
7,843
30
```xml import cn from "classnames"; import React, { ChangeEvent, EventHandler, FocusEvent, FunctionComponent, } from "react"; import { ArrowsDownIcon, SvgIcon } from "coral-ui/components/icons"; import { withKeyboardFocus, withStyles } from "coral-ui/hocs"; import styles from "./SelectField.css"; export inte...
/content/code_sandbox/client/src/core/client/ui/components/v2/SelectField/SelectField.tsx
xml
2016-10-31T16:14:05
2024-08-06T16:15:57
talk
coralproject/talk
1,881
504
```xml import { Form } from "../../../../src"; import { OptionsModel } from "../../../../src/models/OptionsModel"; const fields = ["hobbies[]"]; class NewForm extends Form { options(): OptionsModel { return { softDelete: true, }; } hooks() { return { onInit(form) { form.$("hobbi...
/content/code_sandbox/tests/data/forms/nested/form.t1.ts
xml
2016-06-20T22:10:41
2024-08-10T13:14:33
mobx-react-form
foxhound87/mobx-react-form
1,093
147
```xml import * as React from 'react'; import { NativeExpoGoogleMapsViewProps, NativeExpoAppleMapsViewProps } from './Map.types'; export declare const NativeExpoGoogleMapsView: React.ComponentType<NativeExpoGoogleMapsViewProps>; export declare const NativeExpoAppleMapsView: React.ComponentType<NativeExpoAppleMapsViewPr...
/content/code_sandbox/packages/expo-maps/build/NativeExpoMapView.d.ts
xml
2016-08-15T17:14:25
2024-08-16T19:54:44
expo
expo/expo
32,004
126
```xml import React from 'react'; import TestRenderer from 'react-test-renderer'; import { resetStyled } from './utils'; describe('warns on dynamic creation', () => { let warn: ReturnType<typeof jest.spyOn>; let styled: ReturnType<typeof resetStyled>; beforeEach(() => { warn = jest.spyOn(console, 'warn').m...
/content/code_sandbox/packages/styled-components/src/test/warnOnDynamicCreation.test.tsx
xml
2016-08-16T06:41:32
2024-08-16T12:59:53
styled-components
styled-components/styled-components
40,332
332
```xml // See LICENSE in the project root for license information. export { Lib1Class } from 'api-extractor-lib3-test'; ```
/content/code_sandbox/build-tests/api-extractor-scenarios/src/exportImportedExternal2/index.ts
xml
2016-09-30T00:28:20
2024-08-16T18:54:35
rushstack
microsoft/rushstack
5,790
27
```xml import type { Ref } from 'vue-demi' import type { UnbindWithReset, ResetOption } from '../shared' export const databaseUnbinds = new WeakMap< object, Record<string, UnbindWithReset> >() export function internalUnbind( key: string, unbinds: Record<string, UnbindWithReset> | undefined, reset?: ResetOpt...
/content/code_sandbox/src/database/unbind.ts
xml
2016-01-07T22:57:53
2024-08-16T14:23:27
vuefire
vuejs/vuefire
3,833
146
```xml <?xml version="1.0" encoding="utf-8"?><!-- ~ ~ ~ Permission is hereby granted, free of charge, to any person obtaining a copy ~ of this software and associated documentation files (the "Software"), to deal ~ in the Software without restriction, including without limitation the rights ~ to use, copy, ...
/content/code_sandbox/app/src/main/AndroidManifest.xml
xml
2016-02-18T21:20:47
2024-07-30T10:09:54
material-intro
janheinrichmerker/material-intro
1,737
532
```xml /** * * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * */ import * as grpcWeb from 'grpc-web'; import {EchoRequest, EchoResponse} from './generated/echo_pb'; import {EchoServiceProm...
/content/code_sandbox/packages/grpc-web/test/tsc-tests/client04.ts
xml
2016-06-20T17:34:33
2024-08-16T17:02:17
grpc-web
grpc/grpc-web
8,520
380
```xml import { schemaComposer } from '../..'; import { parse, GraphQLInputObjectType } from 'graphql'; describe('github issue 363', () => { it('TypeMapper.makeSchemaDef should create default values from ast', () => { const documentNode = parse(` input AnInput { nonNullable: String! nullabl...
/content/code_sandbox/src/__tests__/github_issues/363-test.ts
xml
2016-06-07T07:43:40
2024-07-30T19:45:36
graphql-compose
graphql-compose/graphql-compose
1,205
175
```xml import fs from 'fs' import path from 'path' import { createGzip } from 'zlib' import { type Catalogs } from '@pnpm/catalogs.types' import { PnpmError } from '@pnpm/error' import { types as allTypes, type UniversalOptions, type Config } from '@pnpm/config' import { readProjectManifest } from '@pnpm/cli-utils' imp...
/content/code_sandbox/releasing/plugin-commands-publishing/src/pack.ts
xml
2016-01-28T07:40:43
2024-08-16T12:38:47
pnpm
pnpm/pnpm
28,869
1,938
```xml import { OperatorFunction, MonoTypeOperatorFunction } from '../types'; export declare function filter<T, S extends T>(predicate: (value: T, index: number) => value is S, thisArg?: any): OperatorFunction<T, S>; export declare function filter<T>(predicate: (value: T, index: number) => boolean, thisArg?: any): Mono...
/content/code_sandbox/deps/node-10.15.3/tools/node_modules/eslint/node_modules/rxjs/internal/operators/filter.d.ts
xml
2016-09-05T10:18:44
2024-08-11T13:21:40
LiquidCore
LiquidPlayer/LiquidCore
1,010
83
```xml import { serializeXmlString } from "../parser/xml-parser"; import { OpenXmlPackage } from "./open-xml-package"; import { Relationship } from "./relationship"; export class Part { protected _xmlDocument: Document; rels: Relationship[]; constructor(protected _package: OpenXmlPackage, public path: st...
/content/code_sandbox/src/common/part.ts
xml
2016-10-24T16:57:56
2024-08-16T17:39:34
docxjs
VolodymyrBaydalka/docxjs
1,168
188
```xml import ActivityLogsList, { IActivityListProps } from '@erxes/ui-log/src/activityLogs/components/ActivityList'; import ActivityItem from '../components/ActivityItem'; import React from 'react'; class ActivityList extends React.Component<IActivityListProps> { render() { return ( <ActivityLogsList {...
/content/code_sandbox/packages/ui-log/src/components/ActivityList.tsx
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
90
```xml <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> <file source-language="en" datatype="plaintext" original="ng2.template"> <body> <trans-unit id="6641024648411549335" datatype="html"> <source>Host</source> <cont...
/content/code_sandbox/src/frontend/translate/messages.pl.xlf
xml
2016-03-12T11:46:41
2024-08-16T19:56:44
pigallery2
bpatrik/pigallery2
1,727
70,503
```xml // `/custom` export is deprecated. // Use `/core` sub-package instead. import { MetadataJson, Examples, PhoneNumber, E164Number, CountryCallingCode, CountryCode, CarrierCode, NationalNumber, Extension, ParseError, NumberFoundLegacy, NumberFound, NumberType, NumberFormat, NumberingP...
/content/code_sandbox/custom.d.ts
xml
2016-11-21T18:13:12
2024-08-15T10:27:09
libphonenumber-js
catamphetamine/libphonenumber-js
2,757
1,752
```xml import { NextPage } from 'next' import { useRouter } from 'next/router' import qs from 'qs' import { useEffect } from 'react' import { usePlans } from '../src/context/PlansContext' import { getPurchaseOrSubscribeRoute } from '../src/helpers' import SubscribePage from '../src/pages/SubscribePage' export interfa...
/content/code_sandbox/landing/pages/subscribe.tsx
xml
2016-11-30T23:24:21
2024-08-16T00:24:59
devhub
devhubapp/devhub
9,652
171
```xml import * as gulp from 'gulp'; import {runSequence, task} from './tools/utils'; // -------------- // Clean (override). gulp.task('clean', task('clean', 'all')); gulp.task('clean.dist', task('clean', 'dist')); gulp.task('clean.test', task('clean', 'test')); gulp.task('clean.tmp', task('clean', 'tmp')); ...
/content/code_sandbox/gulpfile.ts
xml
2016-01-04T01:19:52
2024-08-15T22:13:36
pev
AlexTatiyants/pev
2,757
439
```xml <?xml version="1.0" encoding="utf-8"?> <Project DefaultTargets="Build" xmlns="path_to_url"> <ItemGroup Label="ProjectConfigurations"> <ProjectConfiguration Include="Debug|Win32"> <Configuration>Debug</Configuration> <Platform>Win32</Platform> </ProjectConfiguration> <ProjectConfiguratio...
/content/code_sandbox/3rdparty/distorm/distorm.vcxproj
xml
2016-01-27T05:26:30
2024-08-16T08:06:22
ScyllaHide
x64dbg/ScyllaHide
3,365
2,194
```xml import { $NextFunctionVer, $RequestExtend, $ResponseExtend } from '../types'; export function match(regexp: RegExp): any { return function ( req: $RequestExtend, res: $ResponseExtend, next: $NextFunctionVer, value: string ): void { if (regexp.exec(value)) { next(); } else { ...
/content/code_sandbox/packages/middleware/src/middlewares/match.ts
xml
2016-04-15T16:21:12
2024-08-16T09:38:01
verdaccio
verdaccio/verdaccio
16,189
90
```xml export * from './array'; export * from './date-time'; export * from './reg-exp'; export * from './string-validators'; ```
/content/code_sandbox/src/app/utils/index.ts
xml
2016-09-20T13:50:42
2024-08-06T13:58:18
loklak_search
fossasia/loklak_search
1,829
29
```xml import { Formik, Form, Field } from 'formik'; import { Plus } from 'lucide-react'; import { SchemaOf, object, string } from 'yup'; import { useReducer } from 'react'; import { Button } from '@@/buttons'; import { FormControl } from '@@/form-components/FormControl'; import { Input } from '@@/form-components/Inpu...
/content/code_sandbox/app/react/portainer/settings/SettingsView/HiddenContainersPanel/AddLabelForm.tsx
xml
2016-05-19T20:15:28
2024-08-16T19:15:14
portainer
portainer/portainer
30,083
441
```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/env/scenario/encrypt_shadow/authority.xml
xml
2016-01-18T12:49:26
2024-08-16T15:48:11
shardingsphere
apache/shardingsphere
19,707
635
```xml import { ipcMain } from 'electron'; import { IpcChannel } from '../../../common/ipc/lib/IpcChannel'; import type { IpcReceiver, IpcSender, } from '../../../common/ipc/lib/IpcChannel'; /** * Subclass of IpcChannel that uses ipcMain to receive messages. */ export class MainIpcChannel<Incoming, Outgoing> ext...
/content/code_sandbox/source/main/ipc/lib/MainIpcChannel.ts
xml
2016-10-05T13:48:54
2024-08-13T22:03:19
daedalus
input-output-hk/daedalus
1,230
270
```xml import Assets from '../../../../src/asset_manager/model/Assets'; import AssetView from '../../../../src/asset_manager/view/AssetView'; describe('AssetView', () => { let testContext: { view?: AssetView }; beforeEach(() => { testContext = {}; }); beforeEach(() => { const coll = new Assets(); ...
/content/code_sandbox/test/specs/asset_manager/view/AssetView.ts
xml
2016-01-22T00:23:19
2024-08-16T11:20:59
grapesjs
GrapesJS/grapesjs
21,687
192
```xml import useSWR from "swr"; import fetcher from "libs/fetcher"; import Link from "next/link"; import styles from "./Collections.module.css"; interface CollectionProps { id_collection?: number; } const Collections = ({ id_collection }: CollectionProps) => { const { data, error } = useSWR( "/api/collection...
/content/code_sandbox/examples/with-unsplash/components/Collections/index.tsx
xml
2016-10-05T23:32:51
2024-08-16T19:44:30
next.js
vercel/next.js
124,056
293
```xml <!-- ~ ~ ~ path_to_url ~ ~ Unless required by applicable law or agreed to in writing, software ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --> <window xmlns="path_to_url" caption="mainMsg://application.caption"> <layout> <cssLayout id="horizo...
/content/code_sandbox/modules/web/src/com/haulmont/cuba/web/app/main/main-screen.xml
xml
2016-03-24T07:55:56
2024-07-14T05:13:48
cuba
cuba-platform/cuba
1,342
515
```xml <clickhouse> <zookeeper> <node index="1"> <host>zoo1</host> <port>2181</port> </node> <node index="2"> <host>zoo2</host> <port>2181</port> </node> <node index="3"> <host>zoo3</host> <port>2181...
/content/code_sandbox/tests/integration/test_drop_if_empty/configs/zookeeper.xml
xml
2016-06-02T08:28:18
2024-08-16T18:39:33
ClickHouse
ClickHouse/ClickHouse
36,234
124
```xml import React from "react"; import {OperationSchema} from "cad/craft/schema/schema"; import {FieldBasicProps, fieldToSchemaGeneric} from "cad/mdf/ui/field"; import {Types} from "cad/craft/schema/types"; import {CheckboxField} from "cad/craft/wizard/components/form/Fields"; export interface CheckboxWidgetProps ex...
/content/code_sandbox/web/app/cad/mdf/ui/CheckboxWidget.tsx
xml
2016-08-26T21:55:19
2024-08-15T01:02:53
jsketcher
xibyte/jsketcher
1,461
164
```xml import { pathToFileURL } from 'node:url' import { existsSync, promises as fsp, readFileSync } from 'node:fs' import { cpus } from 'node:os' import { join, relative, resolve } from 'pathe' import { createRouter as createRadixRouter, exportMatcher, toRouteMatcher } from 'radix3' import { joinURL, withTrailingSlash...
/content/code_sandbox/packages/nuxt/src/core/nitro.ts
xml
2016-10-26T11:18:47
2024-08-16T19:32:46
nuxt
nuxt/nuxt
53,705
5,745
```xml import * as React from 'react'; import createSvgIcon from '../utils/createSvgIcon'; const FilePDBIcon = createSvgIcon({ svg: ({ classes }) => ( <svg xmlns="path_to_url" viewBox="0 0 2048 2048" className={classes.svg} focusable="false"> <path d="M256 1920h896v128H128V0h1115l549 549v475h-128V640h-512V...
/content/code_sandbox/packages/react-icons-mdl2/src/components/FilePDBIcon.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
238
```xml import path from 'path' import util from 'util' import gracefulFs from 'graceful-fs' const readdir = util.promisify(gracefulFs.readdir) export async function readModulesDir (modulesDir: string): Promise<string[] | null> { try { return await _readModulesDir(modulesDir) } catch (err: unknown) { if (u...
/content/code_sandbox/fs/read-modules-dir/src/index.ts
xml
2016-01-28T07:40:43
2024-08-16T12:38:47
pnpm
pnpm/pnpm
28,869
273
```xml <?xml version="1.0" encoding="utf-8"?> <Project xmlns="path_to_url"> <!-- visual studio will add these, but this will make that unnecessary and keep project files cleaner --> <ItemGroup> <Compile Update="*.Designer.cs" DesignTime="True" AutoGen="True" DependentUpon="$([System.IO.Path]::GetFileNameWith...
/content/code_sandbox/build/resource.targets
xml
2016-07-26T14:13:32
2024-08-15T14:35:11
aspnet-api-versioning
dotnet/aspnet-api-versioning
3,024
133
```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 express or implied. ...
/content/code_sandbox/client/pom.xml
xml
2016-06-15T08:56:27
2024-07-22T17:20:00
RocketMQC
ProgrammerAnthony/RocketMQC
1,072
425
```xml <?xml version="1.0" encoding="UTF-8"?> <definitions id="definitions" xmlns="path_to_url" xmlns:activiti="path_to_url" targetNamespace="Examples"> <process id="nestedSubProcessWithTimer"> <startEvent id="theStart" /> <sequenceFlow id="flow1" sourceRef="theStart" targetRef="outerSubProcess" ...
/content/code_sandbox/modules/flowable5-test/src/test/resources/org/activiti/engine/test/bpmn/subprocess/SubProcessTest.testNestedSimpleSubprocessWithTimerOnInnerSubProcess.bpmn20.xml
xml
2016-10-13T07:21:43
2024-08-16T15:23:14
flowable-engine
flowable/flowable-engine
7,715
522
```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="M4 6.51C4 6.64 3.95 6.76 3.85 6.85L2.85 7.85C2.7 8.01 2.46 8.05 2...
/content/code_sandbox/app/src/main/res/drawable/ic_preset_temaki_board_train.xml
xml
2016-07-02T10:44:04
2024-08-16T18:55:54
StreetComplete
streetcomplete/StreetComplete
3,781
1,202
```xml import * as React from 'react'; import { HorizontalBarChartWithAxisTooltipExample } from './HorizontalBarChartWithAxis.AxisTooltip.Example'; import { HorizontalBarChartWithAxisBasicExample } from './HorizontalBarChartWithAxis.Basic.Example'; import { HorizontalBarChartWithAxisStringAxisTooltipExample } from './...
/content/code_sandbox/packages/react-examples/src/react-charting/HorizontalBarChartWithAxis/index.stories.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
146
```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 itercuhmean = require( './index' ); /** * Returns an iterator protocol-compliant object. * * @returns iter...
/content/code_sandbox/lib/node_modules/@stdlib/stats/iter/cuhmean/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
346
```xml import * as React from 'react'; import { Menu } from '@fluentui/react-northstar'; const items = [ { key: 'editorials', content: 'Editorials' }, { key: 'review', content: 'Reviews' }, { key: 'events', content: 'Upcoming Events' }, ]; const MenuExampleUnderlined = () => <Menu defaultActiveIndex={0} items={...
/content/code_sandbox/packages/fluentui/docs/src/examples/components/Menu/Types/MenuExampleUnderlined.shorthand.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
103
```xml import { DataSource } from "../data-source/DataSource" import * as yargs from "yargs" import chalk from "chalk" import { PlatformTools } from "../platform/PlatformTools" import path from "path" import process from "process" import { CommandUtils } from "./CommandUtils" /** * Synchronizes database schema with e...
/content/code_sandbox/src/commands/SchemaSyncCommand.ts
xml
2016-02-29T07:41:14
2024-08-16T18:28:52
typeorm
typeorm/typeorm
33,875
339
```xml import React from 'react'; import { View, ScrollView, StyleSheet, Image } from 'react-native'; import { Text, Card, Button, Icon } from 'react-native-elements'; import { Header } from '../components/header'; const users = [ { name: 'brynn', avatar: 'path_to_url }, { name: 'thot leader', av...
/content/code_sandbox/src/views/cards.tsx
xml
2016-09-04T22:44:08
2024-07-13T15:14:00
react-native-elements-app
react-native-elements/react-native-elements-app
1,285
721
```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>PreferenceSpecifiers</key> <array> <dict> <key>FooterText</key> <string>This application makes use of the following third party libraries:</string> <key>Title<...
/content/code_sandbox/Example/Pods/Target Support Files/Pods-DBDebugToolkit_Example/Pods-DBDebugToolkit_Example-acknowledgements.plist
xml
2016-11-19T13:18:25
2024-08-11T21:26:13
DBDebugToolkit
dbukowski/DBDebugToolkit
1,262
517
```xml <!-- Description: item link --> <rss version="2.0"> <channel> <item> <link>path_to_url </item> </channel> </rss> ```
/content/code_sandbox/testdata/translator/rss/feed_item_link_-_rss_channel_item_link.xml
xml
2016-01-23T02:44:34
2024-08-16T15:16:03
gofeed
mmcdole/gofeed
2,547
43
```xml import { expectType } from "tsd"; import pino from '../../pino'; import { pino as pinoNamed, P } from "../../pino"; import * as pinoStar from "../../pino"; import pinoCjsImport = require ("../../pino"); const pinoCjs = require("../../pino"); const { P: pinoCjsNamed } = require('pino') const log = pino(); expec...
/content/code_sandbox/test/types/pino-import.test-d.ts
xml
2016-02-16T14:14:29
2024-08-16T17:25:00
pino
pinojs/pino
13,839
258
```xml // See LICENSE in the project root for license information. type RushLibModuleType = Record<string, unknown>; declare const global: typeof globalThis & { ___rush___rushLibModule?: RushLibModuleType; }; export class RushSdk { private static _initialized: boolean = false; public static ensureInitialized()...
/content/code_sandbox/libraries/rush-lib/src/pluginFramework/PluginLoader/RushSdk.ts
xml
2016-09-30T00:28:20
2024-08-16T18:54:35
rushstack
microsoft/rushstack
5,790
154
```xml <?xml version="1.0" encoding="UTF-8"?> <!-- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. This code is free software; you can redistribute it and/or modify it published by the Free Software Foundation. Oracle designates this particular file as subject to the "Classpath" exception as provided by...
/content/code_sandbox/visualvm/libs.profiler/lib.profiler.charts/build.xml
xml
2016-09-12T14:44:30
2024-08-16T14:41:50
visualvm
oracle/visualvm
2,821
266
```xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="path_to_url" android:layout_width="wrap_content" android:layout_height="@dimen/default_preview_height" android:background="@android:color/transparent" android:gravity="center" ...
/content/code_sandbox/RxUI/src/main/res/layout/color_preview.xml
xml
2016-09-24T09:30:45
2024-08-16T09:54:41
RxTool
Tamsiree/RxTool
12,242
74
```xml import { Component } from '@angular/core'; import { Code } from '@domain/code'; @Component({ selector: 'cascade-select-loading-demo', template: ` <app-docsectiontext> <p>Loading state can be used <i>loading</i> property.</p> </app-docsectiontext> <div class="card flex...
/content/code_sandbox/src/app/showcase/doc/cascadeselect/loadingdoc.ts
xml
2016-01-16T09:23:28
2024-08-16T19:58:20
primeng
primefaces/primeng
9,969
316
```xml <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE filesystem PUBLIC "-//NetBeans//DTD Filesystem 1.1//EN" "path_to_url"> <filesystem> <folder name="ConsumerVisualVM"> <file name="glassfish.instance"> <attr name="instanceCreate" methodvalue="org.netbeans.modules.consumervisualvm.api.PluginI...
/content/code_sandbox/plugins/consumerentrypoints/src/org/netbeans/modules/consumerentrypoints/resources/layer.xml
xml
2016-09-12T14:44:30
2024-08-16T14:41:50
visualvm
oracle/visualvm
2,821
144
```xml <?xml version="1.0" encoding="UTF-8" ?> <!-- --> <!DOCTYPE ldml SYSTEM "../../dtd/cldr/common/dtd/ldml.dtd"> <ldml> <identity> <version number="$Revision$"/> <language type="sr"/> </identity> <rbnf> <rulesetGrouping type="SpelloutRules"> <ruleset type="lenient-pars...
/content/code_sandbox/icu4c/source/data/xml/rbnf/sr.xml
xml
2016-01-08T02:42:32
2024-08-16T18:14:55
icu
unicode-org/icu
2,693
149
```xml import { checkPermission } from '@erxes/api-utils/src/permissions'; import { IContext } from '../../../connectionResolver'; const loyaltyConfigQueries = { async loyaltyConfigs(_root, _params, { models }: IContext) { return models.LoyaltyConfigs.find({}); } }; checkPermission(loyaltyConfigQueries, 'loya...
/content/code_sandbox/packages/plugin-loyalties-api/src/graphql/resolvers/queries/configs.ts
xml
2016-11-11T06:54:50
2024-08-16T10:26:06
erxes
erxes/erxes
3,479
86
```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 HOURS_IN_DAY = require( './index' ); // TESTS // // The variable is a number... { // eslint-disable-nex...
/content/code_sandbox/lib/node_modules/@stdlib/constants/time/hours-in-day/docs/types/test.ts
xml
2016-03-24T04:19:52
2024-08-16T09:03:19
stdlib
stdlib-js/stdlib
4,266
100
```xml import { DialectOptions } from '../../dialect.js'; import { expandPhrases } from '../../expandPhrases.js'; import { EOF_TOKEN, isToken, Token, TokenType } from '../../lexer/token.js'; import { dataTypes, keywords } from './spark.keywords.js'; import { functions } from './spark.functions.js'; // path_to_url cons...
/content/code_sandbox/src/languages/spark/spark.formatter.ts
xml
2016-09-12T13:09:04
2024-08-16T10:30:12
sql-formatter
sql-formatter-org/sql-formatter
2,272
1,251
```xml import { IroColor, IroColorPickerOptions } from '@irojs/iro-core'; import { IroColorPicker } from './ColorPicker' export const enum IroInputType { Start, Move, End }; export interface IroComponentProps extends IroColorPickerOptions { parent: IroColorPicker; index: number; // component index id?: st...
/content/code_sandbox/src/ComponentTypes.ts
xml
2016-09-30T14:58:33
2024-08-15T09:07:03
iro.js
jaames/iro.js
1,293
140
```xml import * as React from 'react'; import { render } from '@testing-library/react'; import { isConformant } from '../../testing/isConformant'; import { CarouselNav } from './CarouselNav'; import { CarouselNavButton } from '../CarouselNavButton/CarouselNavButton'; describe('CarouselNav', () => { isConformant({ ...
/content/code_sandbox/packages/react-components/react-carousel-preview/library/src/components/CarouselNav/CarouselNav.test.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
150
```xml import { Box, Flex, FormLabel, Input, Tag, TagCloseButton, TagLabel, } from '@chakra-ui/react'; import { clone } from 'underscore'; import { FC, KeyboardEvent, useEffect, useRef, useState } from 'react'; export type TagsFieldProperties = { label?: string; id?: string; tags?: string[]; onCh...
/content/code_sandbox/src/renderer/components/fields/tags-field.tsx
xml
2016-05-14T02:18:49
2024-08-16T02:46:28
ElectroCRUD
garrylachman/ElectroCRUD
1,538
602
```xml <?xml version="1.0" encoding="utf-8"?> <com.jiang.android.rxjavaapp.widget.HackyViewPager xmlns:android="path_to_url" android:id="@+id/photo_view_pager" android:layout_width="match_parent" android:layout_height="match_parent" /> ```
/content/code_sandbox/app/src/main/res/layout/activity_photoview.xml
xml
2016-03-13T05:16:32
2024-04-29T09:08:01
RxJavaApp
jiang111/RxJavaApp
1,045
65
```xml import _ from 'lodash'; import { Logger, StorageList } from '@verdaccio/types'; import { readFilePromise } from './fs'; export type LocalStorage = { list: any; secret: string; }; export async function loadPrivatePackages(path: string, logger: Logger): Promise<LocalStorage> { const list: StorageList = [...
/content/code_sandbox/packages/plugins/local-storage/src/pkg-utils.ts
xml
2016-04-15T16:21:12
2024-08-16T09:38:01
verdaccio
verdaccio/verdaccio
16,189
222
```xml <OpenSearchDescription xmlns="path_to_url" xmlns:moz="path_to_url"> <ShortName>Movie Info</ShortName> <Description> Search for Movies </Description> <InputEncoding>UTF-8</InputEncoding> <Url type="text/html" method="get" template="path_to_url{searchTerms}"/> </OpenSearchDescription> ```
/content/code_sandbox/999_old-code/059_movie-website_TODO/02_image-upload-GCS/public/opensearch.xml
xml
2016-08-24T22:50:00
2024-08-15T19:57:40
golang-web-dev
GoesToEleven/golang-web-dev
3,336
82
```xml import React from "react"; import { DetailsTab } from "@requestly-ui/resource-table"; import { ExecutionEvent } from "../../../types"; import ExecutionDetails from "./ExecutionDetails"; const executionDetailsTabs: DetailsTab<ExecutionEvent>[] = [ { key: "details", label: "Details", render: (execut...
/content/code_sandbox/browser-extension/common/src/devtools/containers/executions/details-tabs/index.tsx
xml
2016-12-01T04:36:06
2024-08-16T19:12:19
requestly
requestly/requestly
2,121
88
```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/ServiceCategories.spec.ts
xml
2016-09-02T07:00:06
2024-08-16T03:50:21
trafficcontrol
apache/trafficcontrol
1,043
589
```xml import { IterableX } from '../iterablex.js'; import { RefCountList } from './_refcountlist.js'; import { create } from '../create.js'; import { OperatorFunction } from '../../interfaces.js'; class PublishedBuffer<T> extends IterableX<T> { private _buffer: RefCountList<T>; private _source: Iterator<T>; pri...
/content/code_sandbox/src/iterable/operators/publish.ts
xml
2016-02-22T20:04:19
2024-08-09T18:46:41
IxJS
ReactiveX/IxJS
1,319
838
```xml import { localized, React } from 'mailspring-exports'; import { ipcRenderer, shell } from 'electron'; import { Notification } from 'mailspring-component-kit'; import { Disposable } from 'event-kit'; interface UpdateNotificationState { updateAvailable: boolean; version: string; updateIsManual: boolean; } ...
/content/code_sandbox/app/internal_packages/notifications/lib/items/update-notification.tsx
xml
2016-10-13T06:45:50
2024-08-16T18:14:37
Mailspring
Foundry376/Mailspring
15,331
451
```xml <resources> <string name="app_name">MyDiary</string> <!--Release Note--> <string name="release_note_title"></string> <string name="release_note">**0.3.0.170424_1_A\n -Fix bug\n -Support simple photo function\n -Modify layout\n\n **0.2.9.170416_1_AH\n -fix ...
/content/code_sandbox/app/src/main/res/values-th/strings.xml
xml
2016-11-04T02:04:13
2024-08-07T01:13:41
MyDiary
DaxiaK/MyDiary
1,580
2,149
```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:tools="path_to_url" xmlns:xliff="urn:oasis:names:tc:xliff:document...
/content/code_sandbox/lib/java/com/google/android/material/badge/res/values-hu/strings.xml
xml
2016-12-05T16:11:29
2024-08-16T17:51:42
material-components-android
material-components/material-components-android
16,176
203
```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="es" original="../Resources.res...
/content/code_sandbox/src/Compatibility/Microsoft.DotNet.ApiSymbolExtensions/xlf/Resources.es.xlf
xml
2016-07-22T21:26:02
2024-08-16T17:23:58
sdk
dotnet/sdk
2,627
621
```xml import React, {useEffect, useRef, useState} from 'react' import {Timer} from '../utils' import {Notification as NotificationType} from '../reducers/notifications/types' import {DismissNotification} from './NotificationsSystem' import {useComponentsContext} from '../hooks/useComponentsContext' import SlideTransit...
/content/code_sandbox/src/components/NotificationContainer.tsx
xml
2016-04-18T14:42:12
2024-08-13T16:26:17
reapop
LouisBarranqueiro/reapop
1,547
464
```xml <?xml version="1.0" encoding="UTF-8"?> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" version="1.2"> <file source-language="en" target-language="sl" datatype="plaintext" original="wizard.en.xlf"> <body> <trans-unit id="9XidDHG" resname="wizard.intro.title"> <source>wizard.intro.title</s...
/content/code_sandbox/translations/wizard.sl.xlf
xml
2016-10-20T17:06:34
2024-08-16T18:27:30
kimai
kimai/kimai
3,084
131
```xml // See LICENSE.txt for license information. import React, {useCallback} from 'react'; import {useIntl} from 'react-intl'; import {Keyboard} from 'react-native'; import FormattedRelativeTime from '@components/formatted_relative_time'; import UserItem from '@components/user_item'; import {Screens} from '@constan...
/content/code_sandbox/app/components/post_list/post/body/acknowledgements/users_list/user_list_item.tsx
xml
2016-10-07T16:52:32
2024-08-16T12:08:38
mattermost-mobile
mattermost/mattermost-mobile
2,155
511
```xml <resources> <string name="app_name">TedPermission</string> <string name="tedpermission_setting">Setting</string> <string name="tedpermission_close">Close</string> <string name="tedpermission_confirm">Confirm</string> </resources> ```
/content/code_sandbox/tedpermission/src/main/res/values/strings.xml
xml
2016-02-18T01:37:51
2024-08-14T10:57:59
TedPermission
ParkSangGwon/TedPermission
1,733
59
```xml // import * as cdk from 'aws-cdk-lib'; // import { Template } from 'aws-cdk-lib/assertions'; // import * as Cdk from '../lib/cdk-stack'; // example test. To run these tests, uncomment this file along with the // example resource in lib/cdk-stack.ts test('SQS Queue Created', () => { // const app = new cdk.App(...
/content/code_sandbox/applications/feedback_sentiment_analyzer/cdk/test/cdk.test.ts
xml
2016-08-18T19:06:57
2024-08-16T18:59:44
aws-doc-sdk-examples
awsdocs/aws-doc-sdk-examples
9,298
152
```xml import type { Dispatch, SetStateAction } from 'react'; import { useCallback, useEffect, useMemo, useState } from 'react'; import { c, msgid } from 'ttag'; import { useGetEncryptionPreferences, useKeyTransparencyContext } from '@proton/components'; import { useModalTwo } from '@proton/components/components/moda...
/content/code_sandbox/applications/mail/src/app/hooks/useSendInfo.tsx
xml
2016-06-08T11:16:51
2024-08-16T14:14:27
WebClients
ProtonMail/WebClients
4,300
3,422
```xml <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="StateButton"> <!--text color--> <attr name="normalTextColor" format="color|reference"/> <attr name="pressedTextColor" format="color|reference"/> <attr name="unableTextColor" format="color|reference"/>...
/content/code_sandbox/libary/src/main/res/values/attrs.xml
xml
2016-11-07T16:11:44
2024-08-02T07:34:12
StateButton
niniloveyou/StateButton
1,302
392
```xml <?xml version="1.0" encoding="utf-8"?> <merge xmlns:android="path_to_url" xmlns:tools="path_to_url"> <TextView android:id="@+id/title_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:lineSpacingMultiplier="0.8" android:padding...
/content/code_sandbox/epoxy-sample/src/main/res/layout/view_header.xml
xml
2016-08-08T23:05:11
2024-08-16T16:11:07
epoxy
airbnb/epoxy
8,486
215
```xml 'use strict'; import { expect } from 'chai'; import { SemVer } from 'semver'; import * as TypeMoq from 'typemoq'; import { ConfigurationTarget, TextDocument, TextEditor, Uri } from 'vscode'; import { IDocumentManager, IWorkspaceService } from '../../client/common/application/types'; import { IComponentAdapter ...
/content/code_sandbox/src/test/interpreters/helpers.unit.test.ts
xml
2016-01-19T10:50:01
2024-08-12T21:05:24
pythonVSCode
DonJayamanne/pythonVSCode
2,078
1,361
```xml import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChildren, EventEmitter, Input, Output, QueryList, ViewChildren } from "@angular/core"; import { UntypedFormGroup } from "@angular/forms"; import { DynamicFormComponent, DynamicFormComponentService, ...
/content/code_sandbox/projects/ng-dynamic-forms/ui-basic/src/lib/dynamic-basic-form.component.ts
xml
2016-06-01T20:26:33
2024-08-05T16:40:39
ng-dynamic-forms
udos86/ng-dynamic-forms
1,315
348
```xml # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # You may obtain a copy of the Licence at # path_to_url # # As a special exception this file can also be included in modules # with other source code as long as that source code has been #...
/content/code_sandbox/builds/posix/make.shared.targets
xml
2016-03-16T06:10:37
2024-08-16T14:13:51
firebird
FirebirdSQL/firebird
1,223
1,158
```xml declare interface IReactOfflineFirstWebPartStrings { PropertyPaneDescription: string; BasicGroupName: string; DescriptionFieldLabel: string; } declare module 'ReactOfflineFirstWebPartStrings' { const strings: IReactOfflineFirstWebPartStrings; export = strings; } ```
/content/code_sandbox/samples/react-offline-first/src/webparts/reactOfflineFirst/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
61
```xml import * as CHANNELS from '@storybook/core/channels'; import * as TYPES from '@storybook/core/types'; import * as GLOBAL from '@storybook/global'; import * as CLIENT_LOGGER from '@storybook/core/client-logger'; import * as CORE_EVENTS from '@storybook/core/core-events'; import * as PREVIEW_API from '@storybook/...
/content/code_sandbox/code/core/src/preview/globals/runtime.ts
xml
2016-03-18T04:23:44
2024-08-16T19:22:08
storybook
storybookjs/storybook
83,755
334
```xml import { Component, OnInit, ViewChild, ViewContainerRef } from "@angular/core"; import { ApiService } from "@bitwarden/common/abstractions/api.service"; import { UserVerificationService } from "@bitwarden/common/auth/abstractions/user-verification/user-verification.service.abstraction"; import { StateService } ...
/content/code_sandbox/apps/web/src/app/auth/settings/security/security-keys.component.ts
xml
2016-03-09T23:14:01
2024-08-16T15:07:51
clients
bitwarden/clients
8,877
478
```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/third_party/angle/src/translator_static.vcxproj
xml
2016-09-27T03:41:10
2024-08-16T10:42:57
miniblink49
weolar/miniblink49
7,069
9,879
```xml import { MultiStepInput, InputStep } from "../multiStepInput"; import { ILaunchRequestArgs } from "../../../debugger/debugSessionBase"; import { DebugConfigurationState, platformTypeDirectPickConfig, DEBUG_TYPES, DebugScenarioType, } from "../debugConfigTypesAndConstants"; import { BaseConfigPro...
/content/code_sandbox/src/extension/debuggingConfiguration/configurationProviders/attachConfigProvider.ts
xml
2016-01-20T21:10:07
2024-08-16T15:29:52
vscode-react-native
microsoft/vscode-react-native
2,617
625
```xml import { lockfileToDepGraph } from '@pnpm/calc-dep-state' import { type DepPath } from '@pnpm/types' test('lockfileToDepGraph', () => { expect(lockfileToDepGraph({ lockfileVersion: '9.0', importers: {}, packages: { ['foo@1.0.0' as DepPath]: { dependencies: { bar: '1.0.0', ...
/content/code_sandbox/packages/calc-dep-state/test/lockfileToDepGraph.test.ts
xml
2016-01-28T07:40:43
2024-08-16T12:38:47
pnpm
pnpm/pnpm
28,869
357
```xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="path_to_url" xmlns:xsi="path_to_url" xsi:schemaLocation="path_to_url path_to_url"> <modelVersion>4.0.0</modelVersion> <groupId>com.didispace</groupId> <artifactId>eureka-feign-upload-client</artifactId> <version>1.0.0</version> <packaging>jar</packagi...
/content/code_sandbox/2-Dalston版教程示例/eureka-feign-upload-client/pom.xml
xml
2016-08-21T03:39:52
2024-08-13T15:13:21
SpringCloud-Learning
dyc87112/SpringCloud-Learning
7,344
733
```xml import { NotificationCategory } from "./category"; import { featured } from "./featured"; import { moderation } from "./moderation"; import { reply } from "./reply"; import { staffReply } from "./staffReply"; /** * categories stores all the notification categories in a flat list. */ const categories: Notifica...
/content/code_sandbox/server/src/core/server/services/notifications/email/categories/categories.ts
xml
2016-10-31T16:14:05
2024-08-06T16:15:57
talk
coralproject/talk
1,881
85
```xml <clickhouse> <profiles> <default> <any_join_distinct_right_table_keys>1</any_join_distinct_right_table_keys> </default> </profiles> </clickhouse> ```
/content/code_sandbox/tests/integration/test_row_policy/configs/users.d/any_join_distinct_right_table_keys.xml
xml
2016-06-02T08:28:18
2024-08-16T18:39:33
ClickHouse
ClickHouse/ClickHouse
36,234
45
```xml import * as React from 'react'; import createSvgIcon from '../utils/createSvgIcon'; const BIDashboardIcon = createSvgIcon({ svg: ({ classes }) => ( <svg xmlns="path_to_url" viewBox="0 0 2048 2048" className={classes.svg} focusable="false"> <path d="M512 896h384v1152H512V896zm128 1024h128v-896H640v89...
/content/code_sandbox/packages/react-icons-mdl2/src/components/BIDashboardIcon.tsx
xml
2016-06-06T15:03:44
2024-08-16T18:49:29
fluentui
microsoft/fluentui
18,221
787