Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for _abc (0.12 sec)

  1. src/os/os_windows_test.go

    			continue
    		}
    		if string(data) != "abc" {
    			t.Errorf(`abc file is expected to have "abc" in it, but has %v`, data)
    			continue
    		}
    
    		fi1, err := os.Stat(link)
    		if err != nil {
    			t.Errorf("failed to stat link %v: %v", link, err)
    			continue
    		}
    		if tp := fi1.Mode().Type(); tp != fs.ModeDir {
    			t.Errorf("Stat(%q) is type %v; want %v", link, tp, fs.ModeDir)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. src/index/suffixarray/suffixarray_test.go

    			"aaaaaaaaaa",
    			"aaaaaaaaaaa", // 11 a's
    			".",
    			".*",
    			"a+",
    			"aa+",
    			"aaaa[b]?",
    			"aaa*",
    		},
    	},
    
    	{
    		"abc",
    		"abc",
    		[]string{
    			"a",
    			"b",
    			"c",
    			"ab",
    			"bc",
    			"abc",
    			"a.c",
    			"a(b|c)",
    			"abc?",
    		},
    	},
    
    	{
    		"barbara*3",
    		"barbarabarbarabarbara",
    		[]string{
    			"a",
    			"bar",
    			"rab",
    			"arab",
    			"barbar",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

    			expectedPruned: []string{"array[1].b", "array[2].b", "specified.b", "unspecified"}},
    		{name: "nested x-kubernetes-preserve-unknown-fields", json: `
    {
      "unspecified":"bar",
      "alpha": "abc",
      "beta": 42.0,
      "unspecifiedObject": {"unspecified": "bar"},
      "pruning": {
         "unspecified": "bar",
         "unspecifiedObject": {"unspecified": "bar"},
         "pruning": {"unspecified": "bar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    			in:            hex("a143414243187b"), // {"ABC": 123}
    			want:          map[string]interface{}{"ABC": int64(123)},
    			assertOnError: assertNilError,
    		},
    		{
    			name:          "map with mixed string key types",
    			in:            hex("a243abcdef187b43414243187c"), // {h'abcdef': 123, "ABC": 124}
    			want:          map[string]interface{}{"\xab\xcd\xef": int64(123), "ABC": int64(124)},
    			assertOnError: assertNilError,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar_test.go

    			t.Errorf("%q: got %t, want %t", host, got, want)
    		}
    	}
    }
    
    var defaultPathTests = map[string]string{
    	"/":           "/",
    	"/abc":        "/",
    	"/abc/":       "/abc",
    	"/abc/xyz":    "/abc",
    	"/abc/xyz/":   "/abc/xyz",
    	"/a/b/c.html": "/a/b",
    	"":            "/",
    	"strange":     "/",
    	"//":          "/",
    	"/a//b":       "/a/",
    	"/a/./b":      "/a/.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    				class.Annotations = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar.go

    		return "/" // Path is empty or malformed.
    	}
    
    	i := strings.LastIndex(path, "/") // Path starts with "/", so i != -1.
    	if i == 0 {
    		return "/" // Path has the form "/abc".
    	}
    	return path[:i] // Path is either of form "/abc/xyz" or "/abc/xyz/".
    }
    
    // newEntry creates an entry from an http.Cookie c. now is the current time and
    // is compared to c.Expires to determine deletion of c. defPath and host are the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/volume_manager_test.go

    	if err != nil {
    		t.Fatalf("can't make a temp dir: %v", err)
    	}
    	defer os.RemoveAll(tmpDir)
    	podManager := kubepod.NewBasicPodManager()
    
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "abc",
    			Namespace: "nsA",
    			UID:       "1234",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name: "container1",
    					VolumeMounts: []v1.VolumeMount{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    				if got := err.Error(); got != want {
    					t.Fatalf("want error message %q, got %q", want, got)
    				}
    			},
    		},
    		{
    			in:   FromString(""),
    			want: []byte{0x40},
    		},
    		{
    			in:   FromString("abc"),
    			want: []byte{0x43, 'a', 'b', 'c'},
    		},
    		{
    			in:   FromInt32(0), // min positive integer representable in one byte
    			want: []byte{0x00},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top