search for: testconfiguration

Displaying 4 results from an estimated 4 matches for "testconfiguration".

Did you mean: hostconfiguration
2009 Oct 13
7
Unicorn Nginx Issue
I''ve setup nginx with this server { listen 80; server_name unicorn.local; location / { proxy_pass http://unicorn; } } upstream unicorn { server unix:/Users/mattmongeau/projects/test/unicorn/tmp/sockets/unicorn.sock; } When I run unicorn_rails -c config/unicorn.rb -E development I can access the application just fine on unicorn.local When I run unicorn_rails -c
2019 Dec 11
4
modification on lnt to recognize new architecture
...merge with lnt (https://github.com/llvm/llvm-lnt)? I checked lists.llvm.org mailing lists, but it is not clear to me. Thanks in advance. ----------- diff --git a/lnt/tests/nt.py b/lnt/tests/nt.py index 4ce6647..ce37687 100644 --- a/lnt/tests/nt.py +++ b/lnt/tests/nt.py @@ -420,6 +420,8 @@ class TestConfiguration(object): llvm_arch = 'Sparc' elif arch in ('mips', 'mipsel', 'mips64', 'mips64el'): llvm_arch = 'Mips' + elif arch in ('ve'): + llvm_arch = 'VE' if llvm...
2005 Dec 19
2
Network Loading of freeBSD
I have spent a couple of days and quite some time during the nights googling and experimenting in pursuing subject objective and I feel like failing, if I cannot get competent help: My objective: boot a FreeBSD-package over the network by Systems lacking HW-Support for PXE My Testconfiguration: Server IBM-PC300 Client Siemes Fujitsu ErgoPro with freeBSD6.0 installed Network card in client intel82558, which I believe to be sufficiently equal with 82559er (hence covered by eepro100) when producing the boot-floppy Status achieved: # Bootfloppy on ErgoPro boots Etherboot # Etherbo...
2013 Sep 20
3
[PATCH] preload_app can take an optional block for warmup
--- lib/unicorn/configurator.rb | 19 ++++++++++++++++--- lib/unicorn/http_server.rb | 3 +++ test/unit/test_configurator.rb | 8 ++++++++ 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/lib/unicorn/configurator.rb b/lib/unicorn/configurator.rb index 0d0eac7..a0ae576 100644 --- a/lib/unicorn/configurator.rb +++ b/lib/unicorn/configurator.rb @@ -441,9 +441,22 @@ class