Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for MASK (0.07 sec)

  1. src/net/addrselect.go

    type policyTableEntry struct {
    	Prefix     netip.Prefix
    	Precedence uint8
    	Label      uint8
    }
    
    type policyTable []policyTableEntry
    
    // RFC 6724 section 2.1.
    // Items are sorted by the size of their Prefix.Mask.Size,
    var rfc6724policyTable = policyTable{
    	{
    		// "::1/128"
    		Prefix:     netip.PrefixFrom(netip.AddrFrom16([16]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01}), 128),
    		Precedence: 50,
    		Label:      0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. pkg/controller/nodeipam/ipam/cidr_allocator.go

    	// ServiceCIDR is primary service cidr for cluster.
    	ServiceCIDR *net.IPNet
    	// SecondaryServiceCIDR is secondary service cidr for cluster.
    	SecondaryServiceCIDR *net.IPNet
    	// NodeCIDRMaskSizes is list of node cidr mask sizes.
    	NodeCIDRMaskSizes []int
    }
    
    // New creates a new CIDR range allocator.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

            common_dim = dim;
          } else if (common_dim != dim) {
            // If mask_one_dim is true, do not emit an error if this is the only
            // dimension with mismatches. Note down the dimension to mask it from
            // the following types.
            if (mask_one_dim && dim_to_mask == ShapedType::kDynamic) {
              dim_to_mask = i;
              continue;
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/runtime/netpoll_wasip1.go

    //   by using "clock" subscriptions.
    // - each FD subscription can either be for a read or a write, but not both.
    //   This is in contrast to poll(2) which accepts a mask with POLLIN and
    //   POLLOUT bits, allowing for a subscription to either, neither, or both
    //   reads and writes.
    //
    // Since poll_oneoff is similar to poll(2), the implementation here was derived
    // from netpoll_aix.go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/cni-watcher.go

    	var podIps []netip.Addr
    	for _, configuredPodIPs := range addCmd.IPs {
    		// net.ip is implicitly convertible to netip as slice
    		ip, _ := netip.AddrFromSlice(configuredPodIPs.Address.IP)
    		// We ignore the mask of the IPNet - it's fine if the IPNet defines
    		// a block grant of addresses, we just need one for checking routes.
    		podIps = append(podIps, ip)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Quiesceowner [8]byte
    	_            [38]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	_      int32
    	Fd     int32
    	Pad    int32
    }
    
    type InotifyEvent struct {
    	Wd     int32
    	Mask   uint32
    	Cookie uint32
    	Len    uint32
    	Name   string
    }
    
    const (
    	SizeofInotifyEvent = 0x10
    )
    
    type ConsMsg2 struct {
    	Cm2Format       uint16
    	Cm2R1           uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/crypto/ecdh/nist.go

    		return newBoringPrivateKey(c, key, bytes)
    	}
    
    	key := make([]byte, len(c.scalarOrder))
    	randutil.MaybeReadByte(rand)
    	for {
    		if _, err := io.ReadFull(rand, key); err != nil {
    			return nil, err
    		}
    
    		// Mask off any excess bits if the size of the underlying field is not a
    		// whole number of bytes, which is only the case for P-521. We use a
    		// pointer to the scalarOrder field because comparing generic and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/syscall/syscall_wasip1.go

    	return 0, 0, ENOSYS
    }
    
    func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
    	return 0, ENOSYS
    }
    
    func Umask(mask int) int {
    	return 0
    }
    
    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    func (ts *Timespec) timestamp() timestamp {
    	return timestamp(ts.Sec*1e9) + timestamp(ts.Nsec)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/io/fs/fs.go

    	ModeSticky                                     // t: sticky
    	ModeIrregular                                  // ?: non-regular file; nothing else is known about this file
    
    	// Mask for the type bits. For regular files, none will be set.
    	ModeType = ModeDir | ModeSymlink | ModeNamedPipe | ModeSocket | ModeDevice | ModeCharDevice | ModeIrregular
    
    	ModePerm FileMode = 0777 // Unix permission bits
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    	state := h.macState
    	if h.offset > 0 {
    		updateGeneric(&state, h.buffer[:h.offset])
    	}
    	finalize(out, &state.h, &state.s)
    }
    
    // [rMask0, rMask1] is the specified Poly1305 clamping mask in little-endian. It
    // clears some bits of the secret coefficient to make it possible to implement
    // multiplication more efficiently.
    const (
    	rMask0 = 0x0FFFFFFC0FFFFFFF
    	rMask1 = 0x0FFFFFFC0FFFFFFC
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top