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
mkdir: can't create directory '/config/usb_gadget/g1/functions/rndis.usb0': Function not implemented | |
Couldn't create /config/usb_gadget/g1/functions/rndis.usb0 | |
ln: /config/usb_gadget/g1/configs/c.1/rndis.usb0: No such file or directory | |
Couldn't symlink rndis.usb0 | |
~ # ls /config/usb_gadget/g1/functions/ | |
~ # |
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
import tauri.ShellMod | |
import typings.std.stdStrings.close | |
import typings.tauriAppsApi.tauriAppsApiStrings | |
import scala.util.Failure | |
import scala.util.Success | |
import scala.concurrent.Future | |
import scala.collection.mutable.ArrayBuffer | |
import scala.concurrent.Promise | |
import scalajs.js.JSConverters.iterableOnceConvertible2JSRichIterableOnce |
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
// Set the constants for schedule and pay rate | |
const schedule = { | |
start: "09:00", // Start of schedule in HH:mm format | |
end: "17:00", // End of schedule in HH:mm format | |
breakStart: "12:00", // Start of break time in HH:mm format | |
breakEnd: "13:00" // End of break time in HH:mm format | |
}; | |
const payRate = 100; // Pay rate in dollars per day |
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
[501/933] Linking CXX executable bin\bytearrayrawfilesynchronizertest.exe | |
FAILED: bin/bytearrayrawfilesynchronizertest.exe | |
cmd.exe /C "cd . && C:\msys64\mingw64\bin\c++.exe -fno-operator-names -fno-exceptions -Wall -Wextra -Wcast-align -Wchar-subscripts -Wformat-security -Wno-long-long -Wp | |
ointer-arith -Wundef -Wnon-virtual-dtor -Woverloaded-virtual -Werror=return-type -Werror=init-self -Wvla -Wdate-time -Wsuggest-override -Wlogical-op -fdiagnostics-colo | |
r=always kasten/core/io/tests/CMakeFiles/bytearrayrawfilesynchronizertest.dir/bytearrayrawfilesynchronizertest_autogen/mocs_compilation.cpp.obj kasten/core/io/tests/C | |
MakeFiles/bytearrayrawfilesynchronizertest.dir/bytearrayrawfilesynchronizertest.cpp.obj kasten/core/io/tests/CMakeFiles/bytearrayrawfilesynchronizertest.dir/__/__/docu | |
ment/bytearraydocument.cpp.obj kasten/core/io/tests/CMakeFiles/bytearrayrawfilesynchronizertest.dir/__/filesystem/bytearrayrawfilesynchronizer.cpp.obj kasten/core/io/t | |
ests/CMakeFiles/bytearrayrawfilesynchronizertest.dir/__/files |
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
name: graphviz | |
base: core22 | |
version: '9.0.0' | |
summary: S | |
description: | | |
A | |
grade: stable | |
confinement: strict |
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
def runProcess(command: String, cwd: Option[String], details: String = ""): Future[String] = { | |
val msg = if (details == "") then s"Running command `${command}`" else s"${details}" | |
println(s"${msg}...") | |
val options = encodingBufferEncodingExe(BufferEncoding.utf8) | |
cwd.foreach(cwdR => options.cwd = cwdR) | |
val process = node_child_process.exec(command, options) | |
var strBuilder = mutable.StringBuilder() | |
process.stdout.asInstanceOf[typings.node.streamMod.Readable].on_data(nodeStrings.data, data => { | |
strBuilder.append(data) | |
println(s"cmd stdout: $data") |
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
/dts-v1/; | |
/ { | |
compatible = "samsung,armv8", "samsung,exynos9820"; | |
dtb-hw_rev = <0x0>; | |
dtb-hw_rev_end = <0xff>; | |
interrupt-parent = <0x1>; | |
#address-cells = <0x2>; | |
#size-cells = <0x1>; |
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
/dts-v1/; | |
/memreserve/ 0x00000000e0000000 0x0000000000d00000; | |
/ { | |
compatible = "samsung,armv8\0samsung,exynos7885"; | |
dtb-hw_rev = <0x00>; | |
dtb-hw_rev_end = <0xff>; | |
interrupt-parent = <0x01>; | |
#address-cells = <0x02>; | |
#size-cells = <0x01>; |
OlderNewer