Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 107 of 107 for req2 (0.05 sec)

  1. src/cmd/internal/obj/wasm/wasmobj.go

    	"encoding/binary"
    	"fmt"
    	"internal/abi"
    	"io"
    	"math"
    )
    
    var Register = map[string]int16{
    	"SP":    REG_SP,
    	"CTXT":  REG_CTXT,
    	"g":     REG_g,
    	"RET0":  REG_RET0,
    	"RET1":  REG_RET1,
    	"RET2":  REG_RET2,
    	"RET3":  REG_RET3,
    	"PAUSE": REG_PAUSE,
    
    	"R0":  REG_R0,
    	"R1":  REG_R1,
    	"R2":  REG_R2,
    	"R3":  REG_R3,
    	"R4":  REG_R4,
    	"R5":  REG_R5,
    	"R6":  REG_R6,
    	"R7":  REG_R7,
    	"R8":  REG_R8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    func TranslateHeadersOperations(headers *networking.Headers) HeadersOperations {
    	req := headers.GetRequest()
    	resp := headers.GetResponse()
    
    	requestHeadersToAdd, setAuthority := translateAppendHeaders(req.GetSet(), false)
    	reqAdd, addAuthority := translateAppendHeaders(req.GetAdd(), true)
    	requestHeadersToAdd = append(requestHeadersToAdd, reqAdd...)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    			rev1 := newRevisionOrDie(set1, 2)
    			set2 := set1.DeepCopy()
    			set2.Spec.Template.Labels["new"] = "label"
    			set2.Status.CurrentRevision = rev0.Name
    			set2.Status.CollisionCount = new(int32)
    			rev2 := newRevisionOrDie(set2, 3)
    			tests := []testcase{
    				{
    					name:            "creates initial revision",
    					existing:        nil,
    					set:             set,
    					expectedCount:   1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ppc64/ssa.go

    		p0.To.Reg = ppc64.REGTMP
    		// If it is a Compare-and-Swap-Release operation, set the EH field with
    		// the release hint.
    		if v.AuxInt == 0 {
    			p0.AddRestSourceConst(0)
    		}
    		// CMP reg1,reg2
    		p1 := s.Prog(cmp)
    		p1.From.Type = obj.TYPE_REG
    		p1.From.Reg = r1
    		p1.To.Reg = ppc64.REGTMP
    		p1.To.Type = obj.TYPE_REG
    		// BNE done with return value = false
    		p2 := s.Prog(ppc64.ABNE)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/reflect/type.go

    	// CanSeq reports whether a [Value] with this type can be iterated over using [Value.Seq].
    	CanSeq() bool
    
    	// CanSeq2 reports whether a [Value] with this type can be iterated over using [Value.Seq2].
    	CanSeq2() bool
    
    	common() *abi.Type
    	uncommon() *uncommonType
    }
    
    // BUG(rsc): FieldByName and related functions consider struct field names to be equal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    package main
    
    import "lib"
    import . "lib"
    
    const Pi = 3.1415
    type T struct{}
    var Y, _ = lib.X, X
    
    func F[T *U, U any](param1, param2 int) /*param1=undef*/ (res1 /*res1=undef*/, res2 int) /*param1=var:12*/ /*res1=var:12*/ /*U=typename:12*/ {
    	const pi, e = 3.1415, /*pi=undef*/ 2.71828 /*pi=const:13*/ /*e=const:13*/
    	type /*t=undef*/ t /*t=typename:14*/ *t
    	print(Y) /*Y=var:10*/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation_test.go

    		}, {
    			name: "wrong format multiple registries quobyte",
    			vol: core.Volume{
    				Name: "quobyte",
    				VolumeSource: core.VolumeSource{
    					Quobyte: &core.QuobyteVolumeSource{
    						Registry: "registry:7861,reg2",
    						Volume:   "/test",
    						Tenant:   "ThisIsSomeTenantUUID",
    					},
    				},
    			},
    			errs: []verr{{
    				etype: field.ErrorTypeInvalid,
    				field: "quobyte.registry",
    			}},
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top