Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 559 for Desc (0.12 sec)

  1. operator/pkg/translate/translate_common_test.go

    	tests := []struct {
    		desc     string
    		yamlStr  string
    		want     []string
    		wantErrs bool
    	}{
    		{
    			desc:    "nil success",
    			yamlStr: "",
    			want:    nil,
    		},
    		{
    			desc: "all components disabled",
    			yamlStr: `
    components:
      pilot:
        enabled: false
      ingressGateways:
      - enabled: false`,
    			want: nil,
    		},
    		{
    			desc: "only pilot component enabled",
    			yamlStr: `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 21 22:14:28 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption_test.go

    	testCases := []struct {
    		desc string
    		in   *apiserver.KMSConfiguration
    		want field.ErrorList
    	}{{
    		desc: "valid v1 api version",
    		in:   &apiserver.KMSConfiguration{APIVersion: "v1"},
    		want: field.ErrorList{},
    	}, {
    		desc: "valid v2 api version",
    		in:   &apiserver.KMSConfiguration{APIVersion: "v2"},
    		want: field.ErrorList{},
    	}, {
    		desc: "invalid api version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 33.7K bytes
    - Viewed (0)
  3. operator/pkg/tpath/tree_test.go

    a:
      nk1:
        nk2: nv2
    `,
    		},
    		{
    			desc:      "DeleteMapEntry",
    			path:      `a.b`,
    			wantFound: true,
    			want: `
    a: {}
    `,
    		},
    		{
    			desc:      "path not found",
    			path:      `a.c.[name:n2].list.[:v3]`,
    			wantFound: false,
    			wantErr:   `path not found at element c in path a.c.[name:n2].list.[:v3]`,
    		},
    		{
    			desc:      "error key",
    			path:      `a.b.[].list`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  4. src/compress/bzip2/bzip2_test.go

    }
    
    func TestReader(t *testing.T) {
    	var vectors = []struct {
    		desc   string
    		input  []byte
    		output []byte
    		fail   bool
    	}{{
    		desc: "hello world",
    		input: mustDecodeHex("" +
    			"425a68393141592653594eece83600000251800010400006449080200031064c" +
    			"4101a7a9a580bb9431f8bb9229c28482776741b0",
    		),
    		output: []byte("hello world\n"),
    	}, {
    		desc: "concatenated files",
    		input: mustDecodeHex("" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.cc

    using llvm::cl::opt;
    
    // Import options.
    // NOLINTNEXTLINE
    opt<std::string> input_arrays(
        "tf-input-arrays", llvm::cl::desc("Input tensor names, separated by ','"),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> input_dtypes(
        "tf-input-data-types",
        llvm::cl::desc("(Optional) Input tensor data types, separated by ','. Use "
                       "'' if a single data type is skipped. The data type from "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. operator/pkg/validate/validate_test.go

    import (
    	"testing"
    
    	"istio.io/api/operator/v1alpha1"
    	"istio.io/istio/operator/pkg/util"
    )
    
    func TestValidate(t *testing.T) {
    	tests := []struct {
    		desc     string
    		yamlStr  string
    		wantErrs util.Errors
    	}{
    		{
    			desc: "nil success",
    		},
    		{
    			desc: "complicated k8s overlay",
    			yamlStr: `
    profile: default
    components:
      ingressGateways:
      - enabled: true
        k8s:
          affinity:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactoryTest.java

            ParameterizedClassDesc desc = ParameterizedClassDescFactory.createParameterizedClassDesc(method, 0, map);
            assertThat(desc.getRawClass(), is(sameClass(Set.class)));
            ParameterizedClassDesc[] args = desc.getArguments();
            assertThat(args.length, is(1));
            assertThat(args[0].getRawClass(), is(sameClass(Integer.class)));
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubeletconfig/configfiles/configfiles_test.go

    		{
    			desc: "invalid yaml",
    			file: newString(`*`),
    			err:  "failed to decode",
    		},
    		{
    			desc: "invalid json",
    			file: newString(`{*`),
    			err:  "failed to decode",
    		},
    		// invalid object
    		{
    			desc: "missing kind",
    			file: newString(`{"apiVersion":"kubelet.config.k8s.io/v1beta1"}`),
    			err:  "failed to decode",
    		},
    		{
    			desc: "missing version",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .desc("Define a user property")
                    .build());
            options.addOption(Option.builder(Character.toString(OFFLINE))
                    .longOpt("offline")
                    .desc("Work offline")
                    .build());
            options.addOption(Option.builder(Character.toString(VERSION))
                    .longOpt("version")
                    .desc("Display version information")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. operator/pkg/cache/cache_test.go

    	"istio.io/istio/operator/pkg/object"
    )
    
    func TestFlushObjectCaches(t *testing.T) {
    	tests := []struct {
    		desc     string
    		wantSize int
    	}{
    		{
    			desc:     "flush-cache",
    			wantSize: 0,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			unstObjs := make(map[string]any)
    			tUnstructured := &unstructured.Unstructured{Object: unstObjs}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 20 18:46:12 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top