Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 154 for sigblock (0.14 sec)

  1. src/runtime/mfinal.go

    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // finblock is an array of finalizers to be executed. finblocks are
    // arranged in a linked list for the finalizer queue.
    //
    // finblock is allocated from non-GC'd memory, so any heap pointers
    // must be specially handled. GC currently assumes that the finalizer
    // queue does not grow during marking (but it can shrink).
    type finblock struct {
    	_       sys.NotInHeap
    	alllink *finblock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/apis/extensions/v1beta1/conversion.go

    }
    
    func Convert_v1beta1_IPBlock_To_networking_IPBlock(in *extensionsv1beta1.IPBlock, out *networking.IPBlock, s conversion.Scope) error {
    	out.CIDR = in.CIDR
    
    	out.Except = make([]string, len(in.Except))
    	copy(out.Except, in.Except)
    	return nil
    }
    
    func Convert_networking_IPBlock_To_v1beta1_IPBlock(in *networking.IPBlock, out *extensionsv1beta1.IPBlock, s conversion.Scope) error {
    	out.CIDR = in.CIDR
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/zz_generated.deepcopy.go

    func (in *IPBlock) DeepCopyInto(out *IPBlock) {
    	*out = *in
    	if in.Except != nil {
    		in, out := &in.Except, &out.Except
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPBlock.
    func (in *IPBlock) DeepCopy() *IPBlock {
    	if in == nil {
    		return nil
    	}
    	out := new(IPBlock)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 20K bytes
    - Viewed (0)
  4. pkg/apis/networking/zz_generated.deepcopy.go

    func (in *IPBlock) DeepCopyInto(out *IPBlock) {
    	*out = *in
    	if in.Except != nil {
    		in, out := &in.Except, &out.Except
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPBlock.
    func (in *IPBlock) DeepCopy() *IPBlock {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. src/runtime/os_linux_mips64x.go

    //go:nosplit
    func cputicks() int64 {
    	// nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
    	return nanotime()
    }
    
    const (
    	_SS_DISABLE  = 2
    	_NSIG        = 129
    	_SIG_BLOCK   = 1
    	_SIG_UNBLOCK = 2
    	_SIG_SETMASK = 3
    )
    
    type sigset [2]uint64
    
    var sigset_all = sigset{^uint64(0), ^uint64(0)}
    
    //go:nosplit
    //go:nowritebarrierrec
    func sigaddset(mask *sigset, i int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 996 bytes
    - Viewed (0)
  6. src/runtime/os_linux_generic.go

    // license that can be found in the LICENSE file.
    
    //go:build !mips && !mipsle && !mips64 && !mips64le && !s390x && !ppc64 && linux
    
    package runtime
    
    const (
    	_SS_DISABLE  = 2
    	_NSIG        = 65
    	_SIG_BLOCK   = 0
    	_SIG_UNBLOCK = 1
    	_SIG_SETMASK = 2
    )
    
    // It's hard to tease out exactly how big a Sigset is, but
    // rt_sigprocmask crashes if we get it wrong, so if binaries
    // are running, this is right.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 01:56:24 UTC 2022
    - 870 bytes
    - Viewed (0)
  7. src/runtime/os_linux_be64.go

    // The standard Linux sigset type on big-endian 64-bit machines.
    
    //go:build linux && (ppc64 || s390x)
    
    package runtime
    
    const (
    	_SS_DISABLE  = 2
    	_NSIG        = 65
    	_SIG_BLOCK   = 0
    	_SIG_UNBLOCK = 1
    	_SIG_SETMASK = 2
    )
    
    type sigset uint64
    
    var sigset_all = sigset(^uint64(0))
    
    //go:nosplit
    //go:nowritebarrierrec
    func sigaddset(mask *sigset, i int) {
    	if i > 64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 21 01:56:24 UTC 2022
    - 806 bytes
    - Viewed (0)
  8. src/cmd/dist/buildtool.go

    	lines := strings.SplitAfter(text, "\n")
    	inBlock := false
    	inComment := false
    	for i, line := range lines {
    		if strings.HasSuffix(line, "*/\n") {
    			inComment = false
    		}
    		if strings.HasSuffix(line, "/*\n") {
    			inComment = true
    		}
    		if inComment {
    			continue
    		}
    		if strings.HasPrefix(line, "import (") {
    			inBlock = true
    			continue
    		}
    		if inBlock && strings.HasPrefix(line, ")") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. pkg/apis/networking/validation/validation_test.go

    		networkPolicy.Spec.Ingress[0].From[0].IPBlock = &networking.IPBlock{
    			CIDR:   "192.168.0.0/16",
    			Except: []string{"192.168.3.0/24", "192.168.4.0/24"},
    		}
    	}
    
    	setIngressFromIPBlockIPV6 := func(networkPolicy *networking.NetworkPolicy) {
    		setIngressFromIfEmpty(networkPolicy)
    		networkPolicy.Spec.Ingress[0].From[0].IPBlock = &networking.IPBlock{
    			CIDR:   "fd00:192:168::/48",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  10. src/runtime/os_linux_mipsx.go

    //go:nosplit
    func cputicks() int64 {
    	// nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
    	return nanotime()
    }
    
    const (
    	_SS_DISABLE  = 2
    	_NSIG        = 128 + 1
    	_SIG_BLOCK   = 1
    	_SIG_UNBLOCK = 2
    	_SIG_SETMASK = 3
    )
    
    type sigset [4]uint32
    
    var sigset_all = sigset{^uint32(0), ^uint32(0), ^uint32(0), ^uint32(0)}
    
    //go:nosplit
    //go:nowritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 987 bytes
    - Viewed (0)
Back to top