Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for modes (0.04 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/modload/init.go

    // requirements.
    //
    // In "mod" mode, commitRequirements writes changes to go.mod and go.sum.
    //
    // In "readonly" and "vendor" modes, commitRequirements returns an error if
    // go.mod or go.sum are out of date in a semantically significant way.
    //
    // In workspace mode, commitRequirements only writes changes to go.work.sum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    Go test runs in two different modes:
    
    The first, called local directory mode, occurs when go test is
    invoked with no package arguments (for example, 'go test' or 'go
    test -v'). In this mode, go test compiles the package sources and
    tests found in the current directory and then runs the resulting
    test binary. In this mode, caching (discussed below) is disabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    	pkg    string
    	pn     string
    	file   string
    	off    int64
    	length int64
    }
    
    var hostobj []Hostobj
    
    // These packages can use internal linking mode.
    // Others trigger external mode.
    var internalpkg = []string{
    	"crypto/internal/boring",
    	"crypto/internal/boring/syso",
    	"crypto/x509",
    	"net",
    	"os/user",
    	"runtime/cgo",
    	"runtime/race",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top