content stringlengths 2 6.21k | label stringclasses 16
values |
|---|---|
"ALFunctionTypes",
refRegistries = emptyList(),
)
val alcCodegenOptions = codegenOptions.copy(constantClassName = "ALCConstants")
val (alcConstants, alConstants) = registry
.constants
.values
.partition { it.name.original.startsWith("ALC_") }
val alcConstantsDoc = gen... | Kotlin |
, V>>() {
override val size: Int
get() = jsMap.size
override fun isEmpty(): Boolean =
jsMap.size == 0
override fun clear(): Unit =
jsMap.clear()
override fun add(element: ME<K, V>): Boolean =
throw UnsupportedOperationException("Adding is not supported on entries")
override fun remove(elem... | Kotlin |
marks = 0
whileLoop = True
retry = None
def thanks():
print("Thanks")
while whileLoop == True:
H_O = input("Are you (H)igher or (L)ower? ").lower()
marks = int(input("What is your marks/percentage: "))
if H_O == "h":
if marks >= 90:
if marks <= 100:
print("H1,... | Python |
MainThreadFromBackgroundThreadFinished.emit(
thread != bgThread
&& thread != bg2Thread
&& bgThread != fgThread
&& thread == fgThread // check that the code is run on the main thread
)
}
}
... | Kotlin |
rot;
Matrix.CreateFromQuaternion(ref inputQ, out rot);
//Y軸回りの回転を取得
if ((double)rot.M13 > 1 - 1.0e-4 || (double)rot.M13 < -1 + 1.0e-4)
{//ジンバルロック判定
XRot = 0;
YRot = (rot.M13 < 0 ? MathHelper.PiOver2 : -MathHelper.PiOver2);
Z... | C# |
gl.getAttachedShaders(program)
local program_id = 0
if "number" == type(program) then
program_id = program
elseif "table" == type(program) then
program_id = program.program_id
end
return gl._getAttachedShaders(program_id)
end
function gl.glNodeCreate()
return cc.GLNode:create(... | Lua |
assertTrue(comp2.value)
}
@Test
fun `Int subtype is serializable`() {
val comp1 = IntSubType()
comp1.value = 33
val bundle = Bundle("sometype")
comp1.write(bundle)
val comp2 = IntSubType()
comp2.read(bundle)
assertThat(comp2.value, `is`(33))
}
... | Kotlin |
l.USDCTokenPool)
}
state.USDCTokenPools[deployment.Version1_5_1] = utp
state.ABIByAddress[address] = usdc_token_pool.USDCTokenPoolABI
case cldf.NewTypeAndVersion(ccipshared.USDCTokenPool, deployment.Version1_6_2).String():
utp, err := usdc_token_pool_v1_6_2.NewUSDCTokenPool(common.HexToAddress(address), c... | Go |
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the F... | Python |
;
}
.tree-outline:not(.hide-selection-when-blurred) li.parent:hover:not(.selected)::before {
background-color: HighlightText;
}
.tree-outline:not(.hide-selection-when-blurred) li:hover:not(.selected) devtools-icon,
.tree-outline li:not(.selected):hover .tree-element-title {
forced-color-adjust: none... | CSS |
let expected;\n let msg;\n try {\n expected = generate(source, alg, crv);\n } catch (err) {\n msg = format(\"%s could not be validated (%s)\", names.claim, err.message);\n }\n msg = msg || format(\"%s mismatch, expected %s, got: %s\", names.claim, expected, actual);\n assert.equal(expect... | JavaScript |
eveal.rtl .slides,
.reveal.rtl .slides h1,
.reveal.rtl .slides h2,
.reveal.rtl .slides h3,
.reveal.rtl .slides h4,
.reveal.rtl .slides h5,
.reveal.rtl .slides h6 {
direction: rtl;
font-family: sans-serif;
}
.reveal.rtl pre,
.reveal.rtl code {
direction: ltr;
}
.reveal.rtl ol,
.reveal.rtl ul {
text-ali... | CSS |
#[serde(rename = "base64_standard")]
Base64,
#[serde(rename = "base64_urlsafe")]
Base64UrlSafe,
}
impl Default for Decode {
fn default() -> Self {
Self::PlainText
}
}
impl Decode {
pub fn decode<'a>(&self, input: Cow<'a, str>) -> Result<Cow<'a, str>, DecodeError> {
let res = ma... | Rust |
titleSettings': playerSubtitleSettings!.toJson(),
'mangaHomeDisplayType': mangaHomeDisplayType.index,
'appFontFamily': appFontFamily,
'mangaGridSize': mangaGridSize,
'animeGridSize': animeGridSize,
'disableSectionType': disableSectionType.index,
'useLibass': useLibass,
'hwdecMode': hwdecMode... | Dart |
trings/Strings.h"
using namespace cocos2d;
const std::string ChestBase::PropertyRewardPool = "reward-pool";
const std::string ChestBase::SaveKeyIsOpen = "SAVE_KEY_IS_OPEN";
ChestBase::ChestBase(ValueMap& properties, CSize interactSize) : super(properties, InteractObject::InteractType::Input, interactSize, Vec2::ZERO... | C++ |
x)
#define NPER(s, e) next_permutation(s, e)
#define PPER(s, e) prev_permutation(s, e)
#define MP(x, y) make_pair(x, y)
#define REV(s, e) reverse(s, e)
#define SET(p) memset(p, -1, sizeof(p))
#define CLR(p) memset(p, 0, sizeof(p))
#define MEM(p, v) memset(p, v, sizeof(p))
#define CPY(d, s) memcpy(d, s, sizeof(s))
#def... | C++ |
eat.successRepeatTimes >= 4) {
successRepeatsIndex = 1 / 10;
}
wordRepeat.repeatImportanceIndex = learnImportanceIndex * stepsAfterFailIndex * successRepeatsIndex;
}
private changeLastTestedWords(testedWordId) {
this.lastTestedWords.beforeLastWordId = this.lastTestedWords.lastWordId;
this.la... | Typescript |
update", this.createErrorNBT(error));
}
final INetwork.SendGuiNBT machineSync = Machine.getInterface(INetwork.SendGuiNBT.class, this.window.getInventory());
if (machineSync != null) {
machineSync.sendGuiNBTToClient(this.syncedNBT);
}
sendChangesToPlayers();
}
private void sendTankChanges() {
ITankMach... | Java |
ssl_ca_from_pem(vec![]);
/// ```
pub fn ssl_ca_from_pem(mut self, pem_certificate: Vec<u8>) -> Self {
self.ssl_ca = Some(CertificateInput::Inline(pem_certificate));
self
}
}
<reponame>juanmaroni/advent-of-code-2020
mod manage_input;
mod day01;
mod day02;
mod day03;
mod day04;
mod day05;
mod ... | Rust |
历史问题的决议”,现在那个东西已经不能用了。
</p>
<p>
(二)精兵简政问题
</p>
<p>
这个问题很迫切。
</p>
<p>
这几个月中,市革委会人员大量增加。目前,有二十个工作部门三千二百二十九人。办公室下面就有七百六十三人。这还不包括各革命群众组织的脱产人员,无论如何。这个机构太庞大了。机构越大,各种坏人就会钻进来,领导干部就会脱离群众,被资产阶级糖衣炮弹打中,就必然会滋长山头主义,其中有一些部门(不是全部)人员增加正是由于山头主义在作怪,同春桥同志商量,至少要砍掉一半,三分之二以至更多,这个思想工作还是很艰巨的,主席关于精兵简政的指示我们已向领导干部传达了。
</p>
... | HTML |
Days KC</a></p><a href="https://www.devopsdays.org/blog/index.xml">Feed</a></div><div class="col-md-6 col-lg-3 footer-nav-col"><h3 class="footer-nav">CFP OPEN</h3><a href="https://www.devopsdays.org/events/2017-detroit" class="footer-content">Detroit</a><br><a href="https://www.devopsdays.org/events/2017-auckland" clas... | HTML |
ne:onDrawUI()
if (self.objects) then
if (self.ui:button("Hide/Show all")) then
self.allShown = not self.allShown
for i,obj in ipairs(self.objects) do
obj.show = self.allShown
end
end
for i,obj in ipairs(self.objects) do
obj:drawProperties(self.ui)
end
end
end
function BaseScene:onDraw(... | Lua |
/li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="a00249.html">tbb</a></li><li class="navelem"><b>interface5<... | HTML |
cfmv32scge mvfx9, dspsc
cfmv32scal mvfx3, dspsc
cfcpysle mvf7, mvf2
cfcpysne mvf12, mvf6
cfcpyslt mvf0, mvf7
cfcpyspl mvf14, mvf3
cfcpysgt mvf10, mvf1
cfcpydhi mvd15, mvd13
cfcpydvs mvd11, mvd4
cfcpydcs mvd9, mvd0
cfcpydpl mvd15, mvd10
cfcpydls mvd4, mvd14
conv:
cfcvtsdcc mvd8, mvf13
cfcvtsdvc mvd2, mvf1
... | Assembly |
esi,nb333_n(%esp)
jmp _nb_kernel333_ia32_sse2.nb333_outer
_nb_kernel333_ia32_sse2.nb333_outerend:
## check if more outer neighborlists remain
movl nb333_nri(%esp),%ecx
## esi already loaded with n above
subl %esi,%ecx
jz _nb_kernel333_ia32_sse2.nb333_end
## non... | Assembly |
3 0 01-3 3H13a3 3 0 01-3-3V29Zm12 1a1 1 0 00-1-1h-5.25a1 1 0 00-.98.804l-.75 3.75a1 1 0 001.535 1.028c.21-.14 1.143-.582 2.445-.582a2 2 0 110 4h-.832c-.577 0-1.054-.36-1.227-.84a1 1 0 10-1.882.68A3.297 3.297 0 0017.17 40H18a4 4 0 000-8c-.61 0-1.173.072-1.666.182L16.57 31H21a1 1 0 001-1Zm10.753 1.774a1 1 0 00-.08-1.412... | Dart |
);
this.objective.setDisplayName(CraftChatMessage.fromString(displayName)[0]); // SPIGOT-4112: not nullable
}
@Override
public String getCriteria() {
this.checkState();
return this.criteria.bukkitName;
}
@Override
public Criteria getTrackedCriteria() {
this.ch... | Java |
for the extrinsics in this module.
type WeightInfo: WeightInfo;
}
#[derive(Clone, Eq, PartialEq, RuntimeDebug, Encode, Decode, TypeInfo)]
pub struct ContractInfo {
pub code_hash: H256,
pub maintainer: EvmAddress,
pub deployed: bool,
}
#[derive(Clone, Eq, PartialEq, RuntimeDebug, Encode, Decode, TypeInfo... | Rust |
index].slot == VARYING_SLOT_LAYER ||
fs->inputs[index].slot == VARYING_SLOT_VIEWPORT) {
/* If the last geometry shader doesn't statically write these, they're
* implicitly zero and the FS is supposed to read zero.
*/
const gl_varying_slot slot = (gl_varying_slot) fs->inputs[index... | C++ |
3713 movsi-4
bl L$1181,%r0 ;# 3721 jump
ldw 24(%r5),%r19 ;# 3861 reload_outsi+2/5
L$0372
bb,>=,n %r15,18,L$0076 ;# 3730 movsi-4
bl,n L$0374,%r0 ;# 3738 jump
L$0376
bb,>=,n %r15,20,L$0076 ;# 3747 movsi-4
bl,n L$0378,%r0 ;# 3755 jump
L$0380
bb,>=,n %r15,16,L$0076 ;# 3764 movsi-4
bl,n L$0378,%r0 ;# 3772 jump
L$038... | Assembly |
using UnityEngine;
public class Spawner : MonoBehaviour
{
[SerializeField] GameObject _prefab = null;
[SerializeField] int _columns = 10;
[SerializeField] int _rows = 10;
[SerializeField] float _interval = 1;
void Start()
{
for (var i = 0; i < _columns; i++)
{
var ... | C# |
EB.Puff.buildUserRegistration('anon', EB.CONFIG.anonPrivateAdminKey, newUsername, rootKey, adminKey, defaultKey)
// send DHT update puff
return EB.Net.updateUserRecord(puff).then(function(userRecord) {
if(callback)
return callback(userRecord, privateDefaultKey, privateAdminKey, private... | JavaScript |
# For zEC12 and above.
# RUN: llvm-mc -triple s390x-linux-gnu -mcpu=zEC12 -show-encoding %s | FileCheck %s
# RUN: llvm-mc -triple s390x-linux-gnu -mcpu=arch10 -show-encoding %s | FileCheck %s
#CHECK: bpp 0, .[[LAB:L.*]]-65536, 0 # encoding: [0xc7,0x00,0x00,0x00,A,A]
#CHECK: fixup A - offset: 4, value: (.[[LAB]]-6553... | Assembly |
like Python and Haskell.
local first_line_indent = 0
local has_indent = false
local lines = {}
local rest_code = code
while true do
-- Get the current line
if rest_code == nil then
break
end
is, ie = string.find(rest_code, "\n")
if is == nil then
s = rest_code
else
s,... | Lua |
bar() {}
)
}
foo! { cfg(target_os = "windows") }
""", """
#[cfg(target_os = "windows")]
fn bar() {}
""")
fun `test meta with a macro call`() = doTest("""
macro_rules! foo {
($ i:meta) => (
#[$ i]
fn bar() {}
... | Kotlin |
off+ 64(%rdi),%ymm6
vmovdqa 256*\off+ 96(%rdi),%ymm7
vmovdqa 256*\off+128(%rdi),%ymm8
vmovdqa 256*\off+160(%rdi),%ymm9
vmovdqa 256*\off+192(%rdi),%ymm10
vmovdqa 256*\off+224(%rdi),%ymm11
vpbroadcastd (_ZETAS_QINV+4+\off)*4(%rsi),%ymm1
vpbroadcastd (_ZETAS+4+\off)*4(%rsi),%ymm2
butterfly 4,8
butterfly 5,9
butte... | Assembly |
724 2.353.02.014c.7.492 1.668-.002 1.668-.869v-4.068c.155.074.309.151.46.233ZM8 18.657V29.5H4.5v-3A10.44 10.44 0 018 18.657Zm18.49 5.53h-.96v-.803a.504.504 0 01.46-.306c.274 0 .5.226.5.5v.61Zm-3.66 5.293c-.155 0-.264-.118-.27-.236a.274.274 0 01.117-.228.5.5 0 00-.014-.841.222.222 0 01-.103-.195c0-.078.044-.156.113-.2a.... | Dart |
dev board
*/
typedef enum CC3220SF_LAUNCHXL_SDName {
CC3220SF_LAUNCHXL_SD0 = 0,
CC3220SF_LAUNCHXL_SDCOUNT
} CC3220SF_LAUNCHXL_SDName;
/*!
* @def CC3220SF_LAUNCHXL_SDSPIName
* @brief Enum of SDSPI names on the CC3220SF_LAUNCHXL dev board
*/
typedef enum CC3220SF_LAUNCHXL_SDSPIName {
CC3220SF_LAUNC... | C |
/* Generated by RuntimeBrowser
Image: /System/Library/PrivateFrameworks/UserNotificationsServer.framework/UserNotificationsServer
*/
@interface UNSApplicationWorkStore : NSObject {
NSObject<OS_dispatch_queue> * _calloutQueue;
double _expiryTime;
unsigned long long _maximumWorkBlocks;
NSMutableArr... | C |
t';
import 'package:ZY_Player_flutter/widgets/search_bar.dart';
import 'package:ZY_Player_flutter/widgets/state_layout.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
class ManhuaSearchPage extends StatefulWidget {
const ManhuaSearchPage({Key? key}) : super(key: key);
@over... | Dart |
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file 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 app... | C |
am name="sourceMatcher">TBD</param>
/// <param name="isMatch">TBD</param>
public DeadLettersFilter(IStringMatcher? messageMatcher, IStringMatcher? sourceMatcher, Predicate<DeadLetter>? isMatch = null)
: base(messageMatcher, sourceMatcher)
{
_isMatch = isMatch;
}
/// <summary>
//... | C# |
vim.api.nvim_clear_autocmds({ group = "kickstart-lsp-highlight", buffer = event2.buf })
-- end,
-- })
-- end
--
-- -- The following code creates a keymap to toggle inlay hints in your
-- -- code, if the language server you are using supports them
-- --... | Lua |
local config = {
{chanceFrom = 0, chanceTo = 1046, itemId = 6569, count = 3}, -- candy
{chanceFrom = 1047, chanceTo = 1997, itemId = 6280}, -- party cake
{chanceFrom = 1998, chanceTo = 2962, itemId = 6576}, -- fireworks rocket
{chanceFrom = 2963, chanceTo = 3872, itemId = 2114}, -- piggy bank
{chanceFrom = 3873, c... | Lua |
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsIXPathEvaluatorInternal... | C |
-icon">🎮</div>
<div class="requirement-content">
<span class="requirement-label">GPU</span>
<span class="requirement-value">Recommended</span>
</div>
</div>
... | HTML |
123.cn
duklin.againstfear.com
duli
dunhill.9966.org
duoteba.com
duowan-wowbox.com
dushiqingyuan.3322.org
dvd.av-39.com
dw.mtsou.com
dw2.azm8.com
dweer.klkl111.8866.org
dwnsft027.co.cc
dx.1155k.cn
dx.1234ye.com
dx.1ggmm.com
dx.2012avi.com
dx.8es.cn
dx.97tu.info
dx.jqqdx.cn
dx5.97sky.cn
dxnight.com
dxnight.comhttp://www.... | Lua |
.setCircleCrop(true)
.setPlaceholderRes(R.drawable.a2)
.setErrorRes(R.drawable.a1)
.setImageView(mChatDetailHolderImage)
.setUrl(chatImageModel.imgUrl))
}
}
package example.shuyu.recycler.kotlin.chat.det... | Kotlin |
HostInfo{
Name: "example2.com",
},
want: true,
},
{
name: "wildcard IDN match 1",
fields: fields{
Pattern: "战狼*.com",
Mode: domainMatchWildcard,
},
host: HostInfo{
Name: "xn--2-x14by21c.com",
},
want: true,
},
{
name: "wildcard IDN match 2",
fields: fields{
... | Go |
, U+5c05, U+5c09, U+5c0c, U+5c10, U+5c12-5c13, U+5c15, U+5c18-5c19, U+5c1b, U+5c1d-5c1f, U+5c22, U+5c25, U+5c27-5c28, U+5c2a-5c2b, U+5c34, U+5c38, U+5c3d, U+5c42, U+5c44, U+5c47, U+5c49-5c4a, U+5c50, U+5c53, U+5c58-5c59, U+5c5b, U+5c5d, U+5c61, U+5c63, U+5c68, U+5c6d-5c6e, U+5c74, U+5c79-5c84, U+5c86, U+5c88, U+5c8a-5c... | CSS |
Blank()) {
Toasty.error(this@InfoSuppleActivity, "请填写手机号码").show()
} else {
getCaptcha(phoneNumber = phone_number.text.toString()) {
when (it) {
is RefreshState.Success ->
Toasty.s... | Kotlin |
createdAt: new Date('2003/11/10')
}
}, {
todo: {
name: 'Go home',
owner: -2,
project: -4,
createdAt: new Date('2003/11/10')
}
}
]
}
const Todos = () => {
return (
<div>
<NewTodo />
<TodoFilters />
<TodoList />
</div>
)
}... | JavaScript |
1520" class="Comment">-- unlike in cartesian cubes, we don't get coei→i = id definitionally</a>
<a id="coei→j"></a><a id="1590" href="Cubical.Foundations.CartesianKanOps.html#1590" class="Function">coei→j</a> <a id="1597" class="Symbol">:</a> <a id="1599" class="Symbol">∀</a> <a id="1601" class="Symbol">{</a><a id=... | HTML |
have this ability, now is the opportunity to prove your worth!'")
dz = e.other:CreateExpedition(fear);
if dz.valid then
dz:AddReplayLockout(eq.seconds("2h"));
end
elseif e.message:findi("hatred") then
eq.get_entity_list():MessageClose(e.self, true, 100, MT.SayEcho, "Projection of Mind says, 'Anger is a to... | Lua |
is highlighted
* @param viewport
* viewport
*/
public void draw(GL2 gl, ArrowEditor ae, boolean isActiveEditor, boolean isHighlightedEditor, Viewport viewport) {
Point3d cameraPoint = viewport.getPosition();
Point3d activeSpot = ae.getActiveSpot(cameraPoint);
do... | Java |
andomByteArray(length);
Assert.Equal<byte>(data, Base32.Decode(Base32.Encode(data)));
length = GetRandomByteArray(1)[0] * 5;
data = GetRandomByteArray(length);
Assert.Equal<byte>(data, Base32.Decode(Base32.Encode(data)));
}
private static readonly RandomNumberGenerator rng = Ra... | C# |
um+Falcon+10179&ssPageName=SRCH%3ACMPL%3AVS&_fis=2&_id=170591427567&_isid=0&_sibeleafcat=18998">View similar active items</a><span class="vbar g-nav"> | </span><a href="http://cgi5.ebay.com/ws/eBayISAPI.dll?SellLikeItem&item=170591427567&ssPageName=STRK:MEWN:LILTX">Sell one like th... | HTML |
break;
case KeyEvent.VK_D:
right = false;
break;
case KeyEvent.VK_W:
up = false;
break;
case KeyEvent.VK_J:// ӵ
fire = false;
break;
}
}
}
package org.xiaochao.tool;
import cn.hutool.poi.excel.ExcelUtil;
import cn.hutool.poi.excel.ExcelWriter;
import cn.hutool.setting.Setting;
import cn.hut... | Java |
_->groupbox_startup->hide();
#endif
#if !defined(HAVE_DBUS) || defined(Q_OS_MACOS)
ui_->checkbox_taskbar_progress->hide();
#endif
#ifdef HAVE_TRANSLATIONS
// Populate the language combo box. We do this by looking at all the compiled in translations.
QDir dir1(u":/i18n"_s);
QDir dir2(QStringLiteral(TRANSLATIO... | C++ |
(r)))
}
}
}
/// Element-wise logical xor.
pub fn xor(&self, other: &Array) -> Array {
let this: ArrayExt<bool> = self.type_cast();
let that: ArrayExt<bool> = other.type_cast();
Array::Bool(this.xor(&that))
}
/// Element-wise logical xor, relative to a co... | Rust |
return false
end
if not exists then
local success, errmsg = server.fs.mkdir(admindir, 511)
if not success then
send_error(500, "server.fs.mkdir() failed: " .. errmsg)
return false
end
end
--
-- copy the file to admin directory
--
success, u... | Lua |
="A2.SS2.p3.8.m3.1.1.cmml"><mi id="A2.SS2.p3.8.m3.1.1.2" xref="A2.SS2.p3.8.m3.1.1.2.cmml">T</mi><mo id="A2.SS2.p3.8.m3.1.1.1" xref="A2.SS2.p3.8.m3.1.1.1.cmml">≤</mo><mi id="A2.SS2.p3.8.m3.1.1.3" xref="A2.SS2.p3.8.m3.1.1.3.cmml">c</mi></mrow><annotation-xml encoding="MathML-Content" id="A2.SS2.p3.8.m3.1b"><apply id="A2.... | HTML |
{
return hasMore_;
}
std::vector<ListRtcMPUEventSubRecordResult::SubInfo> ListRtcMPUEventSubRecordResult::getLogs()const
{
return logs_;
}
long ListRtcMPUEventSubRecordResult::getCount()const
{
return count_;
}
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, ... | C++ |
().apply {
model = SortedModelTest(it, "标题$it", "副标题$it")
})
}
var index = 100
btn_left.setBtnText("新增").setOnClickListener {
// 要想根据uniqueId更新数据,需要调用updateItem方法
mSortedListAdapter.add(SortedItemViewModelTest().apply {
model = ... | Kotlin |
Ulaştırma İşletme Mühendisliği Açık Deniz Stajı Eğitim Defteri Bölüm 2](https://pirireis.edu.tr/wp-content/uploads/2025/05/Deniz-Ulastirma-Isletme-Muhendisligi-Acik-Deniz-Staji-Egitim-Defteri-Bolum-2-1.docx)
- [Gemi Makineleri İşletme Mühendisliği Açık Deniz Staj Defterleri](https://pirireis.edu.tr/wp-content/uploads/... | Markdown |
eryBuilder()
.setDataSource(QueryRunnerTestHelper.DATA_SOURCE)
.setQuerySegmentSpec(QueryRunnerTestHelper.FIRST_TO_THIRD)
.setDimensions(new DefaultDimensionSpec("null_column", "alias"))
.setAggregatorSpecs(
QueryRunnerTestHelper.ROWS_COUNT,
new LongSumAggregatorF... | Java |
mplete */
icbi r0, r4 /* Make sure old instr is dumped */
isync /* Wait for icbi to complete */
blr
.Lfe1: .size _create_MFDCR,.Lfe1-_create_MFDCR
/* end _create_MFDCR() */
/*
* static void _create_MTDCR(unsigned short dcrn, unsigned long value)
*
* Builds a 'mtdcr' instruction for set_dcr
* function... | Assembly |
_ROAD1,
TERRAIN_BUMPY_ROAD2,
TERRAIN_BUMPY_ROAD3,
TERRAIN_MARBLES,
TERRAIN_GRASSY_BERMS,
TERRAIN_GRASS,
TERRAIN_GRAVEL,
TERRAIN_BUMPY_GRAVEL,
TERRAIN_RUMBLE_STRIPS,
TERRAIN_DRAINS,
TERRAIN_TYREWALLS,
TERRAIN_CEMENTWALLS,
TERRAIN_GUARDRAILS,
TERRAIN_SAND,
TERRAIN_BUMPY_SAND,
TERRAIN_DIRT,
... | Rust |
L=[12,23,45,68,72,95]
deger=int(input("sayı giriniz: "))
if deger in L:
indis=L.index(deger)
print("aranan ",indis,"indis değerinde bulundu")
else:
print("aranan değer bulunamadı!")
| Python |
=k[Ca>>2]|0;if((Zb|0)<(Qb|0)){Pc=Zb;Qc=Qb;Rc=Ec;break}else{_b=Qb;$b=Zb;Bc=Ec}}$b=k[lc>>2]|0;if(Ka>>>0>(4294967295/($b>>>0)|0)>>>0){Lc=nc;Mc=$b;ca=470;break d}Ia=Qc;Ka=ia($b,Ka)|0;xc=Pc;yc=Rc}xc=Yb+1|0;if((xc|0)<(Pb|0)){ac=Nc;Yb=xc;kc=Oc}else break}}}i[wb>>0]=2}else{Yb=qc<<2;k[t>>2]=(k[t>>2]|0)+Yb;ac=k[ma>>2]|0;if(!ac){... | JavaScript |
_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display... | CSS |
_r32_xmmm32
0x1400_3FF0,// VEX_Vcvttss2si_r64_xmmm32
0x1E00_3FFA,// EVEX_Vcvttss2si_r32_xmmm32_sae
0x1400_3FF0,// EVEX_Vcvttss2si_r64_xmmm32_sae
0x1E00_3FFF,// Cvttsd2si_r32_xmmm64
0x1400_3FF0,// Cvttsd2si_r64_xmmm64
0x1E00_3FFA,// VEX_Vcvttsd2si_r32_xmmm64
0x1400_3FF0,// VEX_Vcvttsd2si_r64_xmmm64
0x1E00_3FFA,/... | Rust |
oise
jsr check_change_ship
;====================================
; handle keypress/joystick
;====================================
jsr handle_keypress
;====================================
; inc frame count
;====================================
inc FRAMEL
bne room_frame_no_oflo
inc FRAMEH
room_frame_no... | Assembly |
: "6ex8usE1U41m4wM6NwT9cg"},
{Name: "rock", AppleMusicID: "p.qQXLxpDuA75zg8e", SpotifyID: "1Yh42cCAPWPFy55hw8VaWJ"},
{Name: "country", AppleMusicID: "p.O1kz7zbsVmvz704", SpotifyID: "3jR0MH0NwzEdYuUY8nohmf"},
}
)
type playlistTracksResponse struct {
Next string `json:"next"`
Data []songResponse `json:"da... | Go |
dust(MT.Sb, 1*U8), OM.dust(MT.Fe2O3, 5*U16));
RM.Roasting .addRecipe1(T, 16, 512, tChances, OM.dust(MT.OREMATS.Stannite ), FL.make(tAir, 5000), MT.SO2.gas(12*U8 , F), OM.dust(MT.Cu , 2*U8 ), OM.dust(MT.Sn, 1*U8), OM.dust(MT.Fe2O3, 5*U16));
RM.Roasting .addRecipe1(T, 16, 512, tChances, OM.dust(MT.OREM... | Java |
etry = new THREE.RingGeometry( 1, 5, 32 );
var material = new THREE.MeshBasicMaterial( { color: 0xffff00, side: THREE.DoubleSide } );
var mesh = new THREE.Mesh( geometry, material );
scene.add( mesh );
</code>
<h2>Constructor</h2>
<h3>[name]([page:Float innerRadius], [page:Float outerRadius], [page:Intege... | HTML |
/// Creates a write packet.
///
/// If no [strobe] is provided, it will default to all high.
Axi4WriteRequestPacket({
required super.addr,
required super.prot,
required this.data,
required this.strobe,
super.id,
super.len,
super.size,
super.burst,
super.lock,
super.cache,... | Dart |
etJSONString(aJSONString); } \
NS_IMETHOD WriteToProfilingFile(void) { return _to WriteToProfilingFile(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIVISUALEVENTTRACERLOG(_to) \
NS_IMETHOD GetJSONString(nsACStr... | C |
// Thread.sleep(10);
// } catch (InterruptedException e1) {
// }
logger.error("The remote proxy operation is failed. " + request.getKey(), e);
}
}
}
filterChain.doFilter(request, response);
... | Java |
manifest itself in the interest rates the Federal Reserve needs to implement to keep the economy growing at its potential. For example, the increasing integration of global capital markets has facilitated the investment of the current high volume of world savings in dollar assets. The result has been lower interest ... | HTML |
using System.Threading.Tasks;
using Supabase.Realtime.Interfaces;
using Supabase.Postgrest.Interfaces;
using Supabase.Postgrest.Models;
using static Supabase.Realtime.PostgresChanges.PostgresChangesOptions;
namespace Supabase.Interfaces
{
/// <summary>
/// Contract representing a supabase wrapped postgrest <s... | C# |
l: "\e951";
--icon-content-npmjs2-fill: "\e950";
--icon-content-github2-fill: "\e94f";
--icon-content-node2-fill: "\e94e";
--icon-content-yarn2-fill: "\e94d";
--icon-content-GO2-fill: "\e94c";
--icon-conten... | CSS |
export class ImageConverter {
/**
* Generates an ImageMagick-Command for resizing images for previews
* @param file The full path & name of the source-file
* @param sizeInPercent The size of the newly created File (usually smaller)
* @param target The full path & name of the target-file
*/
generateRe... | Typescript |
.9 0 4.5 1.8 4.5 4.8v7.4h-2.8v-7c0-1.6-.9-2.7-2.5-2.7s-2.8 1.1-2.8 2.8v6.9H513v-12z"/></g><g><path class="dst1" d="M3.9 50.3h9v30.2c0 9 4.6 12.9 11.4 12.9 6.8 0 11.4-3.9 11.4-12.9V50.3h9v31.1c0 13.5-9 20.1-20.4 20.1-11.4 0-20.5-6.7-20.5-20.1V50.3zM62.8 50.3h19.6c9 0 16.4 6.9 16.4 16 0 6.7-3.8 12.1-9.2 14.3l12.2 20.1H91... | HTML |
ame(slot: ArtifactSlotName, n1: StatName, n2: StatName, n3: StatName) -> StatName {
match slot {
ArtifactSlotName::Flower => StatName::HPFixed,
ArtifactSlotName::Feather => StatName::ATKFixed,
ArtifactSlotName::Sand => n1,
ArtifactSlotName::Goblet => n2,
ArtifactSlotName::Hea... | Rust |
Variable(ref s2)) => s1 == s2,
(&List(ref l1), &List(ref l2)) => l1
.iter()
.zip(l2.iter())
.all(|(v1, v2)| v1.item.unlocated_eq(&v2.item)),
(&Object(ref o1), &Object(ref o2)) => {
o1.len() == o2.len()
&& o1.iter... | Rust |
https://rsshub.app/gov/ah/kjt/kjzy/kjtj/cyfhfz) |
#### [科技数据](https://kjt.ah.gov.cn/kjzy/kjsj/index.html)
| [创新企业](https://kjt.ah.gov.cn/kjzy/kjsj/cxqy/index.html) | [创新项目](https://kjt.ah.gov.cn/kjzy/kjsj/cxxm/index.html) | [创新成果](https://kjt.ah.gov.cn/kjzy/kjsj/cxcg/index.html) | [转化基金入库项目](https://kjt.ah.g... | Markdown |
r3, r3
/* 800ECD18 000E8978 38 80 00 01 */ li r4, 1
/* 800ECD1C 000E897C 38 A0 00 00 */ li r5, 0
/* 800ECD20 000E8980 48 16 70 91 */ bl func_80253DB0
/* 800ECD24 000E8984 A0 1D 00 CE */ lhz r0, 0xce(r29)
/* 800ECD28 000E8988 60 00 03 E0 */ ori r0, r0, 0x3e0
/* 800ECD2C 000E898C B0 1D 00 CE */ sth r0, 0xce(r29)
/*... | Assembly |
/*
* The MIT License (MIT)
*
* Copyright (c) 2019 hathach for Adafruit Industries
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation t... | C |
example:media-system@1.0.0;
// 音频接口
interface audio {
// 音频格式枚举
enum audio-format {
mp3,
wav,
ogg,
flac,
}
// 音频数据
record audio-data {
format: audio-format,
channels: u8,
sample-rate: u32,
data: list<u8>,
}
// 音频处理器资... | Markdown |
# | $mdDash | $mdDash |
|# | `$disableShowToolbarWhenHighlightOff` | on |
|# | `$disableShowToolbarWhenHighlightOn` | off |
|
|# ### $ON_URL_LAUNCH_MACRO
|# Url launch macro(when set, cmdclick web terminal don't output)
|
|# | switch | ... | Kotlin |
0, 360);
m_cPreview.ShowWindow(SW_HIDE);
return TRUE;
}
void CArchDlg::OnPaint()
{
CPaintDC dc(this); // device context for painting
// Do not call CDialog::OnPaint() for painting messages
CBrush black(RGB(0,0,0));
CBrush grey(RGB(128,128,128));
CRect rcPreview;
m_cPreview.GetWindowRect(&rcPreview);
Sc... | C++ |
Count;
}
if (NotitleFlag == `false`) {
// 視聴回数を取得
const NumberofViews: WebElement = await RPA.WebBrowser.driver.executeScript(
`return document.getElementsByClassName('style-scope ytcp-video-row cell-body tablecell-views sortable right-align')[0].innerText`
);
await RPA.Logger.i... | Typescript |
lsr x1, x19, #FIRST_SHIFT /* x1 := Offset of base paddr in boot_first_id */
lsl x2, x1, #FIRST_SHIFT /* x2 := Base address for 1GB mapping */
mov x3, #PT_MEM /* x2 := Section map */
orr x2, x2, x3
and x1, x1, #LPAE_ENTRY_MASK /* x1 := Slot offset */
... | Assembly |
^:svg:geometry|", ":svg:pattern^:svg:|", ":svg:polygon^:svg:geometry|", ":svg:polyline^:svg:geometry|",
":svg:radialGradient^:svg:gradient|", ":svg:rect^:svg:geometry|", ":svg:svg^:svg:graphics|#currentScale,#zoomAndPan",
":svg:script^:svg:|type", ":svg:set^:svg:animation|", ":svg:stop^:svg:|", ":svg:style^:svg... | Kotlin |
{
Action = "allow"
HTTP = {
Methods = ["GET", "PUT", "POST", "DELETE", "HEAD"]
PathPrefix = "/v2"
}
JWT = {
Providers = [
{ name = consul_config_entry.jwt_provider.name }
]
}
}
],
Precedence = 9
Type = "consul"
},
{
Namespac... | Go |
್_
- [ವೆಬ್3 ಲ್ಯಾಂಡ್ಸ್ಕೇಪ್](https://a16z.com/wp-content/uploads/2021/10/The-web3-Readlng-List.pdf) – _a16z_
- [ವೆಬ್3 ಚರ್ಚೆ](https://www.notboring.co/p/the-web3-debate?s=r) – _ಪ್ಯಾಕಿ ಮೆಕ್ಕಾರ್ಮಿಕ್_
<QuizWidget quizKey="web3" />
---
title: Стейкінг у пулі
description: Огляд початку роботи з об’єднаним стейкінгом ETH
lan... | Markdown |
OD, -1);
combatGear = new ItemRequirement("A weapon and armour (melee recommended)", -1, -1).isNotConsumed();
combatGear.setDisplayItemId(BankSlotIcons.getCombatGear());
emptyInvSpot = new ItemRequirement("Empty Inventory Spot", -1, 1);
goldFeather = new ItemRequirement("Magic gold feather", ItemID.MAGIC_GOLDEN... | Java |
, "spider"]
]
);
const DEFAULT_TAIL_NAMES = createMapFromPairs(
[
[TailType.NONE, "non-existant"],
[TailType.HORSE, "horse"],
[TailType.DOG, "dog"],
[TailType.DEMONIC, "demonic"],
[TailType.COW, "cow"],
[TailType.SPIDER_ADBOMEN, "spider abdomen"],
[TailType.BEE_ABDOMEN, "bee abdomen"],
... | Typescript |
// Initialize flags (flags) to zero on power up
// This was added to fix a bug where the language transfer
// would fail if exec_65tube was entered with certain
// values of flags (specifically, with bit 7 = 1).
// Code assu... | Assembly |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.