Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 305 for mask6 (0.14 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go

    	SYS_PPOLL          = 109 // { int sys_ppoll(struct pollfd *fds, u_int nfds, const struct timespec *ts, const sigset_t *mask); }
    	SYS_PSELECT        = 110 // { int sys_pselect(int nd, fd_set *in, fd_set *ou, fd_set *ex, const struct timespec *ts, const sigset_t *mask); }
    	SYS_SIGSUSPEND     = 111 // { int sys_sigsuspend(int mask); }
    	SYS_SENDSYSLOG     = 112 // { int sys_sendsyslog(const char *buf, size_t nbyte, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

            if (parameters.size() > 1 && parameters.get(parameters.size() - 2).getKind() == ParameterKindInfo.KOTLIN_DEFAULT_MASK) {
                // push the default mask equal to zero, meaning that no parameters have the default values
                code.add("// The interceptor expects a Kotlin default mask, add a zero argument:\n");
                code.addStatement("$N._ICONST_0()", METHOD_VISITOR_FIELD);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. src/internal/zstd/fse.go

    			next[uint8(i)] = 1
    		}
    	}
    
    	pos := 0
    	step := (tableSize >> 1) + (tableSize >> 3) + 3
    	mask := tableSize - 1
    	for i, n := range norm {
    		for j := 0; j < int(n); j++ {
    			table[pos].sym = uint8(i)
    			pos = (pos + step) & mask
    			for pos > highThreshold {
    				pos = (pos + step) & mask
    			}
    		}
    	}
    	if pos != 0 {
    		return r.makeError(off, "FSE count error")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. src/runtime/arena.go

    	// Too many bits to fit in this word. Write the current word
    	// out and move on to the next word.
    
    	data := h.mask | bits<<h.valid       // mask for this word
    	h.mask = bits >> (ptrBits - h.valid) // leftover for next word
    	h.valid += valid - ptrBits           // have h.valid+valid bits, writing ptrBits of them
    
    	// Flush mask to the memory bitmap.
    	idx := h.offset / (ptrBits * goarch.PtrSize)
    	m := uintptr(1)<<h.low - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. operator/pkg/compare/compare_test.go

    	tests := []struct {
    		desc string
    		a    string
    		b    string
    		mask string
    		want any
    	}{
    		{
    			desc: "ignore masked",
    			a: `
    ak: av
    bk:
      b1k: b1v
      b2k: b2v
    `,
    			b: `
    ak: av
    bk:
      b1k: b1v-changed
      b2k: b2v-changed
    `,
    			mask: `
    bk:
      b1k: ignored
      b2k: ignored
    `,
    			want: ``,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K 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