Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for blockSize (0.15 sec)

  1. prow/config/calico.yaml

                      not specified or empty, defaults to ["Tunnel", "Workload"] for back-compatibility
                    items:
                      type: string
                    type: array
                  blockSize:
                    description: The block size to use for IP address assignments from
                      this pool. Defaults to 26 for IPv4 and 122 for IPv6.
                    type: integer
                  cidr:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. doc/go_spec.html

    	polar Point                   // polar and Point denote different types
    )
    
    type TreeNode struct {
    	left, right *TreeNode
    	value any
    }
    
    type Block interface {
    	BlockSize() int
    	Encrypt(src, dst []byte)
    	Decrypt(src, dst []byte)
    }
    </pre>
    
    <p>
    A defined type may have <a href="#Method_declarations">methods</a> associated with it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Seq_num             uint64
    	Ts_first_pkt        TpacketBDTS
    	Ts_last_pkt         TpacketBDTS
    }
    
    type TpacketReq struct {
    	Block_size uint32
    	Block_nr   uint32
    	Frame_size uint32
    	Frame_nr   uint32
    }
    
    type TpacketReq3 struct {
    	Block_size       uint32
    	Block_nr         uint32
    	Frame_size       uint32
    	Frame_nr         uint32
    	Retire_blk_tov   uint32
    	Sizeof_priv      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
Back to top