Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 126 for Bad (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go

    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EDEADLK", "resource deadlock avoided"},
    	{12, "ENOMEM", "cannot allocate memory"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    	{16, "EBUSY", "device busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  2. pkg/apis/networking/validation/validation_test.go

    		"valid name, valid controller, invalid params (bad kind)": {
    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setParams(makeIngressClassParams(nil, "foo/", "bar", utilpointer.String("Cluster"), nil)),
    			),
    			expectedErrs: field.ErrorList{field.Invalid(field.NewPath("spec.parameters.kind"), "foo/", "may not contain '/'")},
    		},
    		"valid name, valid controller, invalid params (bad scope)": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  3. src/html/template/escape_test.go

    			// Treated as JS since quotes are inserted.
    			`<img onload="alert(&#34;loaded&#34;)">`,
    		},
    		{
    			"bad dynamic attribute name 1",
    			// Allow checked, selected, disabled, but not JS or
    			// CSS attributes.
    			`<input {{"onchange"}}="{{"doEvil()"}}">`,
    			`<input ZgotmplZ="doEvil()">`,
    		},
    		{
    			"bad dynamic attribute name 2",
    			`<div {{"sTyle"}}="{{"color: expression(alert(1337))"}}">`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    					}
    				}
    				return false
    			}
    			if check(&claim, &pod) != tc.needsPodRef {
    				t.Errorf("Bad pod ref for %s hasPodRef=%v hasSetRef=%v", tc.name, hasPodRef, hasSetRef)
    			}
    			if check(&claim, &set) != tc.needsSetRef {
    				t.Errorf("Bad set ref for %s hasPodRef=%v hasSetRef=%v", tc.name, hasPodRef, hasSetRef)
    			}
    		}
    	}
    }
    
    func TestUpdateClaimControllerRef(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    				g: NoGoroutine,
    				p: NoProc,
    			}
    			o.mStates[m] = ms
    		}
    		curCtx.P = ms.p
    		curCtx.G = ms.g
    		newCtx = curCtx
    	}
    
    	f := orderingDispatch[ev.typ]
    	if f == nil {
    		return false, fmt.Errorf("bad event type found while ordering: %v", ev.typ)
    	}
    	newCtx, ok, err := f(o, ev, evt, m, gen, curCtx)
    	if err == nil && ok && ms != nil {
    		// Update the mState for this event.
    		ms.p = newCtx.P
    		ms.g = newCtx.G
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{7, "E2BIG", "arg list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file number"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EWOULDBLOCK", "resource temporarily unavailable"},
    	{12, "ENOMEM", "not enough space"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    	{16, "EBUSY", "device busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{7, "E2BIG", "arg list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file number"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EWOULDBLOCK", "resource temporarily unavailable"},
    	{12, "ENOMEM", "not enough space"},
    	{13, "EACCES", "permission denied"},
    	{14, "EFAULT", "bad address"},
    	{15, "ENOTBLK", "block device required"},
    	{16, "EBUSY", "device busy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    		{N2, II, false},
    		{N2, CI, false},
    		{N2p, II, true},
    		{N2p, CI, false},
    		{N3, II, false},
    		{N3, CI, false},
    		{N4, II, true},
    		{N4, CI, false},
    		{Bad, II, false},
    		{Bad, CI, false},
    		{Bad, EmptyIface, true},
    	}
    
    	for _, test := range tests {
    		if got := Implements(test.V, test.T); got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. pkg/apis/certificates/validation/validation_test.go

    			},
    		}, {
    			description: "invalid, with signer name, bad name suffix",
    			bundle: &capi.ClusterTrustBundle{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "k8s.io:foo:123notvalidDNSSubdomain",
    				},
    				Spec: capi.ClusterTrustBundleSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    		{N2, II, false},
    		{N2, CI, false},
    		{N2p, II, true},
    		{N2p, CI, false},
    		{N3, II, false},
    		{N3, CI, false},
    		{N4, II, true},
    		{N4, CI, false},
    		{Bad, II, false},
    		{Bad, CI, false},
    		{Bad, EmptyIface, true},
    	}
    
    	for _, test := range tests {
    		if got := Implements(test.V, test.T); got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top