text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
Title Page No. Chapter 1 Introduction/Objective 3 Chapter 2 System Analysis 2.1 Identification on Need 2.2 Preliminary Investigation 2.3 Feasibility Study 2.4 Project Planning 2.5 Project Scheduling 2.6 Software Requirements Specification 2.7 Software Engineering Paradigm applied. 2.8 Use Case Diagrams, ER Diagrams Cha...
https://www.scribd.com/document/221733126/final-DoctorFinder-report-1-docx
CC-MAIN-2018-39
en
refinedweb
a model function (or model_fn) implements the ML algorithm. the only difference between working with pre-made Estimators and custom Estimators is: with pre-made Estimators, someone already wrote the model function for you with custom Estimators, you must write the model function the model function we'll use has the fol...
https://blog.csdn.net/XianxinMao/article/details/80334859
CC-MAIN-2018-39
en
refinedweb
: import java.lang.reflect.*; public class GetConstructorsExample { public static void main(String[] args){ Class cls = java.lang.String.class; Constructor constructor = cls.getConstructors()[0]; System.out.println(constructor.getName()); } } The above code takes the first element of the array returned by getConstructo...
https://www.java-tips.org/java-lang/2511-how-to-retrieve-the-constructors-of-a-java-class.html
CC-MAIN-2018-39
en
refinedweb
Contains settings that define an individual column within list editors. public class MVCxListBoxColumn : ListBoxColumn Public Class MVCxListBoxColumn Inherits ListBoxColumn The MVCxListBoxColumn class implements the functionality of a list column. This functionality is used by list editors such as the ComboBox and List...
https://documentation.devexpress.com/AspNet/DevExpress.Web.Mvc.MVCxListBoxColumn.class
CC-MAIN-2018-39
en
refinedweb
Provided by: lam-mpidoc_7.1.4-6build1_all NAME MPI_Waitsome - Waits for some given communications to complete SYNOPSIS #include <mpi.h> int MPI_Waitsome(int count, MPI_Request* reqs, int *ndone, int *indices, MPI_Status *stats) INPUT PARAMETERS incount - length of array_of_requests (integer) reqs - array of requests (a...
http://manpages.ubuntu.com/manpages/eoan/man3/MPI_Waitsome.3.html
CC-MAIN-2020-40
en
refinedweb
Add a Custom Event Handler You will learn - How to write a custom event handler for CAP Java - Which event handler classes and methods are available In the following tutorials, you’ll learn that the CAP Java runtime can handle all CRUD events (create, read, update, and delete) triggered by OData requests out of the box...
https://developers.sap.com/tutorials/cp-cap-java-custom-handler.html
CC-MAIN-2020-40
en
refinedweb
PROBLEM LINK: Author: Vikas Yadav Tester: Keshav Kumar Editorialist: Vikas Yadav DIFFICULTY: EASY PREREQUISITES: PROBLEM: Find the number of ways of arranging the letters of given string such that all the vowels always come together. QUICK EXPLANATION: Count the number of Vowels and Consonants in the given string. If t...
https://discuss.codechef.com/t/cmeet-editorial/74206
CC-MAIN-2020-40
en
refinedweb
This is part of the Ext JS to React blog series. You can review the code from this article on the Ext JS to React Git repo. The carousel component, popularized in Sencha Touch and now available in Ext JS in the modern toolkit, is similar to the tab panel in that views in a card layout are shown and hidden using a navig...
https://moduscreate.com/blog/ext-js-to-react-carousel/
CC-MAIN-2020-40
en
refinedweb
A subset of a mesh represented by a range of acceptable attribute values. More... #include <vtkMultiThreshold.h> A subset of a mesh represented by a range of acceptable attribute values. Definition at line 337 of file vtkMultiThreshold.h. Does the specified range fall inside the interval? For cell-centered attributes, ...
https://vtk.org/doc/nightly/html/classvtkMultiThreshold_1_1Interval.html
CC-MAIN-2020-40
en
refinedweb
Raspberry Pi Cluster Node – 07 Sending data to the Slave This post builds on my previous posts in the Raspberry Pi Cluster series by adding the ability to receive data from the master. In this update, I will be adding a way for the slave to request data and have it returned by the master. Moving machine details into it...
https://chewett.co.uk/blog/1781/raspberry-pi-cluster-node-07-sending-data-to-the-slave/
CC-MAIN-2020-40
en
refinedweb
So Blazor WASM has arrived with the promise of enabling us all to build modern web applications using C# instead of javascript. But just how quickly can you go from dotnet new blazorwasm to something useful/interesting appearing in the browser? What better way to find out than to take the Marvel Developer API and use i...
https://jonhilton.net/blazor-wasm-calling-a-api/
CC-MAIN-2020-40
en
refinedweb
thing in that list i.e., automated tweeting. I tweet quite frequently and I would love to have a way of automating this as well. And that's exactly what we're going to do today. We are tweeting using python. We'll use a python library called tweepy for this. Tweepy is a simple, easy to use library for accessing Twitte...
http://www.freblogg.com/2017/12/tweeting-with-python-and-tweepy.html
CC-MAIN-2020-40
en
refinedweb
Microsoft SQL Server Training Classes in Terre Haute, Indiana Learn Microsoft SQL Server in Terre Haute, Indiana and surrounding areas via our hands-on, expert led courses. All of our classes either are offered on an onsite, online or public instructor led basis. Here is a list of our current Microsoft SQL Server relat...
https://www.hartmannsoftware.com/Training/MSDB/Terre-Haute-Indiana
CC-MAIN-2020-40
en
refinedweb
. Android provides standard accessibility services, including TalkBack, and developers can create and distribute their own services. This document explains the basics of building an accessibility service. Note: Your app should use platform-level accessibility services only for the purpose of helping users with disabili...
https://developer.android.com/guide/topics/ui/accessibility/service?hl=ru
CC-MAIN-2020-40
en
refinedweb
We value your feedback. Take our survey and automatically be enter to win anyone of the following: Yeti Cooler, Amazon eGift Card, and Movie eGift Card! Become a Premium Member and unlock a new, free course in leading technologies each month. public static int CurrentLocaleId { get { //return CurrentCulture.LCID; if (S...
https://www.experts-exchange.com/questions/23775147/Why-do-I-get-Object-Null-reference-here.html
CC-MAIN-2017-30
en
refinedweb
Here is a listing of tough C questions on “Line Input & Output” along with answers, explanations and/or solutions: 1. What is the size of array “line” used in fgets(line, maxline, *fp) function? a) maxline – 1 b) maxline c) maxline + 1 d) Size is dynamic View Answer 2. The following function int fputs(char *line, FILE ...
http://www.sanfoundry.com/tough-c-questions-line-input-output/
CC-MAIN-2017-30
en
refinedweb
Author: harsh Date: Sat Nov 19 21:22:22 2011 New Revision: 1204077 URL: Log: HADOOP-7297. Remove docs for CN and BN, as they aren't present. (harsh) Modified: hadoop/common/branches/branch-0.20-security/CHANGES.txt hadoop/common/branches/branch-0.20-security/src/docs/src/documentation/content/xdocs/hdfs_user_guide.xml ...
http://mail-archives.apache.org/mod_mbox/hadoop-common-commits/201111.mbox/%3C20111119212223.78213238899C@eris.apache.org%3E
CC-MAIN-2017-30
en
refinedweb
I have an Apache Spark cluster and a RabbitMQ broker and I want to consume messages and compute some metrics using the pyspark.streaming StreamingContext This solution uses pika asynchronous consumer example and socketTextStream method from Spark Streaming .pyfile Consumerclass Under if __name__ == '__main__': we need ...
https://codedump.io/share/IesHfDnumqK1/1/how-to-implement-a-rabbitmq-consumer-using-pyspark-streaming-module
CC-MAIN-2017-30
en
refinedweb
Download presentation Presentation is loading. Please wait. Published byLynne Jones Modified over 4 years ago 2 Many algorithms appear over and over again, in program after program. These are called standard algorithms You are required to know about 5 of these algorithms: Input Validation (Int 2) Linear search Counting...
https://slideplayer.com/slide/4776144/
CC-MAIN-2020-10
en
refinedweb
Coding the Driver In addition to coding the individual states as classes, you also need to create a driver for the class. Like the states, the driver is derived from a class in the framework. Here’s a sample driver; first, the class definition: class Calculator : public FSMDriver { public: queue<CalcStackItem *> PostFi...
http://www.informit.com/articles/article.aspx?p=463940&seqNum=5
CC-MAIN-2020-10
en
refinedweb
An outlier removal assignment Project description Library for removing outliers from pandas dataframe PROJECT 2, UCS633 - Data Analysis and Visualization Takes two inputs - filename of input csv, intended filename of output csv. Installation pip install navnish For use via command line navnish in.csv out.csv For use in...
https://pypi.org/project/navnish/
CC-MAIN-2020-10
en
refinedweb
Python interface to the Google WebRTC Voice Activity Detector (VAD) [released with binary wheels!] Project description py-webrtcvad-wheels This is a python interface to the WebRTC Voice Activity Detector (VAD). It is compatible with Python 2 and Python 3. It is forked from wiseman/py-webrtcvad to provide releases with ...
https://pypi.org/project/webrtcvad-wheels/
CC-MAIN-2020-10
en
refinedweb
Wait for a notification that a monitor's state has changed. Syntax #include <prcmon.h> PRStatus PR_CWait( void *address, PRIntervalTime timeout); Parameters The function has the following parameters: address - The address of the protected object--the same address previously passed to PR_CEnterMonitor. timeout - The amo...
https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR/Reference/PR_CWait
CC-MAIN-2020-10
en
refinedweb
Represents the base class for classes which provide the image options for a chart or its elements. Namespace: DevExpress.XtraCharts Assembly: DevExpress.XtraCharts.v19.2.dll public class ChartImage : ChartElement, ICustomTypeDescriptor Public Class ChartImage Inherits ChartElement Implements ICustomTypeDescriptor The C...
https://docs.devexpress.com/CoreLibraries/DevExpress.XtraCharts.ChartImage
CC-MAIN-2020-10
en
refinedweb
tensorflow:: ops:: TensorArrayGrad #include <data_flow_ops.h> Creates a TensorArray for storing the gradients of values in the given handle. Summary. )
https://www.tensorflow.org/api_docs/cc/class/tensorflow/ops/tensor-array-grad.html?hl=it
CC-MAIN-2020-10
en
refinedweb
Previous: struct that contains the data fields required by the class, and then call the class function to indicate that an object is to be created from the struct. Creating a child of an existing object is done by creating an object of the parent class and providing that object as the third argument of the class functi...
https://octave.org/doc/v4.0.1/Inheritance-and-Aggregation.html
CC-MAIN-2020-10
en
refinedweb
Introduction to Inertia.js, we'll look at Inertia's viability in the nearest future, the advantage it will have, and how to use it in a Laravel and Vue project. What is Inertia.js? Inertia is a library that combines the best of both server-side rendering (SSR) and client-side rendering (CSR) by allowing developers to b...
https://morioh.com/p/f53022ec18be
CC-MAIN-2020-10
en
refinedweb
Rubycritic Sublime plugin to make a rubycritic assessment of current file, and automatically open it in the browser Details Installs - Total 3K - Win 0 - Mac 2K - Linux 1K Readme - Source - raw.githubusercontent.com SublimeRubycritic Installation Before using this plugin, you must ensure that rubycritic is installed on...
https://packagecontrol.io/packages/Rubycritic
CC-MAIN-2020-10
en
refinedweb
Week 1 Uncertainty and Probability More Machine Learning Motivation Neil’s Inaugural lecture is available here. Probability Review If you feel your basic probability needs brushing up, you might want to watch this lecture from 2012-13. It covers basic concepts of probability. Reading for Probability Review See also app...
http://inverseprobability.com/mlai2013/week1.html
CC-MAIN-2017-43
en
refinedweb
From: Namjae Jeon <namjae.jeon@xxxxxxxxxxx>. Signed-off-by: Namjae Jeon <namjae.jeon@xxxxxxxxxxx> Signed-off-by: Ashish Sangwan <a.sangwan@xxxxxxxxxxx> Reviewed-by: Dave Chinner <dchinner@xxxxxxxxxx> --- Changelog v4: - Move block size aligned check from VFS layer to FS specific layer - update comments for FALLOC_FL_CO...
http://oss.sgi.com/archives/xfs/2014-02/msg00549.html
CC-MAIN-2017-43
en
refinedweb
Question: I am using the python script for separating the domain from the respective emails and then grouping emails as per their respective domain. The following script work for me: #!/usr/bin/env python3 from operator import itemgetter from itertools import groupby import os import sys dr = sys.argv[1] for f in os.li...
http://www.toontricks.com/2017/10/ubuntu-python-script-how-to-chop-output.html
CC-MAIN-2017-43
en
refinedweb
public class ScriptFreeTLV extends TagLibraryValidator A TagLibraryValidator for enforcing restrictions against the use of JSP scripting elements. This TLV supports four initialization parameters, for controlling which of the four types of scripting elements are allowed or prohibited: The default value for all for init...
http://docs.oracle.com/javaee/7/api/javax/servlet/jsp/jstl/tlv/ScriptFreeTLV.html
CC-MAIN-2016-22
en
refinedweb
Yea, it looks straight-forward to implement. The range pattern is kind of interesting and the callbacks would be useful. Personally, I dislike the global (single) callback style. I would prefer to see the standard use callbacks bound to a given vibration function. On Fri, Oct 28, 2011 at 11:10 AM, Brian LeRoux <b@brian...
http://mail-archives.apache.org/mod_mbox/incubator-callback-dev/201110.mbox/%3CCAP7NMPrFXFWq+Zj5baizCaNfgVa4cHhc_OEKHUH2uscAbQLYqQ@mail.gmail.com%3E
CC-MAIN-2016-22
en
refinedweb
Hi!Hi! I'm very new to javascript and i'm trying to write a script that allows me to: -add to and substract from a value called temperaturethrough methods warmerand cooler -read temperature -set a maximum and minimum value for temperature this is what i've come up with: The code worked fine until I added the conditions...
http://www.codingforums.com/java-and-jsp/282015-conditions-error.html?s=ac24cd2293a57ac2166296e80d9b8d3a
CC-MAIN-2016-22
en
refinedweb
.NET Remoting with Events in Visual C++ I need the static_cast<> because ArrayList is a collection of Object references, so I need to cast them back to Greeter references as they come out of the collection. If you find this code ugly, you could use an STL collection; just remember the gcroot template that enables you t...
http://www.developer.com/net/cplus/article.php/10919_3339611_2/NET-Remoting-with-Events-in-Visual-C.htm
CC-MAIN-2016-22
en
refinedweb
- Author: - jerzyk - Posted: - December 11, 2007 - Language: - Python - Version: - .96 - view request post - Score: - -2 (after 6 ratings) This will return HTTP 405 if request was not POSTed. same way you can forbide POST request, change 'POST' to 'GET' Decorators provided for your convenience. More like this - Get boo...
https://djangosnippets.org/snippets/505/
CC-MAIN-2016-22
en
refinedweb
Basic authentication enables you to require credentials, in the form of a username and password, to make a transaction. These credentials are transmitted as plain text. The username and password are encoded as a sequence of base-64 characters before transmission to ensure privacy. So, for example, the user name “Fred” ...
http://docs.oracle.com/cd/E19182-01/820-0595/ghlft/index.html
CC-MAIN-2016-22
en
refinedweb
MLPutReal32() This feature is not supported on the Wolfram Cloud. This feature is not supported on the Wolfram Cloud. DetailsDetails - The argument x is typically declared as float in external programs, but must be declared as double in MLPutReal32() itself in order to work even in the absence of C prototypes. - MLPutR...
http://reference.wolfram.com/language/ref/c/MLPutReal32.html
CC-MAIN-2016-22
en
refinedweb
en.wikipedia.org/wiki/Rule_of_72 In finance, the A shortcut to estimate the number of years required to double your money at a given annual rate of return (see compound annual growth rate). The Do you know the betterexplained.com/articles/the-rule-of-72/ Jan 25, 2007 genxfinance.com/use-the-rule-of-72-to-understand-com...
http://www.ask.com/web?q=Rule+of+72&oo=2603&o=0&l=dir&qsrc=3139&gc=1&qo=popularsearches
CC-MAIN-2016-22
en
refinedweb
Hacking / Customizing a Kobo Touch ebook reader: Part II, Python I wrote last week about tweaking a Kobo e-reader's sqlite database by hand. But who wants to remember all the table names and type out those queries? I sure don't. So I wrote a Python wrapper that makes it much easier to interact with the Kobo databases. ...
http://shallowsky.com/blog/tags/ebook/
CC-MAIN-2016-22
en
refinedweb
PROfile All time reputation: 80 Achievement johnloy's Recent JavaScript Snippets - All / - JavaScript / - HTML / - PHP / - CSS / - Ruby / - Objective C « Prev [Page 1 of 1] Next » JavaScript javascript Way in JS to call singleton library methods within a namespace without fully qualifying the namespace in references po...
http://snipplr.com/users/johnloy/language/javascript
CC-MAIN-2016-22
en
refinedweb
Fun with Modern C++ and Smart Pointers modern c++ smart pointers unique_ptr shared_ptr modern C++ _________________ This is a journal entry not an article so I feel like I can ramble a bit before I get to the main point. I have been programming for some time now and got my CS degree way back in 2003, but in 2007, I dec...
http://www.gamedev.net/blog/1670/entry-2256432-fun-with-modern-c-and-smart-pointers/
CC-MAIN-2016-22
en
refinedweb
Difference between revisions of "EclipseLink/Development/404452" Revision as of 15:47, 17 September 2013 Contents - 1 Planning: MOXy JSON Schema Generation - 2 Overview - 3 Phases.); } Phases The development of this feature will need to be split into multiple phases. The current EclipseLink JSON support is insufficient...
http://wiki.eclipse.org/index.php?title=EclipseLink/Development/404452&diff=prev&oldid=347418
CC-MAIN-2016-22
en
refinedweb
I am reading in a text file and basically, when a line has the user defined string, it prints the line and counts each time that word occurred. However, according to Notepad++, the word "the" should occur 3,781 times, but when I run the program I only get 3,404 times... and I believe it has to do with the string member...
http://www.dreamincode.net/forums/topic/284139-quick-logic-question/
CC-MAIN-2016-22
en
refinedweb
URL Loading Introduction This section describes how to use the URLLoader API to load resources such as images and sound files from a server into your application. The example discussed in this section is included in the SDK in the directory examples/api/url_loader. Reference information For reference information relate...
https://developer.chrome.com/native-client/devguide/coding/url-loading
CC-MAIN-2016-22
en
refinedweb
. How to Get Type Name without full namespace in C# ? If you want to find the full name of the type in C# , you can use the typeof keyword to do it as shown in the below code snippet. var str1 = typeof (Author).ToString(); The problem with this method is that it displays the full name along with the namespace. If you w...
http://developerpublish.com/
CC-MAIN-2016-22
en
refinedweb
CPAN::Testers::Metabase - Instantiate a Metabase backend for CPAN Testers version 1.999002 use CPAN::Testers::Metabase::Demo; # defaults to directory on /tmp my $mb = CPAN::Testers::Metabase::Demo->new; $mb->public_librarian->search( %search spec ); The CPAN::Testers::Metabase namespace is intended to span a collection...
http://search.cpan.org/~dagolden/CPAN-Testers-Metabase-1.999002/lib/CPAN/Testers/Metabase.pm
CC-MAIN-2016-22
en
refinedweb
On Mon, Apr 1, 2013 at 11:16 PM, Daniel Pocock <daniel@pocock.com.au> wrote: > On 01/04/13 22:04, John Paul Adrian Glaubitz wrote: >> On 04/01/2013 09:59 PM, Daniel Pocock wrote: >>> Agreed, but that doesn't complete the picture, as libgl1-mesa-glx >>> doesn't depend on libgl1-mesa-dri: >>> >>> $ apt-cache depends libg...
https://lists.debian.org/debian-devel/2013/04/msg00090.html
CC-MAIN-2016-22
en
refinedweb
This chapter provides guidelines and best practices for designing and securing Oracle Application Development Framework (Oracle ADF) view objects and other supporting business component objects for use by Oracle Business Intelligence Applications. This chapter includes the following sections: Section 59.1, "Introductio...
http://docs.oracle.com/cd/E25054_01/fusionapps.1111/e15524/adv_bi_vos.htm
CC-MAIN-2016-22
en
refinedweb
import random import time board = [0,1,2, 3,4,5, 6,7,8] def show(): print (board[0],"|",board[1],"|",board[2]) print ("----------") print (board[3],"|",board[4],"|",board[5]) print ("----------") print (board[6],"|",board[7],"|",board[8]) def checkLine(char, spot1, spot2, spot3): if board[spot1] == char and board[spot2...
http://www.dreamincode.net/forums/topic/293644-restart-my-program/page__pid__1712080__st__0
CC-MAIN-2016-22
en
refinedweb
Answered by: how to return null from a constructor say, i a m trying to do something like: class something something(streamreader){ if (wrong format or end of file) caller receives null as result else build object from what has been read in file } i tried 'return null', but it says it can not do that since a constructo...
https://social.msdn.microsoft.com/Forums/en-US/1450ed84-277f-46d3-b2ea-8352986f877c/how-to-return-null-from-a-constructor?forum=csharplanguage
CC-MAIN-2016-22
en
refinedweb
#include <sys/types.h> #include <sys/stream.h> #include <sys/stropts.h> #include <sys/ddi.h> #include <sys/sunddi.h> int qassociate(queue_t *q, int instance Solaris DDI specific (Solaris DDI). Pointer to a queue(9S) structure. Either the read or write queue can be used. Driver instance number or -1. The qassociate() fu...
http://docs.oracle.com/cd/E36784_01/html/E36886/qassociate-9f.html
CC-MAIN-2016-22
en
refinedweb
java.lang.Object org.springframework.security.acl.basic.BasicAclProviderorg.springframework.security.acl.basic.BasicAclProvider public class BasicAclProvider Retrieves access control lists (ACL) entries for domain object instances from a data access object (DAO). This implementation will provide ACL lookup services for...
http://docs.spring.io/spring-security/site/docs/2.0.x/apidocs/org/springframework/security/acl/basic/BasicAclProvider.html
CC-MAIN-2016-22
en
refinedweb
Voice Interface and User Experience Testing for a Custom Skill Voice interface and user experience testing focuses on: - Testing the user experience to ensure that the skill is aligned with several key features of Alexa that help create a great experience for customers. Reviewing the intent schema, the set of sample ut...
https://developer.amazon.com/docs/custom-skills/voice-interface-and-user-experience-testing-for-a-custom-skill.html
CC-MAIN-2017-43
en
refinedweb
Opened 11 years ago Closed 11 years ago #2363 closed enhancement (fixed) [patch] Tighten subclass check at top of db.models.base.ModelBase.__new__. Description The "not bases or bases == (object,)" check at the top of ModelBase.new assumes that if the class-to-be has any bases, that one of them will be Model. It croppe...
https://code.djangoproject.com/ticket/2363
CC-MAIN-2017-43
en
refinedweb
Classifications were introduced in the Atlas Types section as one of the composite metatypes, along with Entities and Structs. Classifications share similarities with these other composite metatypes in that they define a Type and have a uniquely identifiable name in the type system. They can also have a set of attribut...
https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.6.1/bk_data-governance/content/atlas_catalog_metadata_classifications.html
CC-MAIN-2017-43
en
refinedweb
When two pure tones are nearly in tune, you hear beats. The perceived pitch is the average of the two pitches, and you hear it fluctuate as many times per second as the difference in frequencies. For example, an A 438 and an A 442 together sound like an A 440 that beats four times per second. (Listen) As the difference...
https://www.johndcook.com/blog/2016/03/30/acoustic-roughness/
CC-MAIN-2017-43
en
refinedweb
...one of the most highly regarded and expertly designed C++ library projects in the world. — Herb Sutter and Andrei Alexandrescu, C++ Coding Standards namespace boost { class none_t {/* see below */}; const none_t none (/* see below */); } // namespace boost Class none_t is meant to serve as a tag for selecting approp...
http://www.boost.org/doc/libs/1_65_0/libs/optional/doc/html/optional/reference.html
CC-MAIN-2017-43
en
refinedweb
A markdown text extractor written in Rust Project description The stupid simple rust markdown text puller Basically, this has one function and one function alone. It takes all the human readable text from Markdown, and extracts it. That's it. Why does this library exist? I needed it for a project, and pip was the easie...
https://pypi.org/project/rust-markdown-text-puller/
CC-MAIN-2020-05
en
refinedweb
Repository: kafka Updated Branches: refs/heads/trunk 64bab8052 -> 3d7e88456 MINOR: Rephrase Javadoc summary for ConsumerRecord The original Javadoc description for `ConsumerRecord` is slightly confusing in that it can be read in a way such that an object is a key value pair received from Kafka, but (only) consists of t...
http://mail-archives.eu.apache.org/mod_mbox/kafka-commits/201612.mbox/%3C0f617ebcdf764d63bbbf0b043aca55c3@git.apache.org%3E
CC-MAIN-2020-05
en
refinedweb
location_background_plugin 0.1.0+3 Flutter Background Execution Sample - LocationBackgroundPlugin # An example Flutter plugin that showcases background execution using iOS location services. This plugin is not being actively maintained and is not for production use. An archive of previous versions can be found in the F...
https://pub.dev/packages/location_background_plugin
CC-MAIN-2020-05
en
refinedweb
prompter_wa 0.0.1 example/main.dart import 'package:prompter_wa/prompter_wa.dart'; void main(){ var options = [ Option("I want red","#f00"), Option("I want blue","#00f"), ]; final prompter = Prompter(); String colorCode = prompter.askMultiple("Select a color", options); bool choice = prompter.askBoolean("Do you like Da...
https://pub.dev/packages/prompter_wa
CC-MAIN-2020-05
en
refinedweb
Picking apart some cool code to draw pretty pictures with code that fits into 3 tweets: This comes from a codegolf question here: Tweetable Mathematical Art. Slides: Tweetable Art Code. Picking apart some cool code to draw pretty pictures with code that fits into 3 tweets: This comes from a codegolf question here: Twee...
https://www.artificialworlds.net/blog/category/plain-c/
CC-MAIN-2020-05
en
refinedweb
pthread_abort() Unconditionally terminate the target thread Synopsis: #include <pthread.h> int pthread_abort( pthread_t thread ); Arguments: - thread - The ID of the thread that you want to terminate, which you can get when you call pthread_create() or pthread_self() . Library: libc Use the -l c option to qcc to link a...
https://developer.blackberry.com/playbook/native/reference/com.qnx.doc.neutrino.lib_ref/topic/p/pthread_abort.html
CC-MAIN-2020-05
en
refinedweb
Analytics Collecting analytics data for your app can be accomplished with Amazon Pinpoint contains your app .xcodeprojfile), as follows. - The Podfilethat you configure to install the AWS Mobile SDK must contain: platform :ios, '9.0' target 'YourAppName' do use_frameworks! pod 'AWSPinpoint', '~> 2.12.0' pod 'AWSMobileC...
https://aws-amplify.github.io/docs/sdk/ios/analytics
CC-MAIN-2020-05
en
refinedweb
Github user mxmrlv commented on a diff in the pull request: --- Diff: aria/orchestrator/workflows/builtin/utils.py --- @@ -14,33 +14,38 @@ # limitations under the License. from ..api.task import OperationTask +from .. import exceptions -def create_node_task(operation_name, node): +def create_node_task(interface_name, o...
http://mail-archives.apache.org/mod_mbox/ariatosca-dev/201703.mbox/%3C20170319133037.06661F4B61@git1-us-west.apache.org%3E
CC-MAIN-2017-39
en
refinedweb
I've been having a discussion with some of my colleagues regarding how good a job we've done (and are doing) at explaining what WinFX actually contains. In the interests of keeping everyone on the same page, I'm talking about a description of WinFX like this: WinFX is the .NET Framework 2.0 with the addition of four sp...
https://blogs.msdn.microsoft.com/ianm/2006/04/19/what-is-winfx-anyway/
CC-MAIN-2017-39
en
refinedweb
Windows Explorer, the Delete method may not be able to delete it. The following code example deletes the specified directory or throws an exception if there are subdirectories. using System; using System.IO; class Test { public static void Main() { // Specify the directories you want to manipulate. string path = @"c:\...
https://msdn.microsoft.com/en-us/library/62t64db3(v=vs.100)
CC-MAIN-2017-39
en
refinedweb
Latest Jackson integration improvements in Spring Updated on 2015/08/31 with an additional Jackson modules section Spring Jackson support has been improved lately to be more flexible and powerful. This blog post gives you an update about the most useful Jackson related features available in Spring Framework 4.x and Spr...
https://spring.io/blog/2014/12/02/latest-jackson-integration-improvements-in-spring
CC-MAIN-2017-39
en
refinedweb
All postings are provided "As Is" with no warranties, and confers no rights. Opinions and views expressed here are not necessarily those of Microsoft Corporation. In a post to the WPF forum, Zhou Yong had the idea to use a MarkupExtension to make it possible to create a generic dictionary (Dictionary<K,V>) from Xaml. I...
http://blogs.msdn.com/mikehillberg/archive/2006/10/06/LimitedGenericsSupportInXaml.aspx
crawl-002
en
refinedweb
. Some quick links about LINQ: Articles about extension methods by the Visual Basic team Third-party LINQ Pingback from There are several good new blogs from members of the Microsoft C# team. Nevertheless, the most important Hi, I have downloaded the code from your article as I thought it looked a perfect solution for ...
http://blogs.msdn.com/mitsu/archive/2007/06/21/how-to-implement-a-many-to-many-relationship-using-linq-to-sql.aspx
crawl-002
en
refinedweb
Base class for plugins that wish to enable the insertion of custom HTML content into posts. public class ContentSource : WriterPlugin CreateContent Create content using an Insert dialog box. Plugin classes that override this method must also be declared with the InsertableContentSourceAttribute class. CreateContentFrom...
http://msdn.microsoft.com/en-us/library/aa702823.aspx
crawl-002
en
refinedweb
. If you would like to receive an email when updates are made to this post, please register here RSS Instead of re-hashing information I've found elsewhere I figured a pre-reqs post would be good. One of A very neatly explained example. Great work!!! Hi, I have tryied this example.Iam able to gat the data from the exce...
http://blogs.msdn.com/cumgranosalis/archive/2006/03/24/ExcelServicesHelloWorld.aspx
crawl-002
en
refinedweb
Provides a lightweight control for displaying small amounts of flow content. <ContentPropertyAttribute("Inlines")> _ <LocalizabilityAttribute(LocalizationCategory.Text)> _ Public Class TextBlock _ Inherits FrameworkElement _ Implements IContentHost, IAddChild, IServiceProvider Dim instance As TextBlock [ContentProperty...
http://msdn.microsoft.com/en-us/library/system.windows.controls.textblock.aspx
crawl-002
en
refinedweb
Thoughts and Discussion about Software Development and Technology Web Widgets with .Net : Part One This two part article is based on a presentation I gave at Tech Ed North America, Developers Week, 2008, about using .Net to create Web Widgets for the MSDN and TechNet sites. Part one will cover the creation of a basic w...
http://blogs.msdn.com/pajohn/archive/2008/06/18/web-widgets-with-net-part-one.aspx
crawl-002
en
refinedweb
Example: FtpWebRequest.Method = WebRequesMethods. will send the LIST ftp command on the wire and return you a detailed list of the contents of the specified folder. The result of executing the command on your ftp server will be in the ResponseStream returned by FtpWebResponse, except for the PWD, SIZE and MDTM methods....
http://blogs.msdn.com/mariya/default.aspx
crawl-002
en
refinedweb
I posted about Giving a character a new identity (by giving it some secondary weight). Now that post, while true, only tells part of the story. Now I am going to tell the other part.... Take the following code and you may be able to see where I am going before you even look at the results:')); The results? They will b...
http://blogs.msdn.com/michkap/archive/2007/02/17/1701561.aspx
crawl-002
en
refinedweb
Here is the sample code, SPWeb web = new SPSite("").OpenWeb(); SPField spField = web.Fields["MyChoice"]; SPFieldChoice choiceFields = (SPFieldChoice)spField; string[] choices = new string[3] {"x", "y", "z"}; foreach (string choice in choices) { choiceFields.Choices.Add(choice); } choiceFields.Update(); Keep Exploring.....
http://blogs.msdn.com/karthick/
crawl-002
en
refinedweb
One of the often requested features of NUnit was the ability to test private member variables and private methods. I resisted because I always felt that if you limited yourself to the public interface that enabled you to freely change the implementation without having to change the tests. This I believe is a good thing...
http://blogs.msdn.com/jamesnewkirk/archive/2004/06/07/150361.aspx
crawl-002
en
refinedweb
Last week one ISV asked me that he wanted to hide/remove the "New" or "Actions" menu of the Document Library Toolbar in Sharepoint 2007, maybe this would be great needs for you, now I post the way to realize this: To realize this, you need to override the .ascx based toolbar templates by using a custom template that ov...
http://blogs.msdn.com/dipper/archive/2006/10/05/How-to-Remove-or-hiding-items-in-List-toolbar-in-Sharepoint-Server-2007.aspx
crawl-002
en
refinedweb
A language design question was posted to the Microsoft internal C# discussion group this morning: "Why must overloaded operators be static in C#? In C++ an overloaded operator can be implemented by a static, instance or virtual method. Is there some reason for this constraint in C#?" Before I get into the specifics, th...
http://blogs.msdn.com/ericlippert/archive/2007/05/14/why-are-overloaded-operators-always-static-in-c.aspx
crawl-002
en
refinedweb
by andy milliganan architect and builder The COM+ Integration and WS-AtomicTransaction hot fix package for Indigo is now available and I thought that it would be good to give it a little exercise… I’ll take a quick walk through the steps required to get a transactional client (using the very sweet System.Transactions) ...
http://blogs.msdn.com/distilled/archive/2005/06/23/431821.aspx
crawl-002
en
refinedweb
Topic Last Modified: 2007-06-27 What permissions do I need to be able to create and delete Exchange Server 2003 users? If you are responsible for both user and mailbox management, you need to have permissions to create a user object in Active Directory. For example, you could be a Domain Admin, Account Operator, or you...
http://technet.microsoft.com/en-us/library/bb124053(EXCHG.65).aspx
crawl-002
en
refinedweb
The. The data model (data and namespace) of LDAP is similar to that of the X.500 OSI directory service, but with lower resource requirements. The associated LDAP API simplifies writing Internet directory service applications. The LDAP API is applicable to directory management and browser applications that do not have d...
http://msdn.microsoft.com/en-us/library/aa367008(VS.85).aspx
crawl-002
en
refinedweb
Topic Last Modified: 2004-06-08 The namespace defines the majority of fields used to set configurations for various CDO objects. These configuration fields are set using an implementation of the IConfiguration.Fields collection. Many CDO objects use information stored in an associated Configuration object to define con...
http://msdn.microsoft.com/en-us/library/ms526318%28EXCHG.10%29.aspx
crawl-002
en
refinedweb
Nigel Thompson Microsoft Developer Network Technology Group March 20, 1995 This technical article is the second in a series that describes creating and using 32-bit Component Object Model (COM) objects with Visual C++™ and the Microsoft® Foundation Class Library (MFC). This article describes how COM object interfaces a...
http://msdn.microsoft.com/en-us/library/ms809987.aspx
crawl-002
en
refinedweb
Many components are fairly simple. They might consist of a single class with a simple object model or no object model. Other components are more complex, and might need to contain and manage a large number of subordinate objects. Nested classes are one way for complex components to contain and manage the objects they n...
http://msdn.microsoft.com/en-us/library/cbwxw0ye(VS.71).aspx
crawl-002
en
refinedweb
.adm file A system policy template file that defines the system policies and restrictions that you can set for the desktop, shell, and/or system security. See also System Policy. .cab file See cabinet (.cab) file. .inf file See information (.inf) file. .ins file See Internet settings (.ins) file. Active. ActiveX contro...
http://technet.microsoft.com/en-us/library/dd346954.aspx
crawl-002
en
refinedweb
Represents a dynamic data collection that provides notifications when items get added, removed, or when the entire list is refreshed. Public Class ObservableCollection(Of T) _ Inherits Collection(Of T) _ Implements INotifyCollectionChanged, INotifyPropertyChanged Dim instance As ObservableCollection(Of T) public class ...
http://msdn.microsoft.com/en-us/library/ms668604(VS.95).aspx
crawl-002
en
refinedweb
Microsoft Internet Security and Acceleration (ISA) Server 2004 provides many features for securely publishing resources to the Internet with the use of application layer filters. The purpose of this document is to detail how to more effectively use the Hypertext Transfer Protocol (HTTP) and Simple Mail Transfer Protoco...
http://technet.microsoft.com/en-us/library/cc713326.aspx
crawl-002
en
refinedweb
What's new in FlexCel Studio for .NET New on v 6.23 - November 2018 Updated minimum Required Android version to 8.0 Oreo. As required by Xamarin and Google Play, now the minimum supported Android version is 8.0 (API Level 26). We removed calls to deprecated methods and now require methods only available in API Level 26...
http://www.tmssoftware.biz/flexcel/doc/net/about/whatsnew.html
CC-MAIN-2019-04
en
refinedweb
From 1314c7c4aae6f39154744047754715a9d927c25f Mon Sep 17 00:00:00 2001 From: Allen Kerensky <allen@allenkerensky.com> Date: Sat, 9 Feb 2013 15:06:42 -0600 Subject: [PATCH] Additional ThreadPool worker and IOCP thread startup logic --- OpenSim/Region/Application/Application.cs | 45 ++++++++++++++++++++++++++----- 1 file...
http://opensimulator.org/mantis/view.php?id=6537
CC-MAIN-2019-04
en
refinedweb
SOA and the XML Factor: Designing Service-Oriented Solutions with Extreme XML Compatibility SOA and the XML Factor: Designing Service-Oriented Solutions with Extreme XML Compatibility.. This article authored by Ronald Murphy and published at SOA Magazine on May 2009. Introduction: Why Compatibility Matters To make a ch...
https://dzone.com/articles/soa-and-xml-factor-designing
CC-MAIN-2019-04
en
refinedweb
UICollectionView DataSourcePrefetching Example and Explanation UICollectionView DataSourcePrefetching. You can find the source code on GitHub. Setting up the Xcode project. Create a new file, of type Cocoa Touch Class , subclass of UICollectionViewCell, name it collectionViewCell and assign it to the cell. Connect the ...
https://www.sitepoint.com/uicollectionview-datasourceprefetching-example-and-explanation/
CC-MAIN-2019-04
en
refinedweb
hey guy's I'm relatively new to C++ and I've been asked to make a Caesar Cipher. I'm supposed to take an encrypted .txt file and output it's decryption. I've sort of got an idea of my flow as shown below but I'm confused as to how to transform capitals in the encrypted .txt file into lower case so I can process them no...
https://www.daniweb.com/programming/software-development/threads/396301/the-infamous-caesar-cipher-i-know-help-please
CC-MAIN-2019-04
en
refinedweb
Some time ago I was writing a Corporate System with lots of menu options, so it was not easy to visually keep track of implemented and pending options. As a former Visual C++ developer, I miss the MFC's main menu implementation, where non-implemented options appear disabled automatically. I have not reproduced the exac...
http://www.codeproject.com/KB/menus/MenuDecorator.aspx
crawl-002
en
refinedweb
This is the .NET version of my previous MFC article, CRadioListBox: A ListBox with Radio Buttons. A couple of years ago, I discussed in a Visual C++ forum about a member's request to implement a custom ListBox control similar to MFC's CCheckListBox, but with radio buttons. Initially it appeared to be trivial, since the...
http://www.codeproject.com/kb/combobox/RadioListBoxDotNetVersion.aspx
crawl-002
en
refinedweb
Part 1: Neurons and simple neural networks Introduction In this handout we cover the first steps in using PyNEST to simulate neuronal networks. When you have worked through this material, you will know how to: - start PyNEST - create neurons and stimulating/recording devices - query and set their parameters - connect t...
http://nest-simulator.org/part-1-neurons-and-simple-neural-networks/
CC-MAIN-2017-30
en
refinedweb
0 I made myself a project which is to make a virtual inventory but I have been having difficulty with pickling the variable: inventory. Could someone please insert the strip of code in order to save the variable in a seperate file and make it able to import it. import pickle import time def intro(): print("\t\t\tWelcom...
https://www.daniweb.com/programming/software-development/threads/358801/ultimate-pickle-need-help
CC-MAIN-2017-30
en
refinedweb
Best Practice Ruby on Rails Refactoring: Databases - AntiPattern: Messy Migrations - AntiPattern: Wet Validations With the Rails framework providing a simple ORM that abstracts many of the database details away from the developer, the database is an afterthought for many Rails developers. While the power of the framewo...
http://www.informit.com/articles/article.aspx?p=1652025
CC-MAIN-2017-30
en
refinedweb