Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 186 for resptr (0.44 sec)

  1. pkg/registry/authentication/selfsubjectreview/rest.go

    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/rest"
    	authenticationapi "k8s.io/kubernetes/pkg/apis/authentication"
    )
    
    var _ interface {
    	rest.Creater
    	rest.NamespaceScopedStrategy
    	rest.Scoper
    	rest.Storage
    } = &REST{}
    
    // REST implements a RESTStorage for selfsubjectreviews.
    type REST struct {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/registry/authorization/localsubjectaccessreview/rest.go

    }
    
    func (r *REST) New() runtime.Object {
    	return &authorizationapi.LocalSubjectAccessReview{}
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *REST) Destroy() {
    	// Given no underlying store, we don't destroy anything
    	// here explicitly.
    }
    
    var _ rest.SingularNameProvider = &REST{}
    
    func (r *REST) GetSingularName() string {
    	return "localsubjectaccessreview"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. src/internal/xcoff/file.go

    		if sect.Type != STYP_TEXT && sect.Type != STYP_DATA {
    			continue
    		}
    		if sect.Relptr == 0 {
    			continue
    		}
    		c := saferio.SliceCap[Reloc](uint64(sect.Nreloc))
    		if c < 0 {
    			return nil, fmt.Errorf("too many relocs (%d) for section %d", sect.Nreloc, sectNum)
    		}
    		sect.Relocs = make([]Reloc, 0, c)
    		if _, err := sr.Seek(int64(sect.Relptr), io.SeekStart); err != nil {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. test/fixedbugs/issue9537.dir/a.go

    // license that can be found in the LICENSE file.
    
    package a
    
    type X struct {
    	T [32]byte
    }
    
    func (x *X) Get() []byte {
    	t := x.T
    	return t[:]
    }
    
    func (x *X) RetPtr(i int) *int {
    	i++
    	return &i
    }
    
    func (x *X) RetRPtr(i int) (r1 int, r2 *int) {
    	r1 = i + 1
    	r2 = &r1
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 22 03:25:12 UTC 2015
    - 386 bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/ztunnelserver.go

    	}
    	if flags&unix.MSG_CTRUNC != 0 {
    		return nil, 0, fmt.Errorf("truncated control message")
    	}
    	var resp T
    	var respPtr PT = &resp
    	err = proto.Unmarshal(buf[:n], respPtr)
    	if err != nil {
    		return nil, 0, err
    	}
    	return respPtr, oobn, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	// TT0, TT1 used for VPERM result in case
    	// the caller expects T0, T1 to be good.
    	XXPERMDI T0, T0, $2, TT0
    	XXPERMDI T1, T1, $2, TT1
    
    	STXVD2X TT0, (R0)(res_ptr)
    	STXVD2X TT1, (R16)(res_ptr)
    	RET
    
    #undef res_ptr
    #undef x_ptr
    #undef CPOOL
    #undef T0
    #undef T1
    #undef T2
    #undef TT0
    #undef TT1
    #undef ZER
    #undef SEL1
    #undef SEL2
    #undef CAR1
    #undef CAR2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/debug/pe/symbols_test.go

    type testpoint struct {
    	name   string
    	ok     bool
    	err    string
    	auxstr string
    }
    
    func TestReadCOFFSymbolAuxInfo(t *testing.T) {
    	testpoints := map[int]testpoint{
    		39: testpoint{
    			name:   ".rdata$.refptr.__native_startup_lock",
    			ok:     true,
    			auxstr: "{Size:8 NumRelocs:1 NumLineNumbers:0 Checksum:0 SecNum:16 Selection:2 _:[0 0 0]}",
    		},
    		81: testpoint{
    			name:   ".debug_line",
    			ok:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 18:07:48 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. src/internal/reflectlite/swapper.go

    			if i != 0 || j != 0 {
    				panic("reflect: slice index out of range")
    			}
    		}
    	}
    
    	typ := v.Type().Elem().common()
    	size := typ.Size()
    	hasPtr := typ.Pointers()
    
    	// Some common & small cases, without using memmove:
    	if hasPtr {
    		if size == goarch.PtrSize {
    			ps := *(*[]unsafe.Pointer)(v.ptr)
    			return func(i, j int) { ps[i], ps[j] = ps[j], ps[i] }
    		}
    		if typ.Kind() == String {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. pilot/pkg/status/distribution/state.go

    func (c *Controller) handleReport(d Report) {
    	defer c.mu.Unlock()
    	c.mu.Lock()
    	for resstr := range d.InProgressResources {
    		res := *status.ResourceFromString(resstr)
    		if _, ok := c.CurrentState[res]; !ok {
    			c.CurrentState[res] = make(map[string]Progress)
    		}
    		c.CurrentState[res][d.Reporter] = Progress{d.InProgressResources[resstr], d.DataPlaneCount}
    	}
    	c.ObservationTime[d.Reporter] = c.clock.Now()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/a.out.go

    	REG_DR6
    	REG_DR7
    
    	REG_TR0
    	REG_TR1
    	REG_TR2
    	REG_TR3
    	REG_TR4
    	REG_TR5
    	REG_TR6
    	REG_TR7
    
    	REG_TLS
    
    	MAXREG
    
    	REG_CR = REG_CR0
    	REG_DR = REG_DR0
    	REG_TR = REG_TR0
    
    	REGARG       = -1
    	REGRET       = REG_AX
    	FREGRET      = REG_X0
    	REGSP        = REG_SP
    	REGCTXT      = REG_DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 31 20:28:39 UTC 2021
    - 6.8K bytes
    - Viewed (0)
Back to top