Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for lockMode (0.1 sec)

  1. pkg/apis/core/v1/defaults_test.go

    		t.Errorf("Expected secret type %v, got %v", v1.SecretTypeOpaque, s2.Type)
    	}
    }
    
    func TestSetDefaultPersistentVolume(t *testing.T) {
    	fsMode := v1.PersistentVolumeFilesystem
    	blockMode := v1.PersistentVolumeBlock
    
    	tests := []struct {
    		name               string
    		volumeMode         *v1.PersistentVolumeMode
    		expectedVolumeMode v1.PersistentVolumeMode
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	return
    }
    
    func roundUp(a, b int) int {
    	return a + (b-a%b)%b
    }
    
    // cbcMode is an interface for block ciphers using cipher block chaining.
    type cbcMode interface {
    	cipher.BlockMode
    	SetIV([]byte)
    }
    
    // decrypt authenticates and decrypts the record if protection is active at
    // this stage. The returned plaintext might overlap with the input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    // Wait for volume mounted.
    // Mark volume as fsResizeRequired in ASW.
    // Verifies volume's fsResizeRequired flag is cleared later.
    func Test_Run_Positive_VolumeFSResizeControllerAttachEnabled(t *testing.T) {
    	blockMode := v1.PersistentVolumeBlock
    	fsMode := v1.PersistentVolumeFilesystem
    
    	var tests = []struct {
    		name            string
    		volumeMode      *v1.PersistentVolumeMode
    		expansionFailed bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top