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
// class version 52.0 (52) | |
// access flags 0x20 | |
class Main$ReadThread extends java/lang/Thread { | |
// compiled from: Main.java | |
// access flags 0x8 | |
static INNERCLASS Main$ReadThread Main ReadThread | |
// access flags 0x0 | |
<init>()V |
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
* What went wrong: | |
Could not resolve all artifacts for configuration 'classpath'. | |
> Could not resolve org.kordamp.gradle:groovy-project-gradle-plugin:0.38.0-SNAPSHOT. | |
Required by: | |
unspecified:unspecified:unspecified | |
> Cannot choose between the following variants of org.kordamp.gradle:groovy-project-gradle-plugin:0.38.0-SNAPSHOT: | |
- javadocElements | |
- sourcesElements | |
All of them match the consumer attributes: | |
- Variant 'javadocElements' capability org.kordamp.gradle:groovy-project-gradle-plugin:0.38.0-SNAPSHOT: |
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
FAILURE: Build failed with an exception. | |
* What went wrong: | |
Could not resolve all artifacts for configuration 'classpath'. | |
> Could not resolve org.kordamp.gradle:groovy-project-gradle-plugin:0.36.0-SNAPSHOT. | |
Required by: | |
unspecified:unspecified:unspecified | |
> Cannot choose between the following variants of org.kordamp.gradle:groovy-project-gradle-plugin:0.36.0-SNAPSHOT: | |
- javadocElements | |
- sourcesElements |
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 org.sonatype.nexus.repository.storage.Asset | |
import org.sonatype.nexus.repository.storage.Query | |
import org.sonatype.nexus.repository.storage.StorageFacet | |
import groovy.json.JsonOutput | |
import groovy.json.JsonSlurper | |
import org.joda.time.* | |
import org.joda.time.format.* |
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
Win + Alt + T | |
Name - Tools::Docker Quickstart Terminal | |
// Task parameters | |
/dir "%DOCKER_TOOLBOX_INSTALL_PATH%" | |
// Commands | |
"%ConEmuDrive%\Program Files\Git\bin\bash.exe" --login -i "%ConEmuDrive%\Program Files\Docker Toolbox\start.sh" |
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
Optional.ofNullable(order.getCurrency()).orElse("USD"); | |
Optional.ofNullable(params.get("abc")).orElseThrow(() -> new IllegalArgumentException(message)); | |
public interface User { | |
String name(); | |
Integer age(); | |
User EMPTY = new User() { | |
@Override |
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 myFunction() { | |
// var files = DriveApp.getFilesByName("Grammar test.txt"); | |
// while (files.hasNext()) { | |
// var file = files.next(); | |
// Logger.log(file.getId()); | |
// var mimeType = file.getMimeType(); | |
// Logger.log('MimeType:' + mimeType); | |
// } | |
// var files = DriveApp.getFilesByName("Grammar test.txt"); |