Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for optsFunc (0.35 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	if !c.fetchKeysFromRemote {
    		// Set the verifier to use the public key set instead of reading from a remote.
    		c.options.KeySet = &staticKeySet{keys: c.pubKeys}
    	}
    
    	if c.optsFunc != nil {
    		c.optsFunc(&c.options)
    	}
    
    	expectInitErr := len(c.wantInitErr) > 0
    
    	ctx := testContext(t)
    
    	// Initialize the authenticator.
    	a, err := New(ctx, c.options)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	addF("math", "Trunc",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    			return s.newValue1(ssa.OpTrunc, types.Types[types.TFLOAT64], args[0])
    		},
    		sys.ARM64, sys.PPC64, sys.S390X, sys.Wasm)
    	addF("math", "Ceil",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    		return true
    	case OpSub8:
    		v.Op = OpPPC64SUB
    		return true
    	case OpSubPtr:
    		v.Op = OpPPC64SUB
    		return true
    	case OpTailCall:
    		v.Op = OpPPC64CALLtail
    		return true
    	case OpTrunc:
    		v.Op = OpPPC64FTRUNC
    		return true
    	case OpTrunc16to8:
    		return rewriteValuePPC64_OpTrunc16to8(v)
    	case OpTrunc32to16:
    		return rewriteValuePPC64_OpTrunc32to16(v)
    	case OpTrunc32to8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteARM64.go

    		return true
    	case OpSub8:
    		v.Op = OpARM64SUB
    		return true
    	case OpSubPtr:
    		v.Op = OpARM64SUB
    		return true
    	case OpTailCall:
    		v.Op = OpARM64CALLtail
    		return true
    	case OpTrunc:
    		v.Op = OpARM64FRINTZD
    		return true
    	case OpTrunc16to8:
    		v.Op = OpCopy
    		return true
    	case OpTrunc32to16:
    		v.Op = OpCopy
    		return true
    	case OpTrunc32to8:
    		v.Op = OpCopy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		return true
    	case OpSub8:
    		v.Op = OpAMD64SUBL
    		return true
    	case OpSubPtr:
    		v.Op = OpAMD64SUBQ
    		return true
    	case OpTailCall:
    		v.Op = OpAMD64CALLtail
    		return true
    	case OpTrunc:
    		return rewriteValueAMD64_OpTrunc(v)
    	case OpTrunc16to8:
    		v.Op = OpCopy
    		return true
    	case OpTrunc32to16:
    		v.Op = OpCopy
    		return true
    	case OpTrunc32to8:
    		v.Op = OpCopy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    	case OpSub64:
    		return rewriteValuegeneric_OpSub64(v)
    	case OpSub64F:
    		return rewriteValuegeneric_OpSub64F(v)
    	case OpSub8:
    		return rewriteValuegeneric_OpSub8(v)
    	case OpTrunc:
    		return rewriteValuegeneric_OpTrunc(v)
    	case OpTrunc16to8:
    		return rewriteValuegeneric_OpTrunc16to8(v)
    	case OpTrunc32to16:
    		return rewriteValuegeneric_OpTrunc32to16(v)
    	case OpTrunc32to8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/opGen.go

    	OpBitRev64
    	OpPopCount8
    	OpPopCount16
    	OpPopCount32
    	OpPopCount64
    	OpRotateLeft64
    	OpRotateLeft32
    	OpRotateLeft16
    	OpRotateLeft8
    	OpSqrt
    	OpSqrt32
    	OpFloor
    	OpCeil
    	OpTrunc
    	OpRound
    	OpRoundToEven
    	OpAbs
    	OpCopysign
    	OpMin64F
    	OpMin32F
    	OpMax64F
    	OpMax32F
    	OpFMA
    	OpPhi
    	OpCopy
    	OpConvert
    	OpConstBool
    	OpConstString
    	OpConstNil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top