fnblinky(){letmutpin16=Gpio::new(16);letmutpin_out16=pin16.into_output();loop{pin_out16.set();spin_sleep_ms(1000);pin_out16.clear();spin_sleep_ms(1000);}}#[no_mangle]pubextern"C"fnkmain(){// FIXME: Start the shell.blinky();}
# Documentation: https://docs.brew.sh/Formula-Cookbook.html# http://www.rubydoc.info/github/Homebrew/brew/master/Formula# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!classRecoll<Formuladesc"Recoll is a desktop full-text search tool."homepage"https://www.lesbonscomptes.com/recoll/"url"https://www.lesbonscomptes.com/recoll/recoll-1.23.5.tar.gz"sha256"9b6b6941efc3e87c8325e95a69a5d0a37c022c3c45773c71dccd0fb3f364475f"depends_on"xapian"depends_on"qt"depends_on"aspell"definstallinreplace"Makefile.in","-Wl,--no-undefined -Wl,--warn-unresolved-symbols","--no-undefined --warn-unresolved-symbols"system"./configure","--disable-dependency-tracking","--disable-silent-rules","--without-x","--disable-x11mon","--with-aspell","--enable-recollq","--disable-webkit",# requires qtwebkit, which is not bundled with qt5"--prefix=#{prefix}"system"make","install"mkdirlibexecmvbin/"recoll.app",libexec/"recoll.app"endtestdo# `test do` will create, run in and delete a temporary directory.## This test will fail and we won't accept that! For Homebrew/homebrew-core# this will need to be a test that verifies the functionality of the# software. Run the test with `brew test recoll`. Options passed# to `brew install` such as `--HEAD` also need to be provided to `brew test`.## The installed folder is not in the path, so use the entire path to any# executables being tested: `system "#{bin}/program", "do", "something"`.system"false"endend
voidngx_destroy_pool(ngx_pool_t*pool){ngx_pool_t*p,*n;ngx_pool_large_t*l;ngx_pool_cleanup_t*c;for(c=pool->cleanup;c;c=c->next){if(c->handler){ngx_log_debug1(NGX_LOG_DEBUG_ALLOC,pool->log,0,"run cleanup: %p",c);c->handler(c->data);}}#if (NGX_DEBUG)/* * we could allocate the pool->log from this pool * so we cannot use this log while free()ing the pool */for(l=pool->large;l;l=l->next){ngx_log_debug1(NGX_LOG_DEBUG_ALLOC,pool->log,0,"free: %p",l->alloc);}for(p=pool,n=pool->d.next;/* void */;p=n,n=n->d.next){ngx_log_debug2(NGX_LOG_DEBUG_ALLOC,pool->log,0,"free: %p, unused: %uz",p,p->d.end-p->d.last);if(n==NULL){break;}}#endiffor(l=pool->large;l;l=l->next){if(l->alloc){ngx_free(l->alloc);}}for(p=pool,n=pool->d.next;/* void */;p=n,n=n->d.next){ngx_free(p);if(n==NULL){break;}}}
以下不是网络操作系统的是?
A. Windows NT B. OS/2 warp C. DOS D. Netware
当时我没见过 D,于是就选了。。。然后就挂了,Netware 是 Novell 开发的系统,OS/2 warp 当然是历史悠久的系统啦,而 DOS=Disk Operating System 所以没有“网络”二字。。。晕倒
以下是用作局域网的协议是?
A. TCP/IP B. IPX/SPX C. NetBEUI D. RS-232-C
TCP/IP 当然不仅限于局域网,RS-232-C 是接口,当时蒙了 B 结果就对了,白白拿了 50 分哈哈哈。IPX/SPX 是 Novell 设计用在 Netware 系统上的局域网协议,NetBEUI 则是 NetBIOS 的一个历史遗留的一个“别称”。