Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for Qux (0.04 sec)

  1. hack/update-codegen.sh

            "$@"
    
        if [[ "${DBG_CODEGEN}" == 1 ]]; then
            kube::log::status "Generated conversion code"
        fi
    }
    
    # $@: directories to exclude
    # example:
    #    k8s_tag_files_except foo bat/qux
    function k8s_tag_files_except() {
        for f in "${ALL_K8S_TAG_FILES[@]}"; do
            local excl=""
            for x in "$@"; do
                if [[ "$f" =~ "$x"/.* ]]; then
                    excl="true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. tests/preload_suits_test.go

    	levelA1 := &LevelA1{Value: "foo"}
    	if err := DB.Save(levelA1).Error; err != nil {
    		t.Error(err)
    	}
    
    	want := []*LevelA2{
    		{
    			Value: "bar",
    			LevelA3s: []*LevelA3{
    				{
    					Value:   "qux",
    					LevelA1: levelA1,
    				},
    			},
    		},
    		{
    			Value:    "bar 2",
    			LevelA3s: []*LevelA3{},
    		},
    	}
    	for _, levelA2 := range want {
    		if err := DB.Save(levelA2).Error; err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Mar 18 05:38:46 UTC 2022
    - 30.3K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    	runClientTestTLS13(t, test)
    }
    
    var hostnameInSNITests = []struct {
    	in, out string
    }{
    	// Opaque string
    	{"", ""},
    	{"localhost", "localhost"},
    	{"foo, bar, baz and qux", "foo, bar, baz and qux"},
    
    	// DNS hostname
    	{"golang.org", "golang.org"},
    	{"golang.org.", "golang.org"},
    
    	// Literal IPv4 address
    	{"1.2.3.4", ""},
    
    	// Literal IPv6 address
    	{"::1", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    			registerFakePlugin(test.driver, "endpoint", []string{"1.0.0"}, t)
    			pv := makeTestPV("test-pv", 10, test.driver, testVol)
    			pv.Spec.CSI.VolumeAttributes = test.volumeContext
    			pv.Spec.MountOptions = []string{"foo=bar", "baz=qux"}
    			pvName := pv.GetName()
    
    			mounter, err := plug.NewMounter(
    				volume.NewSpecFromPersistentVolume(pv, pv.Spec.PersistentVolumeSource.CSI.ReadOnly),
    				&corev1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. plugin/pkg/admission/noderestriction/admission_test.go

    				KubeletConfigKey: "kubelet",
    			}}}}
    		mynodeObjConfigB = &api.Node{ObjectMeta: mynodeObjMeta, Spec: api.NodeSpec{ConfigSource: &api.NodeConfigSource{
    			ConfigMap: &api.ConfigMapNodeConfigSource{
    				Name:             "qux",
    				Namespace:        "bar",
    				UID:              "quxUID",
    				KubeletConfigKey: "kubelet",
    			}}}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
Back to top