text stringlengths 5 22M | id stringlengths 12 177 | metadata dict | __index_level_0__ int64 0 1.37k |
|---|---|---|---|
from archai.common.common import common_init
from archai.supergraph.utils.augmented_searcher import search
if __name__ == "__main__":
conf = common_init(config_filepath="confs/aug/wresnet40x2_cifar10_b512.yaml")
search(conf)
| archai/scripts/supergraph/augmented_search.py/0 | {
"file_path": "archai/scripts/supergraph/augmented_search.py",
"repo_id": "archai",
"token_count": 89
} | 342 |
import random
import ray
def sample_from_parent_pool(parentpool):
if len(parentpool):
# Finds a model by computing the lower convex hull of the
# genotype-accuracy pool and sampling along a tolerance region around it.
# Here we are just going to simulate it.
index = random.randint... | archai/scripts/supergraph/petridish_ray_mock.py/0 | {
"file_path": "archai/scripts/supergraph/petridish_ray_mock.py",
"repo_id": "archai",
"token_count": 1299
} | 343 |
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"ty... | archai/tasks/face_segmentation/.vscode/launch.json/0 | {
"file_path": "archai/tasks/face_segmentation/.vscode/launch.json",
"repo_id": "archai",
"token_count": 249
} | 344 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
# See Readme.md
import argparse
import json
import os
import sys
import glob
import time
from datetime import datetime
import platform
import statistics
import tracemalloc
import gc
import psutil
import logging
import traceback
from shutil import... | archai/tasks/face_segmentation/aml/azure/runner.py/0 | {
"file_path": "archai/tasks/face_segmentation/aml/azure/runner.py",
"repo_id": "archai",
"token_count": 13234
} | 345 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
def get_dlc_metrics(dlc_file):
from olive.snpe.tools.dev import get_dlc_info, get_dlc_metrics
csv_data = get_dlc_info(dlc_file)
info = get_dlc_metrics(dlc_file)
return (csv_data, info['macs'], info['parameters'])
| archai/tasks/face_segmentation/aml/snpe/dlc_helper.py/0 | {
"file_path": "archai/tasks/face_segmentation/aml/snpe/dlc_helper.py",
"repo_id": "archai",
"token_count": 123
} | 346 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
from pathlib import Path
from argparse import ArgumentParser
import os
import time
import torch
import mlflow
from pytorch_lightning import Trainer
from pytorch_lightning.callbacks import ModelCheckpoint
from archai.datasets.cv.face_synthetics i... | archai/tasks/face_segmentation/train.py/0 | {
"file_path": "archai/tasks/face_segmentation/train.py",
"repo_id": "archai",
"token_count": 2614
} | 347 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import argparse
import json
from transformers import (
AutoTokenizer,
DataCollatorForLanguageModeling,
GPT2Config,
GPT2LMHeadModel,
TrainingArguments,
)
from archai.common.file_utils import check_available_checkpoint
from ar... | archai/tasks/text_generation/train.py/0 | {
"file_path": "archai/tasks/text_generation/train.py",
"repo_id": "archai",
"token_count": 1473
} | 348 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import torch
import os
import shutil
from archai.datasets.nlp.tokenizer_utils.gpt2_tokenizer import Gpt2Tokenizer
from archai.datasets.nlp.nvidia_data_loader_utils import LMOrderedIterator, LMMultiFileIterator
def test_lm_ordered_iterator():
... | archai/tests/datasets/nlp/test_nvidia_data_loader_utils.py/0 | {
"file_path": "archai/tests/datasets/nlp/test_nvidia_data_loader_utils.py",
"repo_id": "archai",
"token_count": 652
} | 349 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import random
from typing import Tuple
import pytest
import torch
from archai.discrete_search.api.search_objectives import SearchObjectives
from archai.discrete_search.evaluators.functional import EvaluationFunction
from archai.discrete_search.... | archai/tests/discrete_search/api/test_search_objectives.py/0 | {
"file_path": "archai/tests/discrete_search/api/test_search_objectives.py",
"repo_id": "archai",
"token_count": 1803
} | 350 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import os
import pytest
from transformers import GPT2LMHeadModel
from archai.discrete_search.api.search_space import (
BayesOptSearchSpace,
EvolutionarySearchSpace,
)
from archai.discrete_search.search_spaces.nlp.transformer_flex.search... | archai/tests/discrete_search/search_spaces/nlp/transformer_flex/test_transformer_flex_search_space.py/0 | {
"file_path": "archai/tests/discrete_search/search_spaces/nlp/transformer_flex/test_transformer_flex_search_space.py",
"repo_id": "archai",
"token_count": 1759
} | 351 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import os
import pytest
import torch
from transformers import GPT2Config, GPT2LMHeadModel
from archai.common.file_utils import create_file_name_identifier
from archai.onnx.export import export_to_onnx
from archai.onnx.optimization import optimi... | archai/tests/quantization/test_ptq.py/0 | {
"file_path": "archai/tests/quantization/test_ptq.py",
"repo_id": "archai",
"token_count": 1014
} | 352 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import torch
from torch.optim import Optimizer
from archai.trainers.coin_betting_optimizer import CocobBackprop, CocobOns
def test_cocob_backprop():
model = torch.nn.Linear(5, 5)
loss_fn = torch.nn.MSELoss()
optimizer = CocobBackpr... | archai/tests/trainers/test_coin_betting_optimizer.py/0 | {
"file_path": "archai/tests/trainers/test_coin_betting_optimizer.py",
"repo_id": "archai",
"token_count": 388
} | 353 |
# --------------------------------------------------------------------------------------------
# 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/issue_tests/test_issue_268.py/0 | {
"file_path": "azure-devops-python-api/azure-devops/azure/devops/issue_tests/test_issue_268.py",
"repo_id": "azure-devops-python-api",
"token_count": 597
} | 354 |
# --------------------------------------------------------------------------------------------
# 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_0/task/models.py/0 | {
"file_path": "azure-devops-python-api/azure-devops/azure/devops/v7_0/task/models.py",
"repo_id": "azure-devops-python-api",
"token_count": 14342
} | 355 |
include *.txt
include *.py
include *.md
recursive-include azure *.py
exclude MANIFEST.in
exclude environment.yml
recursive-exclude azure *.typed
recursive-exclude eng *
recursive-exclude tests *
| azure-quantum-python/azure-quantum/MANIFEST.in/0 | {
"file_path": "azure-quantum-python/azure-quantum/MANIFEST.in",
"repo_id": "azure-quantum-python",
"token_count": 65
} | 356 |
##
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
##
import abc
from azure.quantum.job.session import SessionHost
from typing import TYPE_CHECKING, Any
if TYPE_CHECKING:
import cirq
from azure.quantum import Job as AzureJob
from azure.quantum import Workspace
from azure.quant... | azure-quantum-python/azure-quantum/azure/quantum/cirq/targets/target.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/azure/quantum/cirq/targets/target.py",
"repo_id": "azure-quantum-python",
"token_count": 885
} | 357 |
##
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
##
from typing import TYPE_CHECKING, Dict
from azure.quantum.version import __version__
from azure.quantum.target.rigetti import RigettiTarget
from abc import abstractmethod
from .backend import AzureQirBackend
from qiskit.providers.models im... | azure-quantum-python/azure-quantum/azure/quantum/qiskit/backends/rigetti.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/azure/quantum/qiskit/backends/rigetti.py",
"repo_id": "azure-quantum-python",
"token_count": 1983
} | 358 |
##
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
##
from dataclasses import dataclass, field
from re import sub
from typing import Any, Dict, List, Optional, Tuple, Type, Callable
from ..argument_types import EmptyArray, Pauli, Range, Result
__all__ = ["InputParams"]
... | azure-quantum-python/azure-quantum/azure/quantum/target/params.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/azure/quantum/target/params.py",
"repo_id": "azure-quantum-python",
"token_count": 3817
} | 359 |
# Azure Quantum Python API examples
* [Resource estimator examples](https://github.com/microsoft/qdk-python/tree/main/azure-quantum/examples/resource_estimation)
| azure-quantum-python/azure-quantum/examples/README.md/0 | {
"file_path": "azure-quantum-python/azure-quantum/examples/README.md",
"repo_id": "azure-quantum-python",
"token_count": 47
} | 360 |
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
<#
.SYNOPSIS
Install-Artifacts: set up a Python environment using Anaconda
#>
$PackageDir = Split-Path -parent $PSScriptRoot;
$PackageName = $PackageDir | Split-Path -Leaf;
$RootDir = Split-Path -parent $PackageDir;
Import-Module (Jo... | azure-quantum-python/azure-quantum/tests.live/Install-Artifacts.ps1/0 | {
"file_path": "azure-quantum-python/azure-quantum/tests.live/Install-Artifacts.ps1",
"repo_id": "azure-quantum-python",
"token_count": 741
} | 361 |
##
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
##
import pytest
import numpy as np
from azure.quantum._client.models import CostEstimate, UsageEvent
from azure.quantum.target import IonQ
from common import QuantumTestBase, DEFAULT_TIMEOUT_SECS
class TestIonQ(QuantumTestBase):
def _3... | azure-quantum-python/azure-quantum/tests/unit/test_ionq.py/0 | {
"file_path": "azure-quantum-python/azure-quantum/tests/unit/test_ionq.py",
"repo_id": "azure-quantum-python",
"token_count": 3419
} | 362 |
<jupyter_start><jupyter_text>👋🌍 Hello, world: Submit a Qiskit job to IonQIn this notebook, we'll review the basics of Azure Quantum by submitting a simple *job*, or quantum program, to [IonQ](https://ionq.com/). We will use [Qiskit](https://qiskit.org/) to express the quantum job. Submit a simple job to IonQ using A... | azure-quantum-python/samples/hello-world/HW-ionq-qiskit.ipynb/0 | {
"file_path": "azure-quantum-python/samples/hello-world/HW-ionq-qiskit.ipynb",
"repo_id": "azure-quantum-python",
"token_count": 1411
} | 363 |
---
page_type: sample
description: "This sample shows you how to work with sessions in Azure Quantum"
languages:
- python
products:
- azure-quantum
---
# Introduction to Sessions
This sample shows you how to work with sessions in Azure Quantum by using a session to run multiple Qiskit jobs.
This sample is available ... | azure-quantum-python/samples/sessions/README.md/0 | {
"file_path": "azure-quantum-python/samples/sessions/README.md",
"repo_id": "azure-quantum-python",
"token_count": 215
} | 364 |
/*------------------------------------
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
All rights reserved.
------------------------------------ */
import * as React from "react";
import { createRoot } from 'react-dom/client';
import { SpaceDiagram, TimeDiagram } from "quantum-visualization";... | azure-quantum-python/visualization/js-lib/src/index.js/0 | {
"file_path": "azure-quantum-python/visualization/js-lib/src/index.js",
"repo_id": "azure-quantum-python",
"token_count": 565
} | 365 |
/*------------------------------------
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
All rights reserved.
------------------------------------ */
import React from "react";
import { IColumn, IGroup, ThemeProvider } from "@fluentui/react";
import { JobResults } from "../../models/JobResults... | azure-quantum-python/visualization/react-lib/src/components/resource-estimator/TimeDiagram.tsx/0 | {
"file_path": "azure-quantum-python/visualization/react-lib/src/components/resource-estimator/TimeDiagram.tsx",
"repo_id": "azure-quantum-python",
"token_count": 2936
} | 366 |
Frequently Asked Questions
==========================
What is a bistring, anyway?
---------------------------
Simply put, a `bistring` is a pair of strings, an original string and a modified one, along with information about how they align with each other.
The :class:`bistring.bistr` class has an API very similar to... | bistring/docs/FAQ.rst/0 | {
"file_path": "bistring/docs/FAQ.rst",
"repo_id": "bistring",
"token_count": 2777
} | 367 |
Python
======
.. toctree::
bistr
BistrBuilder
Alignment
Tokenization
Tokenizer
| bistring/docs/Python/index.rst/0 | {
"file_path": "bistring/docs/Python/index.rst",
"repo_id": "bistring",
"token_count": 44
} | 368 |
/*!
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT license.
*/
import Alignment, { BiIndex } from "./alignment";
import BiString, { AnyString } from "./bistring";
import { Replacer, normalizeReplacer, cloneRegExp, isStatefulRegExp } from "./regex";
/**
* Bidirectionally trans... | bistring/js/src/builder.ts/0 | {
"file_path": "bistring/js/src/builder.ts",
"repo_id": "bistring",
"token_count": 4043
} | 369 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license.
from ._alignment import *
from ._bistr import *
from ._builder import *
from ._token import *
| bistring/python/bistring/__init__.py/0 | {
"file_path": "bistring/python/bistring/__init__.py",
"repo_id": "bistring",
"token_count": 49
} | 370 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT license.
from bistring import Alignment, bistr
import pytest
import unicodedata
def test_new():
pytest.raises(TypeError, bistr, 42)
pytest.raises(TypeError, bistr, 'fourty-two', 42)
pytest.raises(TypeError, bistr, 'fourt... | bistring/python/tests/test_bistr.py/0 | {
"file_path": "bistring/python/tests/test_bistr.py",
"repo_id": "bistring",
"token_count": 6569
} | 371 |
# HowTo: Block all Skill Claims
Write a class that conforms to the `ValidateClaims` interface and throws an exception if the claims are skill claims:
```python
class AllowedSkillsClaimsValidator:
config_key = "ALLOWED_CALLERS"
def __init__(self, config: DefaultConfig):
if not config:
rais... | botbuilder-python/doc/SkillClaimsValidation.md/0 | {
"file_path": "botbuilder-python/doc/SkillClaimsValidation.md",
"repo_id": "botbuilder-python",
"token_count": 770
} | 372 |
{
"luis_schema_version": "3.2.0",
"versionId": "0.1",
"name": "FlightBooking",
"desc": "Luis Model for CoreBot",
"culture": "en-us",
"tokenizerVersion": "1.0.0",
"intents": [
{
"name": "BookFlight"
},
{
"name": "Cancel"
},
{
"name": "GetWeather"
},
{
"na... | botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/cognitiveModels/FlightBooking.json/0 | {
"file_path": "botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/cognitiveModels/FlightBooking.json",
"repo_id": "botbuilder-python",
"token_count": 3667
} | 373 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from botbuilder.dialogs import (
ComponentDialog,
WaterfallDialog,
WaterfallStepContext,
DialogTurnResult,
)
from botbuilder.dialogs.prompts import TextPrompt, PromptOptions
from botbuilder.core import Message... | botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/dialogs/main_dialog.py/0 | {
"file_path": "botbuilder-python/generators/app/templates/core/{{cookiecutter.bot_name}}/dialogs/main_dialog.py",
"repo_id": "botbuilder-python",
"token_count": 2306
} | 374 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import hashlib
import hmac
import json
from io import IOBase
from typing import List, Union
import aiohttp
from aiohttp.web_request import Request
from slack.web.client import WebClient
from slack.web.slack_response import ... | botbuilder-python/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/slack_client.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-adapters-slack/botbuilder/adapters/slack/slack_client.py",
"repo_id": "botbuilder-python",
"token_count": 6422
} | 375 |
# Copyright (c) Microsoft. All rights reserved.
# Licensed under the MIT license.
from pathlib import PurePosixPath
from typing import Tuple
from urllib.parse import ParseResult, parse_qs, unquote, urlparse, urlunparse
from uuid import UUID, uuid4
class LuisApplication:
"""
Data describing a LUIS application... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/luis/luis_application.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/luis/luis_application.py",
"repo_id": "botbuilder-python",
"token_count": 1360
} | 376 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from msrest.serialization import Model
class FeedbackRecord(Model):
"""Active learning feedback record."""
_attribute_map = {
"user_id": {"key": "userId", "type": "str"},
"user_question": {"key": "u... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/models/feedback_record.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/models/feedback_record.py",
"repo_id": "botbuilder-python",
"token_count": 258
} | 377 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .models import Metadata, QnARequestContext
from .models.ranker_types import RankerTypes
from .models.join_operator import JoinOperator
class QnAMakerOptions:
"""
Defines options used to configure a `QnAMaker` i... | botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/qnamaker_options.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/botbuilder/ai/qna/qnamaker_options.py",
"repo_id": "botbuilder-python",
"token_count": 968
} | 378 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
from botbuilder.core import BotAdapter, TurnContext
from botbuilder.schema import Activity, ConversationReference, ResourceResponse
class NullAdapter(BotAdapter):
"""
This is a BotAdapter t... | botbuilder-python/libraries/botbuilder-ai/tests/luis/null_adapter.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/null_adapter.py",
"repo_id": "botbuilder-python",
"token_count": 260
} | 379 |
{
"entities": {
"Airline": [
[
"Delta"
]
],
"datetime": [
{
"timex": [
"T15"
],
"type": "time"
}
],
"dimension": [
{
"number": 3,
"units": "Picometer"
}
]
}... | botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/Minimal_v3.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/Minimal_v3.json",
"repo_id": "botbuilder-python",
"token_count": 1119
} | 380 |
{
"query": "4",
"topScoringIntent": {
"intent": "None",
"score": 0.8575135
},
"entities": [
{
"entity": "4",
"type": "builtin.datetime.time",
"startIndex": 0,
"endIndex": 0,
"resolution": {
"comment": "ampm",
"time": "T04"
}
}
]
} | botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/V1DatetimeResolution.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/luis/test_data/V1DatetimeResolution.json",
"repo_id": "botbuilder-python",
"token_count": 170
} | 381 |
{
"activeLearningEnabled": false,
"answers": [
{
"questions": [
"how do I clean the stove?"
],
"answer": "BaseCamp: You can use a damp rag to clean around the Power Pack",
"score": 100,
"id": 5,
"source": "Editorial"... | botbuilder-python/libraries/botbuilder-ai/tests/qna/test_data/ReturnsAnswer.json/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-ai/tests/qna/test_data/ReturnsAnswer.json",
"repo_id": "botbuilder-python",
"token_count": 202
} | 382 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
"""Flask Application Insights package."""
from .flask_telemetry_middleware import BotTelemetryMiddleware
__all__ = ["BotTelemetryMiddleware"]
| botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/flask/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-applicationinsights/botbuilder/applicationinsights/flask/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 62
} | 383 |
"""Implements a CosmosDB based storage provider using partitioning for a bot.
"""
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Dict, List
from threading import Lock
import json
from azure.cosmos import documents, http_constants
from jsonpickle.pickle... | botbuilder-python/libraries/botbuilder-azure/botbuilder/azure/cosmosdb_partitioned_storage.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-azure/botbuilder/azure/cosmosdb_partitioned_storage.py",
"repo_id": "botbuilder-python",
"token_count": 5963
} | 384 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Awaitable, Callable, List, Union
from .bot_state import BotState
from .bot_state_set import BotStateSet
from .middleware_set import Middleware
from .turn_context import TurnContext
class AutoSaveStateMid... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/auto_save_state_middleware.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/auto_save_state_middleware.py",
"repo_id": "botbuilder-python",
"token_count": 411
} | 385 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from uuid import uuid4
from typing import Any, List
from jsonpickle import Pickler
from botbuilder.core import BotState, ConversationState, TurnContext, UserState
from botbuilder.schema import Activity, ActivityTypes, Conver... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/inspection/inspection_middleware.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/inspection/inspection_middleware.py",
"repo_id": "botbuilder-python",
"token_count": 2950
} | 386 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .extended_user_token_provider import ExtendedUserTokenProvider
from .user_token_provider import UserTokenProvider
from .connector_client_builder import ConnectorClientBuilder
__all__ = [
"ConnectorClientBuilder",
... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/oauth/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/oauth/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 104
} | 387 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
class BotFrameworkSkill:
"""
Registration for a BotFrameworkHttpProtocol based Skill endpoint.
"""
# pylint: disable=invalid-name
def __init__(self, id: str = None, app_id: str = None, skill_endpoint: st... | botbuilder-python/libraries/botbuilder-core/botbuilder/core/skills/bot_framework_skill.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/skills/bot_framework_skill.py",
"repo_id": "botbuilder-python",
"token_count": 154
} | 388 |
# 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-core/botbuilder/core/teams/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/botbuilder/core/teams/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 232
} | 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 (
ActionTypes,
AnimationCard,
Attachment,
AudioCard,
CardAction,
CardImage,
HeroCard,
MediaUrl,
... | botbuilder-python/libraries/botbuilder-core/tests/test_card_factory.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/tests/test_card_factory.py",
"repo_id": "botbuilder-python",
"token_count": 3429
} | 390 |
from botbuilder.schema import (
Activity,
ActivityTypes,
ConversationAccount,
ChannelAccount,
)
from botbuilder.core import TurnContext
from botbuilder.core.adapters import TestAdapter
class TestUtilities:
@staticmethod
def create_empty_context():
adapter = TestAdapter()
activi... | botbuilder-python/libraries/botbuilder-core/tests/test_utilities.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-core/tests/test_utilities.py",
"repo_id": "botbuilder-python",
"token_count": 236
} | 391 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from enum import Enum
class ListStyle(str, Enum):
none = 0
auto = 1
in_line = 2
list_style = 3
suggested_action = 4
hero_card = 5
| botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/list_style.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/choices/list_style.py",
"repo_id": "botbuilder-python",
"token_count": 89
} | 392 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import inspect
from hashlib import sha256
from typing import Dict
from botbuilder.core import (
NullTelemetryClient,
BotTelemetryClient,
TurnContext,
BotAssert,
StatePropertyAccessor,
)
from .dialog import... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_set.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_set.py",
"repo_id": "botbuilder-python",
"token_count": 2265
} | 393 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import copy
from typing import Union, Callable
class ObjectPath:
"""
Helper methods for working with json objects.
"""
@staticmethod
def assign(start_object, overlay_object, default: Union[Callable, obj... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/object_path.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/object_path.py",
"repo_id": "botbuilder-python",
"token_count": 5146
} | 394 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
""" Result returned by a prompts recognizer function.
"""
class PromptRecognizerResult:
def __init__(self, succeeded: bool = False, value: object = None):
"""Creates result returned by a prompts recognizer funct... | botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/prompt_recognizer_result.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/botbuilder/dialogs/prompts/prompt_recognizer_result.py",
"repo_id": "botbuilder-python",
"token_count": 117
} | 395 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import unittest
from typing import List
from botbuilder.dialogs.choices import Choice, ChoiceFactory, ChoiceFactoryOptions
from botbuilder.schema import (
ActionTypes,
Activity,
ActivityTypes,
Attachment,
... | botbuilder-python/libraries/botbuilder-dialogs/tests/choices/test_choice_factory.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/tests/choices/test_choice_factory.py",
"repo_id": "botbuilder-python",
"token_count": 4792
} | 396 |
import aiounittest
from botbuilder.dialogs import ObjectPath
class Location:
def __init__(self, lat: float = None, long: float = None):
self.lat = lat
self.long = long
class Options:
def __init__(
self,
first_name: str = None,
last_name: str = None,
age: int ... | botbuilder-python/libraries/botbuilder-dialogs/tests/test_object_path.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-dialogs/tests/test_object_path.py",
"repo_id": "botbuilder-python",
"token_count": 4030
} | 397 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from aiohttp import ClientSession, ClientResponse, ClientResponseError
from botframework.connector import (
HttpClientBase,
HttpClientFactory,
HttpRequest,
HttpResponseBase,
)
class _HttpResponseImpl(HttpRe... | botbuilder-python/libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/skills/aio_http_client_factory.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-integration-aiohttp/botbuilder/integration/aiohttp/skills/aio_http_client_factory.py",
"repo_id": "botbuilder-python",
"token_count": 489
} | 398 |
from asyncio import Future
from unittest.mock import Mock, MagicMock
from aiounittest import AsyncTestCase
from botbuilder.integration.applicationinsights.aiohttp import (
bot_telemetry_middleware,
aiohttp_telemetry_middleware,
)
class TestAiohttpTelemetryMiddleware(AsyncTestCase):
# pylint: disable=prot... | botbuilder-python/libraries/botbuilder-integration-applicationinsights-aiohttp/tests/test_aiohttp_telemetry_middleware.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-integration-applicationinsights-aiohttp/tests/test_aiohttp_telemetry_middleware.py",
"repo_id": "botbuilder-python",
"token_count": 493
} | 399 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import aiounittest
from botbuilder.schema import (
Activity,
ConversationReference,
ConversationAccount,
ChannelAccount,
Entity,
ResourceResponse,
Attachment,
)
from botbuilder.schema._connector_cl... | botbuilder-python/libraries/botbuilder-schema/tests/test_activity.py/0 | {
"file_path": "botbuilder-python/libraries/botbuilder-schema/tests/test_activity.py",
"repo_id": "botbuilder-python",
"token_count": 9895
} | 400 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Dict, List
from botbuilder.schema import Activity, TokenResponse
from botframework.connector.token_api import TokenApiClientConfiguration
from botframework.connector.token_api.aio import TokenApiClient
fr... | botbuilder-python/libraries/botframework-connector/botframework/connector/auth/_user_token_client_impl.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/_user_token_client_impl.py",
"repo_id": "botbuilder-python",
"token_count": 2009
} | 401 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC
from .authentication_configuration import AuthenticationConfiguration
from .authentication_constants import AuthenticationConstants
from .claims_identity import ClaimsIdentity
from .credential_provider im... | botbuilder-python/libraries/botframework-connector/botframework/connector/auth/government_channel_validation.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/auth/government_channel_validation.py",
"repo_id": "botbuilder-python",
"token_count": 1707
} | 402 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from abc import ABC, abstractmethod
from .http_request import HttpRequest
from .http_response_base import HttpResponseBase
class HttpClientBase(ABC):
@abstractmethod
async def post(self, *, request: HttpRequest) ->... | botbuilder-python/libraries/botframework-connector/botframework/connector/http_client_base.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/botframework/connector/http_client_base.py",
"repo_id": "botbuilder-python",
"token_count": 112
} | 403 |
[bdist_wheel]
universal=1 | botbuilder-python/libraries/botframework-connector/setup.cfg/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/setup.cfg",
"repo_id": "botbuilder-python",
"token_count": 10
} | 404 |
interactions:
- request:
body: null
headers:
Accept: [application/json]
Accept-Encoding: ['gzip, deflate']
Connection: [keep-alive]
Content-Length: ['0']
Content-Type: [application/json; charset=utf-8]
User-Agent: [python/3.6.2 (Windows-10-10.0.16299-SP0) requests/2.18.1 msre... | botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_delete_activity_with_invalid_conversation_id_fails.yaml/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/recordings/test_conversations_delete_activity_with_invalid_conversation_id_fails.yaml",
"repo_id": "botbuilder-python",
"token_count": 523
} | 405 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import aiounittest
from botframework.connector.auth import AppCredentials, AuthenticationConstants
class AppCredentialsTests(aiounittest.AsyncTestCase):
@staticmethod
def test_should_not_send_token_for_anonymous():
... | botbuilder-python/libraries/botframework-connector/tests/test_app_credentials.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-connector/tests/test_app_credentials.py",
"repo_id": "botbuilder-python",
"token_count": 410
} | 406 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import Awaitable, Callable
from botframework.streaming.payloads.models import Header
class SendPacket:
def __init__(
self,
*,
header: Header,
payload: object,
is_leng... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/payload_transport/send_packet.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payload_transport/send_packet.py",
"repo_id": "botbuilder-python",
"token_count": 214
} | 407 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from .header import Header
from .payload_types import PayloadTypes
from .request_payload import RequestPayload
from .response_payload import ResponsePayload
from .serializable import Serializable
from .stream_description imp... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/models/__init__.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/payloads/models/__init__.py",
"repo_id": "botbuilder-python",
"token_count": 137
} | 408 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import json
from uuid import UUID, uuid4
from typing import List, Union
from msrest.serialization import Model
from botframework.streaming.payloads import ResponseMessageStream
from botframework.streaming.payloads.models imp... | botbuilder-python/libraries/botframework-streaming/botframework/streaming/streaming_request.py/0 | {
"file_path": "botbuilder-python/libraries/botframework-streaming/botframework/streaming/streaming_request.py",
"repo_id": "botbuilder-python",
"token_count": 1085
} | 409 |
#
# Run functional test on bot deployed to a Docker Linux environment in Azure.
#
pool:
vmImage: 'Ubuntu-16.04'
trigger: # ci trigger
branches:
include:
- master
pr: none # no pr trigger
variables:
# Container registry service connection established during pipeline creation
dockerRegistryServiceConn... | botbuilder-python/pipelines/botbuilder-python-functional-test-linux.yml/0 | {
"file_path": "botbuilder-python/pipelines/botbuilder-python-functional-test-linux.yml",
"repo_id": "botbuilder-python",
"token_count": 600
} | 410 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from botbuilder.dialogs import (
ComponentDialog,
DialogTurnResult,
OAuthPrompt,
OAuthPromptSettings,
WaterfallDialog,
WaterfallStepContext
)
from botbuilder.schema import TokenResponse
from botbuilder... | botbuilder-python/tests/experimental/sso/child/dialogs/main_dialog.py/0 | {
"file_path": "botbuilder-python/tests/experimental/sso/child/dialogs/main_dialog.py",
"repo_id": "botbuilder-python",
"token_count": 842
} | 411 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from uuid import uuid4
from typing import Dict, Tuple
class RoutingIdFactory:
def __init__(self):
self._forward_x_ref: Dict[str, str] = {}
self._backward_x_ref: Dict[str, Tuple[str, str]] = {}
def c... | botbuilder-python/tests/experimental/test-protocol/routing_id_factory.py/0 | {
"file_path": "botbuilder-python/tests/experimental/test-protocol/routing_id_factory.py",
"repo_id": "botbuilder-python",
"token_count": 302
} | 412 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import uuid
from botbuilder.core import (
ActivityHandler,
TurnContext,
MessageFactory,
)
from botbuilder.integration import BotFrameworkHttpClient
from botbuilder.schema import DeliveryModes
class ParentBot(A... | botbuilder-python/tests/skills/skills-buffered/parent/bots/parent_bot.py/0 | {
"file_path": "botbuilder-python/tests/skills/skills-buffered/parent/bots/parent_bot.py",
"repo_id": "botbuilder-python",
"token_count": 489
} | 413 |
trigger: none
pr:
branches:
include:
- main
parameters:
- name: static
displayName: Generate Static Fonts
type: boolean
default: true
variables:
- name: runCodesignValidationInjectionBG
value: false
jobs:
- job: build
displayName: Build Font
pool:
vmImage: macOS-latest... | cascadia-code/.azure-pipelines.yml/0 | {
"file_path": "cascadia-code/.azure-pipelines.yml",
"repo_id": "cascadia-code",
"token_count": 592
} | 414 |
# Code of Conduct
This project has adopted the [Microsoft Open Source Code of Conduct][conduct-code].
For more information see the [Code of Conduct FAQ][conduct-FAQ] or contact [opencode@microsoft.com][conduct-email] with any additional questions or comments.
[conduct-code]: https://opensource.microsoft.com/codeofcon... | cascadia-code/CODE_OF_CONDUCT.md/0 | {
"file_path": "cascadia-code/CODE_OF_CONDUCT.md",
"repo_id": "cascadia-code",
"token_count": 117
} | 415 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="ainThreedots-ar" format="2">
<advance width="1200"/>
<unicode hex="06A0"/>
<guideline x="121" y="689" angle="0"/>
<outline>
<component base="ain-ar"/>
<component base="threedotsupabove-ar" xOffset="-93" yOffset="456"/>
</outline>
<lib>
<dict>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ainT_hreedots-ar.glif",
"repo_id": "cascadia-code",
"token_count": 192
} | 416 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="ghain-ar.medi" format="2">
<advance width="1200"/>
<outline>
<component base="ain-ar.medi"/>
<component base="dotabove-ar" xOffset="10" yOffset="273"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1</string... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/ghain-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 161
} | 417 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="gravetonecomb" format="2">
<unicode hex="0340"/>
<outline>
<component base="gravecomb"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
<array>
<dict>
<key>alignment</key>
<integer>... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/gravetonecomb.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/gravetonecomb.glif",
"repo_id": "cascadia-code",
"token_count": 304
} | 418 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="hahTahTwodotshorizontalabove-ar" format="2">
<advance width="1200"/>
<unicode hex="076F"/>
<outline>
<component base="hah-ar"/>
<component base="twodotstahcenter-ar" xScale="0.94" yScale="0.94" xOffset="125" yOffset="-337"/>
</outline>
<lib>
<dic... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/hahT_ahT_wodotshorizontalabove-ar.glif",
"repo_id": "cascadia-code",
"token_count": 293
} | 419 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="kehehDotabove-ar" format="2">
<advance width="1200"/>
<unicode hex="0762"/>
<outline>
<component base="keheh-ar"/>
<component base="dotabove-ar" xOffset="54" yOffset="601"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kehehD_otabove-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kehehD_otabove-ar.glif",
"repo_id": "cascadia-code",
"token_count": 173
} | 420 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="kehehTwodotshorizontalabove-ar" format="2">
<advance width="1200"/>
<unicode hex="063B"/>
<anchor x="625" y="1494" name="top"/>
<outline>
<component base="keheh-ar"/>
<component base="twodotshorizontalabove-ar.v2" xScale="0.7" yScale="0.7" xOffset="206... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kehehT_wodotshorizontalabove-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/kehehT_wodotshorizontalabove-ar.glif",
"repo_id": "cascadia-code",
"token_count": 218
} | 421 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="lamDotabove-ar.init.rlig" format="2">
<advance width="1200"/>
<guideline x="305" y="819" angle="0"/>
<anchor x="0" y="0" name="overlap"/>
<outline>
<component base="lam-ar.init.rlig"/>
<component base="dotabove-ar" xOffset="324" yOffset="925"/>
</out... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.init.rlig.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/lamD_otabove-ar.init.rlig.glif",
"repo_id": "cascadia-code",
"token_count": 381
} | 422 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="leftHalfBlackDiamond" format="2">
<advance width="1200"/>
<unicode hex="2B16"/>
<note>
uni2B16
</note>
<outline>
<contour>
<point x="600" y="192" type="line"/>
<point x="600" y="1228" type="line"/>
<point x="67" y="710" type="line"/>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/leftH_alfB_lackD_iamond.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/leftH_alfB_lackD_iamond.glif",
"repo_id": "cascadia-code",
"token_count": 366
} | 423 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="less_bar_greater.liga" format="2">
<advance width="1200"/>
<outline>
<component base="greater" xOffset="2256"/>
<component base="less" xOffset="164"/>
<component base="bar" xOffset="1210"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltu... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/less_bar_greater.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/less_bar_greater.liga.glif",
"repo_id": "cascadia-code",
"token_count": 557
} | 424 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="period_period_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/period_period_equal.liga.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/period_period_equal.liga.glif",
"repo_id": "cascadia-code",
"token_count": 612
} | 425 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="plusminus" format="2">
<advance width="1200"/>
<unicode hex="00B1"/>
<outline>
<contour>
<point x="469" y="246" type="line"/>
<point x="731" y="246" type="line"/>
<point x="731" y="1224" type="line"/>
<point x="469" y="1224" type="lin... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/plusminus.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/plusminus.glif",
"repo_id": "cascadia-code",
"token_count": 473
} | 426 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="quotedbl" format="2">
<advance width="1200"/>
<unicode hex="0022"/>
<outline>
<component base="quotesingle" xOffset="-233"/>
<component base="quotesingle" xOffset="237"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentIn... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/quotedbl.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/quotedbl.glif",
"repo_id": "cascadia-code",
"token_count": 426
} | 427 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="sadThreedots-ar" format="2">
<advance width="1200"/>
<unicode hex="069E"/>
<outline>
<component base="sad-ar"/>
<component base="threedotsupabove-ar" xOffset="280" yOffset="373"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<s... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/sadT_hreedots-ar.glif",
"repo_id": "cascadia-code",
"token_count": 175
} | 428 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="underscoredbl" format="2">
<advance width="1200"/>
<unicode hex="2017"/>
<outline>
<component base="underscore"/>
<component base="underscore" yOffset="-346"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo</key>
... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/underscoredbl.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/underscoredbl.glif",
"repo_id": "cascadia-code",
"token_count": 417
} | 429 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="yehRohingya-ar.fina" format="2">
<advance width="1200"/>
<guideline x="243" y="-198" angle="90"/>
<outline>
<component base="yehRohingya-ar"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.glyph.rightMetricsKey</key>
<string>_... | cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/yehR_ohingya-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-Bold.ufo/glyphs/yehR_ohingya-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 213
} | 430 |
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>_alefFathatan-ar.fina.rlig</key>
<string>_alefF_athatan-ar.fina.rlig.glif</string>
<key>_tahabove</key>
<string>_tahabove.glif... | cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/contents.plist/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs.public.background/contents.plist",
"repo_id": "cascadia-code",
"token_count": 410
} | 431 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="Aringacute" format="2">
<advance width="1200"/>
<unicode hex="01FA"/>
<outline>
<component base="acutecomb.case" xOffset="-30" yOffset="248"/>
<component base="Aring"/>
</outline>
<lib>
<dict>
<key>com.schriftgestaltung.Glyphs.ComponentInfo... | cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/A_ringacute.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/A_ringacute.glif",
"repo_id": "cascadia-code",
"token_count": 304
} | 432 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="alefMaksuraAlefabove-ar.fina.alt" format="2">
<anchor x="0" y="0" name="_overlap"/>
<outline>
<component base="alefMaksura-ar.fina.alt"/>
<component base="alefabove-ar" xOffset="-210" yOffset="-51"/>
</outline>
<lib>
<dict>
<key>com.schriftge... | cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.alt.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/alefM_aksuraA_lefabove-ar.fina.alt.glif",
"repo_id": "cascadia-code",
"token_count": 501
} | 433 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="highhamzaWaw-ar" format="2">
<advance width="1200"/>
<unicode hex="0676"/>
<anchor x="573" y="1120" name="top"/>
<outline>
<component base="waw-ar" yOffset="3"/>
<component base="highhamza-ar" xOffset="383" yOffset="-337"/>
</outline>
<lib>
<di... | cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaW_aw-ar.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/highhamzaW_aw-ar.glif",
"repo_id": "cascadia-code",
"token_count": 370
} | 434 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="kafDotabove-ar.init" format="2">
<advance width="1200"/>
<outline>
<component base="kaf-ar.init"/>
<component base="dotabove-ar" xOffset="-187" yOffset="601"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.67,1... | cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/kafD_otabove-ar.init.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/kafD_otabove-ar.init.glif",
"repo_id": "cascadia-code",
"token_count": 166
} | 435 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="lamThreedotsabove-ar.medi" format="2">
<advance width="1200"/>
<anchor x="708" y="2033" name="top"/>
<outline>
<component base="lam-ar.medi"/>
<component base="threedotsupabove-ar" xScale="0.9" yScale="0.9" xOffset="161" yOffset="979"/>
</outline>
<l... | cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.medi.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/lamT_hreedotsabove-ar.medi.glif",
"repo_id": "cascadia-code",
"token_count": 414
} | 436 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="rehHamzaabove-ar.fina" format="2">
<advance width="1200"/>
<outline>
<component base="reh-ar.fina"/>
<component base="hamzaabove-ar" xOffset="60" yOffset="-469"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.6... | cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/rehH_amzaabove-ar.fina.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/rehH_amzaabove-ar.fina.glif",
"repo_id": "cascadia-code",
"token_count": 169
} | 437 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="tchehDotabove-ar.init" format="2">
<advance width="1200"/>
<outline>
<component base="tcheh-ar.init"/>
<component base="dotabove-ar" xOffset="-34" yOffset="332"/>
</outline>
<lib>
<dict>
<key>public.markColor</key>
<string>0.98,0.36,0.6... | cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/tchehD_otabove-ar.init.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/tchehD_otabove-ar.init.glif",
"repo_id": "cascadia-code",
"token_count": 168
} | 438 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="upperHalfBlackWhiteCircle" format="2">
<advance width="1200"/>
<unicode hex="25D3"/>
<note>
uni25D3
</note>
<outline>
<contour>
<point x="135" y="710" type="line"/>
<point x="1065" y="710" type="line"/>
<point x="984" y="1051" type="line"... | cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLight.ufo/glyphs/upperH_alfB_lackW_hiteC_ircle.glif",
"repo_id": "cascadia-code",
"token_count": 229
} | 439 |
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<array>
<string>public.default</string>
<string>glyphs</string>
</array>
<array>
<string>public.background</string>
... | cascadia-code/sources/CascadiaCode-ExtraLight.ufo/layercontents.plist/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLight.ufo/layercontents.plist",
"repo_id": "cascadia-code",
"token_count": 353
} | 440 |
<?xml version='1.0' encoding='UTF-8'?>
<glyph name="F" format="2">
<advance width="1200"/>
<unicode hex="0046"/>
<guideline x="941" y="-480" angle="80"/>
<guideline x="761" y="-480" angle="80"/>
<anchor x="506" y="0" name="bottom"/>
<anchor x="757" y="1420" name="top"/>
<outline>
<contour>
<poin... | cascadia-code/sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/F_.glif/0 | {
"file_path": "cascadia-code/sources/CascadiaCode-ExtraLightItalic.ufo/glyphs/F_.glif",
"repo_id": "cascadia-code",
"token_count": 435
} | 441 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.