about summary refs log blame commit diff stats
path: root/cpp/.traces/subtract_literal
blob: a1a102500e65d34f7d0d5434e991e5c676349515 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                       


                                                                                   

                           
                         


                        
                              
parse/0: instruction: 3
parse/0:   ingredient: {name: "5", value: 0, type: 0, properties: ["5": "literal"]}
parse/0:   ingredient: {name: "2", value: 0, type: 0, properties: ["2": "literal"]}
parse/0:   product: {name: "1", value: 0, type: 1, properties: ["1": "integer"]}
after-brace/0: recipe main
after-brace/0: subtract ...
run/0: instruction main/0
run/0: ingredient 0 is 5
run/0: ingredient 1 is 2
run/0: product 0 is 3
mem/0: storing 3 in location 1
ion' href='/gbmor/getwtxt/blame/getwtxt.yml?id=df8fa27ffa596e02d0560aa9238f194911c03e56'>^
daa4853 ^

86b7c42 ^
c5cf0e1 ^
86b7c42 ^
daa4853 ^
c5cf0e1 ^
daa4853 ^



c5cf0e1 ^
50c1520 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96







                                                             





                                                             



                                                             
                                                             


                                                             

                                              

                

                                                  

                     


                                                


                              





                                                             




                                                   



                                                 



                                                        
                    
 


                                                       

                                                 
 

                                                   













                                                            



                                     

                                  
              
                                     
 
                       
                       



                                                       
                                                                       
 
#############################################################
##  This config file can live in the following locations:  ##
##                                                         ##
##      ./                                                 ##
##      /usr/local/getwtxt/                                ##
##      /etc/                                              ##
##      /usr/local/etc/                                    ##
##                                                         ##
##  The first location found wins. The default filename    ##
##  is getwtxt.yml. This can be configured via command     ##
##  line flags:                                            ##
##                                                         ##
##  For "myconfig.json"                                    ##
##    ./getwtxt -config myconfig -type json                ##
##                                                         ##
#############################################################

#############################################################
##  Changing the following options requires a restart.     ##
#############################################################

# This is the port that getwtxt will bind to.
# If BehindProxy is false, you should probably
# set this to 80 or 443
ListenPort: 9001

# The type of database you want to use. Currently,
# the following are supported:
#   leveldb (default)
#   sqlite
DatabaseType: "leveldb"

# The location of the database structure. Can be
# a relative or absolute path.
DatabasePath: "getwtxt.db"

#############################################################
##  The following options may be changed at any time.      ##
##  getwtxt will automatically reload the config when      ##
##  changes are detected.                                  ##
#############################################################

# The path to the assets directory, which contains:
#     style.css
#     tmpl/index.html
AssetsDirectory: "assets"

# The path to the static files directory.
# Will be served as /static
StaticFilesDirectory: "/usr/local/getwtxt/static"

# If true, getwtxt will send all log messages, including
# requests, to stdout. It will ignore any set log file.
# Useful for debugging, but you probably want to keep
# logs.
StdoutLogging: false

# Log files getwtxt will use. HTTP Requests will be
# recorded in RequestLog, while everything else will go
# into MessageLog, such as errors and notices.
MessageLog: "/usr/local/getwtxt/logs/message.log"
RequestLog: "/usr/local/getwtxt/logs/request.log"

# This is the interval between data pushes from the
# in-memory cache to the on-disk database.
DatabasePushInterval: "5m"

# The time getwtxt will wait between attempts to scrape
# users' statuses from their twtxt.txt files
StatusFetchInterval: "1h"

# The following options pertain to your particular instance.
# They are used in the default page shown when you visit
# getwtxt in a web browser.
Instance:

  # The name of your instance.
  SiteName: "getwtxt"

  # Your instance's web address. If
  # BehindProxy is set to false, this
  # is also used to map incoming
  # requests.
  URL: "https://twtxt.example.com"

  # Your name.
  OwnerName: "Anonymous Microblogger"

  # Your email address.
  Email: "nobody@knows"

  # A short description of your instance, or your site.
  # This is shown at the top of the default web page
  # below your instance's name.
  Description: "A fast, resilient twtxt registry server written in Go!"