Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for MASK (0.68 sec)

  1. CHANGELOG/CHANGELOG-1.27.md

    - Fixed a bug that caused the `apiserver` to panic when trying to allocate a Service with a dynamic `ClusterIP` and was configured with Service CIDRs with a /28 mask for IPv4 and a /124 mask for IPv6 ([#115322](https://github.com/kubernetes/kubernetes/pull/115322), [@aojea](https://github.com/aojea))
    - Fixed a bug where Kubernetes would apply a default StorageClass to a PersistentVolumeClaim,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

    #   KUBECFG_CERT_BASE64
    #   KUBECFG_KEY_BASE64
    function create-certs {
      local -r primary_cn="${1}"
    
      # Determine extra certificate names for master
    
      # Create service_ip by stripping the network mask part from
      # SERVICE_CLUSTER_IP_RANGE and incrementing the host part with 1
      service_ip=${SERVICE_CLUSTER_IP_RANGE%/*}
      service_ip="${service_ip%.*}.$((${service_ip##*.} + 1))"
      local sans=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	if len(p) != 4 {
    		countError("frame_windowupdate_bad_len")
    		return nil, http2ConnectionError(http2ErrCodeFrameSize)
    	}
    	inc := binary.BigEndian.Uint32(p[:4]) & 0x7fffffff // mask off high reserved bit
    	if inc == 0 {
    		// A receiver MUST treat the receipt of a
    		// WINDOW_UPDATE frame with an flow control window
    		// increment of 0 as a stream error (Section 5.4.2) of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. doc/go_spec.html

    Four * 100   // product 400 cannot be represented as an int8 (type of Four)
    </pre>
    
    <p>
    The mask used by the unary bitwise complement operator <code>^</code> matches
    the rule for non-constants: the mask is all 1s for unsigned constants
    and -1 for signed and untyped constants.
    </p>
    
    <pre>
    ^1         // untyped integer constant, equal to -2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    ### Internal
    
    * ✏️ Update Pydantic links to dotenv support. PR [#10511](https://github.com/tiangolo/fastapi/pull/10511) by [@White-Mask](https://github.com/White-Mask).
    * ✏️ Update links in `docs/en/docs/async.md` and `docs/zh/docs/async.md` to make them relative. PR [#10498](https://github.com/tiangolo/fastapi/pull/10498) by [@hasnatsajid](https://github.com/hasnatsajid).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "NodeCIDRMaskSize is the mask size for node cidr in cluster.",
    							Default:     0,
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"NodeCIDRMaskSizeIPv4": {
    						SchemaProps: spec.SchemaProps{
    							Description: "NodeCIDRMaskSizeIPv4 is the mask size for node cidr in dual-stack cluster.",
    							Default:     0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top