add heavy build
This commit is contained in:
39
.gitea/workflows/build.yaml
Normal file
39
.gitea/workflows/build.yaml
Normal file
@@ -0,0 +1,39 @@
|
||||
name: Build Heavy Service
|
||||
run-name: Build Heavy Service by ${{ gitea.actor }}
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
file_count:
|
||||
description: 'Number of files to generate (controls build time)'
|
||||
required: false
|
||||
default: '10000'
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build-and-package:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout source code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Build Docker Image
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
# We don't push to a registry here since no credentials were provided,
|
||||
# but the image is built and packaged locally in the runner.
|
||||
push: false
|
||||
tags: dummy-service:latest
|
||||
# We set a high file count to ensure the build takes a significant amount of time
|
||||
# to simulate a heavy workload in the CI system.
|
||||
build-args: |
|
||||
FILE_COUNT=${{ inputs.file_count || '10000' }}
|
||||
34
Dockerfile
Normal file
34
Dockerfile
Normal file
@@ -0,0 +1,34 @@
|
||||
FROM golang:1.23-alpine AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Install build dependencies
|
||||
RUN apk add --no-cache git
|
||||
|
||||
# Copy module files first to leverage Docker cache for dependencies
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
# Copy the rest of the source code
|
||||
COPY . .
|
||||
|
||||
# Argument to control the number of generated files (default to 5000 for a moderate delay)
|
||||
ARG FILE_COUNT=5000
|
||||
|
||||
# Generate the dummy source code to simulate a large codebase
|
||||
RUN echo "Generating $FILE_COUNT dummy files..." && \
|
||||
go run gen.go -count $FILE_COUNT
|
||||
|
||||
# Build the application
|
||||
# Using -a to force rebuilding of all packages to simulate a fresh, heavy build
|
||||
RUN echo "Starting heavy build..." && \
|
||||
go build -a -o app .
|
||||
|
||||
# Final stage: Create a minimal image
|
||||
FROM alpine:latest
|
||||
|
||||
WORKDIR /root/
|
||||
|
||||
COPY --from=builder /app/app .
|
||||
|
||||
CMD ["./app"]
|
||||
10009
dummy/entrypoint.go
Normal file
10009
dummy/entrypoint.go
Normal file
File diff suppressed because it is too large
Load Diff
30
dummy/file_00000.go
Normal file
30
dummy/file_00000.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct0 is a dummy structure to consume memory during compilation
|
||||
type Struct0 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function0 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function0(input int) float64 {
|
||||
s := Struct0{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00001.go
Normal file
30
dummy/file_00001.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct1 is a dummy structure to consume memory during compilation
|
||||
type Struct1 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function1 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function1(input int) float64 {
|
||||
s := Struct1{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00002.go
Normal file
30
dummy/file_00002.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct2 is a dummy structure to consume memory during compilation
|
||||
type Struct2 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function2 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function2(input int) float64 {
|
||||
s := Struct2{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00003.go
Normal file
30
dummy/file_00003.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct3 is a dummy structure to consume memory during compilation
|
||||
type Struct3 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function3 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function3(input int) float64 {
|
||||
s := Struct3{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00004.go
Normal file
30
dummy/file_00004.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct4 is a dummy structure to consume memory during compilation
|
||||
type Struct4 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function4 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function4(input int) float64 {
|
||||
s := Struct4{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00005.go
Normal file
30
dummy/file_00005.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct5 is a dummy structure to consume memory during compilation
|
||||
type Struct5 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function5 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function5(input int) float64 {
|
||||
s := Struct5{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00006.go
Normal file
30
dummy/file_00006.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct6 is a dummy structure to consume memory during compilation
|
||||
type Struct6 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function6 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function6(input int) float64 {
|
||||
s := Struct6{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00007.go
Normal file
30
dummy/file_00007.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct7 is a dummy structure to consume memory during compilation
|
||||
type Struct7 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function7 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function7(input int) float64 {
|
||||
s := Struct7{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00008.go
Normal file
30
dummy/file_00008.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct8 is a dummy structure to consume memory during compilation
|
||||
type Struct8 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function8 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function8(input int) float64 {
|
||||
s := Struct8{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00009.go
Normal file
30
dummy/file_00009.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct9 is a dummy structure to consume memory during compilation
|
||||
type Struct9 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function9 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function9(input int) float64 {
|
||||
s := Struct9{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00010.go
Normal file
30
dummy/file_00010.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct10 is a dummy structure to consume memory during compilation
|
||||
type Struct10 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function10 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function10(input int) float64 {
|
||||
s := Struct10{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00011.go
Normal file
30
dummy/file_00011.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct11 is a dummy structure to consume memory during compilation
|
||||
type Struct11 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function11 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function11(input int) float64 {
|
||||
s := Struct11{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00012.go
Normal file
30
dummy/file_00012.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct12 is a dummy structure to consume memory during compilation
|
||||
type Struct12 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function12 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function12(input int) float64 {
|
||||
s := Struct12{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00013.go
Normal file
30
dummy/file_00013.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct13 is a dummy structure to consume memory during compilation
|
||||
type Struct13 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function13 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function13(input int) float64 {
|
||||
s := Struct13{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00014.go
Normal file
30
dummy/file_00014.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct14 is a dummy structure to consume memory during compilation
|
||||
type Struct14 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function14 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function14(input int) float64 {
|
||||
s := Struct14{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00015.go
Normal file
30
dummy/file_00015.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct15 is a dummy structure to consume memory during compilation
|
||||
type Struct15 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function15 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function15(input int) float64 {
|
||||
s := Struct15{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00016.go
Normal file
30
dummy/file_00016.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct16 is a dummy structure to consume memory during compilation
|
||||
type Struct16 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function16 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function16(input int) float64 {
|
||||
s := Struct16{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00017.go
Normal file
30
dummy/file_00017.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct17 is a dummy structure to consume memory during compilation
|
||||
type Struct17 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function17 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function17(input int) float64 {
|
||||
s := Struct17{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00018.go
Normal file
30
dummy/file_00018.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct18 is a dummy structure to consume memory during compilation
|
||||
type Struct18 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function18 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function18(input int) float64 {
|
||||
s := Struct18{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00019.go
Normal file
30
dummy/file_00019.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct19 is a dummy structure to consume memory during compilation
|
||||
type Struct19 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function19 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function19(input int) float64 {
|
||||
s := Struct19{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00020.go
Normal file
30
dummy/file_00020.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct20 is a dummy structure to consume memory during compilation
|
||||
type Struct20 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function20 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function20(input int) float64 {
|
||||
s := Struct20{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00021.go
Normal file
30
dummy/file_00021.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct21 is a dummy structure to consume memory during compilation
|
||||
type Struct21 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function21 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function21(input int) float64 {
|
||||
s := Struct21{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00022.go
Normal file
30
dummy/file_00022.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct22 is a dummy structure to consume memory during compilation
|
||||
type Struct22 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function22 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function22(input int) float64 {
|
||||
s := Struct22{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00023.go
Normal file
30
dummy/file_00023.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct23 is a dummy structure to consume memory during compilation
|
||||
type Struct23 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function23 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function23(input int) float64 {
|
||||
s := Struct23{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00024.go
Normal file
30
dummy/file_00024.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct24 is a dummy structure to consume memory during compilation
|
||||
type Struct24 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function24 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function24(input int) float64 {
|
||||
s := Struct24{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00025.go
Normal file
30
dummy/file_00025.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct25 is a dummy structure to consume memory during compilation
|
||||
type Struct25 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function25 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function25(input int) float64 {
|
||||
s := Struct25{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00026.go
Normal file
30
dummy/file_00026.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct26 is a dummy structure to consume memory during compilation
|
||||
type Struct26 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function26 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function26(input int) float64 {
|
||||
s := Struct26{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00027.go
Normal file
30
dummy/file_00027.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct27 is a dummy structure to consume memory during compilation
|
||||
type Struct27 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function27 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function27(input int) float64 {
|
||||
s := Struct27{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00028.go
Normal file
30
dummy/file_00028.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct28 is a dummy structure to consume memory during compilation
|
||||
type Struct28 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function28 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function28(input int) float64 {
|
||||
s := Struct28{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00029.go
Normal file
30
dummy/file_00029.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct29 is a dummy structure to consume memory during compilation
|
||||
type Struct29 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function29 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function29(input int) float64 {
|
||||
s := Struct29{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00030.go
Normal file
30
dummy/file_00030.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct30 is a dummy structure to consume memory during compilation
|
||||
type Struct30 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function30 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function30(input int) float64 {
|
||||
s := Struct30{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00031.go
Normal file
30
dummy/file_00031.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct31 is a dummy structure to consume memory during compilation
|
||||
type Struct31 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function31 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function31(input int) float64 {
|
||||
s := Struct31{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00032.go
Normal file
30
dummy/file_00032.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct32 is a dummy structure to consume memory during compilation
|
||||
type Struct32 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function32 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function32(input int) float64 {
|
||||
s := Struct32{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00033.go
Normal file
30
dummy/file_00033.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct33 is a dummy structure to consume memory during compilation
|
||||
type Struct33 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function33 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function33(input int) float64 {
|
||||
s := Struct33{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00034.go
Normal file
30
dummy/file_00034.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct34 is a dummy structure to consume memory during compilation
|
||||
type Struct34 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function34 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function34(input int) float64 {
|
||||
s := Struct34{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00035.go
Normal file
30
dummy/file_00035.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct35 is a dummy structure to consume memory during compilation
|
||||
type Struct35 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function35 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function35(input int) float64 {
|
||||
s := Struct35{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00036.go
Normal file
30
dummy/file_00036.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct36 is a dummy structure to consume memory during compilation
|
||||
type Struct36 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function36 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function36(input int) float64 {
|
||||
s := Struct36{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00037.go
Normal file
30
dummy/file_00037.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct37 is a dummy structure to consume memory during compilation
|
||||
type Struct37 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function37 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function37(input int) float64 {
|
||||
s := Struct37{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00038.go
Normal file
30
dummy/file_00038.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct38 is a dummy structure to consume memory during compilation
|
||||
type Struct38 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function38 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function38(input int) float64 {
|
||||
s := Struct38{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00039.go
Normal file
30
dummy/file_00039.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct39 is a dummy structure to consume memory during compilation
|
||||
type Struct39 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function39 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function39(input int) float64 {
|
||||
s := Struct39{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00040.go
Normal file
30
dummy/file_00040.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct40 is a dummy structure to consume memory during compilation
|
||||
type Struct40 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function40 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function40(input int) float64 {
|
||||
s := Struct40{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00041.go
Normal file
30
dummy/file_00041.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct41 is a dummy structure to consume memory during compilation
|
||||
type Struct41 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function41 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function41(input int) float64 {
|
||||
s := Struct41{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00042.go
Normal file
30
dummy/file_00042.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct42 is a dummy structure to consume memory during compilation
|
||||
type Struct42 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function42 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function42(input int) float64 {
|
||||
s := Struct42{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00043.go
Normal file
30
dummy/file_00043.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct43 is a dummy structure to consume memory during compilation
|
||||
type Struct43 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function43 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function43(input int) float64 {
|
||||
s := Struct43{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00044.go
Normal file
30
dummy/file_00044.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct44 is a dummy structure to consume memory during compilation
|
||||
type Struct44 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function44 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function44(input int) float64 {
|
||||
s := Struct44{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00045.go
Normal file
30
dummy/file_00045.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct45 is a dummy structure to consume memory during compilation
|
||||
type Struct45 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function45 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function45(input int) float64 {
|
||||
s := Struct45{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00046.go
Normal file
30
dummy/file_00046.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct46 is a dummy structure to consume memory during compilation
|
||||
type Struct46 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function46 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function46(input int) float64 {
|
||||
s := Struct46{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00047.go
Normal file
30
dummy/file_00047.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct47 is a dummy structure to consume memory during compilation
|
||||
type Struct47 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function47 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function47(input int) float64 {
|
||||
s := Struct47{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00048.go
Normal file
30
dummy/file_00048.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct48 is a dummy structure to consume memory during compilation
|
||||
type Struct48 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function48 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function48(input int) float64 {
|
||||
s := Struct48{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00049.go
Normal file
30
dummy/file_00049.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct49 is a dummy structure to consume memory during compilation
|
||||
type Struct49 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function49 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function49(input int) float64 {
|
||||
s := Struct49{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00050.go
Normal file
30
dummy/file_00050.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct50 is a dummy structure to consume memory during compilation
|
||||
type Struct50 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function50 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function50(input int) float64 {
|
||||
s := Struct50{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00051.go
Normal file
30
dummy/file_00051.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct51 is a dummy structure to consume memory during compilation
|
||||
type Struct51 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function51 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function51(input int) float64 {
|
||||
s := Struct51{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00052.go
Normal file
30
dummy/file_00052.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct52 is a dummy structure to consume memory during compilation
|
||||
type Struct52 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function52 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function52(input int) float64 {
|
||||
s := Struct52{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00053.go
Normal file
30
dummy/file_00053.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct53 is a dummy structure to consume memory during compilation
|
||||
type Struct53 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function53 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function53(input int) float64 {
|
||||
s := Struct53{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00054.go
Normal file
30
dummy/file_00054.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct54 is a dummy structure to consume memory during compilation
|
||||
type Struct54 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function54 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function54(input int) float64 {
|
||||
s := Struct54{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00055.go
Normal file
30
dummy/file_00055.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct55 is a dummy structure to consume memory during compilation
|
||||
type Struct55 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function55 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function55(input int) float64 {
|
||||
s := Struct55{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00056.go
Normal file
30
dummy/file_00056.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct56 is a dummy structure to consume memory during compilation
|
||||
type Struct56 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function56 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function56(input int) float64 {
|
||||
s := Struct56{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00057.go
Normal file
30
dummy/file_00057.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct57 is a dummy structure to consume memory during compilation
|
||||
type Struct57 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function57 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function57(input int) float64 {
|
||||
s := Struct57{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00058.go
Normal file
30
dummy/file_00058.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct58 is a dummy structure to consume memory during compilation
|
||||
type Struct58 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function58 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function58(input int) float64 {
|
||||
s := Struct58{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00059.go
Normal file
30
dummy/file_00059.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct59 is a dummy structure to consume memory during compilation
|
||||
type Struct59 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function59 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function59(input int) float64 {
|
||||
s := Struct59{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00060.go
Normal file
30
dummy/file_00060.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct60 is a dummy structure to consume memory during compilation
|
||||
type Struct60 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function60 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function60(input int) float64 {
|
||||
s := Struct60{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00061.go
Normal file
30
dummy/file_00061.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct61 is a dummy structure to consume memory during compilation
|
||||
type Struct61 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function61 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function61(input int) float64 {
|
||||
s := Struct61{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00062.go
Normal file
30
dummy/file_00062.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct62 is a dummy structure to consume memory during compilation
|
||||
type Struct62 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function62 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function62(input int) float64 {
|
||||
s := Struct62{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00063.go
Normal file
30
dummy/file_00063.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct63 is a dummy structure to consume memory during compilation
|
||||
type Struct63 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function63 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function63(input int) float64 {
|
||||
s := Struct63{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00064.go
Normal file
30
dummy/file_00064.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct64 is a dummy structure to consume memory during compilation
|
||||
type Struct64 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function64 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function64(input int) float64 {
|
||||
s := Struct64{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00065.go
Normal file
30
dummy/file_00065.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct65 is a dummy structure to consume memory during compilation
|
||||
type Struct65 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function65 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function65(input int) float64 {
|
||||
s := Struct65{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00066.go
Normal file
30
dummy/file_00066.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct66 is a dummy structure to consume memory during compilation
|
||||
type Struct66 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function66 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function66(input int) float64 {
|
||||
s := Struct66{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00067.go
Normal file
30
dummy/file_00067.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct67 is a dummy structure to consume memory during compilation
|
||||
type Struct67 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function67 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function67(input int) float64 {
|
||||
s := Struct67{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00068.go
Normal file
30
dummy/file_00068.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct68 is a dummy structure to consume memory during compilation
|
||||
type Struct68 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function68 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function68(input int) float64 {
|
||||
s := Struct68{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00069.go
Normal file
30
dummy/file_00069.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct69 is a dummy structure to consume memory during compilation
|
||||
type Struct69 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function69 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function69(input int) float64 {
|
||||
s := Struct69{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00070.go
Normal file
30
dummy/file_00070.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct70 is a dummy structure to consume memory during compilation
|
||||
type Struct70 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function70 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function70(input int) float64 {
|
||||
s := Struct70{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00071.go
Normal file
30
dummy/file_00071.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct71 is a dummy structure to consume memory during compilation
|
||||
type Struct71 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function71 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function71(input int) float64 {
|
||||
s := Struct71{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00072.go
Normal file
30
dummy/file_00072.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct72 is a dummy structure to consume memory during compilation
|
||||
type Struct72 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function72 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function72(input int) float64 {
|
||||
s := Struct72{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00073.go
Normal file
30
dummy/file_00073.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct73 is a dummy structure to consume memory during compilation
|
||||
type Struct73 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function73 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function73(input int) float64 {
|
||||
s := Struct73{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00074.go
Normal file
30
dummy/file_00074.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct74 is a dummy structure to consume memory during compilation
|
||||
type Struct74 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function74 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function74(input int) float64 {
|
||||
s := Struct74{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00075.go
Normal file
30
dummy/file_00075.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct75 is a dummy structure to consume memory during compilation
|
||||
type Struct75 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function75 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function75(input int) float64 {
|
||||
s := Struct75{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00076.go
Normal file
30
dummy/file_00076.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct76 is a dummy structure to consume memory during compilation
|
||||
type Struct76 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function76 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function76(input int) float64 {
|
||||
s := Struct76{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00077.go
Normal file
30
dummy/file_00077.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct77 is a dummy structure to consume memory during compilation
|
||||
type Struct77 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function77 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function77(input int) float64 {
|
||||
s := Struct77{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00078.go
Normal file
30
dummy/file_00078.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct78 is a dummy structure to consume memory during compilation
|
||||
type Struct78 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function78 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function78(input int) float64 {
|
||||
s := Struct78{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00079.go
Normal file
30
dummy/file_00079.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct79 is a dummy structure to consume memory during compilation
|
||||
type Struct79 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function79 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function79(input int) float64 {
|
||||
s := Struct79{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00080.go
Normal file
30
dummy/file_00080.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct80 is a dummy structure to consume memory during compilation
|
||||
type Struct80 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function80 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function80(input int) float64 {
|
||||
s := Struct80{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00081.go
Normal file
30
dummy/file_00081.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct81 is a dummy structure to consume memory during compilation
|
||||
type Struct81 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function81 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function81(input int) float64 {
|
||||
s := Struct81{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00082.go
Normal file
30
dummy/file_00082.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct82 is a dummy structure to consume memory during compilation
|
||||
type Struct82 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function82 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function82(input int) float64 {
|
||||
s := Struct82{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00083.go
Normal file
30
dummy/file_00083.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct83 is a dummy structure to consume memory during compilation
|
||||
type Struct83 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function83 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function83(input int) float64 {
|
||||
s := Struct83{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00084.go
Normal file
30
dummy/file_00084.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct84 is a dummy structure to consume memory during compilation
|
||||
type Struct84 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function84 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function84(input int) float64 {
|
||||
s := Struct84{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00085.go
Normal file
30
dummy/file_00085.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct85 is a dummy structure to consume memory during compilation
|
||||
type Struct85 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function85 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function85(input int) float64 {
|
||||
s := Struct85{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00086.go
Normal file
30
dummy/file_00086.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct86 is a dummy structure to consume memory during compilation
|
||||
type Struct86 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function86 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function86(input int) float64 {
|
||||
s := Struct86{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00087.go
Normal file
30
dummy/file_00087.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct87 is a dummy structure to consume memory during compilation
|
||||
type Struct87 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function87 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function87(input int) float64 {
|
||||
s := Struct87{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00088.go
Normal file
30
dummy/file_00088.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct88 is a dummy structure to consume memory during compilation
|
||||
type Struct88 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function88 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function88(input int) float64 {
|
||||
s := Struct88{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00089.go
Normal file
30
dummy/file_00089.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct89 is a dummy structure to consume memory during compilation
|
||||
type Struct89 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function89 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function89(input int) float64 {
|
||||
s := Struct89{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00090.go
Normal file
30
dummy/file_00090.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct90 is a dummy structure to consume memory during compilation
|
||||
type Struct90 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function90 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function90(input int) float64 {
|
||||
s := Struct90{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00091.go
Normal file
30
dummy/file_00091.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct91 is a dummy structure to consume memory during compilation
|
||||
type Struct91 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function91 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function91(input int) float64 {
|
||||
s := Struct91{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00092.go
Normal file
30
dummy/file_00092.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct92 is a dummy structure to consume memory during compilation
|
||||
type Struct92 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function92 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function92(input int) float64 {
|
||||
s := Struct92{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00093.go
Normal file
30
dummy/file_00093.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct93 is a dummy structure to consume memory during compilation
|
||||
type Struct93 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function93 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function93(input int) float64 {
|
||||
s := Struct93{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00094.go
Normal file
30
dummy/file_00094.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct94 is a dummy structure to consume memory during compilation
|
||||
type Struct94 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function94 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function94(input int) float64 {
|
||||
s := Struct94{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00095.go
Normal file
30
dummy/file_00095.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct95 is a dummy structure to consume memory during compilation
|
||||
type Struct95 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function95 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function95(input int) float64 {
|
||||
s := Struct95{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
30
dummy/file_00096.go
Normal file
30
dummy/file_00096.go
Normal file
@@ -0,0 +1,30 @@
|
||||
package dummy
|
||||
|
||||
import "math"
|
||||
|
||||
// Struct96 is a dummy structure to consume memory during compilation
|
||||
type Struct96 struct {
|
||||
FieldA int
|
||||
FieldB string
|
||||
FieldC float64
|
||||
FieldD []int
|
||||
FieldE map[string]string
|
||||
}
|
||||
|
||||
// Function96 performs arbitrary calculations to consume CPU during compilation
|
||||
func Function96(input int) float64 {
|
||||
s := Struct96{
|
||||
FieldA: input,
|
||||
FieldB: "dummy string to take up space in the binary symbol table",
|
||||
FieldC: float64(input) * 1.5,
|
||||
FieldD: []int{1, 2, 3, 4, 5},
|
||||
FieldE: map[string]string{"key": "value"},
|
||||
}
|
||||
|
||||
// Some math operations
|
||||
res := math.Sqrt(s.FieldC) + float64(s.FieldA)
|
||||
for _, v := range s.FieldD {
|
||||
res += float64(v)
|
||||
}
|
||||
return res
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user