Home
last modified time | relevance | path

Searched refs:record (Results 1 – 25 of 216) sorted by path

123456789

/plugin/aceeditor/
H A Dbuild.js1 …ox|rcond|rdivide|readasync|real|reallog|realmax|realmin|realpow|realsqrt|record|rectangle|rectint|…
/plugin/acknowledge/
H A Dhelper.php260 $record = $this->db->queryRecord($sql, $page);
261 if (!$record) return false;
262 $assignees = $record['pageassignees'] . ',' . $record['autoassignees'];
/plugin/aichat/Storage/
H A DSQLiteStorage.php48 $record = $this->db->queryRecord('SELECT * FROM embeddings WHERE id = ?', [$chunkID]);
49 if (!$record) return null;
52 $record['page'],
53 $record['id'],
54 $record['chunk'],
55 json_decode((string) $record['embedding'], true, 512, JSON_THROW_ON_ERROR),
56 $record['lang'],
57 $record['created']
125 foreach ($result as $record) {
127 $record['pag
[all...]
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe47144 record ed
/plugin/airtable/
H A DREADME.md22 `{{airtable>type: "theType" | record-url: "theRecordURL"}}`
32 * `record`
35 * `record-url: ` - The table/record you wish to pull data from.
36 …* Within airtable, expand any record (by clicking on a field and pressing space) and copy the URL …
65 Any table query that results in one record will also be rendered as a 'record'.
67 `{{airtable>type: "record" | record-url: "theURL" | fields: "field1", "field2" | alt-tag: "ALT_TAG"…
77 `{{airtable>Type: "record" | Fields: "Photo ID", "Ref #", "Upload Date", "Photo" | record-url: "htt…
78 ![Record Example](images/record.png)
84 `{{airtable>type: "image" | record-url: "URL" | alt-tag: "ALT_TAG" | image-size: "IMG_SIZE" | posit…
108 `{{airtable>type: "text" | fields: "field1", "field2" | record-url: "theRecordURL"}}`
[all …]
H A Dstyle.css13 .airtable-record {
18 .airtable-record h3 {
H A Dsyntax.php237 foreach($api_response['records'] as $record) {
240 if(is_array($record['fields'][$field])) {
241 if($image = $this->findMedia($record['fields'][$field])) {
247 …$html .= '<td>' . $this->renderAnyExternalLinks(htmlspecialchars($record['fields'][$field])) . '</…
624 $request = $data['table'] . '/' . urlencode($data['record-id']);
/plugin/amcharts/assets/amcharts/plugins/export/libs/xlsx/
H A Dxlsx.js3712 if(blob.l-s != blob.lens[i]) throw "TxO: bad continue record";
4347 default: if(!pass || opts.WTF) throw new Error("Unexpected record " + RT + " " + R.n);
4915 default: if(!pass || opts.WTF) throw new Error("Unexpected record " + RT + " " + R.n);
5170 default: if(!pass || opts.WTF) throw new Error("Unexpected record " + RT + " " + R.n);
5285 default: if(!pass || opts.WTF) throw new Error("Unexpected record " + RT + " " + R.n);
H A Dxlsx.min.js4 …lob.lens.length-1;++i){if(blob.l-s!=blob.lens[i])throw"TxO: bad continue record";var hdr=blob[blob…
5record "+RT+" "+R.n)}});return s}function write_BrtBeginSst(sst,o){if(!o)o=new_buf(8);o.write_shif…
6record "+RT+" "+R.n)}});return out}function write_cc_bin(data,opts){}function parse_comments(zip,d…
/plugin/anewssystem/
H A Dsyntax.php140 foreach($news_record as $record) {
142 … if((stripos($record, $delete_record)!==false) && (stripos($record, $delete_anchor)!==false)) {
148 else { if(strlen($record)>1) $news_records.= "====== ".$record;}
166 foreach ($records as $record) {
167 $fields = explode('|',$record);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ChromeUXReport/
H A DQueryResponse.php30 public function setRecord(Record $record) argument
32 $this->record = $record;
39 return $this->record;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DGames.php289 ],'record' => [
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Games/Resource/
H A DEvents.php86 public function record(EventRecordRequest $postBody, $optParams = []) function in Google\\Service\\Games\\Resource\\Events
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md8 …ce that can be used to type-hint records like `array|\Monolog\LogRecord $record` to be forward com…
16 …* Added record message/context/extra info to exceptions thrown when a StreamHandler cannot open it…
137 * BC Break: The record timezone is now set per Logger instance and not statically anymore
142 …* Added DateTimeImmutable support, all record datetime are now immutable, and will toString/json s…
309 …* Fixed JSON encoding errors that would gobble up the whole log record, we now handle those more g…
354 * Added PHPConsoleHandler to send record to Chrome's PHP Console extension and library
358 …* Added an option to send formatted message instead of the raw record on PushoverHandler via ->use…
378 …* Break: HandlerInterface::isHandling now receives a partial record containing only a level key. T…
380 * Added SamplingHandler to wrap around a handler and include only every Nth record
442 * Added GitProcessor to add the current branch/commit to extra record data
[all …]
H A DUPGRADE.md13 - The `datetime` in every record array is now a DateTimeImmutable, not that you
39 - Log levels are not shortened to 4 characters anymore. e.g. a warning record
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Formatter/
H A DChromePHPFormatter.php42 public function format(array $record) argument
46 if (isset($record['extra']['file'], $record['extra']['line'])) {
47 $backtrace = $record['extra']['file'].' : '.$record['extra']['line'];
48 unset($record['extra']['file'], $record['extra']['line']);
52 if ($record['context']) {
55 if ($record['extra']) {
56 $message['extra'] = $record['extra'];
63 $record['channel'],
66 $this->logLevels[$record['level']],
77 foreach ($records as $record) {
[all …]
H A DElasticaFormatter.php51 public function format(array $record) argument
53 $record = parent::format($record);
55 return $this->getDocument($record);
77 protected function getDocument(array $record): Document argument
80 $document->setData($record);
H A DElasticsearchFormatter.php49 public function format(array $record) argument
51 $record = parent::format($record);
53 return $this->getDocument($record);
79 * @param mixed[] $record Log message
82 protected function getDocument(array $record): array argument
84 $record['_index'] = $this->index;
85 $record['_type'] = $this->type;
87 return $record;
H A DFlowdockFormatter.php42 public function format(array $record): array argument
46 '#' . strtolower($record['level_name']),
47 '#' . $record['channel'],
50 foreach ($record['extra'] as $value) {
57 $record['level_name'],
58 $this->getShortMessage($record['message'])
61 $record['flowdock'] = [
65 'content' => $record['message'],
70 return $record;
82 foreach ($records as $record) {
[all …]
H A DFluentdFormatter.php58 public function format(array $record): string argument
60 $tag = $record['channel'];
62 $tag .= '.' . strtolower($record['level_name']);
66 'message' => $record['message'],
67 'context' => $record['context'],
68 'extra' => $record['extra'],
72 $message['level'] = $record['level'];
73 $message['level_name'] = $record['level_name'];
76 return Utils::jsonEncode([$tag, $record['datetime']->getTimestamp(), $message]);
82 foreach ($records as $record) {
[all …]
H A DFormatterInterface.php26 * @param array $record A record to format
31 public function format(array $record); argument
H A DGelfMessageFormatter.php86 public function format(array $record): Message argument
89 if (isset($record['context'])) {
91 $context = parent::normalize($record['context']);
93 if (isset($record['extra'])) {
95 $extra = parent::normalize($record['extra']);
98 if (!isset($record['datetime'], $record['message'], $record['level'])) {
104 ->setTimestamp($record['datetime'])
105 ->setShortMessage((string) $record['message'])
107 ->setLevel($this->logLevels[$record['level']]);
116 if (isset($record['channel'])) {
[all …]
H A DHtmlFormatter.php86 public function format(array $record): string argument
88 $output = $this->addTitle($record['level_name'], $record['level']);
91 $output .= $this->addRow('Message', (string) $record['message']);
92 $output .= $this->addRow('Time', $this->formatDate($record['datetime']));
93 $output .= $this->addRow('Channel', $record['channel']);
94 if ($record['context']) {
96 foreach ($record['context'] as $key => $value) {
102 if ($record['extra']) {
104 foreach ($record['extra'] as $key => $value) {
122 foreach ($records as $record) {
[all …]
H A DJsonFormatter.php75 public function format(array $record): string argument
77 $normalized = $this->normalize($record);
H A DLineFormatter.php79 public function format(array $record): string argument
81 $vars = parent::format($record);
132 foreach ($records as $record) {
133 $message .= $this->format($record);

123456789