Authentication optoins for Azure DevOps Git Repo are listed in the following document.
https://docs.microsoft.com/en-us/azure/devops/repos/git/auth-overview?view=azure-devops
See
to create PAT.
Authentication optoins for Azure DevOps Git Repo are listed in the following document.
https://docs.microsoft.com/en-us/azure/devops/repos/git/auth-overview?view=azure-devops
See
to create PAT.
http_port 3128 | |
acl group_a myip 10.0.2.101/32 | |
acl group_o myip 10.0.2.102/32 | |
tcp_outgoing_address 10.0.2.101 group_a | |
tcp_outgoing_address 10.0.2.102 group_o | |
acl localnet src 10.0.0.0/8 | |
acl localnet src 172.16.0.0/12 | |
acl localnet src 192.168.0.0/16 | |
acl SSL_ports port 443 |
package kazusato.util | |
import javax.json.Json | |
object JsonUtil { | |
fun toJsonArray(stringList: List<String>): String { | |
val arrayBuilder = Json.createArrayBuilder() | |
stringList.forEach { str -> | |
arrayBuilder.add(str) |
package kazusato.dbwork | |
import java.sql.DriverManager | |
/** | |
* This program may be tested with -Xms48m -Xmx48m. | |
* If fetchSize is not successfully enabled, OutOfMemoryError will occur. | |
*/ | |
fun main() { | |
DriverManager.getConnection("jdbc:postgresql://localhost/mydb", "myuser", "mypassword").use { pgConn -> |
Operation 3-26「ドキュメントの登録の例」で、
$ curl -XPOST 'http://localhost:9200/accesslog-2017.11.10/accesslog_type/' ...
としている。
ドキュメントタイプは指定できなくなったことから、
$ curl -XPOST 'http://localhost:9200/flight-20190731' ...
/* | |
* npm install -s d3 | |
* npm install -s jsdom | |
* node start.js > work.svg | |
* chrome work.svg | |
*/ | |
const d3 = require("d3") | |
const jsdom = require("jsdom") | |
const { JSDOM } = jsdom |
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.2'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.2'
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.5.2'
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.13.2'
Collection of collection like list<list<text>> is not allowed on Cassandra. | |
But collection of "frozen" collection is allowed. | |
See the following document: | |
https://docs.datastax.com/en/cql/3.3/cql/cql_reference/collection_type_r.html |