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 main | |
import ( | |
"fmt" | |
"os" | |
) | |
type Result [T any] struct { | |
err error | |
result *T |
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 main | |
import ( | |
"fmt" | |
"os" | |
) | |
type Result [T any] struct { | |
err error | |
result *T |
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
# Sample toolchain file for building for Windows from an Ubuntu Linux system. | |
# | |
# Typical usage: | |
# *) install cross compiler: `sudo apt-get install mingw-w64` | |
# *) cd build | |
# *) cmake -DCMAKE_TOOLCHAIN_FILE=~/mingw-w64-x86_64.cmake .. | |
set(CMAKE_SYSTEM_NAME Windows) | |
set(TOOLCHAIN_PREFIX x86_64-w64-mingw32) |
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
2020-08-02 14:40:49,815 - DEBUG - Global extra conf not loaded or no function YcmCorePreload | |
2020-08-02 14:40:51,481 - INFO - Received ready request | |
2020-08-02 14:50:46,525 - INFO - Received health request | |
2020-08-02 14:50:51,495 - DEBUG - Keeping subservers alive | |
2020-08-02 14:52:52,704 - INFO - Received signature help available request | |
2020-08-02 14:52:52,840 - INFO - Looking for jdt.ls | |
2020-08-02 14:52:53,030 - DEBUG - Found launchers: ['/home/brian/.vim/plugged/YouCompleteMe/third_party/ycmd/third_party/eclipse.jdt.ls/target/repository/plugins/org.eclipse.equinox.launcher_1.5.700.v20200207-2156.jar'] | |
2020-08-02 14:52:53,032 - DEBUG - Found launchers: ['/home/brian/.vim/plugged/YouCompleteMe/third_party/ycmd/third_party/eclipse.jdt.ls/target/repository/plugins/org.eclipse.equinox.launcher_1.5.700.v20200207-2156.jar'] | |
2020-08-02 14:52:53,032 - INFO - extension directory does not exist: /home/brian/.vim/plugged/YouCompleteMe/third_party/ycmd/third_party/eclipse.jdt.ls/extensions | |
2020-08-02 14:52:53,032 - DEB |
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
Buildfile: /home/brian/Git-Repos/netbeans/build.xml | |
-jdk-pre-preinit: | |
-jdk-preinit: | |
-jdk-warn: | |
-jdk-presetdef-basic: |
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
SimpleDateFormat sdf=new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy", Locale.ENGLISH); | |
Date date=sdf.parse("Fri Mar 23 12:50:47 EAT 2018");//returning null here why? Unparseable date: "Fri Mar 23 12:50:47 EAT 2018" |