Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for storeVersion (0.26 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller_test.go

    	c := cache.NewStore(cache.DeletionHandlingMetaNamespaceKeyFunc)
    
    	// Store new PV
    	storeVersion(t, "Step1", c, "1", true)
    	// Store the same PV
    	storeVersion(t, "Step2", c, "1", true)
    	// Store newer PV
    	storeVersion(t, "Step3", c, "2", true)
    	// Store older PV - simulating old "PV updated" event or periodic sync with
    	// old data
    	storeVersion(t, "Step4", c, "1", false)
    	// Store newer PV - test integer parsing ("2" > "10" as string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. pkg/scheduler/util/assumecache/assume_cache.go

    			return
    		}
    	}
    
    	objInfo := &objInfo{name: name, latestObj: obj, apiObj: obj}
    	if err = c.store.Update(objInfo); err != nil {
    		c.logger.Info("Error occurred while updating stored object", "err", err)
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/crypto/tls/quic.go

    	return quicError(c.sendSessionTicket(opts.EarlyData, opts.Extra))
    }
    
    // StoreSession stores a session previously received in a QUICStoreSession event
    // in the ClientSessionCache.
    // The application may process additional events or modify the SessionState
    // before storing the session.
    func (q *QUICConn) StoreSession(session *SessionState) error {
    	c := q.conn
    	if !c.isClient {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. api/go1.23.txt

    pkg crypto/tls, const QUICStoreSession = 9 #63691
    pkg crypto/tls, const QUICStoreSession QUICEventKind #63691
    pkg crypto/tls, method (*ECHRejectionError) Error() string #63369
    pkg crypto/tls, method (*QUICConn) StoreSession(*SessionState) error #63691
    pkg crypto/tls, type Config struct, EncryptedClientHelloConfigList []uint8 #63369
    pkg crypto/tls, type Config struct, EncryptedClientHelloRejectionVerify func(ConnectionState) error #63369
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 20:48:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top