Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,100 for Driver (0.37 sec)

  1. staging/src/k8s.io/api/storage/v1/generated.proto

      // storageCapacity indicates that the CSI volume driver wants pod scheduling to consider the storage
      // capacity that the driver deployment will report by creating
      // CSIStorageCapacity objects with capacity information, if set to true.
      //
      // The check can be enabled immediately when deploying a driver.
      // In that case, provisioning new volumes with late binding
      // will pause until the driver deployment has published
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/sql/DriverManagerUtil.java

        }
    
        /**
         * JDBCドライバを登録します。
         *
         * @param driver
         *            登録するJDBCドライバ。{@literal null}であってはいけません
         */
        public static void registerDriver(final Driver driver) {
            assertArgumentNotNull("driver", driver);
    
            try {
                DriverManager.registerDriver(driver);
            } catch (final SQLException e) {
                throw new SQLRuntimeException(e);
            }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_test.go

    			},
    		},
    		{
    			name:     "PersistentVolume with driver info",
    			specName: "pv2",
    			driver:   "simple-driver",
    			volName:  "vol2",
    			specFunc: func(specName, driver, volName string) *volume.Spec {
    				return volume.NewSpecFromPersistentVolume(makeTestPV(specName, 20, driver, volName), false)
    			},
    			podFunc: func() *api.Pod {
    				podUID := types.UID(fmt.Sprintf("%08X", rand.Uint64()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/types.go

    // CSINodeSpec holds information about the specification of all CSI drivers installed on a node
    type CSINodeSpec struct {
    	// drivers is a list of information of all CSI Drivers existing on a node.
    	// If all drivers in the list are uninstalled, this can become empty.
    	// +patchMergeKey=name
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    type dsnConnector struct {
    	dsn    string
    	driver driver.Driver
    }
    
    func (t dsnConnector) Connect(_ context.Context) (driver.Conn, error) {
    	return t.driver.Open(t.dsn)
    }
    
    func (t dsnConnector) Driver() driver.Driver {
    	return t.driver
    }
    
    // OpenDB opens a database using a [driver.Connector], allowing drivers to
    // bypass a string based data source name.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_drivers_store_test.go

    	store := &csi.DriversStore{}
    	someDriver := csi.Driver{}
    
    	expectAbsent(t, store, "does-not-exist")
    
    	store.Set("some-driver", someDriver)
    	expectPresent(t, store, "some-driver", someDriver)
    
    	store.Delete("some-driver")
    	expectAbsent(t, store, "some-driver")
    
    	store.Set("some-driver", someDriver)
    
    	store.Clear()
    	expectAbsent(t, store, "some-driver")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 25 12:23:15 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  7. pkg/apis/storage/types.go

    type CSINodeSpec struct {
    	// drivers is a list of information of all CSI Drivers existing on a node.
    	// If all drivers in the list are uninstalled, this can become empty.
    	// +patchMergeKey=name
    	// +patchStrategy=merge
    	Drivers []CSINodeDriver
    }
    
    // CSINodeDriver holds information about the specification of one CSI driver installed on a node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_plugin.go

    	}
    
    	// Storing endpoint of newly registered CSI driver into the map, where CSI driver name will be the key
    	// all other CSI components will be able to get the actual socket of CSI drivers by its name.
    	csiDrivers.Set(pluginName, Driver{
    		endpoint:                endpoint,
    		highestSupportedVersion: highestSupportedVersion,
    	})
    
    	// Get node info from the driver.
    	csi, err := newCsiDriverClient(csiDriverName(pluginName))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. src/database/sql/convert.go

    }
    
    // ccChecker wraps the driver.ColumnConverter and allows it to be used
    // as if it were a NamedValueChecker. If the driver ColumnConverter
    // is not present then the NamedValueChecker will return driver.ErrSkip.
    type ccChecker struct {
    	cci  driver.ColumnConverter
    	want int
    }
    
    func (c ccChecker) CheckNamedValue(nv *driver.NamedValue) error {
    	if c.cci == nil {
    		return driver.ErrSkip
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. pkg/volume/portworx/portworx_util.go

    }
    
    // DeleteVolume deletes a Portworx volume
    func (util *portworxVolumeUtil) DeleteVolume(d *portworxVolumeDeleter) error {
    	driver, err := util.getPortworxDriver(d.plugin.host)
    	if err != nil || driver == nil {
    		klog.Errorf("Failed to get portworx driver. Err: %v", err)
    		return err
    	}
    
    	err = driver.Delete(d.volumeID)
    	if err != nil {
    		klog.Errorf("Error deleting Portworx Volume (%v): %v", d.volName, err)
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
Back to top