Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,854 for sig2 (0.06 sec)

  1. pkg/serviceaccount/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-serviceaccounts-approvers
    reviewers:
      - sig-auth-serviceaccounts-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 172 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-certificates-approvers
    reviewers:
      - sig-auth-certificates-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 166 bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - robscott
      - freehan
      - sig-network-approvers
    reviewers:
      - robscott
      - freehan
      - sig-network-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 199 bytes
    - Viewed (0)
  4. src/crypto/elliptic/nistec.go

    	if x.Sign() == 0 && y.Sign() == 0 {
    		return false
    	}
    	_, err := curve.pointFromAffine(x, y)
    	return err == nil
    }
    
    func (curve *nistCurve[Point]) pointFromAffine(x, y *big.Int) (p Point, err error) {
    	// (0, 0) is by convention the point at infinity, which can't be represented
    	// in affine coordinates. See Issue 37294.
    	if x.Sign() == 0 && y.Sign() == 0 {
    		return curve.newPoint(), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 16:19:34 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-encryption-at-rest-approvers
    reviewers:
      - sig-auth-encryption-at-rest-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 17 21:07:56 UTC 2022
    - 178 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		{name: "MOVHload", argLength: 2, reg: gpload, asm: "MOVH", aux: "SymOff", typ: "Int16", faultOnNilArg0: true, symEffect: "Read"},    // 16 bits, sign extend
    		{name: "MOVWload", argLength: 2, reg: gpload, asm: "MOVW", aux: "SymOff", typ: "Int32", faultOnNilArg0: true, symEffect: "Read"},    // 32 bits, sign extend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. pkg/apis/authentication/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    # approval on api packages bubbles to api-approvers
    reviewers:
      - sig-auth-authenticators-approvers
      - sig-auth-authenticators-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 211 bytes
    - Viewed (0)
  8. src/fmt/format.go

    		for digits > 0 {
    			num = append(num, '0')
    			digits--
    		}
    		num = append(num, tail...)
    	}
    	// We want a sign if asked for and if the sign is not positive.
    	if f.plus || num[0] != '+' {
    		// If we're zero padding to the left we want the sign before the leading zeros.
    		// Achieve this by writing the sign out and then padding the unsigned number.
    		// Zero padding is allowed only to the left.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    reviewers:
      - sig-network-reviewers
      - andrewsykim
      - aroradaman
      - uablrek
    approvers:
      - sig-network-approvers
      - andrewsykim
      - uablrek
    labels:
      - sig/network
      - area/ipvs
    emeritus_approvers:
      - brendandburns
      - lbernail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 10:30:20 UTC 2023
    - 301 bytes
    - Viewed (0)
  10. cmd/kubelet/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-node-approvers # see https://github.com/kubernetes/kubernetes/blob/master/OWNERS_ALIASES#LC220:~:text=sig%2Dnode%2Dapprovers
    reviewers:
      - sig-node-reviewers # see https://github.com/kubernetes/kubernetes/blob/master/OWNERS_ALIASES#LC220:~:text=sig%2Dnode%2Dreviewers
    labels:
      - area/kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 377 bytes
    - Viewed (0)
Back to top