Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 397 for afunc (0.04 sec)

  1. pkg/volume/noop_expandable_plugin.go

    }
    
    func (n *noopExpandableVolumePluginInstance) GetVolumeName(spec *Spec) (string, error) {
    	return n.spec.Name(), nil
    }
    
    func (n *noopExpandableVolumePluginInstance) CanSupport(spec *Spec) bool {
    	return true
    }
    
    func (n *noopExpandableVolumePluginInstance) RequiresRemount(spec *Spec) bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/syscall/fs_wasip1.go

    	return errnoErr(errno)
    }
    
    func Chmod(path string, mode uint32) error {
    	var stat Stat_t
    	return Stat(path, &stat)
    }
    
    func Fchmod(fd int, mode uint32) error {
    	var stat Stat_t
    	return Fstat(fd, &stat)
    }
    
    func Chown(path string, uid, gid int) error {
    	return ENOSYS
    }
    
    func Fchown(fd int, uid, gid int) error {
    	return ENOSYS
    }
    
    func Lchown(path string, uid, gid int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. test/codegen/bits.go

    // mask contiguous zero bits
    func cont0Mask64U(x uint64) uint64 {
    	// s390x:"RISBGZ\t[$]48, [$]15, [$]0,"
    	return x & 0xffff00000000ffff
    }
    
    func issue44228a(a []int64, i int) bool {
    	// amd64: "BTQ", -"SHL"
    	return a[i>>6]&(1<<(i&63)) != 0
    }
    func issue44228b(a []int32, i int) bool {
    	// amd64: "BTL", -"SHL"
    	return a[i>>5]&(1<<(i&31)) != 0
    }
    
    func issue48467(x, y uint64) uint64 {
    	// arm64: -"NEG"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/builtins0.go

    	_ = s4
    }
    
    func append3() {
    	f1 := func() (s []int) { return }
    	f2 := func() (s []int, x int) { return }
    	f3 := func() (s []int, x, y int) { return }
    	f5 := func() (s []interface{}, x int, y float32, z string, b bool) { return }
    	ff := func() (int, float32) { return 0, 0 }
    	_ = append(f0 /* ERROR "used as value" */ ())
    	_ = append(f1())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. cmd/xl-storage-disk-id-check.go

    func (p *xlStorageDiskIDCheck) IsLocal() bool {
    	return p.storage.IsLocal()
    }
    
    func (p *xlStorageDiskIDCheck) Endpoint() Endpoint {
    	return p.storage.Endpoint()
    }
    
    func (p *xlStorageDiskIDCheck) Hostname() string {
    	return p.storage.Hostname()
    }
    
    func (p *xlStorageDiskIDCheck) Healing() *healingTracker {
    	return p.storage.Healing()
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    func (in *AWSElasticBlockStoreVolumeSource) DeepCopyInto(out *AWSElasticBlockStoreVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSElasticBlockStoreVolumeSource.
    func (in *AWSElasticBlockStoreVolumeSource) DeepCopy() *AWSElasticBlockStoreVolumeSource {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *AWSElasticBlockStoreVolumeSource) DeepCopyInto(out *AWSElasticBlockStoreVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSElasticBlockStoreVolumeSource.
    func (in *AWSElasticBlockStoreVolumeSource) DeepCopy() *AWSElasticBlockStoreVolumeSource {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. pkg/test/echo/proto/echo.pb.go

    }
    
    func (x *ForwardEchoRequest) GetUrl() string {
    	if x != nil {
    		return x.Url
    	}
    	return ""
    }
    
    func (x *ForwardEchoRequest) GetHeaders() []*Header {
    	if x != nil {
    		return x.Headers
    	}
    	return nil
    }
    
    func (x *ForwardEchoRequest) GetMessage() string {
    	if x != nil {
    		return x.Message
    	}
    	return ""
    }
    
    func (x *ForwardEchoRequest) GetMethod() string {
    	if x != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. src/runtime/alg.go

    )
    
    func memhash0(p unsafe.Pointer, h uintptr) uintptr {
    	return h
    }
    
    func memhash8(p unsafe.Pointer, h uintptr) uintptr {
    	return memhash(p, h, 1)
    }
    
    func memhash16(p unsafe.Pointer, h uintptr) uintptr {
    	return memhash(p, h, 2)
    }
    
    func memhash128(p unsafe.Pointer, h uintptr) uintptr {
    	return memhash(p, h, 16)
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/modes_test.go

    }
    
    var allDecModes = []cbor.DecMode{
    	modes.Decode,
    	modes.DecodeLax,
    }
    
    func assertNilError(t *testing.T, e error) {
    	if e != nil {
    		t.Errorf("expected nil error, got: %v", e)
    	}
    }
    
    func assertOnConcreteError[E error](fn func(*testing.T, E)) func(t *testing.T, e error) {
    	return func(t *testing.T, ei error) {
    		var ec E
    		if !errors.As(ei, &ec) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top