Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 8,280 for booln (0.08 sec)

  1. test/closedchan.go

    package main
    
    import "os"
    
    var failed bool
    
    type Chan interface {
    	Send(int)
    	Nbsend(int) bool
    	Recv() (int)
    	Nbrecv() (int, bool)
    	Recv2() (int, bool)
    	Nbrecv2() (int, bool, bool)
    	Close()
    	Impl() string
    }
    
    // direct channel operations when possible
    type XChan chan int
    
    func (c XChan) Send(x int) {
    	c <- x
    }
    
    func (c XChan) Nbsend(x int) bool {
    	select {
    	case c <- x:
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Rsh16Ux16", argLength: 2, aux: "Bool"},
    	{name: "Rsh16Ux32", argLength: 2, aux: "Bool"},
    	{name: "Rsh16Ux64", argLength: 2, aux: "Bool"},
    	{name: "Rsh32Ux8", argLength: 2, aux: "Bool"},
    	{name: "Rsh32Ux16", argLength: 2, aux: "Bool"},
    	{name: "Rsh32Ux32", argLength: 2, aux: "Bool"},
    	{name: "Rsh32Ux64", argLength: 2, aux: "Bool"},
    	{name: "Rsh64Ux8", argLength: 2, aux: "Bool"},
    	{name: "Rsh64Ux16", argLength: 2, aux: "Bool"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. operator/pkg/util/reflect.go

    }
    
    // IsString reports whether value is a string type.
    func IsString(value any) bool {
    	return kindOf(value) == reflect.String
    }
    
    // IsPtr reports whether value is a ptr type.
    func IsPtr(value any) bool {
    	return kindOf(value) == reflect.Ptr
    }
    
    // IsMap reports whether value is a map type.
    func IsMap(value any) bool {
    	return kindOf(value) == reflect.Map
    }
    
    // IsMapPtr reports whether v is a map ptr type.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  4. src/math/big/alias_test.go

    		"Abs": func(v, x bigInt) bool {
    			return checkAliasingOneArg(t, (*big.Int).Abs, v.Int, x.Int)
    		},
    		"Add": func(v, x, y bigInt) bool {
    			return checkAliasingTwoArgs(t, (*big.Int).Add, v.Int, x.Int, y.Int)
    		},
    		"And": func(v, x, y bigInt) bool {
    			return checkAliasingTwoArgs(t, (*big.Int).And, v.Int, x.Int, y.Int)
    		},
    		"AndNot": func(v, x, y bigInt) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.h

    extern llvm::cl::opt<bool> prune_unused_nodes;
    extern llvm::cl::opt<bool> convert_legacy_fed_inputs;
    extern llvm::cl::opt<bool> graph_as_function;
    extern llvm::cl::opt<bool> upgrade_legacy;
    // TODO(jpienaar): Temporary flag, flip default and remove.
    extern llvm::cl::opt<bool> enable_shape_inference;
    extern llvm::cl::opt<bool> unconditionally_use_set_output_shapes;
    extern llvm::cl::opt<bool> enable_soft_placement;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue48827.go

    type (
    	_ G[int]
    	_ G[G /* ERRORx `cannot use.*without instantiation` */]
    	_ bool /* ERROR "invalid operation: bool[int] (bool is not a generic type)" */ [int]
    	_ bool /* ERROR "invalid operation: bool[G] (bool is not a generic type)" */[G]
    )
    
    // The example from the issue.
    func _() {
    	_ = &([10]bool /* ERRORx `invalid operation.*bool is not a generic type` */ [1 /* ERROR "expected type" */ ]{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 591 bytes
    - Viewed (0)
  7. cmd/object-api-interface.go

    	RestoreExpiry  time.Time
    	ExpireRestored bool
    }
    
    // MakeBucketOptions represents bucket options for ObjectLayer bucket operations
    type MakeBucketOptions struct {
    	LockEnabled       bool
    	VersioningEnabled bool
    	ForceCreate       bool      // Create buckets even if they are already created.
    	CreatedAt         time.Time // only for site replication
    	NoLock            bool      // does not lock the make bucket call if set to 'true'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. api/go1.9.txt

    pkg syscall (netbsd-amd64), type Credential struct, NoSetGroups bool
    pkg syscall (netbsd-arm-cgo), type Credential struct, NoSetGroups bool
    pkg syscall (netbsd-arm), type Credential struct, NoSetGroups bool
    pkg syscall (openbsd-386-cgo), type Credential struct, NoSetGroups bool
    pkg syscall (openbsd-386), type Credential struct, NoSetGroups bool
    pkg syscall (openbsd-amd64-cgo), type Credential struct, NoSetGroups bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  9. api/go1.18.txt

    pkg net/netip, method (Addr) Is4() bool
    pkg net/netip, method (Addr) Is4In6() bool
    pkg net/netip, method (Addr) Is6() bool
    pkg net/netip, method (Addr) IsGlobalUnicast() bool
    pkg net/netip, method (Addr) IsInterfaceLocalMulticast() bool
    pkg net/netip, method (Addr) IsLinkLocalMulticast() bool
    pkg net/netip, method (Addr) IsLinkLocalUnicast() bool
    pkg net/netip, method (Addr) IsLoopback() bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. src/internal/poll/file_plan9.go

    	fdmu fdMutex
    }
    
    func (fdmu *FDMutex) Incref() bool {
    	return fdmu.fdmu.incref()
    }
    
    func (fdmu *FDMutex) Decref() bool {
    	return fdmu.fdmu.decref()
    }
    
    func (fdmu *FDMutex) IncrefAndClose() bool {
    	return fdmu.fdmu.increfAndClose()
    }
    
    func (fdmu *FDMutex) ReadLock() bool {
    	return fdmu.fdmu.rwlock(true)
    }
    
    func (fdmu *FDMutex) ReadUnlock() bool {
    	return fdmu.fdmu.rwunlock(true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 972 bytes
    - Viewed (0)
Back to top