This file contains 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
find_library(NCURSES_LIB NAMES ncursesw PATHS /mingw64/lib REQUIRED) | |
find_library(PANEL_LIB NAMES panelw PATHS /mingw64/lib REQUIRED) |
This file contains 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
############################################################################################################### | |
##### ProFi, a lua profiler. This profile was generated on: 02/03/25 23:45:27 | |
##### ProFi is created by Luke Perkin 2012 under the MIT Licence, www.locofilm.co.uk | |
##### Version 1.3. Get the most recent version at this gist: https://gist.github.com/2838755 | |
############################################################################################################### | |
| TOTAL TIME = 75.074005 | |
| FILE : FUNCTION : LINE : TIME : RELATIVE : CALLED | | |
| [C] : remove_effect_bundle_from_characters_force : -1 : 17.858 : 23.79% : 24019 | | |
| [string "c:\gam |
This file contains 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
ui_porthole_default_page | |
ui_porthole_mode | |
ui_radar_mode | |
ui_radar_scale | |
ui_scale | |
ui_show_campaign_labels | |
ui_show_help_markers | |
ui_show_input_method | |
ui_telestration_always_on | |
ui_touch_enabled |
This file contains 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
-- Helper function to get the faction list from the game model | |
function getFactionList() | |
return scripting.game_interface:model():world():faction_list() | |
end | |
-- Helper function to get the region list from a faction | |
function getRegionList(faction) | |
return faction:region_list() | |
end |
This file contains 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
[2025-01-25 17:24:58] [DEBUG] ============================================================= | |
[2025-01-25 17:24:58] [DEBUG] NewSession | |
[2025-01-25 17:24:58] [DEBUG] context: | |
[2025-01-25 17:24:58] [DEBUG] ============================================================= | |
[2025-01-25 17:24:58] [DEBUG] ============================================================= | |
[2025-01-25 17:24:58] [DEBUG] LoadingGame | |
[2025-01-25 17:24:58] [DEBUG] context: | |
[2025-01-25 17:24:58] [DEBUG] ============================================================= | |
[2025-01-25 17:24:58] [DEBUG] ============================================================= | |
[2025-01-25 17:24:58] [DEBUG] CampaignEffectsBundleAwarded |
This file contains 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
.:53 { | |
forward . tls://1.1.1.1 tls://1.0.0.1 { | |
tls_servername cloudflare-dns.com | |
health_check 5s | |
} | |
cache { | |
success 3600 | |
} | |
} |
This file contains 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
<Grid.Resources> | |
<Style TargetType="TextBox"> | |
<Setter Property="Padding" Value="2 1"></Setter> | |
<Setter Property="BorderBrush" Value="Black"></Setter> | |
<Setter Property="BorderThickness" Value="1"></Setter> | |
<Setter Property="Validation.ErrorTemplate"> | |
<Setter.Value> | |
<ControlTemplate> | |
<AdornedElementPlaceholder></AdornedElementPlaceholder> | |
</ControlTemplate> |
This file contains 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
<!DOCTYPE html> | |
<html class="default" lang="en"> | |
<head> | |
<meta charset="utf-8"/> | |
<meta http-equiv="x-ua-compatible" content="IE=edge"/> | |
<title>3. Selenium API | @tauri-e2e/selenium</title> | |
<meta name="description" content="Documentation for @tauri-e2e/selenium"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1"/> | |
<link rel="stylesheet" href="../assets/style.css"/> | |
<link rel="stylesheet" href="../assets/highlight.css"/> |
This file contains 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::{env, io}; | |
use std::io::ErrorKind; | |
use std::process::{Command, Stdio}; | |
fn main() -> Result<(), std::io::Error> { | |
// Collect the command and its arguments from the command line input | |
let args: Vec<String> = env::args().collect(); | |
// Find the position of "--" which separates the wrapper's arguments from the subcommand's arguments | |
let separator_pos = args.iter().position(|arg| arg == "--").unwrap_or(1); |
NewerOlder