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
<div class="dx-viewport demo-container"> | |
<div id="chart"></div> | |
<div class="row" id="buttonGroup"> | |
<div class="row-element" id="export"></div> | |
</div> | |
</div> |
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
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
namespace: prow | |
name: plugins | |
data: | |
plugins.yaml: | | |
plugins: | |
jbarrick-mesosphere/prow-test: | |
- size |
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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: my-instance-nginx | |
spec: | |
replicas: 4 | |
selector: | |
matchLabels: | |
app: test-framework | |
template: |
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
package issubset | |
import "reflect" | |
// Check to see if `expected` is a subset of `actual`. A "subset" is an object that is equivalent to | |
// the other object, but where map keys found in actual that are not defined in expected are ignored. | |
func IsSubset(expected, actual interface{}) bool { | |
if reflect.TypeOf(expected) != reflect.TypeOf(actual) { | |
return false | |
} |