This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 701876bf5ada7748226b4d0dd575639f9a918bd2 Mon Sep 17 00:00:00 2001 | |
| From: Paolo Bonzini <pbonzini@redhat.com> | |
| Date: Thu, 7 May 2026 19:37:51 +0200 | |
| Subject: [PATCH 0/3] *** SUBJECT HERE *** | |
| *** BLURB HERE *** | |
| Paolo Bonzini (3): | |
| build: fix type for depend_files | |
| build: use Sequence for covariance |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/Cargo.toml b/Cargo.toml | |
| index 0b7468de..faa0c123 100644 | |
| --- a/Cargo.toml | |
| +++ b/Cargo.toml | |
| @@ -15,4 +15,9 @@ bytemuck_derive = "1" | |
| [lib] | |
| +crate-type = ["staticlib"] | |
| path = "fc-fontations/mod.rs" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gh api graphql -F owner=mesonbuild -F name=meson -Fmilestone=115 -f query='\ | |
| query($name: String!, $owner: String!, $milestone: ID!) { | |
| repository(owner: $owner, name: $name) { | |
| milestone(number: $milestone) { | |
| pullRequests(last: 100, states: OPEN) { | |
| edges { | |
| node { | |
| title | |
| number | |
| url |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use std::marker::PhantomPinned; | |
| use std::mem::MaybeUninit; | |
| use std::os::raw::c_void; | |
| // ---------------------------------------- | |
| /// A callback to a logging function `f`. | |
| /// This would ordinarily be provided by C code. | |
| pub struct LogRegistration { | |
| f: fn(&str, *mut c_void), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // result for blog post on my machine | |
| // 10.7 Ma/s 93.60 ns/d 4.17 GHz 390.21 c/d 778.90 i/d 24.39 c/b 48.68 i/b 2.00 i/c | |
| // ^^^^^^^^ | |
| // | |
| // binary_gcd_paolo_1 wins for #instructions, but is really bad in terms of ipc | |
| // 5.3 Ma/s 189.59 ns/d 4.16 GHz 788.92 c/d 324.72 i/d 49.31 c/b 20.30 i/b 0.41 i/c | |
| // ^^^^^^^^^^ | |
| // | |
| // binary_gcd_paolo_2 wins overall on my machine, saving more in #instructions than it loses ipc | |
| // 12.0 Ma/s 82.99 ns/d 4.15 GHz 344.06 c/d 592.35 i/d 21.50 c/b 37.02 i/b 1.72 i/c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
| #titlebar { | |
| height: 44px; | |
| } | |
| #navigation-toolbox, #tabmail-tabs, #tabmail-arrowscrollbox { /* Outer tab containers */ | |
| min-height: 44px !important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Personal Zone Notification | |
| description: Send a notification with a URL to a device when it enters a specific zone. | |
| domain: automation | |
| input: | |
| zone: | |
| name: Zone | |
| description: Zone triggering the notification | |
| selector: | |
| entity: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env python3 | |
| # | |
| # SPDX-License-Identifier: GPL-3.0-or-later | |
| # | |
| # Command line access to GNOME Online Accounts mail accounts | |
| # | |
| # Authors: | |
| # Daniel P. Berrange <berrange@redhat.com> | |
| # Paolo Bonzini <pbonzini@redhat.com> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "coro.h" | |
| #include <cstdio> | |
| static __thread Coroutine *current; | |
| void Yield::await_suspend(std::coroutine_handle<> parent) const noexcept { | |
| //printf("!!!! top = %p, yielding from %p\n", current->top, parent); | |
| current->top = parent; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /usr/bin/env python3 | |
| from collections import defaultdict | |
| import asyncio | |
| import paho.mqtt.client | |
| import json | |
| import weakref | |
| class ActiveSubscription: | |
| def __init__(self, topic, obj, client): |
NewerOlder