Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 139 for auxint (0.19 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    // ssa/rewritegeneric.go.
    
    // values are specified using the following format:
    // (op <type> [auxint] {aux} arg0 arg1 ...)
    // the type, aux, and auxint fields are optional
    // on the matching side
    //  - the type, aux, and auxint fields must match if they are specified.
    //  - the first occurrence of a variable defines that variable.  Subsequent
    //    uses must match (be == to) the first use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/opGen.go

    			},
    		},
    	},
    	{
    		name:    "BTLconst",
    		auxType: auxInt8,
    		argLen:  1,
    		asm:     x86.ABTL,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 49151}, // AX CX DX BX SP BP SI DI R8 R9 R10 R11 R12 R13 R15
    			},
    		},
    	},
    	{
    		name:    "BTQconst",
    		auxType: auxInt8,
    		argLen:  1,
    		asm:     x86.ABTQ,
    		reg: regInfo{
    			inputs: []inputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  3. internal/logger/audit.go

    	internalAudit "github.com/minio/minio/internal/logger/message/audit"
    	"github.com/minio/minio/internal/mcontext"
    	"github.com/minio/pkg/v3/logger/message/audit"
    
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    const contextAuditKey = contextKeyType("audit-entry")
    
    // SetAuditEntry sets Audit info in the context.
    func SetAuditEntry(ctx context.Context, audit *audit.Entry) context.Context {
    	if ctx == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    	}
    	if op == OpArgIntReg {
    		reg := v.Block.Func.Config.intParamRegs[v.AuxInt8()]
    		return regInfo{outputs: []outputInfo{{regs: 1 << uint(reg)}}}
    	}
    	if op == OpArgFloatReg {
    		reg := v.Block.Func.Config.floatParamRegs[v.AuxInt8()]
    		return regInfo{outputs: []outputInfo{{regs: 1 << uint(reg)}}}
    	}
    	if op.IsCall() {
    		if ac, ok := v.Aux.(*AuxCall); ok && ac.reg != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/audit.go

    	"context"
    	"fmt"
    
    	"k8s.io/apiserver/pkg/audit"
    )
    
    // auditHandler logs annotations set by other admission handlers
    type auditHandler struct {
    	Interface
    }
    
    var _ Interface = &auditHandler{}
    var _ MutationInterface = &auditHandler{}
    var _ ValidationInterface = &auditHandler{}
    
    // WithAudit is a decorator for a admission phase. It saves annotations
    // of attribute into the audit event. Attributes passed to the Admit and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 00:03:53 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	auditv1 "k8s.io/apiserver/pkg/apis/audit/v1"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/audit/policy"
    	"k8s.io/apiserver/pkg/server"
    	"k8s.io/apiserver/pkg/server/egressselector"
    	"k8s.io/apiserver/pkg/util/webhook"
    	pluginbuffered "k8s.io/apiserver/plugin/pkg/audit/buffered"
    	pluginlog "k8s.io/apiserver/plugin/pkg/audit/log"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit.go

    // evaluatePolicyAndCreateAuditEvent is responsible for evaluating the audit
    // policy configuration applicable to the request and create a new audit
    // event that will be written to the API audit log.
    // - error if anything bad happened
    func evaluatePolicyAndCreateAuditEvent(req *http.Request, policy audit.PolicyRuleEvaluator) (*audit.AuditContext, error) {
    	ctx := req.Context()
    	ac := audit.AuditContextFrom(ctx)
    	if ac == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. test/typeparam/mdempsky/14.go

    package main
    
    // Zero returns the zero value of T
    func Zero[T any]() (_ T) {
    	return
    }
    
    type AnyInt[X any] int
    
    func (AnyInt[X]) M() {
    	var have interface{} = Zero[X]()
    	var want interface{} = Zero[MyInt]()
    
    	if have != want {
    		println("FAIL")
    	}
    }
    
    type I interface{ M() }
    
    type MyInt int
    type U = AnyInt[MyInt]
    
    var x = U(0)
    var i I = x
    
    func main() {
    	x.M()
    	U.M(x)
    	(*U).M(&x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 568 bytes
    - Viewed (0)
  9. test/fixedbugs/issue19359.go

    	defer func() {
    		if r := recover(); r != nil {
    			err = fmt.Errorf("del failed: %v", r)
    		}
    	}()
    	delete(m, key)
    	return nil
    }
    
    func addInt(m map[interface{}]int, key interface{}) (err error) {
    	defer func() {
    		if r := recover(); r != nil {
    			err = fmt.Errorf("addInt failed: %v", r)
    		}
    	}()
    	m[key] += 2018
    	return nil
    }
    
    func addStr(m map[interface{}]string, key interface{}) (err error) {
    	defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 20 01:47:07 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  10. test/defer.go

    // license that can be found in the LICENSE file.
    
    // Test defer.
    
    package main
    
    import "fmt"
    
    var result string
    
    func addInt(i int) { result += fmt.Sprint(i) }
    
    func test1helper() {
    	for i := 0; i < 10; i++ {
    		defer addInt(i)
    	}
    }
    
    func test1() {
    	result = ""
    	test1helper()
    	if result != "9876543210" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 875 bytes
    - Viewed (0)
Back to top