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
# The output of `virt-cat -a CentOS-Stream-GenericCloud-8-20210603.0.x86_64.qcow2 /root/anaconda-ks.cfg` | |
#version=RHEL8 | |
# Shutdown after installation | |
shutdown | |
# Use text mode install | |
text | |
repo --name="koji-override-0" --baseurl=http://qa.centos.org/centos/8-stream/BaseOS/x86_64/os/ | |
repo --name="koji-override-1" --baseurl=http://qa.centos.org/centos/8-stream/AppStream/x86_64/os/ | |
repo --name="AppStream" --baseurl=http://qa.centos.org/centos/8-stream/AppStream/x86_64/os |
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
import static org.junit.Assert.*; | |
import org.junit.Before; | |
import org.junit.Test; | |
public class SubtitleSeqFactoryStudentTestPhase2 { | |
class TimeSt implements Time { | |
private int hh; | |
private int mm; | |
private int ss; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using MoreLinq; | |
public static class CartesianExtension | |
{ | |
public static IEnumerable<TResult> Cartesian<TSource, TResult>( | |
this IEnumerable<IEnumerable<TSource>> enumerables, | |
Func<IEnumerable<TSource>, TResult> resultSelector) |