Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,813 for fFalse (0.11 sec)

  1. test/stackobj3.go

    	f(s, true)
    	if c != 2 {
    		panic("bad liveness")
    	}
    }
    
    func fFalse() {
    	var s StkObj
    	s.h = new(HeapObj)
    	c = -1
    	n = 0
    	runtime.SetFinalizer(s.h, func(h *HeapObj) {
    		// Remember at what phase the heap object was collected.
    		c = n
    	})
    	f(s, false)
    	if c != 0 {
    		panic("bad liveness")
    	}
    }
    
    func main() {
    	fTrue()
    	fFalse()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:16 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  2. releasenotes/notes/endpoints-false-negative.yaml

    dwq <******@****.***> 1702923949 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 18:25:49 UTC 2023
    - 176 bytes
    - Viewed (0)
  3. pkg/securitycontext/util_test.go

    func TestAddNoNewPrivileges(t *testing.T) {
    	pfalse := false
    	ptrue := true
    
    	tests := map[string]struct {
    		sc     *v1.SecurityContext
    		expect bool
    	}{
    		"allowPrivilegeEscalation nil security context nil": {
    			sc:     nil,
    			expect: false,
    		},
    		"allowPrivilegeEscalation nil": {
    			sc: &v1.SecurityContext{
    				AllowPrivilegeEscalation: nil,
    			},
    			expect: false,
    		},
    		"allowPrivilegeEscalation false": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 05 01:25:23 UTC 2020
    - 5K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/authorizer/modes/modes_test.go

    */
    
    package modes
    
    import "testing"
    
    func TestIsValidAuthorizationMode(t *testing.T) {
    	var tests = []struct {
    		authzMode string
    		expected  bool
    	}{
    		{"", false},
    		{"rBAC", false},        // not supported
    		{"falsy value", false}, // not supported
    		{"RBAC", true},         // supported
    		{"ABAC", true},         // supported
    		{"Webhook", true},      // supported
    		{"AlwaysAllow", true},  // supported
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 23 13:27:16 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/convert/BooleanConversionUtilTest.java

            assertEquals("6", Boolean.TRUE, BooleanConversionUtil.toBoolean("true"));
            assertEquals("7", Boolean.FALSE, BooleanConversionUtil.toBoolean("false"));
            assertEquals("8", Boolean.TRUE, BooleanConversionUtil.toBoolean("fase")); // typo
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. test/const.go

    	assert(dynamicC128 == 0, "dynamicC128 == 0")
    }
    
    func main() {
    	ints()
    	floats()
    	interfaces()
    	truncate()
    
    	assert(ctrue == true, "ctrue == true")
    	assert(cfalse == false, "cfalse == false")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 26 23:54:29 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/header-params.md

        ```
    
    !!! warning "Achtung"
        Bevor Sie `convert_underscores` auf `False` setzen, bedenken Sie, dass manche HTTP-Proxys und Server die Verwendung von Headern mit Unterstrichen nicht erlauben.
    
    ## Doppelte Header
    
    Es ist möglich, doppelte Header zu empfangen. Also den gleichen Header mit unterschiedlichen Werten.
    
    Sie können solche Fälle deklarieren, indem Sie in der Typdeklaration eine Liste verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:00:50 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/path/match_test.go

    	{"[x\\-]", "-", true, nil},
    	{"[x\\-]", "z", false, nil},
    	{"[\\-x]", "x", true, nil},
    	{"[\\-x]", "-", true, nil},
    	{"[\\-x]", "a", false, nil},
    	{"[]a]", "]", false, ErrBadPattern},
    	{"[-]", "-", false, ErrBadPattern},
    	{"[x-]", "x", false, ErrBadPattern},
    	{"[x-]", "-", false, ErrBadPattern},
    	{"[x-]", "z", false, ErrBadPattern},
    	{"[-x]", "x", false, ErrBadPattern},
    	{"[-x]", "-", false, ErrBadPattern},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 14:59:03 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http2/hpack/static_table.go

    		{Name: "content-encoding", Value: "", Sensitive: false},
    		{Name: "content-language", Value: "", Sensitive: false},
    		{Name: "content-length", Value: "", Sensitive: false},
    		{Name: "content-location", Value: "", Sensitive: false},
    		{Name: "content-range", Value: "", Sensitive: false},
    		{Name: "content-type", Value: "", Sensitive: false},
    		{Name: "cookie", Value: "", Sensitive: false},
    		{Name: "date", Value: "", Sensitive: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/test/groovy/org/gradle/api/file/RelativePathTest.java

            path = new RelativePath(false, "one", "..", "two");
            assertPathContains(path, false, "two");
    
            path = new RelativePath(false, "one", "two", "..");
            assertPathContains(path, false, "one");
    
            path = new RelativePath(false, "one", "..", "..", "two");
            assertPathContains(path, false, "..", "two");
    
            path = new RelativePath(false, "..", "one", "two", "..");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 29 15:31:00 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top