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
    
  
  
    
  | .text-area { | |
| -fx-background-insets: 0; | |
| -fx-background-color: transparent, white, transparent, white; | |
| -fx-background-radius: 0, 0, 0, 0; | |
| -fx-box-border: none; | |
| -fx-focus-color: -fx-control-inner-background; | |
| -fx-faint-focus-color: -fx-control-inner-background; | |
| -fx-text-box-border: -fx-control-inner-background; | |
| -fx-border-width: -1; | 
  
    
      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.ArrayDeque; | |
| import java.util.Deque; | |
| public class History<ENTITY> { | |
| private Deque<ENTITY> backStack = new ArrayDeque<>(); | |
| private Deque<ENTITY> forwardStack; | |
| private ENTITY current; | |
| private int max; | 
  
    
      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
    
  
  
    
  | convexHull <- function(x) | |
| { | |
| indices <- chull(x[,1], x[,2]) | |
| points <- x[indices,] | |
| points | |
| } | |
| convexHullFactory <- function() | |
| { | |
| list(name=convexHull,udxtype=c("transform"),intype=c("float","float"), outtype=c("float","float"), outnames=c("x","y")) | |
| } | 
  
    
      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 com.vaadin.grails.datasource | |
| import com.vaadin.data.util.sqlcontainer.connection.SimpleJDBCConnectionPool | |
| import com.vaadin.grails.Grails | |
| import org.codehaus.groovy.grails.commons.GrailsApplication | |
| import java.sql.SQLException | |
| class GrailsConnectionPool extends SimpleJDBCConnectionPool { | 
  
    
      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 groovy.sql.GroovyRowResult | |
| import org.apache.commons.dbcp.BasicDataSource | |
| import org.apache.commons.lang.StringEscapeUtils | |
| import javax.sql.DataSource | |
| import java.sql.ResultSet | |
| import java.sql.Statement | |
| /** | |
| * Helper class to get data from database into a simple CSV without any extra formatting. | 
  
    
      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 com.company.cache | |
| import com.google.common.base.Charsets | |
| import com.google.common.hash.HashFunction | |
| import com.google.common.hash.Hasher | |
| import com.google.common.hash.Hashing | |
| import com.vendavo.security.pseudo.SecUser | |
| import org.springframework.cache.interceptor.KeyGenerator | |
| import org.springframework.security.core.Authentication | |
| import org.springframework.security.core.context.SecurityContextHolder | 
  
    
      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
    
  
  
    
  | DataSourceTransactionManagerAutoConfiguration | |
| # Initializers | |
| org.springframework.context.ApplicationContextInitializer | |
| org.springframework.boot.autoconfigure.logging.AutoConfigurationReportLoggingInitializer | |
| # Auto Configure | |
| org.springframework.boot.autoconfigure.EnableAutoConfiguration | |
| org.springframework.boot.autoconfigure.aop.AopAutoConfiguration | |
| org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration | 
  
    
      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
    
  
  
    
  | // dependency tree for compile scope | |
| gradle -q vsa-batch-processing-core:dependencies --configuration compile | 
  
    
      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
    
  
  
    
  | # Start server | |
| zkServer.sh start | |
| # Connect to server | |
| zkCli.sh -server 127.0.0.1:2181 | |
| # Connect to server with authentification | |