content stringlengths 2 6.21k | label stringclasses 16
values |
|---|---|
.3px -21px rgba(0, 0, 0, 0.035),
0 22.1px 87.4px -21px rgba(0, 0, 0, 0.041),
0 35.2px 139.3px -21px rgba(0, 0, 0, 0.048),
0 66px 261px -21px rgba(0, 0, 0, 0.07);
font-family: "Poppins", sans-serif !important;
}
.registration-title {
font-family: "Poppins", sans-serif !important;
color: #212529;
}
.header_ar... | CSS |
/*******************************************************************************
* Copyright (C) 2020 Commissariat a l'energie atomique et aux energies alternatives (CEA)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the fo... | C |
RSA_WITH_AES_256_GCM_SHA384"),
new CipherSuite(0xc031, "TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256"),
new CipherSuite(0xc032, "TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384"),
new CipherSuite(0xc033, "TLS_ECDHE_PSK_WITH_RC4_128_SHA"),
new CipherSuite(0xc034, "TLS_ECDHE_PSK_WITH_3DES_EDE... | Java |
Listener = new EmbedContentListener(q);
contentListenerGuard = NS_STATIC_CAST(nsISupports*,
NS_STATIC_CAST(nsIURIContentListener*, contentListener));
// Create our key listener object and initialize it. It is assumed
// that this will be destroyed before we go out... | C++ |
uk-table tbody tr.uk-active {
background: #EEE;
}
/* Sub-modifier: `uk-table-middle`
========================================================================== */
.uk-table-middle,
.uk-table-middle td {
vertical-align: middle !important;
}
/* Modifier: `uk-table-striped`
==========================================... | CSS |
= new DateTime(2012, 12, 31, 23, 59, 59, 999, 999);
dtTick = new DateTime(
dtBase1.year,
dtBase1.month,
dtBase1.day,
dtBase1.hour,
dtBase1.minute,
dtBase1.second,
dtBase1.millisecond,
dtBase1.microsecond + 1,
);
Expect.equals(dtBase1.year + 1, dtTick.year);
Expect.equals(1, dtTi... | Dart |
ull.u8 q5, d8, d8
vmull.u8 q6, d9, d9
tst r7, #2 // LR_HAVE_RIGHT
bne 4f
// If we'll need to pad the right edge, load that byte to pad with
// here since we can find it pretty easily from here.
sub lr, r5, #(2 + 16 ... | Assembly |
getpmsg",
"putpmsg",
"vfork",
"ugetrlimit",
"mmap2",
"truncate64",
"ftruncate64",
"stat64",
"lstat64",
"fstat64",
"lchown32",
"getuid32",
"getgid32",
"geteuid32",
"getegid32",
"setreuid32",
"setregid32",
"getgroups32",
"setgroups32",
"fchown32",
"setresuid32",
"getresuid32",
"setresgid32",
"getre... | Go |
_type =='7bit':\n if self._mangle_from_:\n msg._payload=fcre.sub(\">From \",msg._payload)\n self._write_lines(msg._payload)\n else :\n super(BytesGenerator,self)._handle_text(msg)\n \n \n _writeBody=_handle_text\n \n @classmethod\n def _compile_re(cls,s,flags):\n return re.compile(s.encode('ascii'),flags... | JavaScript |
Node createTree(int[] arr, int[] IDX) {
if (IDX[0] > arr.length || arr[IDX[0]] == -1) {
IDX[0]++;
return null;
}
TreeNode Treenode = new TreeNode(arr[IDX[0]++]);
Treenode.left = createTree(arr, IDX);
Treenode.right = createTree(arr, IDX);
return Treenode;
}
public static void s... | Java |
RotatePointAroundPivot({x=center.x-half_height,y=center.y+half_width},center,angle)
local p2=UTILS.RotatePointAroundPivot({x=center.x+half_height,y=center.y+half_width},center,angle)
local p3=UTILS.RotatePointAroundPivot({x=center.x+half_height,y=center.y-half_width},center,angle)
local p4=UTILS.RotatePointAroundPivot(... | Lua |
.Debug.WriteLine("Background task is started.");
});
}
}
async void RegisterTask()
{
System.Diagnostics.Debug.WriteLine("Register the background task.");
//
// Check for existing registrations of this background task.
/... | C# |
wysiwyg h1{
font-size: 1.4em;
}
.b3-typography .h2, .b3-typography h2, .protyle-wysiwyg .h2, .protyle-wysiwyg h2{
font-size: 1.35em;
}
.b3-typography .h3, .b3-typography h3, .protyle-wysiwyg .h3, .protyle-wysiwyg h3{
font-size: 1.3em;
}
.b3-typography .h4, .b3-typography h4, .protyle-wysiwyg .h4, .protyle-wysiwyg h4... | CSS |
{
switch m.CurrentStep {
case StepTagInput:
m.TagModel.ManualInput += msg.String()
case StepBranchInput:
m.BranchModel.Input += msg.String()
case StepRemoteNameInput:
m.RemoteModel.NameInput += msg.String()
case StepRemoteUrlInput:
m.RemoteModel.UrlInput += msg.String()... | Go |
.16b}, [x1], #16
tweak_next(v8, v8, RTMP0)
cbnz w4, .Lxts_enc_loop_1x
.Lxts_enc_cts:
cbz x5, .Lxts_enc_end
/* cipher text stealing */
tweak_next(v9, v8, RTMP0)
ld1 {v0.16b}, [x2]
eor v0.16b, v0.16b, v8.16b
SM4_CRYPT_BLK(v0)
eor v0.16b, v0.16b, v8.16b
/* load permute table */
adr_l x6, .Lcts_permu... | Assembly |
]?.lastName || item.creators?.[0]?.name || ''].join('\t').toLowerCase()
}
function strip(obj) {
if (Array.isArray(obj)) {
obj = obj.map(strip).filter(e => e)
return obj.length ? obj : undefined
}
if (typeof obj === 'object') {
let keep = false
for (let [k, v] of Object.entries(obj)) {
v = ... | Typescript |
terval(function() {
for(let a = 0; a < drawsPerTick && counter < stageSizeX2; a++) {
data32[spiralArray[counter].x + spiralArray[counter].y * stageSize] = 0xFFFF0000;
counter += addToCounterPerTick;
}
if(counter >= stageSizeX2) {
if(counterStartingOffset == addToCounterPerTick) {
clearInterval... | Typescript |
1550", "Disco"],
["87756E", "Americano"],
["877C7B", "Hurricane"],
["878D91", "Oslo Gray"],
["87AB39", "Sushi"],
["885342", "Spicy Mix"],
["886221", "Kumera"],
["888387", "Suva Gray"],
["888D65", "Avocado"],
["893456", "Camelot"],
["893843", "Solid Pink"],
["894367", "Cannon Pink"],
["897D6D", "Makara"],
["8A3324", "Bu... | JavaScript |
OMB).div(COULOMB));
const body1 = new Sphere3();
const body2 = new Sphere3();
body1.Q = Geometric3.scalar(1.5E-9, COULOMB);
body2.Q = Geometric3.scalar(-2.0E-9, COULOMB);
body1.X = Geometric3.vector(-0.0075, 0, 0, METER);
body2.X = Geometric3.vector(+0.0075, 0, 0, METE... | Typescript |
argsbx)
};
let ops = format!("{:36}", ops);
match op {
OP_MOVE => format!("{} | R({}) := R({})", ops, arga, argb),
OP_MOVEN => format!("{} | R({}) := R({}); followed by {} MOVE ops", ops, arga, argb, argc),
OP_LOADK => format!("{} | R({}) := Kst({})", ops, arga, argbx),
OP... | Rust |
"""This example lets you dynamically create static walls and dynamic balls
"""
__docformat__ = "reStructuredText"
import pygame
import pymunk
import pymunk.pygame_util
pm = pymunk
def main():
pygame.init()
screen = pygame.display.set_mode((600, 600))
clock = pygame.time.Clock()
running = True
... | Python |
ne containing a correspondent pattern.
Each pattern matches any single character that belongs to its class.
</p>
<p>
If called with an argument <code>table</code>,
then it creates those fields inside the given table and
returns that table.
</p>
<h3><a name="op-len"></a><code>#patt</code></h3>
<p>
Returns a pattern ... | HTML |
MSG_SETTINGS_STORED);
TERN_(EXTENSIBLE_UI, ExtUI::onConfigurationStoreWritten(!eeprom_error));
return !eeprom_error;
}
/**
* M501 - Retrieve Configuration
*/
bool MarlinSettings::_load() {
if (!EEPROM_START(EEPROM_OFFSET)) return false;
char stored_ver[4];
EEPROM_READ_ALWAYS(stored_v... | C++ |
25.9 25.9H902c14.3 0 25.9-11.6 25.9-25.9V118.2c0-11-9-20-20-20H668.6c-14.3 0-25.9 11.6-25.9 25.9v31.1c0 14.3 11.6 26 25.9 26zM357.4 845.2H181V668.8c0-14.3-11.6-25.9-25.9-25.9H124c-14.3 0-25.9 11.6-25.9 25.9v239.4c0 11 9 20 20 20h239.4c14.3 0 25.9-11.6 25.9-25.9v-31.1c-0.1-14.4-11.7-26-26-26zM845 668.8v176.4H668.6c-14.... | CSS |
(_fixed, this.padTo);
}
};
return PolyNumberFormatter;
}();
/**
* @private
*/
var PolyDateFormatter = /*#__PURE__*/function () {
function PolyDateFormatter(dt, intl, opts) {
this.opts = opts;
this.originalZone = undefined;
var z = undefined;
if (this.opts.timeZone) ... | JavaScript |
Outcome::Passed, Timestamp::Unknown).await.expect("stop run");
run_reporter.finished().await.expect("finish run");
let (run_result, suite_results) = parse_json_in_output(dir.path());
assert_run_result(
dir.path(),
&run_result,
&ExpectedTestRun::new(directory:... | Rust |
/**
* Copyright (C) 2010-2024 The Catrobat Team
* (http://developer.catrobat.org/credits)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License,... | C |
filtered_projects = [p for p in filtered_projects if p.has_late_tasks]
elif selected_card == 2:
filtered_projects = [p for p in filtered_projects if
p.expected_due_date and datetime.now() > p.expected_due_date]
spotlight = [pc.render(project) for project in filtere... | Python |
values here */
/* Non text-related properties for buttons: these ones are shared with
input[type="color"] */
button,
input[type="color"]:-moz-system-metric(color-picker-available),
input[type="reset"],
input[type="button"],
input[type="submit"] {
-moz-appearance: button;
/* The sum of border and padding on blo... | CSS |
get("jack_o_lantern")
@JvmField
val CAKE: KryptonBlock = get("cake")
@JvmField
val REPEATER: KryptonBlock = get("repeater")
@JvmField
val WHITE_STAINED_GLASS: KryptonBlock = get("white_stained_glass")
@JvmField
val ORANGE_STAINED_GLASS: KryptonBlock = get("orange_stained_glass")
@Jvm... | Kotlin |
amples - Add a PCF command creator/parser
* mqmetric - Optional ReplyQ2 config parm as separate name (ibm-messaging/mq-metric-samples#100)
## Nov 19 2021 - v5.2.4
* Update for MQ 9.2.4
* ibmmq - Support for MQBNO (application balancing) structure
* mqmetric - Ensure DESCR fields are valid UTF8
* mqmetric - Deal with d... | Markdown |
s:</label><br>
<textarea name="Comentarios" rows="7" cols="40" id="comments"></textarea>
<p><label for="how">¿Cómo encontró mi página?</label><br>
<select name="Como" title="¿Cómo encontró mi página?" id="how">
<optgroup label="Seleccione respuesta">
<option value="Por un buscador" selected>Por un buscador</option>
<op... | HTML |
ConcatenationBuf.segment(start+tbsize, paritysize);
getParity(a, parityOfA);
}
//OBJLOG(DEBUG) << "with parity " << crcAndTBConcatenationBuf.size() << " " << crcAndTBConcatenationBuf;
l1ChannelCoding(fpi,crcAndTBConcatenationBuf);
}
void L1TrChEncoder::l1ChannelCoding(L1FecProgInfo *fpi, BitVector &catbuf)
{
Bi... | C++ |
except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF A... | Kotlin |
xsp = jj_scanpos;
if (jj_3R_SelectStatement_1142_17_378()) {
jj_scanpos = xsp;
if (jj_3R_SelectStatement_1144_17_379()) {
jj_scanpos = xsp;
if (jj_3R_SelectStatement_1146_17_380()) {
jj_scanpos = xsp;
if (jj_3R_SelectStatement_1148_17_381()) return true;
}
... | Java |
raClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},wi)}_setContent(t,e,i){const s=K.findOne(i,t);s&&((e=this._resolvePossibleFunction(e))?l(e)?th... | JavaScript |
>
@Suppress("FunctionName")
fun KhomeApplication.InputNumber(objectId: ObjectId): InputNumber =
Actuator(
EntityId.fromPair("input_number".domain to objectId),
ServiceCommandResolver { desiredState ->
DefaultResolvedServiceCommand(
service = "set_value".service,
... | Kotlin |
县里刮起来的。县直机关把城关公社的三个生产队刮去了。五脑山的柴,他不让社员砍。刘长启驮支枪站在山上一指,这一块也是他的,那一块也是他的。哪个去砍柴,他就要扣人。这个事吴书记、赵书记、陈县长都晓得,不制止。
</p>
<p>
果园场、万头养猪场也是一样,说这个山是他们的,那个山也是他们的。县委知道了也不纠正。万人大会后还不制止这些问题,这是破坏政策。红专管理区在乘马买个小猪,经过林场,林场扣了。后来李敬芳说,林场不给我们猪,今后到红专来,我们就要扣他的人。这样,他们才把猪放回来。
</p>
<p>
果园的场长对红专一队的社员说:“你们这个队马上就要拨到我们场来”。他们用提高工资、提高口粮的办法,吸引他们,这... | HTML |
.fa-bandcamp::before {
content: "\f2d5";
}
.fa-grav::before {
content: "\f2d6";
}
.fa-etsy::before {
content: "\f2d7";
}
.fa-imdb::before {
content: "\f2d8";
}
.fa-ravelry::before {
content: "\f2d9";
}
.fa-eercast::before {
content: "\f2da";
}
.fa-microchip::before {
content: "\f2db";
}
.fa-snowflake-o::b... | CSS |
// <auto-generated />
namespace MyTelegram.Schema;
///<summary>
/// List of actions that are possible when interacting with this user, to be shown as suggested actions in the chat bar
/// See <a href="https://corefork.telegram.org/type/PeerSettings" />
///</summary>
[JsonDerivedType(typeof(TPeerSettings), nameof(TPe... | C# |
số nguyên.","invalidRowSpan":"Số hàng kết hợp phải là một số nguyên.","invalidColSpan":"Số cột kết hợp phải là một số nguyên.","chooseColor":"Chọn màu"},"cellPad":"Khoảng đệm giữ ô và nội dung","cellSpace":"Khoảng cách giữa các ô","column":{"menu":"Cột","insertBefore":"Chèn cột phía trước","insertAfter":"Chèn cột phía ... | JavaScript |
E* L_237 = DateTimeFormatInfo_get_AbbreviatedEnglishEraNames_m0F9FB583B4F618759826026FB838E8BF9D6147F8(__this, /*hidden argument*/NULL);
int32_t L_238 = V_28;
NullCheck(L_237);
int32_t L_239 = L_238;
String_t* L_240 = (L_237)->GetAt(static_cast<il2cpp_array_size_t>(L_239));
int32_t L_241 = V_28;
DateTimeFor... | C++ |
TreeCrown1();
drawNest();
//backgroud imageData
imageData = crc2.getImageData(0, 0, canvas.width, canvas.height);
createBee(10);
}//handleload
function update(): void {
//console.log("update");
crc2.clearRect(0, 0, 1000, 750);
crc2.putImageData(ima... | Typescript |
254a: 00 halt
6254b: 00 halt
6254c: 6d 00 00 cvtwd $0x0,$0x0 [d-float]
6254f: 00 halt
62550: 71 00 00 cmpd $0x0 [d-float],$0x0 [d-float]
62553: 00 halt
62554: 1c 00 bvc 62556 <op+0x36fa>
62556: 00 halt
62557: 00 halt
6... | Assembly |
cr_regmap, NPCM_MDLR_OFFSET, &mdlr);
if (!(mdlr & NPCM_MDLR_USBD0))
ipsrst3_bits |= NPCM_IPSRST3_USBD0;
if (!(mdlr & NPCM_MDLR_USBD1))
ipsrst1_bits |= NPCM_IPSRST1_USBD1;
if (!(mdlr & NPCM_MDLR_USBD2_4))
ipsrst1_bits |= (NPCM_IPSRST1_USBD2 |
NPCM_IPSRST1_USBD3 |
NPCM_IPSRST1_USBD4);
if (!(mdlr & NPC... | C |
y"
>InvalidOpcode</TD
><TD CLASS = "indexlinks"
><A HREF = "H.UserMode.html#v%3AInvalidOpcode"
>H.UserMode</A
></TD
></TR
><TR
><TD CLASS = "indexentry"
>InvalidTSS</TD
><TD CLASS = "indexlinks"
><A HREF = "H.UserMode.html#v%3AInvalidTSS"
>H.UserMode</A
... | HTML |
d>
<p>Enable 'Strong' PVK encoding level (default).</p>
</dd>
<dt id="pvk-weak"><b>-pvk-weak</b></dt>
<dd>
<p>Enable 'Weak' PVK encoding level.</p>
</dd>
<dt id="pvk-none"><b>-pvk-none</b></dt>
<dd>
<p>Don't enforce PVK encoding.</p>
</dd>
<dt id="engine-id"><b>-engine</b> <i>id</i></dt>
<dd>
... | HTML |
: "@", nth: 0 }, 0)
.withTest({ haystack: "@ but there's one in the front @ and middle", needle: "@", nth: 1 }, 31)
.withTest({ haystack: "@ but there's one in the front @ and middle", needle: "@", nth: 2 }, undefined)
.withTest({ haystack: "@ but there's one in the front @ and middle", needle: "@", nth: 3 ... | Typescript |
*
* This method will return immediately if TRACE_HIERARCHY is false.
*
* @param prefix the traces files name prefix
* @param view the view whose hierarchy must be traced
*
* @see #stopHierarchyTracing()
* @see #trace(View, android.view.ViewDebug.HierarchyTraceType)
*/
@DSGen... | Java |
data, λ.NewFunction("<lambda>",
[]λ.Param{
{Name: "x"},
},
0, false, false,
func(λargs []λ.Object) λ.Object {
var (
ϒx = λargs[0]
)
return λ.GetItem(λ.GetItem(ϒx, λ.StrLiteral("shows")), λ.IntLiteral(0))
}), λ.DictType); λ.IsTrue(λv) {
r... | Go |
****************************************************
** Change colors on Image
**
** d0=New color section (0-2) on section 0
** d1=New color section (0-2) on section 1
** d2=New color section (0-2) on section 2
** a0=start of image data
** a1=end of image data
*************************************************... | Assembly |
get.hint ??
BrnIntl.of(context).localizedResource.pleaseEnter,
counterText: "",
contentPadding: EdgeInsets.all(0),
isDense: true,
enabledBorder: UnderlineInputBorder(
... | Dart |
|H[c+1|0]<<8;if(!f){break H}e=c+2|0;if(e>>>0<j>>>0|e>>>0>h>>>0){break I}k=h-e|0;f=(f<<8|f>>>8)&65535;e=f<<1;if(k>>>0<e>>>0){break I}d=d-e|0;G[b+12>>2]=d;if((d|0)<=0){break I}f=f>>>0>1?f:1;d=0;while(1){if(!_l((c+(d<<1)|0)+2|0,b,c,o)){break I}e=1;d=d+1|0;if((f|0)!=(d|0)){continue}break}break H}c=G[b+28>>2];d=0;if(c>>>0>3... | JavaScript |
['bold'].inside = nestedPatterns;
Prism.languages.textile['phrase'].inside['inline'].inside['italic'].inside = nestedPatterns;
Prism.languages.textile['phrase'].inside['inline'].inside['inserted'].inside = nestedPatterns;
Prism.languages.textile['phrase'].inside['inline'].inside['deleted'].inside = nestedPatterns;
... | JavaScript |
from flask import Flask, request, render_template
import os
import random
import redis
import socket
import sys
import hvac
import json
app = Flask(__name__)
# Load configurations
app.config.from_pyfile('config_file.cfg')
button1 = app.config['VOTE1VALUE']
button2 = app.config['VOTE2VALUE']
title = ... | Python |
jshint node: true */
/* eslint vars-on-top:0 */
/* eslint-env node, browser */
/**
* Flocks gulpfile.
*
* @module gulpfile
* @main gulp
* @class gulpfile
*/
"use strict";
/**
* This unbound blockless step installs the node-jsx loader to convert statics.
* This is not actually a method and cannot be c... | JavaScript |
ect.constructor === Array) {
return matchArrays(leftObject, rightObject, options);
}
if (leftObject.constructor === Object) {
return matchObjects(leftObject, rightObject, options);
}
return leftObject === rightObject;
};
export default Compare;
import {ParsedUrl, parseUrl} from './url... | Typescript |
ItemBlockRenderTypes.setRenderLayer(LATEX_SAP_FLOW_FLUID.get(), RenderType.translucent());
}
}
}
package org.eln2.mc.common.cells.foundation
import mcp.mobius.waila.api.IPluginConfig
import net.minecraft.server.level.ServerLevel
import org.ageseries.libage.sim.thermal.Temperature
import org.ageseries.liba... | Kotlin |
score, break tie with match wins
if(b.overallScore === a.overallScore){
// If same overall score AND same wins, break tie with least match losses
if(b.matchWins === a.matchWins){
// If same overall score AND same wins AND same losses, break with match ties
if(b.matchLosses === a.matchLosses){
... | Typescript |
n );
digital_out_low ( &ctx->rx_pin );
digital_out_low ( &ctx->tx_pin );
digital_out_low ( &ctx->scl );
digital_out_low ( &ctx->sda );
tester2_toggle_delay ( toggle_delay_ms );
}
}
void tester2_toggle_seq ( tester2_t *ctx, uint16_t toggle_delay_ms )
{
digital_out_high ( ... | C |
results?buildId={AzureDevOpsBuildId.Value}";
}
return null;
}
public string GetBuildDefinitionLink()
{
if (!string.IsNullOrEmpty(AzureDevOpsAccount) &&
!string.IsNullOrEmpty(AzureDevOpsProject) &&
AzureDevOpsBuildDefinitionId.H... | C# |
.roots, len(original.roots))
assert.True(t, tree.isChildPresent("k", cEFG))
assert.False(t, tree.isChildPresent("k", uuid.Nil))
// (root)/e/f/g/kを(root)/kに移動
tree.move(cEK, optional.From(uuid.Nil), optional.Of[string]{})
assert.Len(t, tree.roots, len(original.roots)+1)
assert.False(t, tree.isChildPresent("k", cE... | Go |
not os.path.exists(file_path):
# 백업 오디오 파일 사용 시도
backup_paths = [
Path(resource_path("resources/backup_audio.wav")),
Path(resource_path("resources/audio/backup_audio.wav")),
Path(resource_path("resources/sounds/backup_audio.wav... | Python |
fhir.dstu2.proto.AllLanguageCode
394, // 986: google.fhir.dstu2.proto.ImmunizationRecommendation.text:type_name -> google.fhir.dstu2.proto.Narrative
96, // 987: google.fhir.dstu2.proto.ImmunizationRecommendation.contained:type_name -> google.fhir.dstu2.proto.ContainedResource
395, // 988: google.fhir.dstu2.proto... | Go |
startsWith("#")) {
this._processPotentialHeading(lineText);
}
}
this._toc = this._toc.concat("\n\n");
editor.edit((editBuilder: vscode.TextEditorEdit)=>{
editBuilder.insert(new vscode.Position(0,0), this._toc);
return Promise.resolve();
});
doc.save();
}
private _pro... | Typescript |
complex_pow
; We have a complex result - illegal - so return NaN
LDMIA r12!, {r9,r14} ;tidy stack
MOV a1, #badpowNaN
MOV a2, #0
MOV a_exp, #&ff
ORR a_exp, a_exp, a_exp, LSL #7
B NaN_add
funny_pow
; We have a max. or min. exponent - a z... | Assembly |
new string[] { "Layer" },
name,
imgUrl,
scene,
isBackground,
color
);
___guid = entity.___guid;
}
#endregion
#region Methods
public void render()
{
EventHorizonBlazorInterop.Func<CachedEntity>(
n... | C# |
pLabelInfo: *const VkDebugUtilsLabelEXT,
);
}
extern "C" {
pub fn vkCmdEndDebugUtilsLabelEXT(commandBuffer: VkCommandBuffer);
}
extern "C" {
pub fn vkCmdInsertDebugUtilsLabelEXT(
commandBuffer: VkCommandBuffer,
pLabelInfo: *const VkDebugUtilsLabelEXT,
);
}
extern "C" {
pub fn vkC... | Rust |
{
d.set_sub(*pi,*op);
double r = d.norm(); // TODO: fast square root approx
d.mul( -Kbond*(1-r)/r );
of->add(d);
fi->sub(d);
}
// force to centre
{
... | C |
[][3]);
extern void IK_GetTranslationChange(IK_Segment *seg, float *translation_change);
/**
* An IK_Solver must be created to be able to execute the solver.
*
* An arbitray number of goals can be created, stating that a given
* end effector must have a given position or rotation. If multiple
* goals are specifi... | C |
<td><i>The Young and the Restless</i></td>
<td class="no table-no2" style="background: #FDD; color: black; vertical-align: middle; text-align: center;">Nominated</td>
</tr>
<tr>
<td>2004</td>
<td><i><a href="//en.wikipedia.org/wiki/NAACP_Image_Award" title="NAACP Image Award">35th NAACP Image Award</a></i></td>
<td>Out... | HTML |
ot of the complete events, then iterate through and try to remove each
// one, returning only the successfully removed ones. This ensures each data point is
// returned at most once.
var datapoints = completeData.ToArray();
List<DataPoint> removed = new List<DataPoint>();... | C# |
rmais en charge</a> la diffusion vidéo WebRTC en direct à un nombre illimité de spectateurs, avec une latence inférieure à une seconde. </td>
</tr>
<tr>
<td><a href="https://blog.cloudflare.com/future-of-page-rules">L'avenir de Page Rules</a></td>
<td>Notre plan pour remplacer les Page Rules par quatre pr... | HTML |
w4, 0, 11
strh w3, [x0]
.L1435:
add w1, w1, 1
add x0, x0, 4
and w1, w1, 65535
b .L1434
.L1441:
mov w25, 0
mov w23, 0
b .L1391
.L1440:
mov w0, 0
b .L1386
.size gc_static_wearleveling, .-gc_static_wearleveling
.section .text.zftl_sblk_list_init,"ax",@progbits
.align 2
.global zftl_sblk_list_init
.type zftl... | Assembly |
#[allow(dead_code)]
pub fn saw(&self) -> FunctionOsc {
FunctionOsc::new(self.sample_rate, |x| (x - 0.5) * 2.0)
}
#[allow(dead_code)]
pub fn square(&self) -> FunctionOsc {
FunctionOsc::new(self.sample_rate, |x| if x < 0.5 { 1.0 } else { -1.0 })
}
#[allow(dead_code)]
pub ... | Rust |
,0x58,0x12]
vpbroadcastd (%edx), %zmm2
// CHECK: vpbroadcastd (%edx), %zmm2 {%k2}
// CHECK: encoding: [0x62,0xf2,0x7d,0x4a,0x58,0x12]
vpbroadcastd (%edx), %zmm2 {%k2}
// CHECK: vpbroadcastd (%edx), %zmm2 {%k2} {z}
// CHECK: encoding: [0x62,0xf2,0x7d,0xca,0x58,0x12]
vpbroadcastd (%edx), %zmm2 {%k... | Assembly |
00.18](https://ftp.pwg.org/pub/pwg/candidates/cs-ippinfra11-20250502-5100.18.pdf).
* May contain any keyword from [DocumentStateReason].
*/
@JvmField val outputDeviceDocumentStateReasons = KeywordType.Set("output-device-document-state-reasons")
/**
* "output-device-job-state" type as defined in:
... | Kotlin |
using HigLabo.Net.OAuth;
namespace HigLabo.Net.Microsoft
{
/// <summary>
/// https://learn.microsoft.com/en-us/graph/api/agreementfile-get?view=graph-rest-1.0
/// </summary>
public partial class AgreementfileGetParameter : IRestApiParameter, IQueryParameterProperty
{
public class ApiPathSe... | C# |
}
switch string(kv.key) {
case "expires":
v := b2s(kv.value)
exptime, err := time.ParseInLocation(time.RFC1123, v, time.UTC)
if err != nil {
return err
}
c.expire = exptime
case "domain":
c.domain = append(c.domain[:0], kv.value...)
case "path":
c.path = append(c.path[:0], kv.value..... | Go |
'', '', '', '', '', '', '', '', '', '', '', '', '', ''},
{'2100103', '', '看来失控造物群的规模比估算中更大呢。', '', '', '', '', '', '', '', '', '1022010', '', '', '2', '', '灼碧', 'Garnet', '[{"id":1022010,"pos":2,"enter":2}]', '', '1', '', '', '', '', '', '', '', '', '2100104', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '',... | Lua |
/* -*- c-basic-offset: 4; indent-tabs-mode: nil -*- */
/* ====================================================================
* Copyright (c) 2006 Carnegie Mellon University. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that ... | C |
- 除了标准的 Hugo 短代码外,
我们还在文档中使用一些[定制的 Hugo 短代码](/zh-cn/docs/contribute/style/hugo-shortcodes/)来控制内容的呈现。
- 文档的源代码有多种语言形式,位于 `/content/` 目录下。
每种语言都有一个自己的目录,用两个字母表示,这两个字母是基于
[ISO 639-1 标准](https://www.loc.gov/standards/iso639-2/php/code_list.php)来确定的。
例如,英语文档的源代码位于 `/content/en/docs/` 目录下。
- 关于为多语言文档做贡献以及如何开始新翻译的详细信息... | Markdown |
2.0.
// See file LICENSE for more information.
library pointycastle.impl.ec_domain_parameters.brainpoolp320t1;
import "package:pointycastle/ecc/api.dart";
import "package:pointycastle/ecc/ecc_base.dart";
import "package:pointycastle/src/ec_standard_curve_constructor.dart";
import "package:pointycastle/src/registry/r... | Dart |
{
message: 'Invalid Email',
excludeEmptyString: true
}
)
.required('Email is Required')
static VALID_MOBILE_NUMBER = Yup.string().matches(/(^(01){1}[3456789]{1}(\d){8})$/, {
message: 'Mobile Number Invalid',
excludeEmptyString... | Typescript |
mazások az alkalmazás indító panelen indítják és leállítják az állapot megjelenítését
- Hozzáadott GPU opció az alkalmazás beállításában. A GPU kiosztható az alkalmazáshoz, ha a GPU telepítve van
### Fixed
- Javítva azt a problémát, ahol az alkalmazás memóriakorlátja pontatlan volt
- Optimalizálta az alkalmazás kijelző... | Markdown |
.isSet = false
}
func NewNullableUpgradeObjectStorageRequest(val *UpgradeObjectStorageRequest) *NullableUpgradeObjectStorageRequest {
return &NullableUpgradeObjectStorageRequest{value: val, isSet: true}
}
func (v NullableUpgradeObjectStorageRequest) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
fu... | Go |
}
/// <summary>
/// Set and raise true if current value isn't true.
/// </summary>
public void TurnOn()
{
if (Value != true)
{
Value = true;
}
}
/// <summary>
/// Set and raise false if current value isn't false.
/// </summary>
public void... | C# |
.330 -0.173 0.863
CPI -262.371 2792.186 -0.094 0.925
Unemployment -501.630 9793.732 -0.051 0.959
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
R-squared: 0.779, Adjusted R-squared: 0.771
F-statistic: 97.025 df(10,276)... | HTML |
,
)
_list.value = quoteUnquoteModel.allQuotations
}
setSelectedItemIndex()
populateTextFields()
}
}
/*
* Copyright (c) 2016. See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance wi... | Kotlin |
---------|----------|---------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------|
| 1.0.0 | 1.14 | [dinky-release-1.14-1.0.0.tar.gz](https://github.com/Dat... | Markdown |
/ usize so array access works
min_y: usize,
max_x: usize,
max_y: usize,
}
fn main() {
let contents = fs::read_to_string("data/day3.txt").expect("Error reading file");
let mut fabric = [[0; 1000]; 1000];
for line in contents.lines() {
let claim = parse_line(line);
for x in claim.... | Rust |
local m = {
debug = false,
_NAME = 'GUI Icon',
_VERSION = '1.0',
_DESCRIPTION = [[
Icon Loader
Loads a texture containing a series of icons, splits and displays them.
]],
_URL = 'https://github.com/SystemLogoff',
_LICENSE = [[
MIT LIC... | Lua |
? kind;
/// Name of this dynamic targeting key.
///
/// This is a required field. Must be less than 256 characters long and cannot
/// contain commas. All characters are converted to lowercase.
core.String? name;
/// ID of the object of this dynamic targeting key.
///
/// This is a required field.
c... | Dart |
="class in org.apache.iceberg.types">Types.NestedField</a> LENGTH</pre>
</li>
</ul>
<a name="SPEC_ID">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SPEC_ID</h4>
<pre>static final <a href="../../../org/apache/iceberg/types/Types.NestedField.html" title="class in org.apache.iceberg.types">Types.... | HTML |
se.ScheduleResponse
import dsm.pick2024.global.config.cache.CacheName
import org.springframework.cache.annotation.Cacheable
import org.springframework.stereotype.Service
import org.springframework.transaction.annotation.Transactional
import java.time.LocalDate
import java.time.format.TextStyle
import java.util.Locale
... | Kotlin |
= 0)
depth = 16;
if (width == 0)
width = 16;
format = gst_audio_format_build_integer ((flags & FLAG_IS_SIGNED) ?
TRUE : FALSE, (flags & FLAG_IS_BIG_ENDIAN) ?
G_BIG_ENDIAN : G_LITTLE_ENDIAN, width, depth);
caps = gst_caps_new_simple ("audio/x-raw",
... | C |
知等)本质上是对心理表示的计算或操作过程。关键概念包括:
* **心理表示 (Mental Representations)**: 具有特定内容和形式的内部状态,它们指代或象征着世界中的事物、属性、关系或抽象概念。
* **计算 (Computation)**: 对这些表示进行操作的规则化过程,类似于计算机程序对数据结构的操作。
* **意向性 (Intentionality)**: 心理表示具有“关于性”,即它们指向或关于世界中的某些事物。
### 2.2 主要理论与模型
#### 2.2.1 经典符号主义表示论(如:思想语言假说)
由杰瑞·福多(Jerry Fodor)等人倡导的“思想语言假说”(Language of ... | Markdown |
x = 28,
y = 225
}, {
dir = "W",
fluid_name = "净化气",
prototype_name = "地下管1-JI型",
x = 26,
y = 225
}, {
dir = "S",
fluid_name = "净化气",
prototype_name = "管道1-T型",
x = 27,
y = 225
}, {
dir = "W",
fluid_name = "净化气",
prototype_name = "管道1-L型",
x = 51,
y = 234
}, {
dir = "W",
fluid_name = ... | Lua |
n__icon",{"json-schema-2020-12-accordion__icon--expanded":s,"json-schema-2020-12-accordion__icon--collapsed":!s})},He.createElement(v,null)))};Accordion.defaultProps={expanded:!1};const ON=Accordion,ExpandDeepButton_ExpandDeepButton=i=>{let{expanded:s,onClick:u}=i;const m=(0,He.useCallback)((i=>{u(i,!s)}),[s,u]);return... | JavaScript |
- сервисы соответствуют/будут соответствовать требованиям Пользователя; <br>
- сервисы будут предоставляться непрерывно, быстро, надежно и без ошибок;
- результаты, которые могут быть получены с использованием сервисов, будут точными и надежными и могут использоваться для каких-либо целей или в каком-либо качеств... | HTML |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.