This is ApacheBench, Version 2.3 <$Revision: 1430300 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking localhost (be patient)
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
#: Version | |
Daemon: 1.23.3+debug+git.7bb1f98ac.dirty+api1.5.0 | |
Local: lotus-miner version 1.23.3+debug+git.7bb1f98ac.dirty | |
#: Miner Info | |
Enabled subsystems: [Mining Sealing SectorStorage] | |
StartTime: 21m1s (started at 2023-09-27 02:15:19 +0000 UTC) | |
Chain: [sync ok] [basefee 100 aFIL] | |
Miner: t01000 (2 KiB sectors) | |
Power: 100 Ki / 100 Ki (100.0000%) |
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 ( | |
"bytes" | |
"errors" | |
"fmt" | |
"io" | |
"mime" | |
"mime/multipart" | |
"net/http" |
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 ( | |
"github.com/AlekSi/pointer" | |
log "github.com/sirupsen/logrus" | |
"sync" | |
"sync/atomic" | |
"unsafe" | |
) |
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" | |
"github.com/fsnotify/fsnotify" | |
"log" | |
"os" | |
"path/filepath" | |
) |
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
#ifndef __ABC____H | |
#define __ABC____H | |
/* Generated with cbindgen:0.12.0 */ | |
#include <stdarg.h> | |
#include <stdbool.h> | |
#include <stdint.h> | |
#include <stdlib.h> |
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] | |
name = "abc" | |
version = "0.1.0" | |
authors = ["root"] | |
edition = "2018" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[lib] | |
crate-type = ["cdylib"] |
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
const AWS = require('aws-sdk'), | |
fs = require('fs'), | |
{ | |
Throttle | |
} = require('stream-throttle'); | |
const uploadFiles = process.argv.slice(2); | |
const S3Service = new AWS.S3({ | |
apiVersion: '2006-03-01', |
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
#include <stdio.h> | |
#include <time.h> | |
#include <string.h> | |
#include <pthread.h> | |
void *add_counter(void* c) { | |
int i; | |
for (i = 0; i < 10000; i++) { | |
(*(int*)c)++; | |
} |
NewerOlder