Tutorial by Topics: a

MPI is a standard, not a programming library. There are many implementations of the standard. The most common open source ones are MPICH and Open MPI. There are many derivatives of these two libraries that are either open source or commercial (or both). It's important to know which implementation...
This section provides an overview of what puppet is, and why a developer might want to use it. It should also mention any large subjects within puppet, and link out to the related topics. Since the Documentation for puppet is new, you may need to create initial versions of those related topics. ...
Type erasure is a set of techniques for creating a type that can provide a uniform interface to various underlying types, while hiding the underlying type information from the client. std::function<R(A...)>, which has the ability to hold callable objects of various types, is perhaps the best k...
::(opt) new (expression-list)(opt) new-type-id new-initializer(opt) ::(opt) new (expression-list)(opt) (type-id) new-initializer(opt) ::(opt) delete cast-expression ::(opt) delete [] cast-expression std::unique_ptr<type-id> var_name(new type-id(opt)); //C++11 std::shared_ptr<type-id...
This section provides an overview of what sockets is, and why a developer might want to use it. It should also mention any large subjects within sockets, and link out to the related topics. Since the Documentation for sockets is new, you may need to create initial versions of those related topic...
ParameterDetails-n <num_procs>The number of MPI processes to start up for the job
Summary from the Documentation From http://docs.aws.amazon.com/AmazonS3/latest/dev/Welcome.html Amazon Simple Storage Service is storage for the Internet. It is designed to make web-scale computing easier for developers. Amazon S3 has a simple web services interface that you can use to st...
JSTL (JSP Standard Tag Library) is a JSP based standard tag library which offers <c:xxx> tags to control the flow in the JSP page, <fmt:xxx> tags for date/number formatting and internationalization facilities and several ${fn:xxx()} utility EL functions. Note that JSTL also offers SQL...
This topic displays best practices that the community has learned over time.
Parameter NameDescriptionactivityItemsContains array of object to perform the activity. This array must not be nil and must contain at least one object.applicationActivitiesAn array of UIActivity objects representing the custom services that your application supports. This parameter can be nil. ...
Scraping refers to using a computer to retrieve the code of a webpage. Once the code is obtained, it must be parsed into a useful form for further use in R. Base R does not have many of the tools required for these processes, so scraping and parsing are typically done with packages. Some packages...
re.findAllIn(s: CharSequence): MatchIterator re.findAllMatchIn(s: CharSequence): Iterator[Match] re.findFirstIn(s: CharSequence): Option[String] re.findFirstMatchIn(s: CharSequence): Option[Match] re.findPrefixMatchIn(s: CharSequence): Option[Match] re.findPrefixOf(s: CharSequence): Option[St...

Page 79 of 320