Java
epub, pdf |eng | 2015-03-26 | Author:Sandy Ryza, Uri Laserson, Sean Owen & Josh Wills

Parsing XML Documents with Scala’s XML Library Scala has an interesting history with XML. Since version 1.2, Scala has treated XML as a first-class data type. This means that the ...
( Category: Java June 2,2015 )
epub |eng | 2015-05-26 | Author:Spell, Brett

Figure 7-26. A table with its rows sorted programmatically Adding and Removing Table Rows In all the examples you’ve seen so far, no JTable data was changed, added, or removed ...
( Category: Software Development June 1,2015 )
epub |eng | 2015-05-26 | Author:Morgillo, Ivan

Like sample(), timeout() uses the TimeUnit object to specify the time interval. The next figure shows how the Observable will trigger onError() the moment the Observable violates the timeout constraint: ...
( Category: Java June 1,2015 )
epub |eng | 2015-05-28 | Author:Michael Covert & Victoria Loewengart [Covert, Michael]

Note Notice in the comments the code changes/additions necessary for Hadoop mode. In the next chapter, we will talk more about local and Hadoop modes. In the later chapters, you ...
( Category: Java June 1,2015 )
epub |eng | 2015-02-26 | Author:Rafał Kuć & Marek Rogoziński [Kuć, Rafał]

One of the properties that can be useful when having multiple nodes on a single physical server is cluster.routing.allocation.same_shard.host. When set to true, it prevents Elasticsearch from placing a primary ...
( Category: Java April 3,2015 )
epub |eng | 2011-11-13 | Author:Burd, Barry [Burd, Barry]

Android calls an activity’s onDestroy method whenever the user turns the device (from portrait to landscape, for example). If you put a stopService call in an activity’s onDestroy method, you ...
( Category: Java March 4,2015 )
mobi, epub, pdf |eng | 2012-05-09 | Author:Tom White

( Category: Java March 3,2015 )
epub, pdf |eng | 2015-01-29 | Author:Cay S. Horstmann [Horstmann, Cay S.]

8.1 From Iterating to Stream Operations When you process a collection, you usually iterate over its elements and do some work with each of them. For example, suppose we want ...
( Category: Java March 3,2015 )
epub, pdf |eng | 2012-09-25 | Author:Eric Sammer [Eric Sammer]

Example: 0700 See Example 6-5 for a sample hdfs-site.xml file configured for security. Example 6-5. Updating hdfs-site.xml to enable Hadoop security <?xml version="1.0"?> <configuration> <property> <name>dfs.block.access.token.enable</name> <value>true</value> </property> <!-- NameNode ...
( Category: Java March 3,2015 )
epub, mobi, pdf |eng | | Author:Tomek Kaczanowski [Kaczanowski, Tomek]

This test should be rerun once. This test should be rerun twice. This test should not be rerun, because it is not marked with the @RetryTest annotation. 6.15.9. Make an ...
( Category: Java February 13,2015 )
epub |eng | 2006-02-12 | Author:Brian Goetz & Tim Peierls & Joshua Bloch & Joseph Bowbeer & David Holmes & Doug Lea

* * * Strive to use open calls throughout your program. Programs that rely on open calls are far easier to analyze for deadlock-freedom than those that allow calls to ...
( Category: Java February 13,2015 )
mobi |eng | 2008-04-07 | Author:Horstmann, Cay S. & Cornell, Gary [Horstmann, Cay S.]

The Rendering Pipeline The original JDK 1.0 had a very simple mechanism for drawing shapes. You selected color and paint mode, and called methods of the Graphics class such as ...
( Category: Object-Oriented Design February 13,2015 )
epub |eng | | Author:Mike Riley

Task Timer Limitations Well, that was pretty easy. In fact, once you become proficient with Tasker, you should be able to rebuild this simple countdown timer widget in less than ...
( Category: Java February 2,2015 )
epub |eng | 2013-08-13 | Author:Bill Bejeck [Bejeck, Bill]

In our example here, we are submitting a Callable object to the ExecutorService instance. The ExecutorService instance immediately returns the Future object; however, that does not imply the task is ...
( Category: Software Development December 29,2014 )
epub, pdf |eng | 2013-08-08 | Author:Arun Gupta [Arun Gupta]

Events Events provide an annotation-based event model based upon the observer pattern. Event producers raise events that are consumed by observers. The event object, typically a POJO, carries state from ...
( Category: Object-Oriented Design October 8,2014 )