Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for state2Store (0.24 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	PADDD ·chacha20Constants<>(SB), A0; PADDD ·chacha20Constants<>(SB), A1; PADDD ·chacha20Constants<>(SB), A2; PADDD ·chacha20Constants<>(SB), A3
    	PADDD state1Store, B0; PADDD state1Store, B1; PADDD state1Store, B2; PADDD state1Store, B3
    	PADDD state2Store, C0; PADDD state2Store, C1; PADDD state2Store, C2; PADDD state2Store, C3
    	PADDD ctr0Store, D0; PADDD ctr1Store, D1; PADDD ctr2Store, D2; PADDD ctr3Store, D3
    
    	// Load - xor - store
    	MOVO  D3, tmpStore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  2. pilot/pkg/autoregistration/internal/health/controller.go

    type Controller struct {
    	stateStore *state.Store
    
    	// healthCondition is a fifo queue used for updating health check status
    	healthCondition controllers.Queue
    }
    
    // NewController returns a new Controller instance.
    func NewController(stateStore *state.Store, maxRetries int) *Controller {
    	c := &Controller{
    		stateStore: stateStore,
    	}
    	c.healthCondition = controllers.NewQueue("healthcheck",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. pilot/pkg/autoregistration/controller.go

    	}
    	c.queue = controllers.NewQueue("unregister_workloadentry",
    		controllers.WithMaxAttempts(maxRetries),
    		controllers.WithGenericReconciler(c.unregisterWorkload))
    	c.stateStore = state.NewStore(store, c)
    	c.healthController = health.NewController(c.stateStore, maxRetries)
    	c.setupAutoRecreate()
    	return c
    }
    
    func (c *Controller) Run(stop <-chan struct{}) {
    	if c == nil {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top