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
import java.util.AbstractList; | |
import java.util.Iterator; | |
import java.util.ListIterator; | |
import java.util.NoSuchElementException; | |
import org.hibernate.ScrollableResults; | |
import org.hibernate.Session; | |
/** | |
* A List<E> partial wrapper view on an Hibernate ScrollableResults. |
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
# Standalone easy-to-use one-file playbook | |
# Inspired from https://coderwall.com/p/13lh6w/dump-all-variables | |
- hosts: all | |
gather_facts: yes | |
become: no | |
connection: local | |
vars: | |
debug_file: "debug_env_{{ inventory_hostname }}.log" |