Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
[ | |
{ | |
"rural": { | |
"way": [ | |
40, | |
30, | |
30, | |
30, | |
30, | |
30, |
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
{ | |
"trip": { | |
"locations": [ | |
{ | |
"type": "break", | |
"lat": 10.772002, | |
"lon": 106.699562, | |
"original_index": 0 | |
}, | |
{ |
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
E0608 04:27:15.934969 12 status.go:71] apiserver received an error that is not an metav1.Status: &url.Error{Op:"Get", URL:"https://10.148.0.16:10250/containerLogs/stag-xxxxxxx-kafka/kafka-connect-cb8bb6d6-k9m5j/kafka-connect?follow=true&sinceSeconds=60&tailLines=100×tamps=true", Err:(*errors.errorString)(0xc010b91510)}: Get "https://10.148.0.16:10250/containerLogs/stag-xxxxxxx-kafka/kafka-connect-cb8bb6d6-k9m5j/kafka-connect?follow=true&sinceSeconds=60&tailLines=100×tamps=true": dial timeout, backstop | |
I0608 04:27:15.935536 12 trace.go:205] Trace[1615819059]: "Get" url:/api/v1/namespaces/stag-xxxxxxx-kafka/pods/kafka-connect-cb8bb6d6-k9m5j/log,user-agent:k9s/v0.0.0 (linux/amd64) kubernetes/$Format,audit-id:3e8bcfef-2059-4c7a-a7d6-4be656672924,client:14.169.228.176,accept:application/json, */*,protocol:HTTP/2.0 (08-Jun-2022 04:26:45.930) (total time: 30004ms): | |
I0608 04:27:15.936006 12 httplog.go:109] "HTTP" verb="GET" URI="/api/v1/namespaces/stag-xxxxxxx-kafka/pods/kafka-connect-cb8bb6d |
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
{ | |
"version":130003, | |
"stmts":[ | |
{ | |
"stmt":{ | |
"SelectStmt":{ | |
"targetList":[ | |
{ | |
"ResTarget":{ | |
"val":{ |
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
2020/10/11 09:15:13.555517 16.462457 /manabie.bob.Course/RetrieveLO | |
09:15:13.555597 . 80 ... RPC: from 127.0.0.1:45602 deadline:none | |
09:15:29.955995 16.400397 ... recv: &RetrieveLORequest{StudentId:f4YFTQJkY8RA5iq2zBf7oFOhEzU2,TopicIds:[VN12-CH-UP-L-001 VN12-CH-U | |
09:15:30.016542 . 60548 ... OK | |
09:15:30.017953 . 1411 ... sent: &RetrieveLOResponse{LearningObjectives:[]*LearningObjective{&LearningObjective{Id:VN10-CH-01-L |
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
-- Create a group | |
CREATE ROLE readaccess; | |
-- Grant access to existing tables | |
GRANT USAGE ON SCHEMA public TO readaccess; | |
GRANT SELECT ON ALL TABLES IN SCHEMA public TO readaccess; | |
-- Grant access to future tables | |
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO readaccess; |
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
→ ./istio-1.5.1/bin/istioctl manifest generate | kubectl delete -f - | |
clusterrole.rbac.authorization.k8s.io "prometheus-istio-system" deleted | |
clusterrolebinding.rbac.authorization.k8s.io "prometheus-istio-system" deleted | |
configmap "prometheus" deleted | |
deployment.apps "prometheus" deleted | |
service "prometheus" deleted | |
serviceaccount "prometheus" deleted | |
clusterrole.rbac.authorization.k8s.io "istio-reader-istio-system" deleted | |
clusterrolebinding.rbac.authorization.k8s.io "istio-reader-istio-system" deleted | |
customresourcedefinition.apiextensions.k8s.io "meshpolicies.authentication.istio.io" deleted |
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
@Purchase | |
Feature: User able to send request to purchase product | |
Scenario: The product's quantity is keep when the connection is lost | |
Given I send request to buy product to the server | |
And I disconnect the connection before the server receive the request | |
And I get the response about disconnect | |
Scenario: The product's quantity is keep when cancel the request | |
Given I send request to buy product to the server |
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
func main() { | |
assasinService := &KindOfAssasinService{} | |
transporter := NewTransporter(assasinService) | |
hitman := NewHitMan(assasinService); | |
} | |
type KindOfAssasinService {} | |
func (ass *KindOfAssasinService) GetVehicle(t string) Vehicle { | |
if t == "car" { | |
return &Car{} |
NewerOlder