content stringlengths 2 6.21k | label stringclasses 16
values |
|---|---|
ock.scan_voxels)
{
Eigen::Vector3d voxel_coord = voxel_size * scan_voxel.voxel_idx.cast<double>() + half_voxel_bias;
pointcloud_it->x = voxel_coord.x();
pointcloud_it->y = voxel_coord.y();
pointcloud_it->z = voxel_coord.z();
// pointcloud_it->x = scan... | C++ |
/*<FILE_LICENSE>
* Azos (A to Z Application Operating System) Framework
* The A to Z Foundation (a.k.a. Azist) licenses this file to you under the MIT license.
* See the LICENSE file in the project root for more information.
</FILE_LICENSE>*/
using System;
using System.Collections.Generic;
using System.Linq;
using... | C# |
.0%"
}
}
}
},
[101020] = {
desc_get = "",
name = "メディステーション・S",
type = 1,
max_level = 10,
desc = "攻撃された時$1で発動。8秒間自身の与えるダメージが$2アップする。",
id = 101020,
system_transform = {},
world_death_mark = {
1
},
desc_get_add = {
{
"3.5%",
"8.0%"
},
{
"10.0%",
"25.0%"
}
}... | Lua |
=
<LocalizationsDelegate<dynamic>>[
delegate,
GlobalMaterialLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
];
/// A list of this localizations delegate's supported locales.
static const List<Locale> supportedLocales = <Locale>[
Locale... | Dart |
import glob
import os
from cli.src.helpers.build_io import get_build_path
from cli.src.helpers.data_loader import (SCHEMA_DIR, load_all_schema_objs,
load_all_schema_objs_from_directory,
load_json_obj, load_schema_obj,
... | Python |
using FluentAssertions;
using System;
using Xunit;
namespace DesignPatternsInCSharp.RulesEngine.DiscountsShortCircuit
{
public class DiscountCalculator_CalculateDiscountPercentage
{
private DiscountCalculator _calculator = new DiscountCalculator();
const int DEFAULT_AGE = 30;
[Fact]
... | C# |
her.Key && this.ModifierKeys == other.ModifierKeys;
}
public override string ToString()
{
var sb = new StringBuilder();
if ((this.ModifierKeys & ModifierKeys.Alt) == ModifierKeys.Alt)
{
sb.Append(GetLocalizedKeyStringUnsafe(VK_MENU));
... | C# |
ToCode(block, 'sclk', Blockly.Python.ORDER_ATOMIC);
var value_din = Blockly.Python.valueToCode(block, 'din', Blockly.Python.ORDER_ATOMIC);
var value_dc = Blockly.Python.valueToCode(block, 'dc', Blockly.Python.ORDER_ATOMIC);
var value_cs = Blockly.Python.valueToCode(block, 'cs', Blockly.Python.ORDER_ATOMIC);
var... | JavaScript |
parameterNames = {
enabled = "all", -- literals, all, none
},
},
format = {
enabled = false,
},
},
signatureHelp = { enabled = true },
extendedClientCapabilities = extendedClientCapabilities,
},
init_options = {
bundles = bundles,
},
}
config["o... | Lua |
page.name;
var currentPage = '';
for (var i = 0; i < page.colors.length; i++) {
var diff = absColor(page.colors[i], this.getColor(img, page.colors[i]));
if (diff < page.colors[i].threshold && page.colors[i].match) {
currentPage = pageName;
} else if (diff >= thr... | JavaScript |
let mut cfs_opts = Vec::with_capacity(cfs.len());
for cf in cfs {
cfs_opts.push(CFOptions::new(*cf, ColumnFamilyOptions::new()));
}
new_engine_opt(path, db_opts, cfs_opts)
}
fn check_and_open(
path: &str,
mut db_opt: DBOptions,
cfs_opts: Vec<CFOptions>,
) -> Result<DB, String> {
... | Rust |
.shouldHaveLength
import org.jetbrains.bazel.workspace.model.matchers.shouldBeEqual
import org.junit.runner.RunWith
import org.junit.runners.JUnit4
@RunWith(JUnit4::class)
abstract class LexerTestCase : PlatformLiteFixture() {
override fun setUp() {
super.setUp()
initApplication()
}
open fun doLexerTest... | Kotlin |
number, maxRows: number }',
defaultValue: 'false',
desc: {
'zh-CN':
'自适应内容高度,只对 <code>type="textarea"</code> 有效。可传入对象,如,{ minRows: 2, maxRows: 6 }',
'en-US':
'Adaptive content height. This parameter is valid only for <code>type="textarea"</code>. ... | JavaScript |
/*
* SPDX-License-Identifier: MIT
* Copyright (c) 2023-2025 Yasuhiro Ohara
*
* This software is released under the MIT License.
* See LICENSE file in the project root for full license information.
*/
#include "include.h"
#include <fcntl.h>
#include <linux/if.h>
#include <linux/if_tun.h>
#include <sdplane/debu... | C |
using System;
using System.Net.WebSockets;
using System.Threading;
using System.Threading.Tasks;
namespace WampSharp.WebSockets
{
internal class WebSocketWrapper : IWebSocketWrapper
{
private readonly WebSocket mWebSocket;
public WebSocketWrapper(WebSocket webSocket)
{
mWeb... | C# |
ing, scope_name):
'''
:param inputs: [minibatch_size, 7, 7, 256]
:param is_training:
:param scope_name:
:return:
'''
with tf.variable_scope('build_fc_layers'):
# fc1 = slim.conv2d(inputs=inputs,
# num_outputs=1024,
# kernel_size=... | Python |
digest::{Input, VariableOutput},
VarBlake2b,
};
use datasize::DataSize;
use failure::Fail;
use serde::{Deserialize, Serialize};
use crate::{
bytesrepr::{Error, FromBytes, ToBytes, U8_SERIALIZED_LENGTH},
CLType, CLTyped, PublicKey, BLAKE2B_DIGEST_LENGTH,
};
const FORMATTED_STRING_PREFIX: &str = "accou... | Rust |
/* ----------------------------------------------------------------------------
* Copyright (c) <2018>, <Huawei Technologies Co., Ltd>
* All rights reserved.
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Redis... | C |
for _ in range(int(input())):
matrix=[]
n=int(input())
for _ in range(2):
matrix.append(input())
cnt=0
for i in range(1,n-1):
if matrix[0][i]==matrix[0][i+1]==matrix[0][i-1]==matrix[1][i]=="." and matrix[1][i-1]==matrix[1][i+1]=="x":
cnt+=1
if matrix[1][i]==matr... | Python |
= <String, dynamic>{};
data['name'] = name;
data['id'] = id;
data['size'] = size;
data['extension'] = extension;
data['sr'] = sr;
data['dfsId'] = dfsId;
data['bitrate'] = bitrate;
data['playTime'] = playTime;
data['volumeDelta'] = volumeDelta;
return data;
}
}
class PersonalF... | Dart |
0A0 @ =gBackgroundsCopyQueueCursor
ldr r0, _0809D0A4 @ =gBackgroundsCopyQueueIndex
ldrb r0, [r0]
strb r0, [r1]
ldr r1, _0809D0A8 @ =sa2__gUnknown_03005390
movs r0, #0
strb r0, [r1]
ldr r1, _0809D0AC @ =gVramGraphicsCopyCursor
ldr r0, _0809D0B0 @ =gVramGraphicsCopyQueueIndex
ldrb r0, [r0]
strb r0, [r1]
movs r... | Assembly |
for(int i=0 ; i<lsize ; i++) Pn[i] = 0.0;
yTKE = new double [ksize];
nTKE = new double [ksize];
for(int i=0 ; i<ksize ; i++) yTKE[i] = nTKE[i] = 0.0;
eprefis = 0.0;
nprefis = 0.0;
allocated = true;
}
}
void memfree(){
if(allocated){
L.memfree();
H.memfre... | C |
cam_moved = true;
}
_ => {}
}
match context.window.get_key(Key::Right) {
Action::Press | Action::Repeat => {
cam_yaw -= cam_yaw_speed * (elapsed_seconds as GLfloat);
cam_moved = true;
}
_ => {}
}
... | Rust |
return TypedResults.Ok(actorDTO);
}
static async Task<Created<ActorDTO>>
Create([FromForm] CreateActorDTO createActorDTO,
IActorsRepository repository, IOutputCacheStore outputCacheStore,
IMapper mapper, IFileStorage fileStorage)
{
var... | C# |
import importlib
import logging
logger = logging.getLogger(__name__)
def module_and_name_str_2_module_and_name_tuple(module_and_name_str: str) -> tuple[str, str]:
"""
Extracz the module name and class or function name of a fully qualified name
Args:
fully qualified name: module name dot class of ... | Python |
( pLabel->m_pLabel )
{
pLabel->m_pLabel->setFgColor( 255, 255, 255, 0 );
pLabel->m_pLabel->setBgColor( 0, 0, 0, 255 );
pLabel->m_pLabel->setText( paddedName );
}
pLabel->m_clientindex = iClient;
}
}
}
else
{
m_VoicePlayers[iClient] = false;
// If we have a labe... | C++ |
yObject target, object value)
{
target.SetValue(ContentProperty, value);
}
public static object GetContent(DependencyObject target)
{
return target.GetValue(ContentProperty);
}
public static void SetAxisVisibility(DependencyObject target,... | C# |
sses().Filter(datastore.AddressRefByQualifier(qualifier), datastore.AddressRefByChainSelector(registrySel))
require.Len(t, dsAddrs, 1)
// nothing on chain 1
require.NotEqual(t, registrySel, env.BlockChains.ListChainSelectors(cldf_chain.WithFamily(chain_selectors.FamilyEVM))[1])
oaddrs, _ := resp.AddressBook.Addres... | Go |
rst".split("").forEach(function(n){a[n]=n}),Object.keys(Object.assign({},a)).join("")==="abcdefghijklmnopqrst"}catch{return!1}}DEe.exports=pyt()?Object.assign:function(t,e){for(var r,o=fyt(t),a,n=1;n<arguments.length;n++){r=Object(arguments[n]);for(var u in r)uyt.call(r,u)&&(o[u]=r[u]);if(vEe){a=vEe(r);for(var A=0;A<a.... | JavaScript |
# DIVISION 114
# LEONARDO MIRABELLI
# La división de higiene está trabajando en un control de stock para productos sanitarios.
# Debemos realizar la carga de 5 (cinco) productos de prevención de contagio, de cada una debe obtener los siguientes datos:
# 1. El tipo (validar "barbijo", "jabón" o "alcohol")
# 2. El pr... | Python |
locations/eu`.
Parent string `protobuf:"bytes,3,opt,name=parent,proto3" json:"parent,omitempty"`
// Optional. The labels with user-defined metadata for the request.
//
// Label keys and values can be no longer than 63 characters
// (Unicode codepoints), can only contain lowercase letters, numeric
// characters, u... | Go |
0x73, 0x73 # 80566f1c
.byte 0x4B, 0x61, 0x6D, 0x65 # 80566f20
.byte 0x63, 0x6B, 0x00, 0x00 # 80566f24
__vt__Q22MR47FunctorV0M?0P10BossKameck?4M10BossKameckFPCvPv_v?1:
.byte 0x00, 0x00, 0x00, 0x00 # 80566f28
.byte 0x00, 0x00, 0x00, 0x00 # 80566f2c
.byte 0x80, 0x03, 0x83, 0x8C # 80566f30
.byte 0x80, 0x03, 0x83, 0xBC # 80... | Assembly |
\31\3\31\3\31\7\31"+
"\u0189\n\31\f\31\16\31\u018c\13\31\3\31\3\31\3\32\3\32\3\32\3\32\7\32"+
"\u0194\n\32\f\32\16\32\u0197\13\32\5\32\u0199\n\32\3\32\3\32\3\33\3\33"+
"\5\33\u019f\n\33\3\33\5\33\u01a2\n\33\3\34\3\34\3\34\3\34\7\34\u01a8\n"+
"\34\f\34\16\34\u01ab\13\34\5\34\u01ad\n\34\3\34\3\34\3\35\3\35\5\35\u... | Java |
;
<reponame>PatrickStephansen/reactive-synth-bitcrusher<gh_stars>0
// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
// allocator.
#[cfg(feature = "wee_alloc")]
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
fn clamp(min_value: f32, max_value: f32, value: f32... | Rust |
,
Ints.asList(),
Ints.asList(),
ImmutableList.copyOf(new SortOrder[] {}),
false);
DriverContext driverContext = createDriverContext();
MaterializedResult expected = resultBuilder(driverContext.getSession(), BIGINT, BIGINT)
... | Java |
te,
},
},
memberSeats: []repository.SeatDoc{},
expectedReplyMessage: "@テストユーザーさんは3番の席で作業中です💪現在10分入室中、作業時間は10分、自動退室まで残り89分です📊",
},
{
name: "座席表示(メンバー席)",
constantsConfig: repository.ConstantsConfigDoc{
YoutubeMembershipEnabled: true,
MemberMaxSeats: 10,
},
commandDetails: ut... | Go |
adding: 2cm 2cm 0 2cm !important;
box-sizing: border-box !important;
opacity: 1 !important;
-webkit-transform-style: flat !important;
-moz-transform-style: flat !important;
-ms-transform-style: flat !important;
transform-style: flat !important;
-webkit-transform: none !important;
-moz-trans... | CSS |
import pyglet
import random
# Create a window
window = pyglet.window.Window(width=800, height=200, caption='Linear Search Visualization')
batch = pyglet.graphics.Batch()
# Generate a list with random numbers ensuring 42 is included
numbers = random.sample(range(1, 80), 20) + [26]
random.shuffle(numbers)
# Variables ... | Python |
et(MacroInst inst, Val writeAddr) {
inA->doRead(inst->operands[0]);
inB->doRead(inst->operands[1]);
Val totA = 0;
Val totB = 0;
Val totO = 0;
for (size_t j = 0; j < bitsA.size(); j++) {
size_t bit = 1 << j;
NONDET {
bitsA[j]->set((inA->data()[0] & bit) / bit);
bitsB[j]->set((inB->data()... | C++ |
]);
}
}
} else if let SnailfishElem::Pair(snailfish) = self {
return snailfish.try_explode_recur(depth);
}
(false, [0, 0])
}
fn try_split(&mut self) -> bool {
match self {
SnailfishElem::Regular(num) => {
if *nu... | Rust |
rnal int ExpressionBodiedMethod(string one{off}, ref string two {off}, out string three {off}) => 0;
internal override int this[string one{off}, int two]
{
get
{
return 0;
}
set { }
}
public int this[string one{off}, bool... | C# |
", _128|_0f, {Gd, VRo}},
{"vmovmskps", _256|_0f, {Gd, YRy}},
{"vmovmskpd", _128|_66|_0f, {Gd, VRo}},
{"vmovmskpd", _256|_66|_0f, {Gd, YRy}},
E(51)
{"vsqrtps", _128|_0f, {Vo, Wo}},
{"vsqrtps", _256|_0f, {Yy, Xy}},
{"vsqrtpd", _128|_66|_0f, {Vo, Wo}},
{"vsqrtpd", _256|_66|_0f, {Yy, Xy}},
{"vsqrtss", _128|_f3|_0f, {Vo, Wo... | C++ |
TestDataProvider.CreateNewPageContent(TestDataProvider.CreateNewHtmlContent(), page, region),
TestDataProvider.CreateNewPageContent(TestDataProvider.CreateNewHtmlContent(), page, region)
};
session.SaveOrUpdate(page);
session.Flu... | C# |
06d5\u0645\u0628\u0648\u0631\u06af" },
{ "LV", "\u0644\u0627\u062a\u06a4\u06cc\u0627" },
{ "lv", "\u0644\u06ce\u062a\u06c6\u0646\u06cc" },
{ "Kana", "\u06a9\u0627\u062a\u0627\u06a9\u0627\u0646\u0627" },
{ "LY", "\u0644\u06cc\u0628\u06cc\u0627" },
{ "Thaa", "\u... | Java |
me _Tp>
inline _Tp
stdc_bit_ceil(_Tp __value)
{
static_assert(std::__unsigned_integer<_Tp>);
constexpr _Tp __msb = _Tp(1) << (__gnu_cxx::__int_traits<_Tp>::__digits - 1);
return (__value & __msb) ? 0 : std::bit_ceil(__value);
}
inline unsigned char
stdc_bit_ceil_uc(unsigned char __value)
{ return stdc_bit_ceil(_... | C |
or aa in theta_tmp]
logger.info('Average test time per mini-batch = {}'.format(
np.mean(gen_run_time)))
### Create networkx graphs from returned information
if self.config.dataset.has_sub_nodes:
graphs_gen = [get_graph_subnodes(A_pred[ii], node_embed_pred[ii], subnode_pred[ii]) for ii in... | Python |
IntConstant(
"QCOM_FILTER_CUBIC_WEIGHTS_SPEC_VERSION".."1"
)
StringConstant(
"QCOM_FILTER_CUBIC_WEIGHTS_EXTENSION_NAME".."VK_QCOM_filter_cubic_weights"
)
EnumConstant(
"STRUCTURE_TYPE_SAMPLER_CUBIC_WEIGHTS_CREATE_INFO_QCOM".."1000519000",
"STRUCTURE_TYPE_PHYSICAL_DEVICE... | Kotlin |
, 0x3c52, 0x3c6d,
0x3c8a, 0x3ca6, 0x3cc3, 0x3cf0, 0x3d11, 0x3d25, 0x3d41, 0x3d65,
0x3d82, 0x3d9b, 0x3dac, 0x3dbe, 0x3dd1, 0x3ded, 0x3e0f, 0x3e30,
0x3e44, 0x3e5e, 0x3e70, 0x3e83, 0x3e94, 0x3ead, 0x3ec7, 0x3ee0,
0x3ef1, 0x3f0a, 0x3f1c, 0x3f2e, 0x3f50, 0x3f7b, 0x3f90, 0x3fae,
0x3fcd, 0x3ff5, 0x4014, 0x4041, 0x405f, 0... | Go |
��에 있는 어둠의사제 베릴과 대화해야 합니다.",
["T"] = "어둠의 추종자",
},
[5652] = {
["D"] = "",
["O"] = "",
["T"] = "약화의 주술",
},
[5654] = {
["D"] = "$N 우르쿄를 만날 시간입니다. 그는 오크 도시의 정령의 계곡에 있습니다. 거기로 가서 그에게 말하십시오. 우리 종족의 옛 방식을 더 많이 배울 때입니다. 당신이 원 안에 들어와 우리 부족의 진정한 사제가 될 때입니다.",
["O"] = "오그리마에 있는 우르쿄와 대화하십시오.",... | Lua |
rsor"),
ClassName("app.cash.sqldelight.driver.jdbc", "JdbcPreparedStatement"),
)
override val asyncRuntimeTypes: RuntimeTypes = RuntimeTypes(
ClassName("app.cash.sqldelight.driver.r2dbc", "R2dbcCursor"),
ClassName("app.cash.sqldelight.driver.r2dbc", "R2dbcPreparedStatement"),
)
override val icon =... | Kotlin |
name,
(module_name,
lexer.name,
tuple(lexer.aliases),
tuple(lexer.filenames),
tuple(lexer.mimetypes))))
# sort them to make the diff... | Python |
require('coingecko-api');
import { Coin } from '../entities/coin';
import { Candle } from '../entities/candle';
import { Price } from '../entities/price';
export async function importCoinAndCandles(req, res) {
try {
const CoinGeckoClient = new CoinGecko();
const { candleRepo } = db.getRepos();
... | Typescript |
INCx0YDQuNGC0LDQvQ== 186230
KGNm 186231
b3ZhY8Ot 186232
IFRoYXRjaGVy 186233
IFVwcg== 186234
77y/5Zu95Lqn 186235
4LC+4LCy4LCy4LGL 186236
IHJlYWM= 186237
IFRBUw== 186238
X3Byb2ZpdA== 186239
LGpzb24= 186240
YW5pcXVlcw== 186241
IENJUg== 186242
7JuQ7J20 186243
IGtpY2tvZmY= 186244
w6Rp 186245
Y2FsY3VsYXRvcg== 186246
KHJhZA=... | Kotlin |
0, nextWait = 0, h=189.06},
{pos = vector3(-438.96, -349.43, 69.52), particle = "ent_amb_car_wash_jet", xRot = -180.0, nextWait = 0, h=102.37},
{pos = vector3(-465.79, -340.89, 69.52), particle = "ent_amb_car_wash_jet", xRot = -180.0, nextWait = 0, h=274.58},
--PD
{pos = vector3(-457.34, -335.6, 69.52),... | Lua |
Initialized = true;
}
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0;
memset((&V_0), 0, sizeof(V_0));
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_1;
memset((&V_1), 0, sizeof(V_1));
int32_t V_2 = 0;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * G_B4_0 = NULL;
int32_t G_B4_1 = 0;
String... | C++ |
(featureType)) {
merged[featureType] = [];
}
merged[featureType]!.add(preset);
}
// 再添加用户预设
userPresetsByFeatureType.forEach((featureType, presets) {
if (!merged.containsKey(featureType)) {
merged[featureType] = [];
}
merged[featureType]!.addAll(presets);
... | Dart |
OR operation (0xAA / 255)
},
vertexShader: vertexObfuscateShader,
fragmentShader: fragmentObfuscateShader
} );
// Create a plane to display the texture
const planeGeometry = new THREE.PlaneGeometry( 2, 2 );
const plane = new THREE.Mesh( planeGeometry,... | JavaScript |
infer OkType,
any
>
? OkType
: never;
type JoinErrorTypes<ErrorType, B extends Result<any, any, any>> = Result<
ErrorType | InferErrorType<B>,
InferOkType<B>,
any
>;
type ExtractErrorTypes<Tuple extends any[]> = {
[Index in keyof Tuple]: Tuple[Index] extends Result<any, any, any>
? InferErrorType<... | Typescript |
f.Accept = true;
f.Transitions.Add(new Transition(Char.MinValue, Char.MaxValue, f));
for (int i = 0; i < s.Length; i++)
{
var done = new HashSet<char?>();
char c = s[i];
states[i].Transitions.Add(new Transition(c, states[i + 1]));
... | C# |
="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<script>
const obj = new Object()
let mySymbol = Symbol()
const obj2 = {
name: '孙悟空',
age: 18,
['gender']: '男',
[mySymbol]: '特殊的属性',
hello:... | Markdown |
0x00, 0x01,
0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40,
0x40, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A,
0x1B, 0x1C, 0x1D, 0x1E, 0x1F, 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x40, 0x40, 0x... | Rust |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Reflection;
namespace Axe.Windows.Core.Misc
{
/// <summary>
/// Provides information about the Axe.Windows package
/// </summar... | C# |
(foo a))
""")
fun testAddLocalInstance() = typedQuickFixTest(addLocalInstance, """
\class C
| foo : Nat
\func test => foo{-caret-}
""", """
\class C
| foo : Nat
\func test {c : C} => foo
""")
fun testAddLocalInstance2() = ty... | Kotlin |
2, #0
bl ov14_021F3488
add r0, r4, #0
mov r1, #0xff
add r0, #0x21
strb r1, [r0]
ldr r1, _021EC234 ; =ov14_021E9450
b _021EC22A
_021EC200:
add r0, r4, #0
bl ov14_021F08BC
add r0, r4, #0
mov r1, #1
add r0, #0x22
strb r1, [r0]
mov r0, #0x21
str r0, [r4, #0x30]
mov r0, #0x2f
ldr r1, [r4, #0x34]
lsl r0, r0... | Assembly |
ite .md-fences-math[lang=math].md-focus .md-fences-adv-panel,content>#write .md-fences .code-tooltip{bottom:0;border-radius:calc(var(--v-r-b) - 2px)calc(var(--v-r-b-xc) - 2px)!important}.code-tooltip mjx-container>svg g,content>#write .md-fences-math[lang=math].md-focus .md-fences-adv-panel mjx-container>svg g{fill:var... | CSS |
],
expectedLabels: string[]
): string[] {
const missingLabels: string[] = []
for (const expectedLabel of expectedLabels) {
const matchedLabels: string[] = labels.filter(prLabel =>
matcher.isMatch(prLabel, expectedLabel)
)
if (matchedLabels.length === 0) {
missingLabels.push(expectedLabel)
... | Typescript |
.1996,0.4076 0.12268,0.5989 -0.11021,0.27407 -0.42949,0.40627 -0.70409,0.28061 -0.22972,-0.10511 -0.3171,-0.33211 -0.30382,-0.5142 0.0138,-0.30231 0.24295,-0.55107 0.50245,-0.54675 z' /%3E%3C/g%3E%3C/svg%3E%0A");
--icon-doodle-bookmark: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill... | CSS |
#
# TEST CODE FOR JAL
#
# -----------------------------------------
# Program section (known as text)
# -----------------------------------------
.text
# Start symbol (must be present), exported as a global symbol.
_start: .global _start
# Export main as a global symbol
.global... | Assembly |
"Katar",
"RE": "Reunió",
"RO": "Romania",
"RU": "Rússia",
"RW": "Rwanda",
"BL": "Sant Bartomeu",
"SH": "Santa Elena",
"KN": "Sant Cristòfol i Neus",
"LC": "Santa Llúcia",
"MF": "Sant Martí",
"PM": "Sant Pere i Miqueló",
"VC": "Sant Vicenç",
"WS": "Samoa",
"SM": "Sant Marí",
"ST": "Sao Tomé ... | Dart |
C,a.n,b,c);}$p=1;case 1:BeA(a,b,c,d);if(C()){break _;}O(BO4());case 2:B4j(e,f,g,h);if(C()){break _;}return;case 3:B4j(e,f,g,h);if(C()){break _;}return;case 4:B4j(e,f,g,h);if(C()){break _;}e=a.n.b1;f=B(679);g=1.0;h=1.0;$p=5;case 5:B4j(e,f,g,h);if(C()){break _;}return;case 6:B4j(e,f,g,h);if(C()){break _;}return;case 7:B4... | JavaScript |
ft: 20px;
}
:root.catalog-mode .inline {
display: none;
}
.inline .post {
border: 0 !important;
background-color: transparent !important;
display: table !important;
margin: 0 !important;
padding: 1px 2px !important;
}
#qp > .opContainer::after {
content: '';
clear: both;
display: table;
}
#qp .post {
... | CSS |
?|Проповедник из племени Дробителей Черепов|',
[11391] = '?|Проповедник из племени Порочной Ветви|',
[11406] = '?|Верховный жрец Рохан|',
[11438] = 'B|Биббли Скобкофуз|Standing next to a hut, inside a bone fence.',
[11441] = '?|Громила из клана Гордок|',
[11444] = '?|Маг-лорд из клана Гордок|',
[11445] = '?... | Lua |
CP_SecurityInformation),
}
#[derive(Debug, AperCodec)]
#[asn(type = "SEQUENCE", extensible = false)]
pub struct RANCPRelocationIndicationProtocolIEs_Entry {
#[asn(key_field = true)]
pub id: ProtocolIE_ID,
pub criticality: Criticality,
pub value: RANCPRelocationIndicationProtocolIEs_EntryValue,
}
#[der... | Rust |
0) {
nCounter++;
}
gslc_ElemXSelNumSetCounter(pGui,pSelNum,nCounter);
} else if (nSubElemId == SELNUM_ID_BTN_DEC) {
// Decrement button
if (nCounter > 0) {
nCounter--;
}
gslc_ElemXSelNumSetCounter(pGui,pSelNum,nCounter);
}
} // eTouch
return true;
#endi... | C |
-webkit-transform:translateX(-50%)translateY(-50%);-ms-transform:translateX(-50%)translateY(-50%);transform:translateX(-50%)translateY(-50%);color:rgba(255,255,255,.7);font-size:7rem;text-shadow:2px 2px 0 rgba(0,0,0,.15);-webkit-transition:color .2s ease;transition:color .2s ease}.ui.video .placeholder{position:absolut... | CSS |
cation on this game object.
/// </summary>
protected void AdvertisePath()
{
PathHolder holder = GetComponent<PathHolder>();
if (path.Length > 0) {
/// If we have a path, be sure we advertise it.
if (null == holder) {
hol... | C# |
ne = random.choice(lines)
tokens = line.split()
external_ip = tokens[4]
logger.info(f'Selected random legacy node - {external_ip}')
return f'http://{external_ip}:3030'
def main():
start_time = datetime.now()
parser = argparse.ArgumentParser(
description='Run a prober for split archiv... | Python |
Zenbakidun Zerrenda",
NumberedList : "Txertatu/Kendu Zenbakidun zerrenda",
BulletedListLbl : "Buletdun Zerrenda",
BulletedList : "Txertatu/Kendu Buletdun zerrenda",
ShowTableBorders : "Erakutsi Taularen Ertzak",
ShowDetails : "Erakutsi Xehetasunak",
Style : "Estiloa",
FontFormat : "Formatua",
Font : "Letra... | JavaScript |
295"] = 1,
["15134"] = 1,
["16244"] = 1,
["16346"] = 1,
["15118"] = 1,
["15105"] = 1,
["15136"] = 1,
["15094"] = 1,
["15873"] = 1,
["15106"] = 1,
["15131"] = 1,
["15481"] = 1,
["15871"] = 1,
["15103"] = 1,
["15091"] = 1,
["15112"] = 1,
["15146"] = 1,
["15085"] = 1,
["15138"] = 1,
[... | Lua |
) {
expect(() => accessor.setPackedInt64Element(1, 0, fakeInt64))
.toThrowError('Must be Int64 instance, but got: null');
} else {
// Note in unchecked mode we produce invalid output for invalid inputs.
// This test just documents our behavior in those cases.
// These values might ... | JavaScript |
uuid;
this.screens = screens;
}
public get(): LogicalScreen {
return this.screens[this.uuid];
}
}
require("dotenv").config();
import faker from "faker";
import { connectDatabase } from "../src/db";
import { Listing } from "../src/lib/types";
import { ObjectId } from "mongodb";
console.log("[seed]: Running...")... | Typescript |
ddi r3, r1, 0x10
/* 80332C68 0032E8C8 38 81 00 08 */ addi r4, r1, 8
/* 80332C6C 0032E8CC 90 01 00 0C */ stw r0, 0xc(r1)
/* 80332C70 0032E8D0 4B FB BB 09 */ bl MATH_CalcCRC8
/* 80332C74 0032E8D4 54 60 06 7E */ clrlwi r0, r3, 0x19
/* 80332C78 0032E8D8 7C 03 FE 70 */ srawi r3, r0, 0x1f
/* 80332C7C 0032E8DC 7C 00 EA ... | Assembly |
t:1.4;outline:0;text-decoration:none;white-space:nowrap}body .note-fullscreen-body,html .note-fullscreen-body{overflow:hidden!important}/*
* DOM element rendering detection
* https://davidwalsh.name/detect-node-insertion
*/
@keyframes chartjs-render-animation {
from { opacity: 0.99; }
to { opacity: 1; }
}
.chartj... | CSS |
/*-------------------------------------------------------------------------
*
* twophase_rmgr.c
* Two-phase-commit resource managers tables
*
* Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* ... | C |
gnoreUnrecognizedVMOptions
* vm.runtime.defmeth.DefaultVsAbstractTest
* -ver 51
* -flags 0
* -mode reflect
*/
/*
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; yo... | Java |
00: #0091EA;
//## Cyan
$mdc-cyan-50: #E0F7FA;
$mdc-cyan-100: #B2EBF2;
$mdc-cyan-200: #80DEEA;
$mdc-cyan-300: #4DD0E1;
$mdc-cyan-400: #26C6DA;
$mdc-cyan-500: #00BCD4;
$mdc-cyan-600: #00ACC1;
$mdc-cyan-700: #0097A7;
$mdc-cyan-800: #00838F;
$mdc-cyan-900: #006064;
$mdc-cyan-A100: #84FFFF;
$mdc-cyan-A200: #18FF... | CSS |
_epochs * len(train_dataloader)
>>> lr_scheduler = get_scheduler(
... name="linear", optimizer=optimizer, num_warmup_steps=0, num_training_steps=num_training_steps
... )
```
Infine specifica come `device` da usare una GPU se ne hai una. Altrimenti, l'addestramento su una CPU può richiedere diverse ore invece di un... | Markdown |
# × [0.3] HANGUL CHOSEONG KIYEOK (JL) × [9.0] COMBINING DIAERESIS (CM1_CM) ÷ [999.0] EMOJI MODIFIER FITZPATRICK TYPE-1-2 (EM) ÷ [0.3]
× 1100 × 0308 × 0020 ÷ 1F3FB ÷ # × [0.3] HANGUL CHOSEONG KIYEOK (JL) × [9.0] COMBINING DIAERESIS (CM1_CM) × [7.01] SPACE (SP) ÷ [18.0] EMOJI MODIFIER FITZPATRICK TYPE-1-2 (EM) ÷ [0.3]
... | Dart |
("""<foo>some text</foo>""")
.expectNextTokens(
ElementStart("foo"),
ElementStartEnd,
Text("some text"),
ElementEnd("foo"),
DocumentEnd,
)
}
@Test
fun elementWithCDATA() {
XmlLexer("""<foo>some text with <![CDATA[cdata text that has w3!rd ch<r<ct3rs]]> in i... | Kotlin |
om/LukasKnuth)
- @[stephandesouza](http://github.com/stephandesouza)
Many thanks to [Boris Glumpler](https://github.com/shabushabu) and [ScubaClick](https://github.com/ScubaClick) for the original package!
# This file is part of eRCaGuy_dotfiles: https://github.com/ElectricRCAircraftGuy/eRCaGuy_dotfiles
Gabriel S... | Markdown |
>, y9: Vec<X, D1>): Mat<X, D9, D1> = Mat(y1, y2, y3, y4, y5, y6, y7, y8, y9)
fun <X: SFun<X>> Mat9x2(y1: Vec<X, D2>, y2: Vec<X, D2>, y3: Vec<X, D2>, y4: Vec<X, D2>, y5: Vec<X, D2>, y6: Vec<X, D2>, y7: Vec<X, D2>, y8: Vec<X, D2>, y9: Vec<X, D2>): Mat<X, D9, D2> = Mat(y1, y2, y3, y4, y5, y6, y7, y8, y9)
fun <X: SFun<X>> ... | Kotlin |
BG255]]
// CHECK1-NEXT: br i1 [[EXEC_USER_CODE]], label [[USER_CODE_ENTRY:%.*]], label [[WORKER_EXIT:%.*]], !dbg [[DBG255]]
// CHECK1: user_code.entry:
// CHECK1-NEXT: [[TMP13:%.*]] = call i32 @__kmpc_global_thread_num(ptr @[[GLOB20:[0-9]+]]), !dbg [[DBG256:![0-9]+]]
// CHECK1-NEXT: [[TMP14:%.*]] = getel... | C++ |
}
#endregion
#region Private Static Methods [Low Level Helper Methods]
private static void ValidateCompatible<TScalar>(
INeatExperiment<TScalar> neatExperiment,
MetaNeatGenome<TScalar> metaNeatGenome)
where TScalar : unmanaged, IBinaryFloatingPointIeee754<TScalar>
{
//... | C# |
Palette)
.dh (OBJ0_YCoordinate & 0F8h) | OBJ0_Mode_Normal | OBJ0_Shape_Square
.dh (OBJ1_XCoordinate & 008h) | OBJ1_Size_8x8 | OBJ1_YFlip
.dh (OBJ2_Character & 23Ah) | ((OBJ2_PaletteMask & 08h) << OBJ2_Palette)
;--- bottom side
.dh (OBJ0_YCoordinate & 000h) | OBJ0_Mode_Normal | OBJ0... | Assembly |
For logging about caching ops.
cachelog *log.Logger
)
var debugFlagOnce sync.Once
func registerDebugFlags() {
flag.BoolVar(&flagProxyLocal, "proxy_local", false, "If true, the HTTP_PROXY environment is also used for localhost requests. This can be helpful during debugging.")
flag.BoolVar(&flagHaveCache, "havecach... | Go |
able': True, 'density': 'comfortable'}}]},
{'component': 'VCol', 'props': {'cols': 12, 'md': 2}, 'content': [{'component': 'VTextField', 'props': {'model': 'q_sport', 'label': '外部端口', 'density': 'comfortable'}}]},
{'component': 'VCol', 'props': {'c... | Python |
Duration::from_millis(500),
AnimationFunction::EaseOutCubic,
));
}
let v = self
.beat_animation
.as_ref()
.unwrap()
.value(data.engine_state.time);
... | Rust |
abled(false)
Padding:SetSize(1,5)
menu:AddPanel(Padding)
local Title = vgui.Create("DLabel")
Title:SetText(" Ragdoll Type:\n")
Title:SetFont("UiBold")
Title:SizeToContents()
Title:SetTextColor(color_black)
menu:AddPanel(Title)
for k, v in ipair... | Lua |
0.05,2.76 0.63,3.53 0.85,0.12 -0.88,1.14 0.28,1.69 0.95,1.15 2.74,1.36 3.78,2.44 2.1,-0.64 1.94,2.54 3.38,3.53 -0.02,1.76 -4.46,1.44 -3.63,3.94 0.68,2.57 -4.21,0.58 -2.84,2.81 1.83,0.44 -0.6,3.95 1.91,2.84 1.99,0.16 3.75,-0.51 5.28,-1.56 2.42,0.22 1.96,2.83 1.16,4.31 1.13,1.3 -2.4,1.11 -0.19,2.13 0.63,2.06 -3.8,1.36 -... | JavaScript |
:rgba8> m_curve5;
agg::bezier_ctrl<agg::rgba8> m_curve6;
agg::bezier_ctrl<agg::rgba8> m_curve7;
agg::bezier_ctrl<agg::rgba8> m_curve8;
agg::bezier_ctrl<agg::rgba8> m_curve9;
agg::slider_ctrl<agg::rgba8> m_scale_x;
agg::slider_ctrl<agg::rgba8> m_start_x;
public:
typedef agg::renderer_base<pi... | C++ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.