Questions tagged [rocket]

Rocket is a new container runtime, designed for composability, security, and speed. Do not use this tag for the [rust] web framework, use [rust-rocket] instead. Do not use this for Rocket Software products, use appropriate product-specific tag such as [rocket-u2], [unidata], [universe], etc

Rocket is an alternative to the runtime, designed for server environments with the most rigorous security and production requirements. Rocket is oriented around the App Container specification, a new set of simple and open specifications for a portable container format.

74 questions
0
votes
1 answer

Parsing messages sent with Rocket Chat

I am trying to develop an application which parses the text entered in the rocketChat box. I have checked the RocketChat Api: https://rocket.chat/docs/developer-guides/rest-api/ and there is not any way to catch this event (message sent in box). The…
0
votes
0 answers

Rocket universe2 stop console messages in vb.net console application

I have a vb.net console application that uses a Rocket Universe 2 database as a DSN. I can connect to the database and query it, but the console always displays progress messages for each fetch. Querying from my local Sql Server does not cause any…
0
votes
1 answer

Rkt pod exited immediately (without logs)

I am currently trying to run a ubuntu rkt pod. It seems to work well with the --interactive option, but when I ask for a simple run without interaction, the pod exits immediately... I don't have any log (--no entries--) when I checked with…
Flibidi
  • 153
  • 2
  • 12
0
votes
1 answer

How to build the C simulator of rocket chip

I get the following error when build the C simulator: ~/rocket-chip/emulator$ make make: *** No rule to make target /home/rocket-chip/emulator/generated-src/Top.DefaultConfig.prm, needed by…
0
votes
0 answers

Rocket chip generator build error: sbt proxy

I am trying to download Rocket chip generator and build a Rocket core RTL using the generator. The guidance is relatively simple, as in the following link. I only need to type a several lines of…
joist
  • 37
  • 3
0
votes
0 answers

OpenPGP error while using Meta Discovery

I'm currently testing the CoreOS container runtime rocket and recreated a scenario to sign and distribute images via Meta Discovery which is based on the following guide. When I try to run a self-signed image using Meta Discovery I get the following…
0
votes
1 answer

Adding uncore package to a Chisel project

There is a file rocc.scala in rocket repo which describes rocc interface, I want to build its verilog code and see the code. My problem is that I don't know how I can import other packages to my project such as "uncore." or "Util." and run…
Moriss
  • 325
  • 2
  • 12
0
votes
2 answers

How to simulate the RISCV Rocket chip

According to the riscv-gcc compiler we are generated the binary file. This binary file data are feeding to rocket chip through this signals. io_host_in_valid, input [15:0] io_host_in_bits Here io_host_in_bits is 16-bit, so we are driving the…
Santhosh Kumar
  • 25
  • 1
  • 3
  • 8
0
votes
1 answer

Rocket Universe Data load

I'm trying to do a dataload into a Rocket Universe database. In going through the SQL Admin documentation, they give the following example, but very little in the way of describing what is going on with the config file. Can anyone shed a little…
shawno
  • 343
  • 1
  • 3
  • 17
0
votes
1 answer

run SQL script using Rocket Universe from AIX command line (uvsh)

Hopefully this is a simple question. I want to write a shell script that calls a SQL script to do some queries in a Rocket UNIVERSE database. I am doing this from the Server command line (the same machine where the database resides). In SQLSERVER…
shawno
  • 343
  • 1
  • 3
  • 17
-1
votes
0 answers

CORS with Fairings Returning 404

So I've been attempting to set up CORS with Rust/Rocket and it's not working. This looks like the current best approach (How to set up CORS or OPTIONS for Rocket.rs), but I've followed along and I'm still having an error. Here's the code I have so…
yosemeti
  • 206
  • 4
  • 15
-1
votes
1 answer

modify hello world in rocket rust to print variable string with the text

i want my hello world to display hello, {} but everything i do not working and i have absolutely no idea how to solve the errors i get here is my code: #[macro_use] extern crate rocket; use std::fmt::format; #[get("/")] fn index() -> &str { …
curlynux
  • 1
  • 3
-2
votes
1 answer

Rust Error("missing field `key`") when deserializing to JSON

I already tried this solution but it didn't work. I always get the error Error("missing field key") and want to know how to fix this. Code: pub fn get_user(id: String) -> Data { let cache: RedisCache = RedisCache; let s: String =…
Jan
  • 93
  • 9
-2
votes
2 answers

ModuleNotFoundError: No module named 'sktime.transformers'

I tried importing from sktime.transformers.series_as_features.rocket import Rocket When I run this, I encounter this error --- File "C:\Users\Success\AppData\Local\Temp/ipykernel_8440/2082396040.py", line 1, in…
91Hana01
  • 3
  • 1
  • 4
1 2 3 4
5