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
| $ bioconda-utils build recipes config.yml --mulled-test --git-range master | |
| 18:20:39 BIOCONDA INFO Recipes to build: | |
| daligner | |
| 18:20:39 BIOCONDA INFO Building and testing subdag 1 of 1 (1 recipes) | |
| 18:20:40 BIOCONDA INFO Determining expected packages | |
| Setting build platform. This is only useful when pretending to be on another platform, such as for rendering necessary dependencies on a non-native platform. I trust that you know what you're doing. | |
| Adding in variants from internal_defaults | |
| Adding in variants from /tmp/miniconda/miniconda/conda_build_config.yaml | |
| Adding in variants from /tmp/miniconda/miniconda/lib/python3.6/site-packages/bioconda_utils/bioconda_utils-conda_build_config.yaml |
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
| #ifndef _WITPP_H | |
| #define _WITPP_H | |
| #pragma once | |
| //include the headers | |
| #include <ctime> | |
| #include <string> | |
| #include <sstream> | |
| #include <iostream> |
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
| from tables import nil | |
| type | |
| GNode* = int | |
| Graph[Key] = object | |
| adj: tables.Table[GNode, tables.Table[GNode,Key]] | |
| GraphRef*[Key] = ref Graph[Key] | |
| proc newGraph*[Key](): GraphRef[Key] = | |
| new(result) | |
| result.adj = tables.initTable[GNode, tables.Table[GNode,Key]]() |
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
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| type Fetcher interface { | |
| // Fetch returns the body of URL and | |
| // a slice of URLs found on that page. | |
| Fetch(url string) (body string, urls []string, err error) |
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
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| type Fetcher interface { | |
| // Fetch returns the body of URL and | |
| // a slice of URLs found on that page. | |
| Fetch(url string) (body string, urls []string, err error) |
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
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| type Fetcher interface { | |
| // Fetch returns the body of URL and | |
| // a slice of URLs found on that page. | |
| Fetch(url string) (body string, urls []string, err error) |
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
| $ cat makefile | |
| export LC_ALL | |
| LC_ALL=de_DE.UTF-8 | |
| foo: | |
| g++ -DLC_Q='"en_US.UTF-8"' -o foo.exe foo.cpp | |
| g++ -DLC_Q='"de_DE.UTF-8"' -o foo.dexe foo.cpp | |
| ./foo.exe | |
| ./foo.dexe |
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
| package males_and_females | |
| import ( | |
| //"github.com/bketelsen/skynet/skylib" // SkynetRequest/Response should be here. | |
| "os" | |
| ) | |
| type SkynetRequest struct { | |
| Params map[string]interface{} |
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
| package myStartup | |
| type MyRandomRequest []byte | |
| type MyRandomResponse struct { | |
| Len int | |
| Val string | |
| } | |
| /////////////// |
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
| var DC Registry | |
| // This is returned by Registry::Wait(). | |
| // - same contents as doozer.Event | |
| type Event struct { | |
| Rev int64 // revision of the change | |
| Path string // actual file (in case of wildcards) | |
| Body []byte // contents at Rev | |
| Flag int32 // 4=>changed-or-created; 8=>deleted |
NewerOlder