python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to convert Enum in yaml configuration to a class for parsing purpose (See details for more information)?
I have an Enum that looks something like this:
public Enum Test {
val1("firstValue", "secondValue"), val2("firstValue2", "secondValue2");
private Stri...
Ankit Arora
Votes: 0
Answers: 1
pyyaml dump and yamllint document start
I am using yaml.dump to write out my yaml files from aggregated data.
This yaml file is then fed to a 3rd party tool that uses yamllint to check the file before processing the data.
I have two problem...

JDWK
Votes: 0
Answers: 1
How to parse PodSpec.spec.imagePullSecrets from a yaml file?
I want to parse the following structure using go:
---
prjA:
user1:
metadata:
namespace: prj-ns
spec:
containers:
- image: some-contaner:latest
name: containerss...

Andreas Florath
Votes: 0
Answers: 1