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
| <!DOCTYPE html> | |
| <html> | |
| <meta charset=utf-8> | |
| <style> | |
| body { | |
| font-size: 1.5rem; | |
| line-height: 1.4; | |
| max-width: 40rem; | |
| } | |
| </style> |
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
| dhall-to-cabal: | |
| ↳ ../../dhall/addStandardExtensionsAndWarnings | |
| package : { author : Text, benchmarks : List { benchmark : { os : < AIX : {} | Android : {} | DragonFly : {} | FreeBSD : {} | Ghcjs : {} | HPUX : {} | HaLVM : {} | Hurd : {} | IOS : {} | IRIX : {} | Linux : {} | NetBSD : {} | OSX : {} | OpenBSD : {} | OtherOS : { _1 : Text } | Solaris : {} | Windows : {} > → Bool, arch : < Alpha : {} | Arm : {} | Hppa : {} | I386 : {} | IA64 : {} | JavaScript : {} | M68k : {} | Mips : {} | OtherArch : { _1 : Text } | PPC : {} | PPC64 : {} | Rs6000 : {} | S390 : {} | SH : {} | Sparc : {} | Vax : {} | X86_64 : {} > → Bool, impl : < GHC : {} | GHCJS : {} | HBC : {} | HaskellSuite : { _1 : Text } | Helium : {} | Hugs : {} | JHC : {} | LHC : {} | NHC : {} | OtherCompiler : { _1 : Text } | UHC : {} | YHC : {} > → (∀(VersionRange : Type) → ∀(anyVersion : VersionRange) → ∀(noVersion : VersionRange) → ∀(thisVersion : (∀(Version : Type) → ∀(v : Text → Version) → Version) → VersionRange) → ∀(notThisVersion : (∀(Version : |
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
| let prelude = ./dhall/prelude.dhall | |
| in let types = ./dhall/types.dhall | |
| in prelude.defaults.Package | |
| ⫽ { cabal-version = | |
| prelude.v "2.0" | |
| , name = | |
| "wai-servlet" | |
| , version = |
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
| let prelude = ./dhall/prelude.dhall | |
| in let types = ./dhall/types.dhall | |
| in prelude.defaults.Package | |
| ⫽ { cabal-version = | |
| prelude.v "2.0" | |
| , name = | |
| "wai-servlet" | |
| , version = |
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
| resolver: ghc-8.2.2 | |
| packages: | |
| - . | |
| - thyme/ | |
| flags: | |
| cassava: | |
| "bytestring--lt-0_10_4": false | |
| time-locale-compat: | |
| old-locale: false | |
| transformers-compat: |
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
| REFTEST INFO | Running with e10s: True | |
| REFTEST INFO | Application command: /home/quasicomputational/src/mozilla-central/obj-x86_64-pc-linux-gnu/dist/bin/firefox -marionette -profile /tmp/tmpy8pdwJ.mozrunner | |
| 1545388244067 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/ | |
| 1545388244069 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader* | |
| 1545388245345 Marionette TRACE Received observer notification profile-after-change | |
| 1545388246271 Marionette TRACE Received observer notification command-line-startup | |
| 1545388246273 Marionette TRACE Received observer notification nsPref:changed | |
| 1545388246274 Marionette DEBUG Init aborted (running=false, enabled=true, finalUIStartup=false) | |
| 1545388247952 Marionette TRACE Received observer notification toplevel-window-ready | |
| 1545388253942 Marionette TRACE Received observer notificati |
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
| REFTEST INFO | Running with e10s: True | |
| REFTEST INFO | Application command: /home/quasicomputational/src/mozilla-central/obj-x86_64-pc-linux-gnu/dist/bin/firefox -marionette -profile /tmp/tmpmUeJC2.mozrunner | |
| 1545390073149 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: resource://pdf.js/ | |
| 1545390073151 [email protected] WARN Loading extension '[email protected]': Reading manifest: Invalid host permission: about:reader* | |
| 1545390074374 Marionette TRACE Received observer notification profile-after-change | |
| 1545390075028 Marionette TRACE Received observer notification command-line-startup | |
| 1545390075029 Marionette TRACE Received observer notification nsPref:changed | |
| 1545390075030 Marionette DEBUG Init aborted (running=false, enabled=true, finalUIStartup=false) | |
| 1545390076326 Marionette TRACE Received observer notification toplevel-window-ready | |
| 1545390081957 Marionette TRACE Received observer notificati |
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
| <!DOCTYPE html> | |
| <style> | |
| html { | |
| background: yellow; | |
| font-size: 10rem; | |
| padding: 1rem; | |
| } | |
| body { | |
| background: red; | |
| } |
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
| browser.browserAction.onClicked.addListener(() => { | |
| browser.tabs.query({ active: true }) | |
| .then((tabs) => { | |
| for (tab of tabs) { | |
| browser.tabs.update(tab.id, { url: "/test.html" }); | |
| } | |
| }); | |
| }); |
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
| v11.6.0 | |
| 6.6.0 | |
| /home/quasicomputational/src/examples/nyc-merge-missing-parent | |
| ├─┬ [email protected] | |
| │ ├── [email protected] | |
| │ ├── [email protected] | |
| │ ├─┬ [email protected] | |
| │ │ └── [email protected] | |
| │ ├── [email protected] | |
| │ ├── [email protected] |
OlderNewer