Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for modes (0.05 sec)

  1. pkg/volume/csi/csi_mounter_test.go

    			modes := []storage.VolumeLifecycleMode{
    				storage.VolumeLifecyclePersistent,
    			}
    			fakeClient := fakeclient.NewSimpleClientset(
    				getTestCSIDriver("no-info", &noPodMountInfo, nil, modes),
    				getTestCSIDriver("info", &currentPodInfoMount, nil, modes),
    				getTestCSIDriver("nil", nil, nil, modes),
    				getTestCSIDriver("supports_selinux", &noPodMountInfo, nil, modes),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			supportRemount:         true,
    		},
    	}
    
    	modes := []v1.PersistentVolumeMode{v1.PersistentVolumeBlock, v1.PersistentVolumeFilesystem}
    
    	for modeIndex := range modes {
    		for tcIndex := range tests {
    			mode := modes[modeIndex]
    			tc := tests[tcIndex]
    			testName := fmt.Sprintf("%s [%s]", tc.name, mode)
    			uniqueTestString := fmt.Sprintf("global-mount-%s", testName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. src/math/big/float_test.go

    		want := NewFloat(0.0)
    		if mode == ToNegativeInf {
    			want.Neg(want)
    		}
    		got := new(Float).SetMode(mode)
    		got.Add(x, y)
    		if got.Cmp(want) != 0 || got.neg != (mode == ToNegativeInf) {
    			t.Errorf("%s:\n\t     %v\n\t+    %v\n\t=    %v\n\twant %v",
    				mode, x, y, got, want)
    		}
    		got.Sub(x, x)
    		if got.Cmp(want) != 0 || got.neg != (mode == ToNegativeInf) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // in the provided namespace.
      string trustedZtunnelNamespace = 59;
    }
    
    message PilotTaintControllerConfig {
      // Enable the untaint controller for new nodes. This aims to solve a race for CNI installation on 
      // new nodes. For this to work, the newly added nodes need to have the istio CNI taint as they are
      // added to the cluster. This is usually done by configuring the cluster infra provider.
      bool enabled = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. pkg/volume/testing/testing.go

    	inodesUsed := a.InodesUsed == b.InodesUsed
    	return available && capacity && used && inodes && inodesFree && inodesUsed
    }
    
    func ContainsAccessMode(modes []v1.PersistentVolumeAccessMode, mode v1.PersistentVolumeAccessMode) bool {
    	for _, m := range modes {
    		if m == mode {
    			return true
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	panic("TLS: sequence number wraparound")
    }
    
    // explicitNonceLen returns the number of bytes of explicit nonce or IV included
    // in each record. Explicit nonces are present only in CBC modes after TLS 1.0
    // and in certain AEAD modes in TLS 1.2.
    func (hc *halfConn) explicitNonceLen() int {
    	if hc.cipher == nil {
    		return 0
    	}
    
    	switch c := hc.cipher.(type) {
    	case cipher.Stream:
    		return 0
    	case aead:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. pkg/apis/storage/validation/validation_test.go

    			shouldSucceed: true,
    		},
    		"old no mode, new mode": {
    			oldClass:      noBinding,
    			newClass:      waitBinding,
    			shouldSucceed: false,
    		},
    		"old mode, new no mode": {
    			oldClass:      waitBinding,
    			newClass:      noBinding,
    			shouldSucceed: false,
    		},
    		"old and new different modes": {
    			oldClass:      waitBinding,
    			newClass:      immediateBinding1,
    			shouldSucceed: false,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	x25519Kyber768Draft00 CurveID = 0x6399 // X25519Kyber768Draft00
    )
    
    // TLS 1.3 Key Share. See RFC 8446, Section 4.2.8.
    type keyShare struct {
    	group CurveID
    	data  []byte
    }
    
    // TLS 1.3 PSK Key Exchange Modes. See RFC 8446, Section 4.2.9.
    const (
    	pskModePlain uint8 = 0
    	pskModeDHE   uint8 = 1
    )
    
    // TLS 1.3 PSK Identity. Can be a Session Ticket, or a reference to a saved
    // session. See RFC 8446, Section 4.2.11.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    		if err != nil {
    			return nil
    		}
    
    		mode := info.Mode()
    		if mode&0222 != 0 && (mode.IsDir() || mode.IsRegular()) {
    			dirs = append(dirs, pathMode{path, mode})
    		}
    		return nil
    	})
    
    	// Run over list backward to chmod children before parents.
    	for i := len(dirs) - 1; i >= 0; i-- {
    		err := os.Chmod(dirs[i].path, dirs[i].mode&^0222)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/component-model-maven.png

    component-model-maven.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 04:41:24 UTC 2024
    - 85.8K bytes
    - Viewed (0)
Back to top