Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 8,280 for booln (0.17 sec)

  1. src/cmd/internal/obj/riscv/testdata/testbranch/branch_test.go

    import (
    	"testing"
    )
    
    func testBEQZ(a int64) (r bool)
    func testBGE(a, b int64) (r bool)
    func testBGEU(a, b int64) (r bool)
    func testBGEZ(a int64) (r bool)
    func testBGT(a, b int64) (r bool)
    func testBGTU(a, b int64) (r bool)
    func testBGTZ(a int64) (r bool)
    func testBLE(a, b int64) (r bool)
    func testBLEU(a, b int64) (r bool)
    func testBLEZ(a int64) (r bool)
    func testBLT(a, b int64) (r bool)
    func testBLTU(a, b int64) (r bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 21:56:43 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/condition.go

    	return instr&0x780000 != 0x0
    }
    func sqrshrun_asimdshf_n_cond(instr uint32) bool {
    	return instr&0x780000 != 0x0
    }
    func sqshl_asisdshf_r_cond(instr uint32) bool {
    	return instr&0x780000 != 0x0
    }
    func sqshl_asimdshf_r_cond(instr uint32) bool {
    	return instr&0x780000 != 0x0
    }
    func sqshlu_asisdshf_r_cond(instr uint32) bool {
    	return instr&0x780000 != 0x0
    }
    func sqshlu_asimdshf_r_cond(instr uint32) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasTHUMB    bool // ARM Thumb instruction set
    	Has26BIT    bool // Address space limited to 26-bits
    	HasFASTMUL  bool // 32-bit operand, 64-bit result multiplication support
    	HasFPA      bool // Floating point arithmetic support
    	HasVFP      bool // Vector floating point support
    	HasEDSP     bool // DSP Extensions support
    	HasJAVA     bool // Java instruction set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/model/generator.go

    )
    
    type generator interface {
    	permission(key, value string, forTCP bool) (*rbacpb.Permission, error)
    	principal(key, value string, forTCP bool, useAuthenticated bool) (*rbacpb.Principal, error)
    }
    
    type extendedGenerator interface {
    	extendedPermission(key string, value []string, forTCP bool) (*rbacpb.Permission, error)
    	extendedPrincipal(key string, value []string, forTCP bool) (*rbacpb.Principal, error)
    }
    
    type destIPGenerator struct{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. test/phiopt.go

    //go:noinline
    func f5and(a int, b bool) bool {
    	var x bool
    	if a == 0 {
    		x = b
    	} else {
    		x = false
    	}
    	return x // ERROR "converted OpPhi to AndB$"
    }
    
    //go:noinline
    func f6or(a int, b bool) bool {
    	x := b
    	if a == 0 {
    		// f6or has side effects so the OpPhi should not be converted.
    		x = f6or(a, b)
    	}
    	return x
    }
    
    //go:noinline
    func f6and(a int, b bool) bool {
    	x := b
    	if a == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/short_test.go

    package main
    
    import "testing"
    
    func and_ssa(arg1, arg2 bool) bool {
    	return arg1 && rightCall(arg2)
    }
    
    func or_ssa(arg1, arg2 bool) bool {
    	return arg1 || rightCall(arg2)
    }
    
    var rightCalled bool
    
    //go:noinline
    func rightCall(v bool) bool {
    	rightCalled = true
    	return v
    	panic("unreached")
    }
    
    func testAnd(t *testing.T, arg1, arg2, wantRes bool) {
    	testShortCircuit(t, "AND", arg1, arg2, and_ssa, arg1, wantRes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  7. src/runtime/race/testdata/map_test.go

    	m := make(map[string]bool)
    	ch := make(chan bool, 1)
    	go func() {
    		delete(m, "")
    		ch <- true
    	}()
    	m[""] = true
    	<-ch
    }
    
    func TestRaceMapLenDelete(t *testing.T) {
    	m := make(map[string]bool)
    	ch := make(chan bool, 1)
    	go func() {
    		delete(m, "a")
    		ch <- true
    	}()
    	_ = len(m)
    	<-ch
    }
    
    func TestRaceMapVariable(t *testing.T) {
    	ch := make(chan bool, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 22:09:38 UTC 2017
    - 5.1K bytes
    - Viewed (0)
  8. src/runtime/race/testdata/slice_test.go

    	a := make([]int, 10)
    	ch := make(chan bool, 1)
    	go func() {
    		a[1] = 1
    		ch <- true
    	}()
    	a[1] = 2
    	<-ch
    }
    
    func TestNoRaceArrayWW(t *testing.T) {
    	var a [5]int
    	ch := make(chan bool, 1)
    	go func() {
    		a[0] = 1
    		ch <- true
    	}()
    	a[1] = 2
    	<-ch
    }
    
    func TestRaceArrayWW(t *testing.T) {
    	var a [5]int
    	ch := make(chan bool, 1)
    	go func() {
    		a[1] = 1
    		ch <- true
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 25 23:41:03 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/idempotency_test.go

    		mutator       func(*v1.ConfigMap) error
    		expectedError bool
    	}{
    		{
    			name: "create configmap",
    			setupClient: func(client *clientsetfake.Clientset) {
    				client.PrependReactor("create", "configmaps", func(clientgotesting.Action) (bool, runtime.Object, error) {
    					return true, nil, nil
    				})
    				client.PrependReactor("get", "configmaps", func(clientgotesting.Action) (bool, runtime.Object, error) {
    					return true, nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. migrator/column_type.go

    // PrimaryKey returns the column is primary key or not.
    func (ct ColumnType) PrimaryKey() (isPrimaryKey bool, ok bool) {
    	return ct.PrimaryKeyValue.Bool, ct.PrimaryKeyValue.Valid
    }
    
    // AutoIncrement returns the column is auto increment or not.
    func (ct ColumnType) AutoIncrement() (isAutoIncrement bool, ok bool) {
    	return ct.AutoIncrementValue.Bool, ct.AutoIncrementValue.Valid
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 24 01:31:58 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top