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
| #!/bin/sh | |
| # | |
| # PROVIDE: APP | |
| # REQUIRE: networking epmd | |
| # AFTER: epmd | |
| # KEYWORD: | |
| . /etc/rc.subr | |
| name="APP" |
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
| PORTNAME= surfer | |
| DISTVERSIONPREFIX= v | |
| DISTVERSION= 0.3.0 | |
| CATEGORIES= cad | |
| MAINTAINER= jbo@FreeBSD.org | |
| COMMENT= Extensible and snappy waveform viewer | |
| WWW= https://surfer-project.org | |
| LICENSE= EUPL12 |
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
| defmodule Indie.MixProject do | |
| use Mix.Project | |
| def project do | |
| [version, description] = version() | |
| [ | |
| app: :indie, | |
| version: version, | |
| id: description, |
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
| PORTNAME= kleene-daemon | |
| DISTVERSIONPREFIX= v | |
| DISTVERSION= 0.1.0 | |
| DISTVERSIONSUFFIX= -rc.2 | |
| CATEGORIES= sysutils | |
| HEXPM_VERSION= 2.1.1 | |
| MASTER_SITES+= https://builds.hex.pm/installs/1.16.0/:hex | |
| DISTFILES+= hex-${HEXPM_VERSION}.ez:hex |
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
| APEI Fatal Memory Error: | |
| Error Status: 0x400 | |
| Node: 5 | |
| Card: 0 | |
| Bank: 0 | |
| Row: 0 | |
| Column: 0 | |
| Memory Error Type: 3 | |
| Rank Number: 0 | |
| Flags: 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
| #!/usr/libexec/flua | |
| local jail = require("jail") | |
| local i = 0; | |
| for j in jail.list({"name"}) do | |
| i = i + 1 | |
| if i % 100 == 0 then | |
| print(j["name"]) |
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
| #!/bin/sh -eu | |
| # echo 'WITH_CCACHE_BUILD=yes' > /etc/src.conf | |
| # echo 'WITH_META_MODE=yes' > /etc/src-env.conf | |
| # echo 'WITH_DIRDEPS_BUILD=yes' >> /etc/src-env.conf | |
| umask 0022 | |
| cd /usr/src | |
| NOW=$(date -u +%Y%m%d-%H%M) | |
| # NCPU=$(sysctl -n hw.ncpu) | |
| NCPU=3.0 |
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
| defmodule I do | |
| def cls, do: IO.puts("\ec") | |
| def qt(m, f \\ :_) do | |
| l(m) | |
| :recon_trace.calls( | |
| {m, f, :return_trace}, | |
| {1000, 10000}, | |
| pid: :all, | |
| scope: :local, |
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
| defmodule I do | |
| def cls, do: IO.puts("\ec") | |
| def qt(m, f \\ :_) do | |
| :recon_trace.calls( | |
| {m, f, :return_trace}, | |
| {1000, 10000}, | |
| pid: :all, | |
| scope: :local, | |
| stack: :return |
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
| --- ArcanistPatchWorkflow.php.orig 2022-05-17 23:20:14.000000000 +0000 | |
| +++ ArcanistPatchWorkflow.php 2024-11-26 09:01:01.137494000 +0000 | |
| @@ -436,10 +436,7 @@ | |
| echo phutil_console_format( | |
| "<bg:blue>** %s **</bg> %s\n", | |
| pht('INFO'), | |
| - pht('Base commit is not in local repository; trying to fetch.')); | |
| - $repository_api->execManualLocal('fetch --quiet --all'); | |
| - $has_base_revision = $repository_api->hasLocalCommit( | |
| - $bundle->getBaseRevision()); |