Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for Fmask (0.14 sec)

  1. cluster/gce/util.sh

      export KUBE_CERT="${CERT_DIR}/pki/issued/kubecfg.crt"
      export KUBE_KEY="${CERT_DIR}/pki/private/kubecfg.key"
      export CA_CERT="${CERT_DIR}/pki/ca.crt"
      export CONTEXT="${PROJECT}_${INSTANCE_PREFIX}"
      (
       umask 077
    
       # Update the user's kubeconfig to include credentials for this apiserver.
       create-kubeconfig
      )
    
      # ensures KUBECONFIG is set
      get-kubeconfig-basicauth
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // On ARM64 the bitmask can fit into an instruction.
    (SRLconst [c] (SLLconst [c] x)) && 0 < c && c < 64 => (ANDconst [1<<uint(64-c)-1] x) // mask out high bits
    (SLLconst [c] (SRLconst [c] x)) && 0 < c && c < 64 => (ANDconst [^(1<<uint(c)-1)] x) // mask out low bits
    
    // Special case setting bit as 1. An example is math.Copysign(c,-1)
    (ORconst [c1] (ANDconst [c2] x)) && c2|c1 == ^0  => (ORconst [c1] x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    	block, _ := pem.Decode([]byte(badIPMaskPEM))
    	_, err := ParseCertificate(block.Bytes)
    	if err == nil {
    		t.Fatalf("unexpected success")
    	}
    
    	const expected = "contained invalid mask"
    	if !strings.Contains(err.Error(), expected) {
    		t.Fatalf("expected %q in error but got: %s", expected, err)
    	}
    }
    
    const additionalGeneralSubtreePEM = `
    -----BEGIN CERTIFICATE-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. doc/go1.17_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: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top