This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
error[E0277]: the trait bound `SelectStatement<FromClause<schema::import_file::table>, query_builder::select_clause::DefaultSelectClause<FromClause<schema::import_file::table>>, query_builder::distinct_clause::NoDistinctClause, query_builder::where_clause::WhereClause<diesel::expression::grouped::Grouped<diesel::expression::operators::Eq<schema::import_file::columns::import_uid, diesel::expression::bound::Bound<diesel::sql_types::Uuid, &uuid::Uuid>>>>>: QuerySource` is not satisfied | |
--> src/db/import_table.rs:412:36 | |
| | |
412 | diesel::delete(file.inner_join(import_file.filter(import_uid.eq(param_uid)))) | |
| ---------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `QuerySource` is not implemented for `SelectStatement<FromClause<table>, DefaultSelectClause<FromClause<table>>, ..., ...>` | |
| | | |
| required by a bound introduced by this call | |
| | |
= help: the trait `QuerySource` is implemented for `SelectStatement<F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useEffect } from 'react'; | |
import { | |
Box, | |
Button, | |
List, | |
ListItem, | |
ListItemText, | |
IconButton, | |
Dialog, | |
DialogTitle, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Checking db v0.1.0 (/home/stephan/Development/mray_server/db) | |
warning: unused import: `self` | |
--> db/src/error.rs:1:16 | |
| | |
1 | use std::fmt::{self, Display, Formatter}; | |
| ^^^^ | |
| | |
= note: `#[warn(unused_imports)]` on by default | |
warning: unused import: `bb8` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": 8, | |
"name": "Basic", | |
"sources": { | |
"openmaptiles": { | |
"type": "vector", | |
"url": "https://api.maptiler.com/tiles/v3-openmaptiles/tiles.json" | |
} | |
}, | |
"sprite": "https://openmaptiles.github.io/maptiler-basic-gl-style/sprite", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:dicom_web/dicom_web.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:mray_client/models/series_model.dart'; | |
import 'package:mray_client/models/studies_model.dart'; | |
import 'package:mray_client/services/dicom_web_service.dart'; | |
import 'package:mray_client/widgets/study_tile.dart'; | |
import 'package:provider/provider.dart'; | |
class InboxPage extends StatefulWidget { | |
const InboxPage({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"00080005": { | |
"Value": [ | |
"ISO_IR 100" | |
], | |
"vr": "CS" | |
}, | |
"00080008": { | |
"Value": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Checking multipart-rs v0.1.0 (/home/stephan/Development/multipart-rs) | |
error[E0309]: the parameter type `E` may not live long enough | |
--> src/reader.rs:74:9 | |
| | |
46 | impl<'a, E> MultipartReader<'a, E> { | |
| -- the parameter type `E` must be valid for the lifetime `'a` as defined here... | |
... | |
74 | MultipartReader::from_stream_with_boundary_and_type(stream, boundary, multipart_type) | |
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ...so that the type `E` will meet its required lifetime bounds | |
| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.config = { | |
routerBasename: '/', | |
extensions: [], | |
modes: [], | |
customizationService: { | |
dicomUploadComponent: | |
'@ohif/extension-cornerstone.customizationModule.cornerstoneDicomUploadComponent', | |
}, | |
showStudyList: true, | |
maxNumberOfWebWorkers: 3, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5:a8 SetVariable env:Lexical init:Set 6 (n): | |
0x00007f33e5c964c5 be b0 92 a8 00 mov esi, 0x00a892b0 | |
0x00007f33e5c964ca 4c 89 e2 mov rdx,r12 | |
0x00007f33e5c964cd 41 b9 a4 91 a8 00 mov r9d, 0x00a891a4 | |
0x00007f33e5c964d3 41 0f b6 41 08 movzx eax,[r9+0x8] | |
0x00007f33e5c964d8 48 85 c0 test rax,rax | |
0x00007f33e5c964db 0f 84 59 00 00 00 jz near e5c9653a <5:a8+0x75> | |
0x00007f33e5c964e1 49 8b 4f 20 mov rcx,[r15+0x20] | |
0x00007f33e5c964e5 8b 02 mov eax,[rdx] | |
0x00007f33e5c964e7 48 85 c0 test rax,rax |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Compiler::compile_put_by_value(Bytecode::Op::PutByValue const& op) | |
{ | |
load_vm_register(ARG1, op.base()); | |
load_vm_register(ARG2, op.property()); | |
Assembler::Label end {}; | |
Assembler::Label slow_case {}; | |
branch_if_object(ARG1, [&] { | |
branch_if_int32(ARG2, [&] { |
NewerOlder