Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SAR (0.05 sec)

  1. pkg/apis/authorization/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(field.NewPath("metadata"), sar.ObjectMeta, `must be empty except for namespace`))
    	}
    
    	if sar.Spec.ResourceAttributes != nil && sar.Spec.ResourceAttributes.Namespace != sar.Namespace {
    		allErrs = append(allErrs, field.Invalid(field.NewPath("spec.resourceAttributes.namespace"), sar.Spec.ResourceAttributes.Namespace, `must match metadata.namespace`))
    	}
    	if sar.Spec.NonResourceAttributes != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. pkg/controller/certificates/approver/sarapprove.go

    		extra[k] = authorization.ExtraValue(v)
    	}
    
    	sar := &authorization.SubjectAccessReview{
    		Spec: authorization.SubjectAccessReviewSpec{
    			User:               csr.Spec.Username,
    			UID:                csr.Spec.UID,
    			Groups:             csr.Spec.Groups,
    			Extra:              extra,
    			ResourceAttributes: &rattrs,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 16:03:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64latelower.rules

    Authors. All rights reserved.
    L2:// Use of this source code is governed by a BSD-style
    L3:// license that can be found in the LICENSE file.
    L4:
    L5:// Prefer SARX/SHLX/SHRX instruction because it has less register restriction on the shift input.
    L6:(SAR(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SARX(Q|L) x y)
    L7:(SHL(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SHLX(Q|L) x y)
    L8:(SHR(Q|L) x y) && buildcfg.GOAMD64 >= 3 => (SHRX(Q|L) x y)
    L9:
    L10:// See comments in ARM64latelower.rules for why these are here.
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 636 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    	s.AlwaysAllowPaths = append(s.AlwaysAllowPaths, paths...)
    	return s
    }
    
    // WithClientTimeout sets the given timeout for SAR client used by this authorizer
    func (s *DelegatingAuthorizationOptions) WithClientTimeout(timeout time.Duration) {
    	s.ClientTimeout = timeout
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	OUT:       true,
    	POP:       true,
    	POPA:      true,
    	POPCNT:    true,
    	PUSH:      true,
    	PUSHA:     true,
    	RCL:       true,
    	RCR:       true,
    	ROL:       true,
    	ROR:       true,
    	SAR:       true,
    	SBB:       true,
    	SHL:       true,
    	SHLD:      true,
    	SHR:       true,
    	SHRD:      true,
    	SUB:       true,
    	TEST:      true,
    	XADD:      true,
    	XCHG:      true,
    	XOR:       true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top