Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for _abc (1.18 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

            where:
            description | constructorArgs | argumentNumber | outputType
            'first'     | '123, 234'      | 1              | 'class java.lang.String'
            'last'      | '"abc", "123"'  | 2              | 'int'
        }
    
        def "fails to create when null passed as a constructor argument value at #position"() {
            given:
            buildFile << CUSTOM_TASK_WITH_CONSTRUCTOR_ARGS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/net/url/url_test.go

    		}
    	}
    }
    
    var pathEscapeTests = []EscapeTest{
    	{
    		"",
    		"",
    		nil,
    	},
    	{
    		"abc",
    		"abc",
    		nil,
    	},
    	{
    		"abc+def",
    		"abc+def",
    		nil,
    	},
    	{
    		"a/b",
    		"a%2Fb",
    		nil,
    	},
    	{
    		"one two",
    		"one%20two",
    		nil,
    	},
    	{
    		"10%",
    		"10%25",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. 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)
  6. pkg/controller/statefulset/stateful_set_utils_test.go

    				Name:       "fred",
    				UID:        "abc",
    			},
    			obj: metav1.ObjectMeta{
    				Name: "fred",
    				UID:  "abc",
    			},
    			schema:      podKind,
    			shouldMatch: true,
    		},
    		{
    			name: "match without UID",
    			ref: metav1.OwnerReference{
    				APIVersion: "v1",
    				Kind:       "Pod",
    				Name:       "fred",
    				UID:        "abc",
    			},
    			obj: metav1.ObjectMeta{
    				Name: "fred",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    	}
    	storage, destroyFunc, err := newETCD3Storage(*cfg.ForResource(schema.GroupResource{Resource: "pods"}), nil, nil, "")
    	defer destroyFunc()
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = storage.Create(context.TODO(), "/abc", &example.Pod{}, nil, 0)
    	if err != nil {
    		t.Fatalf("Create failed: %v", err)
    	}
    }
    
    func configureTLSCerts(t *testing.T) (certFile, keyFile, caFile string) {
    	baseDir := os.TempDir()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top