Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for appendJSON (0.09 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                    appendJson("user-agent", entity.getUserAgent(), buf).append(',');
                    appendJson("client-ip", entity.getClientIp(), buf).append(',');
                    appendJson("access-type", entity.getAccessType(), buf).append(',');
                    appendJson("query-time", entity.getQueryTime(), buf).append(',');
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. src/expvar/expvar.go

    }
    
    type jsonVar interface {
    	// appendJSON appends the JSON representation of the receiver to b.
    	appendJSON(b []byte) []byte
    }
    
    // Int is a 64-bit integer variable that satisfies the [Var] interface.
    type Int struct {
    	i atomic.Int64
    }
    
    func (v *Int) Value() int64 {
    	return v.i.Load()
    }
    
    func (v *Int) String() string {
    	return string(v.appendJSON(nil))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top