Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 164 for sigblock (0.26 sec)

  1. pkg/apis/networking/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.IPBlock)(nil), (*networking.IPBlock)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_IPBlock_To_networking_IPBlock(a.(*v1.IPBlock), b.(*networking.IPBlock), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.IPBlock)(nil), (*v1.IPBlock)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/openshift.go

    	}
    	if len(annotationVal) == 0 {
    		return nil, nil, fmt.Errorf("found annotation %s but it was empty", securityv1.UIDRangeAnnotation)
    	}
    	uidBlock, err := ParseBlock(annotationVal)
    	if err != nil {
    		return nil, nil, err
    	}
    
    	min := int64(uidBlock.Start)
    	max := int64(uidBlock.End)
    	log.Debugf("got preallocated values for min: %d, max: %d for uid range in namespace %s", min, max, ns.Name)
    	return &min, &max, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top