Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for _true (0.12 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      int test_property_count() const;
    
      // Returns true iff the test passed (i.e. no test part failed).
      bool Passed() const { return !Failed(); }
    
      // Returns true iff the test failed.
      bool Failed() const;
    
      // Returns true iff the test fatally failed.
      bool HasFatalFailure() const;
    
      // Returns true iff the test has a non-fatal failure.
      bool HasNonfatalFailure() const;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      int test_property_count() const;
    
      // Returns true iff the test passed (i.e. no test part failed).
      bool Passed() const { return !Failed(); }
    
      // Returns true iff the test failed.
      bool Failed() const;
    
      // Returns true iff the test fatally failed.
      bool HasFatalFailure() const;
    
      // Returns true iff the test has a non-fatal failure.
      bool HasNonfatalFailure() const;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"type(self.val1) == bytes",
    				"size(self.val1) == 2",
    			},
    		},
    		{name: "booleans",
    			obj:    objs(true, true, false, false),
    			schema: schemas(booleanType, booleanType, booleanType, booleanType),
    			valid: []string{
    				ValsEqualThemselvesAndDataLiteral("self.val1", "self.val2", "true"),
    				ValsEqualThemselvesAndDataLiteral("self.val3", "self.val4", "false"),
    				"self.val1 != self.val4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. test/stackobj3.go

    	gc() // 0
    	sink = p.h
    	gc() // 1
    	sink = nil
    	// If b==true, h should be collected here.
    	gc() // 2
    }
    
    func fTrue() {
    	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, true)
    	if c != 2 {
    		panic("bad liveness")
    	}
    }
    
    func fFalse() {
    	var s StkObj
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:16 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  5. test/const.go

    	assert(dynamicC64 == 0, "dynamicC64 == 0")
    	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)
  6. pkg/kubelet/kubelet_pods_linux_test.go

    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    )
    
    func TestMakeMounts(t *testing.T) {
    	bTrue := true
    	propagationHostToContainer := v1.MountPropagationHostToContainer
    	propagationBidirectional := v1.MountPropagationBidirectional
    	propagationNone := v1.MountPropagationNone
    
    	testCases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. src/packaging/common/scripts/postinst

        fi
    elif [ "$RESTART_ON_UPGRADE" = "true" ]; then
    
        echo -n "Restarting fess service..."
        if command -v systemctl >/dev/null; then
            systemctl daemon-reload
            systemctl restart fess.service || true
    
        elif [ -x /etc/init.d/fess ]; then
            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
                invoke-rc.d fess start || true
            else
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 3.1K bytes
    - Viewed (0)
  8. pkg/securitycontext/util_test.go

    			},
    			expect: false,
    		},
    		"allowPrivilegeEscalation false": {
    			sc: &v1.SecurityContext{
    				AllowPrivilegeEscalation: &pfalse,
    			},
    			expect: true,
    		},
    		"allowPrivilegeEscalation true": {
    			sc: &v1.SecurityContext{
    				AllowPrivilegeEscalation: &ptrue,
    			},
    			expect: false,
    		},
    	}
    
    	for k, v := range tests {
    		actual := AddNoNewPrivileges(v.sc)
    		if actual != v.expect {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 05 01:25:23 UTC 2020
    - 5K bytes
    - Viewed (0)
  9. internal/s3select/sql/value_test.go

    			},
    			wantVal: true,
    			wantOk:  true,
    		},
    		{
    			name: "truetabs",
    			fields: fields{
    				value: []byte("\ttrue\t"),
    			},
    			wantVal: true,
    			wantOk:  true,
    		},
    		{
    			name: "TRUE",
    			fields: fields{
    				value: []byte("TRUE"),
    			},
    			wantVal: true,
    			wantOk:  true,
    		},
    		{
    			name: "FALSE",
    			fields: fields{
    				value: []byte("FALSE"),
    			},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. src/encoding/xml/read_test.go

    	UI64   uint64
    	F32    float32
    	F32Neg float32
    	F64    float64
    	F64Neg float64
    }
    
    const whitespaceValuesXML = `
    <WhitespaceValuesParent>
        <BFalse>   false   </BFalse>
        <BTrue>   true   </BTrue>
        <I>   266703   </I>
        <INeg>   -266703   </INeg>
        <I8>  112  </I8>
        <I8Neg>  -112  </I8Neg>
        <I16>  6703  </I16>
        <I16Neg>  -6703  </I16Neg>
        <I32>  266703  </I32>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top