Demo server
https://goharbor.io/docs/2.4.0/install-config/demo-server/
Register to https://demo.goharbor.io API: https://demo.goharbor.io/devcenter-api-2.0
Demo server
https://goharbor.io/docs/2.4.0/install-config/demo-server/
Register to https://demo.goharbor.io API: https://demo.goharbor.io/devcenter-api-2.0
$2a$11$QFX6iNdVp.6VyRLdi55hveXhAo0Smw1wjArEHJctEY.HsrcE4G5zS
const MAX_SIZE: usize = 110_000; | |
pub fn nth(n: u32) -> u32 { | |
let primes = get_primes(); | |
match primes.get(n as usize) { | |
None => { | |
println!("{}nth prime not found", n); | |
1 | |
}, |
0xea95E3dA97597b365a75dEe064D9F10235c7411b |
package it.enricocandino.loginviewexample; | |
import android.content.Context; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.EditText; | |
import android.widget.Toast; |
<?xml version="1.0" encoding="utf-8"?> | |
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
tools:context="it.enricocandino.loginviewexample.MainActivity"> | |
<LinearLayout | |
android:layout_width="200dp" |
// ref: https://github.com/buger/goterm | |
package main | |
import ( | |
"fmt" | |
"os" | |
"runtime" | |
"syscall" | |
"time" |
import weka.core.*; | |
public class CrossCorrelationDistance extends NormalizableDistance { | |
@Override | |
public double distance(Instance first, Instance second) { | |
double mx = 0; | |
double my = 0; |
/**************************************************************************** | |
* $Id:: tmrtest.c 6098 2011-01-08 02:26:20Z nxp12832 $ | |
* Project: NXP LPC17xx Timer example | |
* | |
* Description: | |
* This file contains Timer test modules, main entry, to test Timer APIs. | |
* | |
**************************************************************************** | |
* Software that is described herein is for illustrative purposes only | |
* which provides customers with programming information regarding the |