This data set is composed of HTTP request logs that are small and contain many strings.
For operations, time per iteration; for size, bytes. Lower is better.
Running `/home/christian/Workspace/ferrous-systems/rustls/rustls/target/debug/tl | |
sclient-mio --http --port 1443 --cafile /home/christian/.local/share/mkcert/rootCA.pe | |
m --auth-key localhost_client-client-key.pem --auth-certs localhost_client-client.pem | |
localhost` | |
ConnectionCore::for_client(server_name=DnsName("localhost")) | |
start_handshake(server_name=DnsName("localhost")) | |
emit_client_hello_for_retry() | |
CommonState::send_msg(m.typ=Handshake::ClientHello, must_encrypt=false) | |
CommonState::queue_tls_message(m.payload.len=231, m.typ=Handshake) | |
ChunkVecBuffer::append(bytes.len=236) <<<BUFFERING>>> |
amd-ucode | |
baobab | |
base | |
base-devel | |
bat | |
bluez | |
bluez-utils | |
cheese | |
chromium | |
clang |
* Sending first request: | |
ConnectionCore::for_client(server_name=DnsName("localhost")) | |
start_handshake(server_name=DnsName("localhost")) | |
emit_client_hello_for_retry() | |
CommonState::send_msg(m.typ=Handshake::ClientHello, must_encrypt=false) | |
CommonState::queue_tls_message(m.payload.len=231, m.typ=Handshake) | |
ChunkVecBuffer::append(bytes.len=236) <<<BUFFERING>>> | |
Stream::complete_prior_io() | |
ConnectionCommon::complete_io() | |
ConnectionCommon::write_tls() |
* Sending first request: | |
ConnectionCore::for_client(server_name=DnsName("localhost")) | |
start_handshake(server_name=DnsName("localhost")) | |
emit_client_hello_for_retry() | |
CommonState::send_msg(m.typ=Handshake::ClientHello, must_encrypt=false) | |
CommonState::queue_tls_message(m.payload.len=231, m.typ=Handshake) | |
ChunkVecBuffer::append(bytes.len=236) <<<BUFFERING>>> | |
Stream::complete_prior_io() | |
ConnectionCommon::complete_io() | |
ConnectionCommon::write_tls() |
//! Board Support Crate (BSC) for the nRF52840 Development Kit | |
#![deny(missing_docs)] | |
#![no_std] | |
use core::{ | |
convert::TryFrom, | |
fmt, ops, | |
sync::atomic::{self, Ordering}, | |
time::Duration, |
local on_windows = vim.loop.os_uname().version:match 'Windows' | |
local function join_paths(...) | |
local path_sep = on_windows and '\\' or '/' | |
local result = table.concat({ ... }, path_sep) | |
return result | |
end | |
vim.cmd [[set runtimepath=$VIMRUNTIME]] |
[ERROR rust_analyzer::lsp_utils] failed to run build scripts: | |
error: cannot find a built-in macro with name `derive_const` | |
--> library/core/src/macros/mod.rs:1464:5 | |
| | |
1464 | / pub macro derive_const($item:item) { | |
1465 | | /* compiler built-in */ | |
1466 | | } | |
| |_____^ | |
// This is required to be able to use the rustc crates. | |
#![feature(rustc_private)] | |
// This is only required for the `rustc_*` crates. Regular dependencies can be used without it. | |
extern crate rustc_driver; | |
extern crate rustc_hir; | |
extern crate rustc_interface; | |
extern crate rustc_middle; | |
use rustc_driver::{catch_with_exit_code, Callbacks, Compilation, RunCompiler}; |
from datetime import date | |
class Tarea: | |
# Inicializar los atributos del objeto | |
def __init__(self, descripcion, vencimiento): | |
self.descripcion = descripcion | |
self.terminada = False | |
self.vencimiento = vencimiento | |
# Marcar la tarea como terminada |