text stringlengths 5 22M | id stringlengths 12 177 | metadata dict | __index_level_0__ int64 0 1.37k |
|---|---|---|---|
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# -------------------------------------------------------------------... | azure-devops-python-api/azure-devops/azure/devops/v7_1/nuget/nuget_client.py/0 | {
"file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/nuget/nuget_client.py",
"repo_id": "azure-devops-python-api",
"token_count": 6954
} | 367 |
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# -------------------------------------------------------------------... | azure-devops-python-api/azure-devops/azure/devops/v7_1/release/models.py/0 | {
"file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/release/models.py",
"repo_id": "azure-devops-python-api",
"token_count": 66331
} | 368 |
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# -------------------------------------------------------------------... | azure-devops-python-api/azure-devops/azure/devops/v7_1/service_hooks/service_hooks_client.py/0 | {
"file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/service_hooks/service_hooks_client.py",
"repo_id": "azure-devops-python-api",
"token_count": 9762
} | 369 |
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# -------------------------------------------------------------------... | azure-devops-python-api/azure-devops/azure/devops/v7_1/test_plan/models.py/0 | {
"file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/test_plan/models.py",
"repo_id": "azure-devops-python-api",
"token_count": 39215
} | 370 |
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# -------------------------------------------------------------------... | azure-devops-python-api/azure-devops/azure/devops/v7_1/upack_packaging/upack_packaging_client.py/0 | {
"file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_1/upack_packaging/upack_packaging_client.py",
"repo_id": "azure-devops-python-api",
"token_count": 2103
} | 371 |
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Generate Recordings",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "... | azure-quantum-python/.devcontainer/recordings/devcontainer.json/0 | {
"file_path": "azure-quantum-python/.devcontainer/recordings/devcontainer.json",
"repo_id": "azure-quantum-python",
"token_count": 747
} | 372 |
##
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
##
import json
from json.decoder import JSONDecodeError
import logging
import os
import time
from azure.identity import CredentialUnavailableError
from azure.core.credentials import AccessToken
from azure.quantum._constant... | azure-quantum-python/azure-quantum/azure/quantum/_authentication/_token.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/azure/quantum/_authentication/_token.py",
"repo_id": "azure-quantum-python",
"token_count": 1326
} | 373 |
##
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
##
from __future__ import annotations
import re
import os
from re import Match
from typing import (
Optional,
Callable,
Union,
Any
)
from azure.core.credentials import AzureKeyCredential
from azure.core.pipe... | azure-quantum-python/azure-quantum/azure/quantum/_workspace_connection_params.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/azure/quantum/_workspace_connection_params.py",
"repo_id": "azure-quantum-python",
"token_count": 9648
} | 374 |
##
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
##
from typing import TYPE_CHECKING, Optional, Union, Protocol, List
from abc import abstractmethod
from azure.quantum._client.models import SessionDetails, SessionStatus, SessionJobFailurePolicy
from azure.quantum.job.wo... | azure-quantum-python/azure-quantum/azure/quantum/job/session.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/azure/quantum/job/session.py",
"repo_id": "azure-quantum-python",
"token_count": 4869
} | 375 |
##
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
##
"""Defines set of targets for interacting with Azure Quantum"""
from .target import Target
from .ionq import IonQ
from .quantinuum import Quantinuum
from .rigetti import Rigetti
from .pasqal import Pasqal
from .microsoft.elements.dft impor... | azure-quantum-python/azure-quantum/azure/quantum/target/__init__.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/azure/quantum/target/__init__.py",
"repo_id": "azure-quantum-python",
"token_count": 228
} | 376 |
"""Defines targets and helper functions for the Rigetti provider"""
##
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
##
__all__ = [
"Readout",
"Result",
]
import json
from typing import Union, Dict, List, TypeVar, cast
from ...job import Job
RawData = Union[i... | azure-quantum-python/azure-quantum/azure/quantum/target/rigetti/result.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/azure/quantum/target/rigetti/result.py",
"repo_id": "azure-quantum-python",
"token_count": 883
} | 377 |
##
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
##
# Physical resource estimation for Elliptic Curve Cryptography starting from
# logical resource estimates
import argparse
import os
from azure.quantum import Workspace
from azure.quantum.target.microsoft import MicrosoftEstimator, QubitPar... | azure-quantum-python/azure-quantum/examples/resource_estimation/ecc.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/examples/resource_estimation/ecc.py",
"repo_id": "azure-quantum-python",
"token_count": 1345
} | 378 |
##
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
##
import os
import warnings
import pytest
from importlib.metadata import version, PackageNotFoundError
qsharp_installed = False
try:
# change path to the test folder so that it
# can correctly import the .qs file... | azure-quantum-python/azure-quantum/tests/unit/import_qsharp.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/tests/unit/import_qsharp.py",
"repo_id": "azure-quantum-python",
"token_count": 354
} | 379 |
<jupyter_start><jupyter_text>👋🌍 Hello, world: Submit a Q job to RigettiIn this notebook, we'll review the basics of Azure Quantum by submitting a simple *job*, or quantum program, to [Rigetti](https://www.rigetti.com/). We will use [Q](https://learn.microsoft.com/azure/quantum/user-guide/) to express the quantum job.... | azure-quantum-python/samples/hello-world/HW-rigetti-qsharp.ipynb/0 | {
"file_path": "azure-quantum-python/samples/hello-world/HW-rigetti-qsharp.ipynb",
"repo_id": "azure-quantum-python",
"token_count": 1312
} | 380 |
/*------------------------------------
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
All rights reserved.
------------------------------------ */
import * as d3 from "d3";
import * as d3Format from "d3-format";
export type LegendData = {
title: string;
legendTitle: string;
value: num... | azure-quantum-python/visualization/react-lib/src/components/d3-visualization-components/D3HelperFunctions.ts/0 | {
"file_path": "azure-quantum-python/visualization/react-lib/src/components/d3-visualization-components/D3HelperFunctions.ts",
"repo_id": "azure-quantum-python",
"token_count": 2826
} | 381 |
export * from "./components";
| azure-quantum-python/visualization/react-lib/src/index.ts/0 | {
"file_path": "azure-quantum-python/visualization/react-lib/src/index.ts",
"repo_id": "azure-quantum-python",
"token_count": 9
} | 382 |
Tokenizer
=========
.. js:autoclass:: Tokenizer
:members:
.. js:autoclass:: RegExpTokenizer
:members:
.. js:autoclass:: SplittingTokenizer
:members:
| bistring/docs/JavaScript/Tokenizer.rst/0 | {
"file_path": "bistring/docs/JavaScript/Tokenizer.rst",
"repo_id": "bistring",
"token_count": 64
} | 383 |
/*!
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT license.
*/
import { Alignment } from "..";
test("Empty Alignment", () => {
expect(() => new Alignment([])).toThrow();
const a = Alignment.identity(0);
expect(a.values).toEqual([[0, 0]]);
expect(a.originalBou... | bistring/js/tests/alignment.test.ts/0 | {
"file_path": "bistring/js/tests/alignment.test.ts",
"repo_id": "bistring",
"token_count": 2181
} | 384 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license.
import re
from typing import Match, Pattern
from ._typing import Regex, Replacement
def compile_regex(regex: Regex) -> Pattern[str]:
if isinstance(regex, str):
return re.compile(regex)
else:
return ... | bistring/python/bistring/_regex.py/0 | {
"file_path": "bistring/python/bistring/_regex.py",
"repo_id": "bistring",
"token_count": 173
} | 385 |
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"groupName": {
"type": "string",
"metadata": {
"description": "Specifies the name of the Resource Group."
}... | botbuilder-python/generators/app/templates/echo/{{cookiecutter.bot_name}}/deploymentTemplates/deployWithNewResourceGroup/template-BotApp-new-rg.json/0 | {
"file_path": "botbuilder-python/generators/app/templates/echo/{{cookiecutter.bot_name}}/deploymentTemplates/deployWithNewResourceGroup/template-BotApp-new-rg.json",
"repo_id": "botbuilder-python",
"token_count": 7137
} | 386 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
from botbuilder.adapters.slack.slack_event import SlackEvent
from botbuilder.adapters.slack.slack_payload import SlackPayload
class SlackRequestBody:
def __init__(self, **kwargs):
self.ch... | botbuilder-python/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/slack_request_body.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/slack_request_body.py",
"repo_id": "botbuilder-python",
"token_count": 624
} | 387 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
from botbuilder.core import BotTelemetryClient, NullTelemetryClient
from .luis_recognizer_options import LuisRecognizerOptions
class LuisRecognizerOptionsV3(LuisRecognizerOptions):
def __init__(... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_options_v3.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/luis/luis_recognizer_options_v3.py",
"repo_id": "botbuilder-python",
"token_count": 526
} | 388 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from msrest.serialization import Model
class QnARequestContext(Model):
"""
The context associated with QnA.
Used to mark if the current prompt is relevant with a previous question or not.
"""
_attribute... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/models/qna_request_context.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/models/qna_request_context.py",
"repo_id": "botbuilder-python",
"token_count": 264
} | 389 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
from botbuilder.core import CardFactory
from botbuilder.schema import Activity, ActivityTypes, CardAction, HeroCard
from ..models import QueryResult
class QnACardBuilder:
"""
Message activit... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/utils/qna_card_builder.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/utils/qna_card_builder.py",
"repo_id": "botbuilder-python",
"token_count": 903
} | 390 |
{
"entities": {
"$instance": {
"Composite2": [
{
"endIndex": 69,
"modelType": "Composite Entity Extractor",
"recognitionSources": [
"model"
],
"score": 0.97076714,
"startIndex": 0,
"text": "http... | botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/Composite2_v3.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/Composite2_v3.json",
"repo_id": "botbuilder-python",
"token_count": 5786
} | 391 |
{
"answers": [
{
"questions": [],
"answer": "No good match found in KB.",
"score": 0,
"id": -1,
"source": null,
"metadata": []
}
],
"debugInfo": null
} | botbuilder-python/libraries/botbuilder-ai/tests/qna/test_data/NoAnswerFoundInKb.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/qna/test_data/NoAnswerFoundInKb.json",
"repo_id": "botbuilder-python",
"token_count": 154
} | 392 |
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# ---------------------------------------------------------------------... | botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 148
} | 393 |
[bdist_wheel]
universal=0 | botbuilder-python/libraries/botbuilder-applicationinsights/setup.cfg/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-applicationinsights/setup.cfg",
"repo_id": "botbuilder-python",
"token_count": 10
} | 394 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from unittest.mock import Mock
import azure.cosmos.errors as cosmos_errors
from azure.cosmos.cosmos_client import CosmosClient
import pytest
from botbuilder.core import StoreItem
from botbuilder.azure import CosmosDbStorage, ... | botbuilder-python/libraries/botbuilder-azure/tests/test_cosmos_storage.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-azure/tests/test_cosmos_storage.py",
"repo_id": "botbuilder-python",
"token_count": 4398
} | 395 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
from .bot_state import BotState
from .turn_context import TurnContext
class BotStateSet:
def __init__(self, bot_states: List[BotState]):
self.bot_states = list(bot_states)
def add(se... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/bot_state_set.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/bot_state_set.py",
"repo_id": "botbuilder-python",
"token_count": 323
} | 396 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC, abstractmethod
from botbuilder.schema import Activity
class QueueStorage(ABC):
"""
A base class for enqueueing an Activity for later processing.
"""
@abstractmethod
async def queue_... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/queue_storage.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/queue_storage.py",
"repo_id": "botbuilder-python",
"token_count": 409
} | 397 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from logging import Logger
from botbuilder.core import Bot, BotAdapter, ChannelServiceHandler
from botbuilder.schema import (
Activity,
ResourceResponse,
)
from botframework.connector.auth import (
Authentication... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/skills/skill_handler.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/skills/skill_handler.py",
"repo_id": "botbuilder-python",
"token_count": 2191
} | 398 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License
class TelemetryConstants:
"""Telemetry logger property names."""
ATTACHMENTS_PROPERTY: str = "attachments"
CHANNEL_ID_PROPERTY: str = "channelId"
CONVERSATION_ID_PROPERTY: str = "conversationId"
CONVERSAT... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/telemetry_constants.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/telemetry_constants.py",
"repo_id": "botbuilder-python",
"token_count": 313
} | 399 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# pylint: disable=too-many-lines
from typing import List
import aiounittest
from botbuilder.core import BotAdapter, TurnContext
from botbuilder.core.teams import TeamsActivityHandler
from botbuilder.schema import (
Activ... | botbuilder-python/libraries/botbuilder-core/tests/teams/test_teams_activity_handler.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/tests/teams/test_teams_activity_handler.py",
"repo_id": "botbuilder-python",
"token_count": 17868
} | 400 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from botbuilder.schema import (
Activity,
ActivityTypes,
ChannelAccount,
ConversationAccount,
)
class TestMessage:
@staticmethod
def message(id: str = "1234") -> Activity: # pylint: disable=invalid-... | botbuilder-python/libraries/botbuilder-core/tests/test_message.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/tests/test_message.py",
"repo_id": "botbuilder-python",
"token_count": 299
} | 401 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from botbuilder.core import TurnContext
from botframework.connector import Channels
class Channel:
"""
Methods for determining channel-specific functionality.
"""
@staticmethod
def supports_suggested_ac... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/channel.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/channel.py",
"repo_id": "botbuilder-python",
"token_count": 1635
} | 402 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC, abstractmethod
from botbuilder.core import TurnContext, NullTelemetryClient, BotTelemetryClient
from .dialog_reason import DialogReason
from .dialog_event import DialogEvent
from .dialog_turn_status impor... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialog.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialog.py",
"repo_id": "botbuilder-python",
"token_count": 2800
} | 403 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC, abstractmethod
from typing import Iterable
from botbuilder.dialogs.memory.scopes import MemoryScope
class ComponentMemoryScopesBase(ABC):
@abstractmethod
def get_memory_scopes(self) -> Iterabl... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/component_memory_scopes_base.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/component_memory_scopes_base.py",
"repo_id": "botbuilder-python",
"token_count": 108
} | 404 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from collections import namedtuple
from botbuilder.dialogs.memory import scope_path
from .memory_scope import MemoryScope
class ClassMemoryScope(MemoryScope):
def __init__(self):
super().__init__(scope_path.SE... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/scopes/class_memory_scope.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/memory/scopes/class_memory_scope.py",
"repo_id": "botbuilder-python",
"token_count": 1007
} | 405 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Callable, Dict, List
from botbuilder.core import TurnContext
from botbuilder.dialogs.choices import (
Choice,
ChoiceFactoryOptions,
ChoiceRecognizers,
FindChoicesOptions,
ListStyle,
)
f... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/choice_prompt.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/choice_prompt.py",
"repo_id": "botbuilder-python",
"token_count": 2279
} | 406 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from copy import deepcopy
from typing import List
from botframework.connector.token_api.models import TokenExchangeRequest
from botbuilder.schema import (
Activity,
ActivityTypes,
ExpectedReplies,
DeliveryMod... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/skills/skill_dialog.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/skills/skill_dialog.py",
"repo_id": "botbuilder-python",
"token_count": 6260
} | 407 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import unittest
import aiounittest
from botbuilder.dialogs.prompts import (
ActivityPrompt,
PromptOptions,
PromptValidatorContext,
)
from botbuilder.schema import Activity, ActivityTypes
from botbuilder.core imp... | botbuilder-python/libraries/botbuilder-dialogs/tests/test_activity_prompt.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/tests/test_activity_prompt.py",
"repo_id": "botbuilder-python",
"token_count": 5185
} | 408 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import os
from setuptools import setup
VERSION = os.environ["packageVersion"] if "packageVersion" in os.environ else "4.16.0"
REQUIRES = [
"botbuilder-schema==4.16.0",
"botframework-connector==4.16.0",
"botbuilde... | botbuilder-python/libraries/botbuilder-integration-aiohttp/setup.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-integration-aiohttp/setup.py",
"repo_id": "botbuilder-python",
"token_count": 682
} | 409 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from enum import Enum
class SignInConstants(str, Enum):
# Name for the signin invoke to verify the 6-digit authentication code as part of sign-in.
verify_state_operation_name = "signin/verifyState"
# Name for si... | botbuilder-python/libraries/botbuilder-schema/botbuilder/schema/_sign_in_enums.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-schema/botbuilder/schema/_sign_in_enums.py",
"repo_id": "botbuilder-python",
"token_count": 161
} | 410 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
"""
Base tests that all storage providers should implement in their own tests.
They handle the storage-based assertions, internally.
All tests return true if assertions pass to indicate that the code ran to completion, passi... | botbuilder-python/libraries/botbuilder-testing/botbuilder/testing/storage_base_tests.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-testing/botbuilder/testing/storage_base_tests.py",
"repo_id": "botbuilder-python",
"token_count": 5257
} | 411 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from msrest.pipeline import AsyncPipeline, AsyncHTTPPolicy, SansIOHTTPPolicy
from msrest.universal_http.async_requests import AsyncRequestsHTTPSender as Driver
from msrest.pipeline.async_requests import (
AsyncRequestsCre... | botbuilder-python/libraries/botframework-connector/botframework/connector/aiohttp_bf_pipeline.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/aiohttp_bf_pipeline.py",
"repo_id": "botbuilder-python",
"token_count": 549
} | 412 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from logging import Logger
from ..bot_framework_sdk_client_async import BotFrameworkConnectorConfiguration
from ..http_client_factory import HttpClientFactory
from ._government_cloud_bot_framework_authentication import (
... | botbuilder-python/libraries/botframework-connector/botframework/connector/auth/bot_framework_authentication_factory.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/bot_framework_authentication_factory.py",
"repo_id": "botbuilder-python",
"token_count": 2054
} | 413 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from logging import Logger
from msrest.authentication import Authentication
from .authentication_constants import AuthenticationConstants
from .government_constants import GovernmentConstants
from .microsoft_app_credentials... | botbuilder-python/libraries/botframework-connector/botframework/connector/auth/password_service_client_credential_factory.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/password_service_client_credential_factory.py",
"repo_id": "botbuilder-python",
"token_count": 1344
} | 414 |
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# ---------------------------------------------------------------------... | botbuilder-python/libraries/botframework-connector/botframework/connector/token_api/aio/operations_async/_user_token_operations_async.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/token_api/aio/operations_async/_user_token_operations_async.py",
"repo_id": "botbuilder-python",
"token_count": 6292
} | 415 |
interactions:
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.1 msrest/0.4.23
azure-bo... | botbuilder-python/libraries/botframework-connector/tests/recordings/test_attachments_get_info_invalid_attachment_id_fails.yaml/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/recordings/test_attachments_get_info_invalid_attachment_id_fails.yaml",
"repo_id": "botbuilder-python",
"token_count": 445
} | 416 |
interactions:
- request:
body: '{"type": "message", "channelId": "slack", "from": {"id": "B21UTEF8S:T03CWQ0QB"},
"recipient": {"id": "U19KH8EHJ:T03CWQ0QB"}, "textFormat": "markdown", "attachmentLayout":
"list", "text": "Thread activity"}'
headers:
Accept: [application/json]
Accept-Encodi... | botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_reply_to_activity_with_invalid_activity_id_fails.yaml/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_reply_to_activity_with_invalid_activity_id_fails.yaml",
"repo_id": "botbuilder-python",
"token_count": 1195
} | 417 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import pytest
from botframework.connector.auth import EndorsementsValidator
class TestEndorsmentsValidator:
def test_none_channel_id_parameter_should_pass(self):
is_endorsed = EndorsementsValidator.validate(Non... | botbuilder-python/libraries/botframework-connector/tests/test_endorsements_validator.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/test_endorsements_validator.py",
"repo_id": "botbuilder-python",
"token_count": 543
} | 418 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import asyncio
from uuid import UUID
from typing import Awaitable, Callable, List
import botframework.streaming as streaming
import botframework.streaming.payloads as payloads
from botframework.streaming.payloads.models impo... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/assemblers/receive_request_assembler.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/assemblers/receive_request_assembler.py",
"repo_id": "botbuilder-python",
"token_count": 1313
} | 419 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import json
from .serializable import Serializable
class StreamDescription(Serializable):
# pylint: disable=invalid-name
def __init__(self, *, id: str = None, content_type: str = None, length: int = None):
... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/models/stream_description.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/models/stream_description.py",
"repo_id": "botbuilder-python",
"token_count": 405
} | 420 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC
class TransportConstants(ABC):
MAX_PAYLOAD_LENGTH = 4096
MAX_HEADER_LENGTH = 48
MAX_LENGTH = 999999
MIN_LENGTH = 0
| botbuilder-python/libraries/botframework-streaming/botframework/streaming/transport/transport_constants.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/transport/transport_constants.py",
"repo_id": "botbuilder-python",
"token_count": 85
} | 421 |
from typing import List
import aiounittest
from botframework.streaming import PayloadStream
from botframework.streaming.payload_transport import PayloadReceiver
from botframework.streaming.transport import TransportReceiverBase
class MockTransportReceiver(TransportReceiverBase):
# pylint: disable=unused-argumen... | botbuilder-python/libraries/botframework-streaming/tests/test_payload_receiver.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/tests/test_payload_receiver.py",
"repo_id": "botbuilder-python",
"token_count": 913
} | 422 |
@echo off
rd /s /q generated
echo [91mWARNING:[0m There is manual code for lines 127-130 in attachments_operations_async.py and lines 12-26 in the connector_client.py.
echo [91mCalling this command script has removed those sections of code.[0m
@echo on
call npx autorest README.md --python --use=".\node_modules\@m... | botbuilder-python/swagger/generateClient.cmd/0 | {
"file_path": "botbuilder-python/swagger/generateClient.cmd",
"repo_id": "botbuilder-python",
"token_count": 581
} | 423 |
from uuid import uuid4
from datetime import datetime
from http import HTTPStatus
from typing import List
from botbuilder.core import (
ActivityHandler,
BotFrameworkAdapter,
BotFrameworkHttpClient,
CardFactory,
ConversationState,
UserState,
MessageFactory,
TurnContext,
)
from botbuilder... | botbuilder-python/tests/experimental/sso/parent/bots/parent_bot.py/0 | {
"file_path": "botbuilder-python/tests/experimental/sso/parent/bots/parent_bot.py",
"repo_id": "botbuilder-python",
"token_count": 4008
} | 424 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import asyncio
import sys
from types import MethodType
from flask import Flask, Response, request
from botbuilder.core import (
BotFrameworkAdapter,
BotFrameworkAdapterSettings,
MessageFactory,
TurnContext,
)... | botbuilder-python/tests/functional-tests/functionaltestbot/flask_bot_app/bot_app.py/0 | {
"file_path": "botbuilder-python/tests/functional-tests/functionaltestbot/flask_bot_app/bot_app.py",
"repo_id": "botbuilder-python",
"token_count": 1492
} | 425 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .dialog_bot import DialogBot
from .auth_bot import AuthBot
__all__ = ["DialogBot", "AuthBot"]
| botbuilder-python/tests/skills/skills-prototypes/dialog-to-dialog/authentication-bot/bots/__init__.py/0 | {
"file_path": "botbuilder-python/tests/skills/skills-prototypes/dialog-to-dialog/authentication-bot/bots/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 55
} | 426 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import sys
import traceback
from datetime import datetime
from aiohttp import web
from aiohttp.web import Request, Response
from botbuilder.core import (
BotFrameworkAdapterSettings,
ConversationState,
MemoryStor... | botbuilder-python/tests/skills/skills-prototypes/simple-bot-to-bot/simple-root-bot/app.py/0 | {
"file_path": "botbuilder-python/tests/skills/skills-prototypes/simple-bot-to-bot/simple-root-bot/app.py",
"repo_id": "botbuilder-python",
"token_count": 1280
} | 427 |
import argparse
import multiprocessing
import multiprocessing.pool
import os
import subprocess
from pathlib import Path
from typing import cast
import xml.etree.cElementTree as ET
import tempfile
import glob
import cffsubr.__main__
import fontmake.instantiator
import fontTools.designspaceLib
import fontTools.ttLib
imp... | cascadia-code/build.py/0 | {
"file_path": "cascadia-code/build.py",
"repo_id": "cascadia-code",
"token_count": 13624
} | 428 |
# Add or remove dependencies here and then use pip-tool's
# pip-compile -U requirements.in
# to update requirements.txt (the lock file, so to speak).
fontmake
psautohint
gftools
vttLib
skia-pathops
fontTools[ufo,lxml,woff]
vttmisc
| cascadia-code/requirements.in/0 | {
"file_path": "cascadia-code/requirements.in",
"repo_id": "cascadia-code",
"token_count": 84
} | 429 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ahookabove" format="2">
<advance width="1200"/>
<unicode hex="1EA2"/>
<outline>
<component base="A"/>
<component base="hookabovecomb.case"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/A_hookabove.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/A_hookabove.glif",
"repo_id": "cascadia-code",
"token_count": 91
} | 430 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Dcroat" format="2">
<advance width="1200"/>
<unicode hex="0110"/>
<outline>
<component base="Eth"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/D_croat.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/D_croat.glif",
"repo_id": "cascadia-code",
"token_count": 76
} | 431 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Eng" format="2">
<advance width="1200"/>
<unicode hex="014A"/>
<anchor x="600" y="-388" name="bottom"/>
<outline>
<contour>
<point x="493" y="-480" type="line"/>
<point x="699" y="-477" type="line" smooth="yes"/>
<point x="955" y="-473"/>... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_ng.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/E_ng.glif",
"repo_id": "cascadia-code",
"token_count": 559
} | 432 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="F.half" format="2">
<advance width="839"/>
<outline>
<contour>
<point x="109" y="0" type="line"/>
<point x="260" y="0" type="line"/>
<point x="260" y="639" type="line"/>
<point x="109" y="639" type="line"/>
</contour>
<contour>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/F_.half.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/F_.half.glif",
"repo_id": "cascadia-code",
"token_count": 349
} | 433 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Io-cy" format="2">
<advance width="1200"/>
<unicode hex="0401"/>
<outline>
<component base="Ie-cy"/>
<component base="dieresiscomb.case" xOffset="30"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/I_o-cy.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/I_o-cy.glif",
"repo_id": "cascadia-code",
"token_count": 100
} | 434 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Kacute" format="2">
<advance width="1200"/>
<unicode hex="1E30"/>
<outline>
<component base="K"/>
<component base="acutecomb.case" xOffset="99"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/K_acute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/K_acute.glif",
"repo_id": "cascadia-code",
"token_count": 97
} | 435 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ldot" format="2">
<advance width="1200"/>
<unicode hex="013F"/>
<outline>
<component base="L"/>
<component base="periodcentered" xOffset="233" yOffset="220"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/L_dot.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/L_dot.glif",
"repo_id": "cascadia-code",
"token_count": 418
} | 436 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Nhookleft" format="2">
<advance width="1200"/>
<unicode hex="019D"/>
<anchor x="600" y="-388" name="bottom"/>
<outline>
<contour>
<point x="-74" y="-480" type="line"/>
<point x="15" y="-477" type="line" smooth="yes"/>
<point x="271" y="-4... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/N_hookleft.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/N_hookleft.glif",
"repo_id": "cascadia-code",
"token_count": 560
} | 437 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Ocircumflexgrave" format="2">
<advance width="1200"/>
<unicode hex="1ED2"/>
<outline>
<component base="O"/>
<component base="circumflexcomb.case"/>
<component base="gravecomb.case" xOffset="304" yOffset="248"/>
</outline>
<lib>
<dict>
<... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexgrave.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_circumflexgrave.glif",
"repo_id": "cascadia-code",
"token_count": 317
} | 438 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Omacronacute" format="2">
<advance width="1200"/>
<unicode hex="1E52"/>
<outline>
<component base="O"/>
<component base="macroncomb.case"/>
<component base="acutecomb.case" xOffset="79" yOffset="341"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_macronacute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/O_macronacute.glif",
"repo_id": "cascadia-code",
"token_count": 118
} | 439 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Pi" format="2">
<advance width="1200"/>
<unicode hex="03A0"/>
<outline>
<component base="Pe-cy"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/P_i.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/P_i.glif",
"repo_id": "cascadia-code",
"token_count": 77
} | 440 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Scedilla" format="2">
<advance width="1200"/>
<unicode hex="015E"/>
<outline>
<component base="S"/>
<component base="cedillacomb" xOffset="35"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/S_cedilla.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/S_cedilla.glif",
"repo_id": "cascadia-code",
"token_count": 93
} | 441 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Tcedilla" format="2">
<advance width="1200"/>
<unicode hex="0162"/>
<outline>
<component base="T"/>
<component base="cedillacomb" xOffset="20"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/T_cedilla.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/T_cedilla.glif",
"repo_id": "cascadia-code",
"token_count": 93
} | 442 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Udotbelow" format="2">
<advance width="1200"/>
<unicode hex="1EE4"/>
<outline>
<component base="U"/>
<component base="dotbelowcomb"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/U_dotbelow.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/U_dotbelow.glif",
"repo_id": "cascadia-code",
"token_count": 89
} | 443 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Zacute" format="2">
<advance width="1200"/>
<unicode hex="0179"/>
<outline>
<component base="Z"/>
<component base="acutecomb.case" xOffset="79"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/Z_acute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/Z_acute.glif",
"repo_id": "cascadia-code",
"token_count": 96
} | 444 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="_alefWasla-ar.fina.rlig" format="2">
<anchor x="0" y="0" name="_overlap"/>
<anchor x="343" y="-141" name="bottom"/>
<anchor x="249" y="1624" name="top"/>
<outline>
<component base="_alef-ar.fina.short.rlig"/>
<component base="wasla-ar" xOffset="-357" y... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_alefW_asla-ar.fina.rlig.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_alefW_asla-ar.fina.rlig.glif",
"repo_id": "cascadia-code",
"token_count": 406
} | 445 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="_vbelow-ar" format="2">
<advance width="1200"/>
<anchor x="602" y="-117" name="_bottom"/>
<anchor x="602" y="-2" name="_bottom.dot"/>
<anchor x="603" y="-476" name="bottom"/>
<outline>
<component base="_vabove" yOffset="-995"/>
</outline>
<lib>
<... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_vbelow-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/_vbelow-ar.glif",
"repo_id": "cascadia-code",
"token_count": 372
} | 446 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="acircumflexdotbelow" format="2">
<advance width="1200"/>
<unicode hex="1EAD"/>
<outline>
<component base="a"/>
<component base="dotbelowcomb"/>
<component base="circumflexcomb" xOffset="-20"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/acircumflexdotbelow.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/acircumflexdotbelow.glif",
"repo_id": "cascadia-code",
"token_count": 111
} | 447 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alef-ar.short" format="2">
<advance width="1200"/>
<anchor x="610" y="-141" name="bottom"/>
<anchor x="610" y="-26" name="bottom.dot"/>
<anchor x="588" y="1204" name="top.dot"/>
<outline>
<contour>
<point x="471" y="0" type="line"/>
<point x=... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.short.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alef-ar.short.glif",
"repo_id": "cascadia-code",
"token_count": 281
} | 448 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefMadda-ar" format="2">
<advance width="1200"/>
<unicode hex="0622"/>
<anchor x="588" y="1546" name="top"/>
<outline>
<component base="alef-ar.short"/>
<component base="madda-ar" xOffset="-15" yOffset="81"/>
</outline>
<lib>
<dict>
<key... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefM_adda-ar.glif",
"repo_id": "cascadia-code",
"token_count": 193
} | 449 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefdagesh-hb.BRACKET.500" format="2">
<advance width="1200"/>
<anchor x="448.786" y="373.713" name="_center"/>
<outline>
<contour>
<point x="448.786" y="306.095" type="curve" smooth="yes"/>
<point x="486.352" y="306.095"/>
<point x="517.15... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefdagesh-hb.B_R_A_C_K_E_T_.500.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/alefdagesh-hb.B_R_A_C_K_E_T_.500.glif",
"repo_id": "cascadia-code",
"token_count": 504
} | 450 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="beh-ar.init" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.init"/>
<component base="dotbelow-ar" xOffset="170" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1</... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.init.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/beh-ar.init.glif",
"repo_id": "cascadia-code",
"token_count": 164
} | 451 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behThreedotshorizontalbelow-ar.alt" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.alt"/>
<component base="_dots.horz.below" xOffset="-618" yOffset="-18"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyph... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotshorizontalbelow-ar.alt.glif",
"repo_id": "cascadia-code",
"token_count": 355
} | 452 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behThreedotsupbelow-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.fina"/>
<component base="threedotsupbelow-ar" xOffset="-20" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<s... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behT_hreedotsupbelow-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 175
} | 453 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behVabove-ar.init.alt" format="2">
<advance width="1200"/>
<anchor x="0" y="0" name="overlap"/>
<outline>
<component base="behDotless-ar.init.alt"/>
<component base="vabove-ar" xOffset="275" yOffset="345"/>
</outline>
<lib>
<dict>
<key>com.... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.init.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_above-ar.init.alt.glif",
"repo_id": "cascadia-code",
"token_count": 362
} | 454 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="behVinvertedbelow-ar.medi" format="2">
<advance width="1200"/>
<outline>
<component base="behDotless-ar.medi"/>
<component base="_vinvertedbelow-ar" xOffset="-10" yOffset="-24"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<stri... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/behV_invertedbelow-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 171
} | 455 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="breve" format="2">
<advance width="1200"/>
<unicode hex="02D8"/>
<outline>
<component base="brevecomb"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
<array>
<dict>
<key>alignment</key>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/breve.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/breve.glif",
"repo_id": "cascadia-code",
"token_count": 275
} | 456 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="colon_colon_equal.liga" format="2">
<advance width="1200"/>
<outline>
<contour>
<point x="1900" y="835" type="line"/>
<point x="3320" y="835" type="line"/>
<point x="3320" y="1085" type="line"/>
<point x="1900" y="1085" type="line"/>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/colon_colon_equal.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/colon_colon_equal.liga.glif",
"repo_id": "cascadia-code",
"token_count": 628
} | 457 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="cuberoot-ar" format="2">
<advance width="1200"/>
<unicode hex="0606"/>
<outline>
<component base="_cuberoot_fourthroot-ar"/>
<component base="three-persian.small01" xOffset="110" yOffset="-115"/>
</outline>
<lib>
<dict>
<key>com.schriftgest... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/cuberoot-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/cuberoot-ar.glif",
"repo_id": "cascadia-code",
"token_count": 595
} | 458 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="dalThreedotsdown-ar.fina" format="2">
<advance width="1200"/>
<guideline x="127" y="632" angle="0"/>
<outline>
<component base="dal-ar.fina"/>
<component base="threedotsdownabove-ar" xOffset="36" yOffset="502"/>
</outline>
<lib>
<dict>
<key... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsdown-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dalT_hreedotsdown-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 188
} | 459 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="deviceControlThreeControl" format="2">
<advance width="1200"/>
<unicode hex="2413"/>
<outline>
<component base="D.half" xOffset="-10" yOffset="781"/>
<component base="three.half" xOffset="370"/>
</outline>
<lib>
<dict>
<key>com.schriftgesta... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/deviceC_ontrolT_hreeC_ontrol.glif",
"repo_id": "cascadia-code",
"token_count": 477
} | 460 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="dotabove-ar" format="2">
<advance width="1200"/>
<anchor x="600" y="782" name="_top"/>
<anchor x="600" y="542" name="_top.dot"/>
<anchor x="601" y="1002" name="top"/>
<outline>
<component base="dotbelow-ar" yOffset="1016"/>
</outline>
<lib>
<dict... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dotabove-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/dotabove-ar.glif",
"repo_id": "cascadia-code",
"token_count": 197
} | 461 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="ehookabove" format="2">
<advance width="1200"/>
<unicode hex="1EBB"/>
<outline>
<component base="e"/>
<component base="hookabovecomb" xOffset="20"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ehookabove.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ehookabove.glif",
"repo_id": "cascadia-code",
"token_count": 94
} | 462 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="emacron" format="2">
<advance width="1200"/>
<unicode hex="0113"/>
<outline>
<component base="e"/>
<component base="macroncomb"/>
</outline>
</glyph>
| cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/emacron.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/emacron.glif",
"repo_id": "cascadia-code",
"token_count": 88
} | 463 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="feh-ar.medi" format="2">
<advance width="1200"/>
<outline>
<component base="fehDotless-ar.medi"/>
<component base="dotabove-ar" xOffset="2" yOffset="347"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1</st... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/feh-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 165
} | 464 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="fehDotbelowThreedotsabove-ar" format="2">
<advance width="1200"/>
<unicode hex="08A4"/>
<outline>
<component base="fehDotless-ar"/>
<component base="dotbelow-ar" xOffset="290" yOffset="-24"/>
<component base="threedotsupabove-ar" xOffset="249" yOffse... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehD_otbelowT_hreedotsabove-ar.glif",
"repo_id": "cascadia-code",
"token_count": 514
} | 465 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="fehThreedotsupbelow-ar.alt" format="2">
<advance width="1200"/>
<outline>
<component base="fehDotless-ar.alt"/>
<component base="threedotsupbelow-ar" xOffset="-38" yOffset="-18"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.Comp... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/fehT_hreedotsupbelow-ar.alt.glif",
"repo_id": "cascadia-code",
"token_count": 353
} | 466 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.