Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,100 for Driver (0.23 sec)

  1. pkg/kubelet/cm/dra/plugin/noderesources.go

    	}
    
    	if loggerV := logger.V(6); loggerV.Enabled() {
    		// Dump entire resource information.
    		loggerV.Info("Syncing existing driver node resource slices with driver resources", "slices", klog.KObjSlice(slices), "resources", driverResources)
    	} else {
    		logger.V(5).Info("Syncing existing driver node resource slices with driver resources", "slices", klog.KObjSlice(slices), "numResources", len(driverResources))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                        - Retain
                      type: string
                    driver:
                      description: driver is the name of the CSI driver used to create the
                        physical snapshot on the underlying storage system. This MUST be
                        the same as the name returned by the CSI GetPluginName() call for
                        that driver. Required.
                      type: string
                    source:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  3. dbflute_fess/extlib/_readme.txt

    Directory for library extension
    
    If you use a database that DBFlute does not have its JDBC driver,
    put your own JDBC driver for the database here.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 177 bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_plugin_test.go

    			driverName: "test-driver",
    			volName:    "test.vol.name",
    			spec:       volume.NewSpecFromPersistentVolume(makeTestPV("test-pv", 10, "test-driver", "test.vol.name"), false),
    		},
    		{
    			name:       "volume source with mixchars all",
    			driverName: "test-driver",
    			volName:    "test.vol.name",
    			spec:       volume.NewSpecFromVolume(makeTestVol("test-pv", "test-driver")),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_attacher.go

    	}
    
    	if driverSupportsCSIVolumeMountGroup {
    		klog.V(3).Infof("Driver %s supports applying FSGroup (has VOLUME_MOUNT_GROUP node capability). Delegating FSGroup application to the driver through NodeStageVolume.", csiSource.Driver)
    		nodeStageFSGroupArg = deviceMounterArgs.FsGroup
    	}
    
    	fsType := csiSource.FSType
    	err = csi.NodeStageVolume(ctx,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  6. internal/event/target/mysql_test.go

    import (
    	"database/sql"
    	"testing"
    )
    
    // TestPostgreSQLRegistration checks if sql driver
    // is registered and fails otherwise.
    func TestMySQLRegistration(t *testing.T) {
    	var found bool
    	for _, drv := range sql.Drivers() {
    		if drv == "mysql" {
    			found = true
    			break
    		}
    	}
    	if !found {
    		t.Fatal("mysql driver not registered")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 02 14:53:13 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. pkg/volume/util/metrics_test.go

    )
    
    func TestGetFullQualifiedPluginNameForVolume(t *testing.T) {
    	var (
    		fakePluginName          = "kubernetes.io/fakePlugin"
    		fakeInlineCSIDriverName = "fake.inline.csi.driver"
    		fakeCSIDriverName       = "fake.csi.driver"
    	)
    
    	testCase := []struct {
    		name         string
    		pluginName   string
    		spec         *volume.Spec
    		wantFullName string
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 04 08:28:28 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  8. pkg/volume/csi/expander.go

    	if err != nil {
    		return false, errors.New(log("Expander.NodeExpand failed to get CSI persistent source: %v", err))
    	}
    
    	csClient, err := newCsiDriverClient(csiDriverName(csiSource.Driver))
    	if err != nil {
    		// Treat the absence of the CSI driver as a transient error
    		// See https://github.com/kubernetes/kubernetes/issues/120268
    		return false, volumetypes.NewTransientOperationFailure(err.Error())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/csivolumesource.go

    }
    
    // WithDriver sets the Driver field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Driver field is set to the value of the last call.
    func (b *CSIVolumeSourceApplyConfiguration) WithDriver(value string) *CSIVolumeSourceApplyConfiguration {
    	b.Driver = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/flexpersistentvolumesource.go

    // FlexPersistentVolumeSourceApplyConfiguration represents an declarative configuration of the FlexPersistentVolumeSource type for use
    // with apply.
    type FlexPersistentVolumeSourceApplyConfiguration struct {
    	Driver    *string                            `json:"driver,omitempty"`
    	FSType    *string                            `json:"fsType,omitempty"`
    	SecretRef *SecretReferenceApplyConfiguration `json:"secretRef,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.8K bytes
    - Viewed (0)
Back to top