Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for sans (0.73 sec)

  1. cluster/gce/util.sh

      local sans=""
      for extra in "$@"; do
        if [[ -n "${extra}" ]]; then
          sans="${sans}IP:${extra},"
        fi
      done
      sans="${sans}IP:${service_ip},DNS:kubernetes,DNS:kubernetes.default,DNS:kubernetes.default.svc,DNS:kubernetes.default.svc.${DNS_DOMAIN},DNS:${MASTER_NAME}"
    
      echo "Generating certs for alternate-names: ${sans}"
    
      setup-easyrsa
    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/crypto/x509/verify_test.go

    		},
    		{
    			// Build a simple two node graph, where the leaf is directly issued from
    			// the root and both certificates have matching subject and public key, but
    			// the leaf has SANs.
    			name: "leaf with same subject, key, as parent but with SAN",
    			graph: trustGraphDescription{
    				Roots: []rootDescription{{Subject: "root"}},
    				Leaf:  "root",
    				Graph: []trustGraphEdge{
    					{
    						Issuer:  "root",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Less64 x y) => (LessThan (CMP  x y))
    
    // Set condition flags for floating-point comparisons "x < y"
    // and "x <= y". Because if either or both of the operands are
    // NaNs, all three of (x < y), (x == y) and (x > y) are false,
    // and ARM Manual says FCMP instruction sets PSTATE.<N,Z,C,V>
    // of this case to (0, 0, 1, 1).
    (Less32F x y) => (LessThanF (FCMPS x y))
    (Less64F x y) => (LessThanF (FCMPD x y))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	gp.syscallsp = gp.sched.sp
    	gp.stktopsp = gp.sched.sp
    	// malg returns status as _Gidle. Change to _Gdead before
    	// adding to allg where GC can see it. We use _Gdead to hide
    	// this from tracebacks and stack scans since it isn't a
    	// "real" goroutine until needm grabs it.
    	casgstatus(gp, _Gidle, _Gdead)
    	gp.m = mp
    	mp.curg = gp
    	mp.isextra = true
    	// mark we are in C by default.
    	mp.isExtraInC = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top