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.atlantbh.nutch.filter.xpath; | |
| import java.io.ByteArrayInputStream; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.io.Reader; | |
| import java.io.UnsupportedEncodingException; | |
| import java.nio.ByteBuffer; | |
| import java.nio.charset.Charset; | |
| import java.util.Arrays; |
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.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.io.FileReader; | |
| import java.io.IOException; | |
| import java.util.ArrayList; | |
| import java.util.Arrays; | |
| import org.apache.commons.lang.StringUtils; |
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
| [CmdletBinding(DefaultParameterSetName="ComputerName")] | |
| param ( | |
| [Parameter(Mandatory = $FALSE, ParameterSetName="ComputerName", HelpMessage="Name of computer to check")] | |
| [String] | |
| $ComputerName | |
| ) | |
| Function InArray($element, $array, $position) { | |
| If($array.Count -eq 0) { |
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 javax.xml.transform.TransformerFactory | |
| import javax.xml.transform.stream.StreamResult | |
| import javax.xml.transform.stream.StreamSource | |
| def cli = new CliBuilder( usage: 'groovy TransformXml.groovy -h -i inputfile -o output -x xsltfile...') | |
| cli.h(longOpt:'help', 'usage information') | |
| cli.i(argName:'input', longOpt:'input', args:1, required:true, type:GString, 'Directory/file for input') | |
| cli.o(argName:'output', longOpt:'output', args:1, required:true, type:GString, 'Direcoty/file for output') | |
| cli.x(argName:'xsltfile', longOpt:'xsltfile', args:1, required:true, type:GString, 'The transformation file') |
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
| function Show-MessageBox ($title, $msg) { | |
| [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null | |
| [Windows.Forms.MessageBox]::Show($msg, $title, [Windows.Forms.MessageBoxButtons]::OK, [System.Windows.Forms.MessageBoxIcon]::Warning, [System.Windows.Forms.MessageBoxDefaultButton]::Button1, [System.Windows.Forms.MessageBoxOptions]::DefaultDesktopOnly) | Out-Null | |
| } | |
| [string] $url = 'http://www.saidosofa.com.br' | |
| [net.httpWebRequest] $req = [net.webRequest]::create($url) | |
| $req.Method = "HEAD" |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Web; | |
| namespace Project.Helpers | |
| { | |
| public static class DateTimeExtensions | |
| { | |
| public static int Days360(this DateTime? date, DateTime? initialDate) |
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
| function days360(initialDate, currentDate) { | |
| var dateA = initialDate; | |
| var dateB = currentDate; | |
| var dayA = dateA.getDate(); | |
| var dayB = dateB.getDate(); |
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 main | |
| import ( | |
| "json"; | |
| "flag"; | |
| "fmt"; | |
| "http"; | |
| "os"; | |
| "io"; | |
| ) |
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
| events { | |
| worker_connections 4096; ## Default: 1024 | |
| } | |
| http { | |
| upstream backend { | |
| server web1:3000; | |
| server web2:3000; | |
| server web3:3000; | |
| } |
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 br.eti.faces.retrofit.converter; | |
| import org.msgpack.MessagePack; | |
| import org.msgpack.packer.Packer; | |
| import org.msgpack.unpacker.Unpacker; | |
| import java.io.ByteArrayOutputStream; | |
| import java.io.IOException; | |
| import java.lang.reflect.Type; |
OlderNewer