This file contains 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.concurrent.CompletableFuture; | |
import java.util.concurrent.Executors; | |
class Scratch { | |
public static void main(String[] args) throws Exception { | |
var singleThreadedExecutor = Executors.newSingleThreadExecutor(); | |
var startTime = System.currentTimeMillis(); | |
/* |
This file contains 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
▶ jdeps --multi-release 11 out/log4j-core-2.16.0.jar | |
log4j-core-2.16.0.jar -> java.base | |
log4j-core-2.16.0.jar -> java.compiler | |
log4j-core-2.16.0.jar -> java.desktop | |
log4j-core-2.16.0.jar -> java.logging | |
log4j-core-2.16.0.jar -> java.management | |
log4j-core-2.16.0.jar -> java.naming | |
log4j-core-2.16.0.jar -> java.rmi | |
log4j-core-2.16.0.jar -> java.scripting | |
log4j-core-2.16.0.jar -> java.sql |
This file contains 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
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
import 'package:flutter/material.dart'; | |
import 'dart:math' as math; | |
void main() => runApp(MyApp()); | |
class Rectangle { |
This file contains 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.regex.Pattern; | |
public class Test { | |
public static void main(String[] args) { | |
check("a"); | |
check("b"); | |
} | |
static Pattern compile(String pattern) { | |
System.out.println("compile(" + pattern + ")"); |
This file contains 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
// Welcome to the null safety version of DartPad! | |
// This site has a dev channel release of the | |
// Dart SDK with null safety enabled. You can | |
// play around with code of your own, or pick a | |
// learning exercise from the snippets menu at | |
// the top-right of this page. | |
void main() { | |
} |
This file contains 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 loom; | |
import rawhttp.core.RawHttp; | |
import rawhttp.core.RawHttpRequest; | |
import rawhttp.core.RawHttpResponse; | |
import rawhttp.core.client.TcpRawHttpClient; | |
import java.io.IOException; | |
import java.nio.charset.StandardCharsets; | |
import java.util.concurrent.CountDownLatch; |
This file contains 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.nio.charset.StandardCharsets; | |
class JavaComparison | |
{ | |
public static void main(String[] args) | |
{ | |
System.out.println("CUSTOM"); | |
for (int i = 0; i < 100; i++) | |
{ | |
custom(); |
This file contains 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
FROM google/dart AS dartc | |
WORKDIR /app | |
ADD pubspec.* /app/ | |
RUN pub get | |
ADD bin/ /app/bin/ | |
ADD lib/ /app/lib/ | |
RUN pub get --offline | |
RUN dart2aot /app/bin/main.dart /app/main.aot |
This file contains 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
abstract class _State { | |
T use<T>( | |
T Function(_ChooseProviderState) useChooseProviderState, | |
T Function(_LoadingState) useLoadingState, | |
T Function(_ChooseAccountsState) useChooseAccountState, | |
T Function(_ImportingState) useImportingState) { | |
if (this is _ChooseProviderState) { | |
return useChooseProviderState(this); | |
} | |
if (this is _LoadingState) { |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>CheerpJ test</title> | |
<script src="https://cjrtnc.leaningtech.com/1.3/loader.js"></script> | |
</head> | |
<body> | |
</body> | |
<script> |