content stringlengths 2 6.21k | label stringclasses 16
values |
|---|---|
ldrh r8,[r4],#2 ;
subs r5,r5,#12 ;
ldrge pc,[r6,r8,asl #2] ;
b CycloneEnd
;
Op4c98:
str r5,[r7,#0x5c] ;
ldrh r11,[r4],#2 ;
;
;
and r2,r8,#0x000f
ldr r6,[r7,r2,lsl #2]
str r4,[r7,#0x40] ;
;
mov r4,#-4
tst r11,r11
beq NoRegs4c98
Movemloop4c98:
add r4,r4,#4 ;
movs r11,r11,lsr #1
bcc Movem... | Assembly |
Table"></tbody>
</table>
</div>
</div>
</div>
</section>
</main>
</body>
</html>
<script>
function loadJsonConfig(){
getFile("/json/system.json",function(res){
console.log(res);
var json = JSON.parse(res);
if ($.isEmptyObject(json)) {
... | HTML |
rio.put("WOULD_NEVER_VBN", 1); // higher prio than MD_BASEFORM
id2prio.put("MONEY_BACK_HYPHEN", 1); // higher prio than A_UNCOUNTABLE
id2prio.put("WORLDS_BEST", 1); // higher prio than THE_SUPERLATIVE
id2prio.put("STEP_COMPOUNDS", 1); // higher prio than STARS_AND_STEPS
id2prio.put("WON_T_TO", 1... | Java |
LocalDB().findAuthInfo();
var reqOptions = err.requestOptions.copyWith(headers: {'token': loginResp!.accessToken});
handler.resolve(await _retry(reqOptions));
}
if (err.response?.statusCode == 502) {
safePrint('에러코드 502');
var loginResponse = await LocalDB().findAuthInfo();
await ... | Dart |
ge for data nav
*/
setDataPage: (
{ commit }: ActionContext<State, State>,
{ dataSource, page }: { dataSource: DataSource, page: number }
): void =>
commit('SET_DATA_PAGE', { dataSource, page }),
/**
* Sets data source's sort
*/
setColumnSort: (
{ commit, state }: ActionContext<State, S... | Typescript |
drawedImg, predictFeature, cv::Size(sigma_mis(i,0),sigma_mis(i,1)), (double)sigma_mis(i,2), 0, 360, CV_RGB(32, 32, 255));
}
}
cv::Mat VSlamFilter::returnImageDrawed() {
return drawedImg.clone();
}
MatrixXi computeEllipsoidParameters(MatrixXf St, int sigma_size) {
int nFeatures = St.cols()/2;
MatrixXi s... | C++ |
-az))/6.;
Y1+=(dY=dt*RKint(Y0+.5*dY,E,Pot))/3.;
Y1+=(dY=dt*RKint(Y0+.5*dY,E,Pot))/3.;
Y1+=(dY=dt*RKint(Y0+dY,E,Pot))/6.;
R=Y1(0); z=Y1(1); pR=Y1(2); pz=Y1(3);
E=Pot->eff(R,z,aR,az)+0.5*(pR*pR+pz*pz);
}
void Record::step2_by(double& dt, const double f)
{
Record next = *this;
double fac=(f<=1... | C++ |
eanManga)
}
}
}
private fun fetchMainRowData2(inputJsonArray: JsonArray): List<ListBeanManga> {
return buildList {
inputJsonArray.forEach { jsonElement ->
val jsonObject1 = jsonElement.asJsonObject
val nameManga = jsonObject1["name"].asStr... | Kotlin |
tionGetNameUS)(AIActionParamTypeRef param, ActionParamKeyID key, ai::UnicodeString& value);
/** Sets the localized name of an event using a Unicode string.
For details, see \c #SetCurrentCommandLocalizedName(). */
ASErr ASAPI (*SetCurrentCommandLocalizedNameUS)(const ai::UnicodeString& localizedName);
/** Retrie... | C |
from collections import Counter
true_list = ['T','R','U','E']
love_list = ['L','O','V','E']
heart_list = [true_list,love_list]
def LoveCalculator_v2(first_name, last_name):
love_numbers = []
first_name = first_name.upper()
last_name = last_name.upper()
name = first_name + last_name
print(na... | Python |
Q/640?wx_fmt=png&from=appmsg "")
直接分析就可以看出,栈上的第二个变量就是我们的格式化字符串地址0xffffd3e0,同时其存储的也确实是%s格式化字符串内容。
前面我们提到过,我们可以控制该格式化字符串,当我们知道该格式化字符串在输出函数调用时是第几个参数,这里假设该格式化字符串相对函数调用为第k个参数。那我们就可以通过如下的方式来获取某个指定地址addr的内容。
```
addr%k$s
```
>
> tips:如果格式化字符串在栈上,就一定确定格式化字符串的相对偏移,因为在函数调用的时候栈指针至少低于格式化字符串地址8字节或者16字节
到这里... | Markdown |
{
MIN_CELL_HEIGHT *= (MAX_TRANSISTOR_HEIGHT_14nm/MAX_TRANSISTOR_HEIGHT);
ISOLATION_REGION *= (OUTER_HEIGHT_REGION_14nm/(MIN_POLY_EXT_DIFF*2 + MIN_GAP_BET_FIELD_POLY));}
else if (tech.featureSize == 10 * 1e-9){
MIN_CELL_HEIGHT *= (MAX_TRANSISTOR_HEIGHT_10nm /MAX_TRANSISTOR_HEIGHT);
ISOLATION_REGION *= (OUTER_... | C++ |
# model_utils.py
# Description: A brief description of what this file does.
# Author: Joshua Stiller
# Date: 15.11.24
import numpy as np
import torch
def split_array(array: np.ndarray | torch.Tensor, shape: tuple) -> np.ndarray | torch.Tensor:
"""
Splits an array into chunks of the specified shape, and stacks... | Python |
ublic static string GetZip(string path)
{
var m = _file.Match(path);
return m.Groups["file"].Value;
}
public static string GetParentPath(string path)
{
var inner = GetPathInsideZip(path);
//test/ho.txt
if(!inner.Contains("/"))... | C# |
Index;
while (0 !== currentIndex) {
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
temporaryValue = pokers[currentIndex];
pokers[currentIndex] = pokers[randomIndex];
pokers[randomIndex] = temporaryValue;
}
return pokers;
};
const template... | Typescript |
# -*- coding: utf-8 -*-
__author__ = "Marten4n6"
__license__ = "GPLv3"
from AppKit import NSPasteboard, NSStringPboardType
from time import time, sleep
from datetime import datetime
def run(options):
elapsed_time = 0
monitor_time = int(options["monitor_time"])
output_file = options["output_file"]
pr... | Python |
n xor(b: Int, res: Vec4i) = xor(res, this, b, b, b, b)
fun xor(b: Vec4i, res: Vec4i) = xor(res, this, b.x, b.y, b.z, b.w)
fun xor(bX: Int, bY: Int, bZ: Int, bW: Int, res: Vec4i = Vec4i()) = xor(res, this, bX, bY, bZ, bW)
fun xorAssign(bX: Int, bY: Int, bZ: Int, bW: Int) = xor(this, this, bX, bY, bZ, bW)
... | Kotlin |
-- Test all of the special levels
function saferequire(file)
if (not pcall(require, file)) then
nh.pline("Cannot load level file '" .. file .. "'.");
if (nhc.DLB == 1) then
nh.pline("Maybe due to compile-time option DLB.")
end
return false;
end
return true;
end;
local s... | Lua |
>
<dt><b>bounce</b></dt> <dd> Inspect the content of delivery
status notifications. </dd>
<dt><b>notify</b></dt> <dd> Inspect the content of postmaster
notifications by the <a href="smtp.8.html">smtp(8)</a> and <a href="smtpd.8.html">smtpd(8)</a> processes. </dd>
</dl>
<p> NOTE: It's generally not safe to enable co... | HTML |
/*==============================================================================
Program: 3D Slicer
Copyright (c) Brigham and Women's Hospital
See COPYRIGHT.txt
or http://www.slicer.org/copyright/copyright.txt for details.
Unless required by applicable law or agreed to in writing, software
distributed u... | C |
pub fn check(&self, old: &bool) -> Result<bool, Box<dyn Error>> {
let cache_file = self.cache_dir.join("cache");
let is_exist_cache = cache_file.exists();
let _hash = hash(&mut File::open(self.path)?, false)?;
let cache_file_path = self.cache_dir.join("cache_file");
let mut ... | Rust |
PublicKey)
if err != nil {
return nil, nil, nil, err
}
pubkey, err := btcec.ParsePubKey(binKey)
if err != nil {
return nil, nil, nil, err
}
path[i].NodePub = *pubkey
payload, err := hex.DecodeString(hop.Payload)
if err != nil {
return nil, nil, nil, err
}
hopPayload, err := sphinx.NewTL... | Go |
///
/// let m = c.module("MyModule");
///
/// let my_input = m.input("my_input", 80);
/// ```
pub fn input<S: Into<String>>(&'a self, name: S, bit_width: u32) -> &Signal<'a> {
let name = name.into();
// TODO: Error if name already exists in this context
if bit_width < MIN_S... | Rust |
ariable long companyId,
@Valid
@RequestBody
OkrBranchDto okrBranchDTO
) {
OkrBranch okrBranch = okrBranchMapper.mapDtoToEntity(okrBranchDTO);
OkrBranch newBranch = companyService.createOkrBranch(companyId, okrBranch);
return ResponseEntity.ok(okrBranchMapper.mapEntityToDto(newBranch));
}
... | Java |
i>
<li>asBEHAVE_SETGCFLAG : <a class="el" href="angelscript_8h.html#a7e38df5b10ec8cbf2a688f1d114097c5aadbad474a338c3a0fe6e90df679bb2e6">angelscript.h</a></li>
<li>asBEHAVE_TEMPLATE_CALLBACK : <a class="el" href="angelscript_8h.html#a7e38df5b10ec8cbf2a688f1d114097c5a8c9afe12ff833cd09bd893e1408b9103">... | HTML |
1:4 (pos 4)`),
})
checkError(t, "never tested",
td.SubJSONOf(`[1, "$^bad%"]`),
expectedError{
Message: mustBe("bad usage of SubJSONOf operator"),
Path: mustBe("DATA"),
Summary: mustBe(`JSON unmarshal error: $^ must be followed by an operator name at line 1:5 (pos 5)`),
})
// named placeholders
... | Go |
// starts a new game
this.initializeGame();
// increments number of games played and lost
this.gamesPlayed++;
this.gamesLost++;
console.log(`Total Games Played: + ${this.gamesPlayed}`);
... | Typescript |
on-storyshots';
import { configure, shallow } from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
import FictionHeader from '../../../../../js/app/components/debate/brightMirror/fictionHeader';
import CircleAvatar from '../../../../../js/app/components/debate/brightMirror/circleAvatar';
import type { Fiction... | JavaScript |
(sheet_name, [inject_root_id(root_id, line) for line in lines])
for sheet_name, lines in input_dict.items()
]
),
**extra_kwargs
)
spreadsheet_input.read_sheets()
parser = SchemaParser(
root_schema_dict=create_schema(root_id) if use_schema else ... | Python |
"llvm/CodeGen/MachineRegisterInfo.h"
#include "llvm/CodeGen/Passes.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
#define DEBUG_TYPE "wasm-prepare-for-live-intervals"
namespace {
class WebAssemblyPrepareForLiveIntervals final : public MachineFunctionPass {
public:
sta... | C++ |
lude))]\nimpl\u003cT: Debug + ?Sized, R: RawRwLock\u003e Debug for RwLockWriteGuard\u003c'_, T, R\u003e {\n\tfn fmt(\u0026self, f: \u0026mut std::fmt::Formatter\u003c'_\u003e) -\u003e std::fmt::Result {\n\t\tDebug::fmt(\u0026**self, f)\n\t}\n}\n\nimpl\u003cT: Display + ?Sized, R: RawRwLock\u003e Display for RwLockWrite... | HTML |
bannerRewampPrice ul{display:flex;align-items:center;margin:0;padding:0;position:relative;left:-10px}.bannerRewamp .bannerRewampPrice ul li img{padding:6px 18px;border-right:1px solid #ccc}.bannerRewamp .bannerRewampPrice ul li:last-child img{border:0}.bannerRewamp .bannerRewampInner{position:relative}.bannerRewamp .sl... | HTML |
move.b D4,(A2)+ ; Sektor
move.b D4,(A6)+ ; Sektornr in Sektornummerntabelle
move.b #2,(A2)+ ; Grenbyte (2 -> 512 Bytes)
move.b #$F7,(A2)+ ; Checksumme schreiben lassen
move.b 2(A4),D1 ; Gap3 (Post Address Mark 1)
... | Assembly |
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 ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the... | Java |
end
local UICity = UICity
local info
--0=value, 1=#table, 2=list table values
local info_grid = {
tables = {},
values = {
{name="connectors", kind=1},
{name="consumers", kind=1},
{name="producers", kind=1},
{name="storages", kind=1},
{name="all_consumers_supplied", kind=0},
{name=... | Lua |
ду. Введите ряд, который хотите забрать: 4
----
Row1: 5
Row2: 6, 11, 13
Row3: 80, 100
Row4: 1
Bot: 10, 103, 44, 14, 62, 72, 73, 75
Misha: 53, 15, 18, 55, 77, 20, 22, 9
....
----
Row1: 5, 10
Row2: 6, 11, 13, 15, 18
Row3: 80, 100, 103
Row4: 1
Bot: 44, 14, 62, 72, 73, 75
Misha: 53, 55, 77, 20, 22, 9
Bot: введите, какую ка... | Markdown |
injection.Fake.RegisterInformerFactory(withInformerFactory)
}
func withInformerFactory(ctx context.Context) context.Context {
c := fake.Get(ctx)
opts := make([]externalversions.SharedInformerOption, 0, 1)
if injection.HasNamespaceScope(ctx) {
opts = append(opts, externalversions.WithNamespace(injection.GetNamesp... | Go |
SMODS.Atlas({
key = "skip_off",
path = "j_skip_off.png",
px = 71,
py = 95,
})
SMODS.Joker({
key = "skip_off",
atlas = "skip_off",
rarity = 2,
cost = 5,
unlocked = true,
discovered = true,
blueprint_compat = false,
eternal_compat = true,
perishable_compat = true,
config = { extra = { hands = 0, discards =... | Lua |
շախմատի, այլ ոչ` փողի հանդեպ",
"everybodyGetsAllFeaturesForFree": "Բոլոր հնարավորությունները բոլորի համար անվճար են",
"zeroAdvertisement": "Ոչ մի գովազդ",
"fullFeatured": "Առավելագույն ֆունկցիոնալություն",
"phoneAndTablet": "Հեռախոսով և պլանշետով",
"bulletBlitzClassical": "Կայծակնային, արագ, դասական",
"corr... | JavaScript |
/*
* EAP-PEAP common routines
* Copyright (c) 2008-2011, Jouni Malinen <j@w1.fi>
*
* This software may be distributed under the terms of the BSD license.
* See README for more details.
*/
//#if CONFIG_PEAP
#include "utils/includes.h"
#include "utils/common.h"
#include "crypto/sha1.h"
#include "eap_common/eap_pea... | C |
�이프라인은 데이터 세트 분할 및 모델 훈련 동안 장치 전반에 걸친 독립적인 무작위성을 보존하여 훈련 프로세스에 편향의 부주의한 도입을 방지한다. 이 포괄적인 접근 방식은 에이전트오아나가 환경 전반에 걸친 궤적을 통합할 뿐만 아니라 수집된 데이터의 전반적인 품질과 신뢰성뿐만 아니라 모델의 성능과 견고성을 향상시킨다는 것을 보장한다. 우리의 접근 방식은 AgentOhana가 연구 커뮤니티를 위한 다재다능하고 접근 가능한 리소스 역할을 하여 향후 응용 프로그램을 위한 개발 프로세스를 간소화합니다. 본 논문의 기여도는 다음과 같다.\n' +
'\n' +
... | HTML |
, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
s.vars[memVar] = s.newValue3(ssa.OpAtomicStoreRel64, types.TypeMem, args[0], args[1], s.mem())
return nil
},
sys.PPC64)
makeAtomicStoreGuardedIntrinsicLoong64 := func(op0, op1 ssa.Op, typ types.Kind, emit atomicOpEmitter) intrinsicBuilder {
return func(s *... | Go |
56.83-65.06C457.36 365.77 480 310.42 480 251.49a213.5 213.5 0 00-4.78-45c-10.34-48.62-37.76-92.9-77.22-124.65ZM87.48 380ZM160 288a32 32 0 1132-32 32 32 0 01-32 32Zm96 0a32 32 0 1132-32 32 32 0 01-32 32Zm96 0a32 32 0 1132-32 32 32 0 01-32 32Z"/></svg>';
static const String chatbubble_ellipses_outline =
'<svg xml... | Dart |
ted{background:#fd4}.admonition.error,.admonition.danger,.admonition.caution{background:lightpink}</style>
<style media="screen and (min-width: 700px)">@media screen and (min-width:700px){#sidebar{width:30%;height:100vh;overflow:auto;position:sticky;top:0}#content{width:70%;max-width:100ch;padding:3em 4em;border-left:1... | HTML |
AllowEditRanges.Add Method (Excel)
keywords: vbaxl10.chm724075
f1_keywords:
- vbaxl10.chm724075
ms.prod: excel
api_name:
- Excel.AllowEditRanges.Add
ms.assetid: f88d900d-4974-4d8d-6279-0be6376fc232
ms.date: 06/08/2017
---
# AllowEditRanges.Add Method (Excel)
Adds a range that can be edited on a protected worksheet.... | Markdown |
rial, sans-serif;
--bt-wp-title-font-size: 18px;
--bt-wp-title-font-weight: 400;
/* NOTE: SUB BTN MOVED */
/* buttons */
--bt-wp-button-text-transform: uppercase;
--bt-wp-button-padding: 0 10px;
--bt-wp-button-height: 36px;
--bt-wp-button-font-weight: 500;
--bt-wp-button-font-size: 14px;
}
/* OUTER */
/* NOTE: this is ... | CSS |
#include <kernel.h>
#include <kdata.h>
#include <printf.h>
#include <stdbool.h>
#include <tty.h>
#include <devtty.h>
static uint8_t tbuf1[TTYSIZ];
static uint8_t tbuf2[TTYSIZ];
struct s_queue ttyinq[NUM_DEV_TTY+1] = { /* ttyinq[0] is never used */
{ NULL, NULL, NULL, 0, 0, 0 },
... | C |
nfo.versionName
val versionCode = getVersionCode(packageInfo)
return if (versionCode != null && versionName != null) {
"$versionName+$versionCode"
} else {
null
}
} catch (e: Exception) {
println(e.message);
... | Kotlin |
border-top: none;
border-left: 0;
border-right: 0;
}
table.single-tempate-table thead tr:first-child th:first-child {
padding: 0px 7px;
text-align: left;
width: 330px;
}
table.single-tempate-table thead tr:first-child th:not(:first-child) {
padding: 0px 5px;
}
table.single-tempate-table thead tr:nth-chi... | CSS |
, 1);
break;
}
}
createSnake = (length: number = 2, initialX: number = 10, initialY: number = 10) => {
for(let i = length; i>0; i--){
this.snake.push(
{
x: (i+initialX),
y: initialY
}
);
... | Typescript |
odifyCorrelationMonitorRequest.class.getSimpleName() ,HinemosModuleConstant.MONITOR_CORRELATION);
monitorTypeIdMap.put(AddIntegrationMonitorRequest.class.getSimpleName() ,HinemosModuleConstant.MONITOR_INTEGRATION);
monitorTypeIdMap.put(ModifyIntegrationMonitorRequest.class.getSimpleName() ,HinemosModuleConstant.MON... | Java |
요?"라고 질문을 하며 눈물을 흘리고 있는 피해자(당시 26세)에게 다가가, 피해자의 눈물을 닦아주며 갑자기 피해자의 오른쪽 볼에 입술을 가져다 대었다.
이로써 피고인은 피해자를 강제로 추행하였다.
2. 2019. 9. 25.경 강제추행
피고인은 2019. 9. 25. 23:00경 서울 영등포구 <<<구아래주소>>>E<<</구아래주소>>>, 지하 1층에 있는 '<<<노래연습장>>>F<<</노래연습장>>>노래연습장'에서, 피고인의 옆자리에 앉아있던 피해자(당시 27세)가 일어나 피고인 앞을 지나갈 때, 갑자기 손으로 피해자의 오른쪽 엉덩이를 만졌다.
이후 피고인은 피해... | Markdown |
the if it is running otherwise we will fail when we start kythe below
exists, err := docker.ContainerExists(fullKytheImage)
if err != nil {
return numNotes, fmt.Errorf("error making service call: %v", err)
}
if exists {
stop(fullKytheImage, 0)
}
// Make sure we stop kythe after we are done
defer sto... | Go |
��이지</a>는 다소 애매합니다:</p>
<blockquote>또한 TCP 킵얼라이브 (SO_KEEPALIVE) 옵션과 같이 사용하게 되면 TCP_USER_TIMEOUT은 킵얼라이브 실패로 인한 연결 종료 시에 킵얼라이브 값을 덮어쓴다.</blockquote>
<p>원래의 커밋 메시지가 좀 더 자세합니다:</p>
<ul>
<li><a href="https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=dca43c75e7e545694a9dd6288553f55c53e2a3a3">... | HTML |
m1.1.1.3" xref="S3.T7.6.6.3.m1.1.1.3.cmml">0.0001</mn></mrow><annotation-xml encoding="MathML-Content" id="S3.T7.6.6.3.m1.1b"><apply id="S3.T7.6.6.3.m1.1.1.cmml" xref="S3.T7.6.6.3.m1.1.1"><lt id="S3.T7.6.6.3.m1.1.1.1.cmml" xref="S3.T7.6.6.3.m1.1.1.1"></lt><csymbol cd="latexml" id="S3.T7.6.6.3.m1.1.1.2.cmml" xref="S3.T7... | Markdown |
-eighties .ace_keyword,\n.ace-tomorrow-night-eighties .ace_meta,\n.ace-tomorrow-night-eighties .ace_storage,\n.ace-tomorrow-night-eighties .ace_storage.ace_type,\n.ace-tomorrow-night-eighties .ace_support.ace_type {\n color: #CC99CC\n}\n\n.ace-tomorrow-night-eighties .ace_keyword.ace_operator {\n color: #66CCCC\n}\n\... | JavaScript |
read_write> = var undef @binding_point(0, 0)
}
%foo = func():mat4x3<f32> {
$B2: {
%3:array<tint_packed_vec3_f32_array_element, 4> = load %v
%4:__packed_vec3<f32> = access %3, 0u, 0u
%5:vec3<f32> = msl.convert %4
%6:__packed_vec3<f32> = access %3, 1u, 0u
%7:vec3<f32> = msl.convert %6
%8:__pack... | C++ |
59)
lea %s60, 4(%s34, %s52)
ldl.zx %s60, (,%s60)
lea %s62, 4(%s34, %s61)
ldl.zx %s62, (,%s62)
muls.l %s57, %s36, %s57
muls.l %s59, %s36, %s59
muls.l %s60, %s36, %s60
muls.l %s62, %s36, %s62
pvfmad %v1,%v1,%s55,%v8
pvfmad %v2,%v2,%s56,%v8
pvfmad %v3,%v3,%s57,%v8
pvfmad %v4,%v4,%s59,%v8
ldl.zx %s55, 8(,%s34)... | Assembly |
stify;">例如,该技术可能有助于评估风险分析。如果要执行的任务是袭击一座山,假设无线电或通信被感染,将会发生什么情况?这会影响整个任务的执行吗?指挥官可能会下达指令关闭通信,并告知士兵通信将被切断三分钟,提醒士兵注意。他们也可能会确定此次攻击是否会严重影响任务的继续执行。</p><p style="text-align:justify;">至于后续计划,SCABARD将被引入“网络闪电战”(Cyber Blitz,在指挥所内测试网络能力的演习)。官员解释称,他们打算2018财年将C-STAF过渡到计划办公室。</p><h3 style="text-align: justify;"><strong>减轻士兵认知负担<br/></... | HTML |
e _021E159C
mov r0, #0
str r0, [sp, #0xc]
_021E159C:
ldr r0, [sp, #4]
mov r6, #0
cmp r0, #0
bls _021E1622
ldr r5, [sp]
_021E15A6:
ldr r0, [sp]
add r1, r6, #0
ldr r0, [r0, #4]
ldr r0, [r0, #0x34]
bl MapObjectManager_GetFirstActiveObjectByID
add r4, r0, #0
beq _021E161A
bl MapObject_GetType
cmp r0, #8
bh... | Assembly |
上托管多个网站域名。
在虚拟主机模式下,Web 服务器在收到 HTTP 请求时会检查请求的 Host 头部,根据这个头部确定请求意图访问的是哪个虚拟主机。也就是说,攻击者可以向存在漏洞的 mini_httpd 发送 HOST 为空的请求头,并将想要读取的文件放在请求行的路径中,如下:

在 mini_httpd 1.30 版本中... | Markdown |
C762.65302,456.23444 751.6941,498.98758 732.29592,536.69892L713.92856,527.6428C721.66906,512.6431 728.0108,496.81066 732.67858,480.2576L713.03572,474.70912C718.7569,454.4264 721.83674,433.03866 721.83674,410.93362C721.83674,388.85 718.74622,367.48714 713.03572,347.22188L732.67858,341.6734C728.01042,325.1037 721.67212,3... | HTML |
/**
* \file IMP/atom/TAMDCentroid.h
* \brief A decorator for a particle that is a centroid of TAMD simulations.
*
* Copyright 2007-2022 IMP Inventors. All rights reserved.
*
*/
#ifndef IMPATOM_TAMD_CENTROID_H
#define IMPATOM_TAMD_CENTROID_H
#include <IMP/atom/atom_config.h>
#include <IMP/Decorator.h>
#inclu... | C |
});
};
run()
.then(() => {
console.log('process finished!');
process.exit(0);
})
.catch(e => {
console.warn('process error! -> ', e);
process.exit(1);
});import { modifyLuminosity } from "../../utils/color.ts";
import { indexByCoordinates } from "../../utils/coordinates.ts";
import IDGVM from "../Machin... | Typescript |
int32(p[44+3])
w[12] = uint32(p[48])<<24 | uint32(p[48+1])<<16 | uint32(p[48+2])<<8 | uint32(p[48+3])
w[13] = uint32(p[52])<<24 | uint32(p[52+1])<<16 | uint32(p[52+2])<<8 | uint32(p[52+3])
w[14] = uint32(p[56])<<24 | uint32(p[56+1])<<16 | uint32(p[56+2])<<8 | uint32(p[56+3])
w[15] = uint32(p[60])<<24 | uint32(p... | Go |
L55_1 = _ENV
L56_1 = "CA77AD2087800F728"
L57_1 = _hx_e
L57_1 = L57_1()
L55_1[L56_1] = L57_1
_ENV["CA77AD2087800F728"]["new"] = function(A0_2, A1_2)
local L2_2, L3_2, L4_2, L5_2, L6_2
L2_2 = lua_helper_new
L3_2 = CA77AD2087800F728
L3_2 = L3_2.prototype
L4_2 = 14
L5_2 = 74
L2_2 = L2_2(L3_2, L4_2, L5_2)
L... | Lua |
inity, 1], [Infinity, Infinity] ]);
keysort('Test different stuff at once',
[
now,
[0, []],
"test",
1,
["a", [1, [-1]]],
["b", "a"],
[ 0, 2, "c"],
["a", [1, 2]],
[],
[0, [], 3],
["a", "b"],
... | HTML |
0x3a58, 0x3a50, 0x3a40, 0x3a38,
0x3a28, 0x3a20, 0x3a10, 0x3a00, 0x39f8, 0x39e8, 0x39e0, 0x39d0,
0x39c8, 0x39b8, 0x39b0, 0x39a0, 0x3998, 0x3988, 0x3980, 0x3970,
0x3968, 0x3958, 0x3950, 0x3940, 0x3938, 0x3928, 0x3918, 0x3910,
0x3900, 0x38f8, 0x38e8, 0x38e0, 0x38d0, 0x38c8, 0x38b8, 0x38b0,
0x38a0, 0x3... | C++ |
BAL_STATE_DIM)\\n\\n # Aggregate the learned global states across the context timesteps using GlobalAveragePooling1D\\n # (B, C, GLOBAL_STATE_DIM) -> GlobalAveragePooling1D -> (B, GLOBAL_STATE_DIM)\\n global_context_aggregated = self.global_state_aggregator_pooling(global_brain_state_embeddings) # ... | HTML |
ignoring=%s", qNamePtr);
// trace entry to updateIdFields
pDoc->logTraceEntry(traceInfo);
}
}
qNamePtr = Names::getNextName(qNamePtr);
}
}
if (pDoc->traceEnabled)
{
// create the trace line
sprintf(traceInfo, "Exiting CPS::OnDropdownPsQueueName() added=%d skipped=%d qNamePtr=%8.8X"... | C++ |
?s).*Cannot apply '<>' to arguments of type '<BINARY.1.> <> <DECIMAL.3, 2.>'.*");
checkExpFails(
"^x'abcd'<>1^",
"(?s).*Cannot apply '<>' to arguments of type '<BINARY.2.> <> <INTEGER>'.*");
}
@Test public void testBinaryString() {
check("select x'face'=X'' from (values(true))");
check(... | Java |
lineno"> 781</span> </div><div class="line"><a name="l00782"></a><span class="lineno"> 782</span>  <span class="keyword">using</span> <a class="code" href="classcutlass_1_1transform_1_1threadblock_1_1PredicatedTileIterator.html">UnderlyingIterator</a> = <a class="code" href="classcutlass_1_1transform_1_1th... | HTML |
'Gwynne Shotwell',
'cto_propulsion': 'Tom Mueller',
'valuation': 52000000000,
'summary':
'SpaceX designs, manufactures and launches advanced rockets and spacecraft. The company was founded in 2002 to revolutionize space technology, with the ultimate goal of enabling people t... | Dart |
title="点击或拖拽改变大小" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="logoColumn"><img alt="盛派网络" width="140" height="70" src="../icons/SenparcLogo.JPG" /></td><td class="titleColumn"><h1>BaseRedisObjectCacheStrategy<span id="LST66B7AD10_0"></span><script type="text/javasc... | HTML |
dine zu Gwennyth Bly'Leggonde."}},
[4734] = {"Ei-Frosten", nil, {"Benutzt den Prototyp des Eiszilloskops an einem Ei im Horst der Schwarzfelsspitze."}},
[4735] = {"Eiersammlung", nil, {"Bringt 8 eingesammelte Dracheneier sowie das kollektronische Modul zu Tinkee Kesseldampf auf dem Flammenkamm in der brennenden Steppe.... | Lua |
import json
import logging
from datetime import datetime
from typing import Any, Optional
class AICouncilLogger:
"""Singleton logger for AI Council using standard Python logging."""
_instance = None
_initialized = False
def __new__(cls):
if cls._instance is None:
cls._ins... | Python |
Font.SciFi
ButtonColorPurple.Text = "Purple"
ButtonColorPurple.TextColor3 = Color3.new(1, 1, 1)
ButtonColorPurple.TextSize = 14
ButtonColorYellow.Name = "ButtonColorYellow"
ButtonColorYellow.Parent = SettingsFrame
ButtonColorYellow.BackgroundColor3 = Color3.new(0, 0, 0)
ButtonColorYellow.Position = UDim2.new(0.5249999... | Lua |
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option... | C |
l6.5-3.33Z"/>'},"email-minus":{body:'<path fill="currentColor" d="M13 19c0-3.31 2.69-6 6-6c1.1 0 2.12.3 3 .81V6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h9.09c-.05-.33-.09-.66-.09-1M4 8V6l8 5l8-5v2l-8 5l-8-5m19 10v2h-8v-2h8Z"/>'},"email-minus-outline":{body:'<path fill="currentColor" d="M13 19c0-.34.04-.67.09-... | JavaScript |
using System;
using System.Text;
using FluentAssertions;
using Moq;
using Xunit;
namespace VDS.RDF.Writing;
public class SingleGraphWriterTests
{
[Fact]
public void ItInvokesTheStoreWriterSaveMethodWithAFileName()
{
var mockStoreWriter = new Mock<IStoreWriter>();
var graph = new Graph();
... | C# |
namespace LiveTestClient;
internal class LiveClient(IOptions<LiveClientOptions> options, ILogger<LiveClient> logger) : IAsyncDisposable
{
private HubConnection? _hubConnection;
public async Task StartMonitorAsync(CancellationToken cancellationToken = default)
{
try
{
string ... | C# |
# RISC-V Compliance Test SRLI-01
#
# Copyright (c) 2019, Imperas Software 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:
# * Redistributions of source code must retain the above copyrig... | Assembly |
<li class="py-2"><a href="/free-nodes/2024-11-20-node-share.htm">11月20日 | HiddifyNextNode机场节点订阅每天更新22.2M/S免费节点订阅链接</a></li>
</ul>
</div>
</div>
</div>
... | HTML |
l se désactive au bout de 120 secondes d'inactivité.</p>
<pre><code class="language-plaintext"># ping6 fd87:d87e:eb43:7b:9818:380:7a5b:303
PING fd87:d87e:eb43:7b:9818:380:7a5b:303(fd87:d87e:eb43:7b:9818:380:7a5b:303) 56 data bytes
64 bytes from fd87:d87e:eb43:7b:9818:380:7a5b:303: icmp_seq=3 ttl=64 time=235 ms
64 bytes... | HTML |
[3] = 3078,
[4] = 6203,
["inf1"] = "Elemental Warrior",
["inf2"] = "Level 57",
["icon"] = 1,
},
},
},
["Flamekin Sprite"] = {
[2] = {
[15] = {
[1] = 5813,
[2] = 6999,
[3] = 5813,
[4] = 6999,
["inf1"] = "",
["inf2"] = "",
["icon"] = 3,
},
},... | Lua |
a>"). The barcode's data is sent to the computer as if it had been typed on the keyboard.\n' +
'</p><p>Like the keyboard interface scanner, <a href="https://en.wikipedia.org/wiki/USB">USB</a> scanners do not need custom code for transferring input data to the application program. On PCs running Windows th... | HTML |
/TAGGED/POS/BROWN"), sentences, labels);
String[][] x = sentences.toArray(new String[sentences.size()][]);
PennTreebankPOS[][] y = labels.toArray(new PennTreebankPOS[labels.size()][]);
HMMPOSTagger tagger = HMMPOSTagger.fit(x, y);
try {
FileOutputStream fos... | Java |
Int
import org.signal.core.util.requireInt
import org.signal.core.util.requireNonNullString
import org.signal.core.util.select
import org.signal.core.util.withinTransaction
import org.thoughtcrime.securesms.database.model.EmojiSearchData
import kotlin.math.max
/**
* Contains all info necessary for full-text search of... | Kotlin |
// Copyright 2023 The Pigweed Authors
//
// 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
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agre... | C |
和云计算的集成设备来实现访问管理控制。IBM Security Access Manager存在未授权访问漏洞,攻击者可利用该漏洞使用空密码登录到服务器。
参考链接:
https://www.cnvd.org.cn/flaw/show/CNVD-2024-07609
**3、**
**IBM Cloud Pak System信息泄露漏洞(CNVD-2024-07607)**
IBM Cloud Pak System是美国国际商业机器(IBM)公司的一套具有可配置、预集成软件的全栈、融合基础架构。该产品支持跨混合云部署、管理和移动应用程序环境。IBM Cloud Pak System... | Markdown |
s();
if (time_biases.size() > 0) {
if ((time_biases.size() > 1) || (time_biases[0] != this->name)) {
for (size_t i = 0; i < num_variables(); i++) {
if (! variables(i)->is_enabled(f_cv_subtract_applied_force)) {
return cvm::error("Error: cannot collect TI samples while other "
... | C++ |
ainCallback2(CB2_ReturnToField);
DestroyTask(taskId);
break;
}
}
static void Task_ReinitializeDecorationMenuHandler(u8 taskId)
{
s16 *data = gTasks[taskId].data;
switch (tState)
{
case 0:
HideSecretBaseDecorationSprites();
tState++;
break;
case 1:
... | C |
Ta.Q:Ca(n,i,e[t++],e[t++],e[t],e[t+1],La,Oa),n=e[t++],i=e[t++];break;case Ta.A:var l=e[t++],u=e[t++],h=e[t++],c=e[t++],p=e[t++],d=e[t++]+p;t+=1;var f=!e[t++];s&&(r=Ea(p)*h+l,o=za(p)*c+u),Ia(l,u,h,c,p,d,f,La,Oa),n=Ea(d)*h+l,i=za(d)*c+u;break;case Ta.R:wa(r=n=e[t++],o=i=e[t++],r+e[t++],o+e[t++],La,Oa);break;case Ta.Z:n=... | JavaScript |
crypt-proxy/{.*}[.md|.minisig|.json]")
o.default = true
o.optional = false
o.rmempty = false
o = s:option(Flag, "selfsign", translate("Selfsign Resolvers"), translate("Mostly useful for build your own resolvers list on net probe fails. minisign binary needed: ") .. "https://github.com/peter-tank/openwrt-minisign")
o.d... | Lua |
ator,
private val objectMapper: ObjectMapper,
) : AuthenticationEntryPoint {
override fun commence(
request: HttpServletRequest,
response: HttpServletResponse,
authException: AuthenticationException,
) {
with(response) {
contentType = MEDIATYPE_OPDS_AUTHENTICATION_JSON_VALUE
characterE... | Kotlin |
ure-0-1-2810-1-99541-0000000001", "Risen Skulker", 0xa48, 0x0, "Creature-0-1-2810-1-233817-0000000002", "Forgeweaver Araz", 0xa48, 0x0, 1239356, "Blighted Arrow", 0x0},
{21.99, "UNIT_POWER_UPDATE", "boss1", "Forgeweaver Araz", "TYPE:ENERGY/3", "MAIN:17/100", "ALT:0/0"},
{22.38, "COMBAT_LOG_EVENT_UNFILTERED", "SPELL... | Lua |
:Xc @ s d Z d d l Z d d l Z d d l Z d d l Z d d l Z d d l Z d Z d Z e j
e d Z e j
d Z
d Z d Z d Z d
Z d Z d Z d
Z d Z d Z d Z d Z d S( sT
Tests for the bdist_wheel tag options (--python-tag, --universal, ... | Python |
_var(rational(3), true);
unsigned a = mbo.add_var(rational(2), true);
unsigned t = mbo.add_var(rational(4), true);
add_ineq(mbo, s, 1, a, -2, 0, opt::t_le); // s - 2a <= 0
add_ineq(mbo, a, 2, t, -1, 0, opt::t_le); // 2a - t <= 0
mbo.display(std::cout);
d... | C++ |
#pragma warning disable CA1032 // Implement standard exception constructors
#pragma warning disable CA1720 // Identifier contains type name
#pragma warning disable IDE0040 // Add accessibility modifiers
#pragma warning disable IDE0090 // Use 'new(...)'
#pragma warning disable IDE0161 // Convert to file-scoped namespace... | C# |
114L8.82 12.514a.408.408 0 01-.076-.229v-.608c0-.076.038-.19.114-.267l2.016-2.016a.41.41 0 01.267-.114h.608a.41.41 0 01.267.114l2.016 2.016a.347.347 0 01.114.267v.608c-.076.077-.114.19-.19.229zm5.593 5.44-4.832-2.777c-.266-.152-.57-.19-.837-.152-.723.038-1.332.684-1.332 1.408v5.554c0 .8.647 1.408 1.408 1.408.799 0 1.44... | Dart |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.