Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 584 for MASK (0.03 sec)

  1. pkg/registry/core/service/ipallocator/bitmap.go

    // is returned if the provided IPNet range doesn't exactly match the previous range.
    func (r *Range) Restore(net *net.IPNet, data []byte) error {
    	if !net.IP.Equal(r.net.IP) || net.Mask.String() != r.net.Mask.String() {
    		return ErrMismatchedNetwork
    	}
    	snapshottable, ok := r.alloc.(allocator.Snapshottable)
    	if !ok {
    		return fmt.Errorf("not a snapshottable allocator")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	stopped = 0x7F
    )
    
    func (w WaitStatus) Exited() bool { return w&mask == exited }
    
    func (w WaitStatus) ExitStatus() int {
    	if w&mask != exited {
    		return -1
    	}
    	return int(w >> shift)
    }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  3. test/bounds.go

    	use(p1[ui%1001])
    	use(p1k[ui%1001])
    	use(p100k[ui%1001]) // ERROR "index bounds check elided"
    
    	// Bitwise and truncates the maximum value to the mask value.
    	// The result (for a positive mask) cannot be negative, so elision
    	// applies to both signed and unsigned indexes.
    	use(s[i&999])
    	use(a1[i&999])
    	use(a1k[i&999])   // ERROR "index bounds check elided"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 03:11:45 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32_s390x.s

    //
    //            IEEE: P'(x) = 0x0edb88320
    //      Castagnoli: P'(x) = 0x082f63b78
    
    
    // IEEE polynomial constants
    DATA    ·crclecons+0(SB)/8,  $0x0F0E0D0C0B0A0908       // LE-to-BE mask
    DATA    ·crclecons+8(SB)/8,  $0x0706050403020100
    DATA    ·crclecons+16(SB)/8, $0x00000001c6e41596       // R2
    DATA    ·crclecons+24(SB)/8, $0x0000000154442bd4       // R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    		}
    	}
    	sort.Slice(all, func(i, j int) bool { return bits.Reverse64(all[i]) < bits.Reverse64(all[j]) })
    	digits := sort.Search(64/4, func(digits int) bool {
    		mask := uint64(1)<<(4*digits) - 1
    		for i := 0; i+1 < len(all); i++ {
    			if all[i]&mask == all[i+1]&mask {
    				return false
    			}
    		}
    		return true
    	})
    	if digits < 64/4 {
    		digits++
    	}
    	return digits
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

      // perNodeHostBits defines the number of host bits to be configured per node.
      // A subnet mask determines how much of the address is used for network bits
      // and host bits. For example an IPv4 address of 192.168.0.0/24, splits the
      // address into 24 bits for the network portion and 8 bits for the host portion.
      // To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6).
      // Minimum value is 4 (16 IPs).
      // This field is immutable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/math/dim_amd64.s

    	// +Inf special cases
    	MOVQ    $PosInf, AX
    	MOVQ    x+0(FP), R8
    	CMPQ    AX, R8
    	JEQ     isPosInf
    	MOVQ    y+8(FP), R9
    	CMPQ    AX, R9
    	JEQ     isPosInf
    	// NaN special cases
    	MOVQ    $~(1<<63), DX // bit mask
    	MOVQ    $PosInf, AX
    	MOVQ    R8, BX
    	ANDQ    DX, BX // x = |x|
    	CMPQ    AX, BX
    	JLT     isMaxNaN
    	MOVQ    R9, CX
    	ANDQ    DX, CX // y = |y|
    	CMPQ    AX, CX
    	JLT     isMaxNaN
    	// ±0 special cases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/atomic_386.s

    TEXT ·And64(SB), NOSPLIT, $0-20
    	MOVL	ptr+0(FP), BP
    	// DI:SI = v
    	MOVL	val_lo+4(FP), SI
    	MOVL	val_hi+8(FP), DI
    	// DX:AX = *addr
    	MOVL	0(BP), AX
    	MOVL	4(BP), DX
    casloop:
    	// CX:BX = DX:AX (*addr) & DI:SI (mask)
    	MOVL	AX, BX
    	MOVL	DX, CX
    	ANDL	SI, BX
    	ANDL	DI, CX
    	LOCK
    	CMPXCHG8B	0(BP)
    	JNZ casloop
    	MOVL	AX, ret_lo+12(FP)
    	MOVL	DX, ret_hi+16(FP)
    	RET
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_loong64.go

    	Ctim              Timespec
    	X__glibc_reserved [2]int32
    }
    
    type statxTimestamp struct {
    	Sec         int64
    	Nsec        uint32
    	X__reserved int32
    }
    
    type statx_t struct {
    	Mask            uint32
    	Blksize         uint32
    	Attributes      uint64
    	Nlink           uint32
    	Uid             uint32
    	Gid             uint32
    	Mode            uint16
    	X__spare0       [1]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  10. cmd/kube-apiserver/app/options/validation_test.go

    			expectErrors:         true,
    		},
    		{
    			name:                 "ipv6 cidr too big",
    			cidr:                 *getIPnetFromCIDR("3000::/64"),
    			maxCIDRBits:          20,
    			cidrFlag:             "--service-cluster-ip-range",
    			expectedErrorMessage: "specified --service-cluster-ip-range is too large; for 128-bit addresses, the mask must be >= 108",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top