Topics
This file contains 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
[tool.poetry] | |
name = "foo" | |
version = "1.1.1" | |
authors = ["Your Name <[email protected]>"] | |
license = "Proprietary" | |
readme = "README.md" | |
include = ["foo/templates/*", "foo/templates/**/*"] | |
exclude = ["outputs/**", "foo/tests/**"] | |
This file contains 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
Feb 06 14:24:10 infra2 nova-api-wsgi[82345]: 2023-02-06 14:24:10.387 82345 ERROR nova.api.openstack.wsgi [None req-96870c4e-a5fc-48d0-9ce1-a6e370f4f2da d991fc9b15754c53905754ee78368243 5f98bd21f329455d94d8a304747e840d - - default default] Unexpected exception in API method: nova.exception.NovaException: None of the segments of network 3b434226-e2d9-4ba3-b264-b370285cc169 prov> | |
2023-02-06 14:24:10.387 82345 ERROR nova.api.openstack.wsgi Traceback (most recent call last): | |
2023-02-06 14:24:10.387 82345 ERROR nova.api.openstack.wsgi File "/openstack/venvs/nova-26.0.0/lib/python3.9/site-packages/nova/api/openstack/wsgi.py", line 664, in wrapped | |
2023-02-06 14:24:10.387 82345 ERROR nova.api.openstack.wsgi return f(*args, **kwargs) | |
2023-02-06 14:24:10.387 82345 ERROR nova.api.openstack.wsgi File "/openstack/venvs/nova-26.0.0/lib/pyt |
This file contains 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
--- | |
- name: Deploy artifacts | |
hosts: deployment,targets | |
gather_facts: false | |
vars: | |
venv_sections: | |
- horizon | |
- neutron | |
- nova | |
- glance |
This file contains 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
use std::cmp::*; | |
#[derive(Debug, Clone, PartialOrd, PartialEq, Eq)] | |
struct Zero { | |
index: usize, | |
} | |
#[derive(Debug, Clone, PartialOrd, PartialEq, Eq, Ord)] | |
struct Segment { | |
start: usize, |
This file contains 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
PG_STAT OBJECTS MISSING_ON_PRIMARY DEGRADED MISPLACED UNFOUND BYTES OMAP_BYTES* OMAP_KEYS* LOG DISK_LOG STATE STATE_STAMP VERSION REPORTED UP UP_PRIMARY ACTING ACTING_PRIMARY LAST_SCRUB SCRUB_STAMP LAST_DEEP_SCRUB DEEP_SCRUB_STAMP SNAPTRIMQ_LEN | |
2.1f 86 86 0 258 0 186443 0 0 86 86 active+recovery_wait+remapped 2021-09-10T14:07:32.911653+0000 60'86 79:31 [3] 3 [3,0,4] 3 0'0 2021-09-10T13:01:55.246941+0000 0'0 2021-09-10T13:01:21.322639+0000 0 | |
2.1e 92 92 92 184 0 6910486 0 0 93 93 active+recovery_wait+degraded+remapped 2021-09-10T14:07:40.248405+0000 60'93 79:37 [6] 6 [6,4,5] 6 0'0 2021-09-10T13:01:52.298971+0000 |
This file contains 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
- name: Creating instances for dynamic inventory | |
hosts: somegroup | |
gather_facts: false | |
tasks: | |
- name: Create VM | |
delegate_to: localhost | |
os_server: | |
name: '{{ instance_name }}' | |
auto_ip: false | |
flavor: '{{ flavor }}' |
This file contains 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
- hosts: localhost | |
gather_facts: false | |
tasks: | |
- name: check_mode=true check_mode_supported=false | |
command: date | |
check_mode: true | |
- name: check_mode=false check_mode_supported=false | |
command: date | |
check_mode: false | |
- name: check_mode=absent check_mode_supported=false |
This file contains 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
extern crate minifb; | |
use std::time::{Duration, Instant}; | |
use std::thread::sleep; | |
use minifb::{Key, WindowOptions, Window}; | |
fn main() { | |
let mut buffer: Vec<u32> = vec![0; 2048 * 1024]; | |
let mut window = Window::new("Test - ESC to exit", |
This file has been truncated, but you can view the full file.
This file contains 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
[ | |
187603, | |
190185, | |
199509, | |
183983, | |
182403, | |
184522, | |
371415, | |
372966, |
NewerOlder