Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 422 for Driver (0.34 sec)

  1. src/database/sql/driver/driver.go

    	//
    	// The returned connection is only used by one goroutine at a
    	// time.
    	Connect(context.Context) (Conn, error)
    
    	// Driver returns the underlying Driver of the Connector,
    	// mainly to maintain compatibility with the Driver method
    	// on sql.DB.
    	Driver() Driver
    }
    
    // ErrSkip may be returned by some optional interfaces' methods to
    // indicate at runtime that the fast path is unavailable and the sql
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package driver implements the core pprof functionality. It can be
    // parameterized with a flag implementation, fetch and symbolize
    // mechanisms.
    package driver
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp"
    	"strings"
    
    	"github.com/google/pprof/internal/plugin"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. cmd/ftp-server-driver.go

    	"github.com/minio/pkg/v3/mimedb"
    	ftp "goftp.io/server/v2"
    )
    
    var _ ftp.Driver = &ftpDriver{}
    
    // ftpDriver implements ftpDriver to store files in minio
    type ftpDriver struct {
    	endpoint string
    }
    
    // NewFTPDriver implements ftp.Driver interface
    func NewFTPDriver() ftp.Driver {
    	return &ftpDriver{endpoint: fmt.Sprintf("127.0.0.1:%s", globalMinioPort)}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. cmd/sftp-server-driver.go

    Sveinn <******@****.***> 1717573873 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    	return l
    }
    
    func TestController(t *testing.T) {
    	driver1 := "driver-1"
    	class1 := &resourceapi.ResourceClass{
    		DriverName: driver1,
    	}
    
    	classParametersEmpty := &resourceapi.ResourceClassParameters{}
    	classParametersAny := &resourceapi.ResourceClassParameters{
    		Filters: []resourceapi.ResourceFilter{{
    			DriverName: driver1,
    			ResourceFilterModel: resourceapi.ResourceFilterModel{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    		if err != nil {
    			t.Errorf("error getting CSINode: %v", err)
    			continue
    		}
    
    		driver := nodeInfo.Spec.Drivers[0]
    		if driver.Name != driverName || driver.NodeID != nodeID {
    			t.Errorf("expected Driver to be %q and NodeID to be %q, but got: %q:%q", driverName, nodeID, driver.Name, driver.NodeID)
    		}
    	}
    }
    
    func getClientSet(existingNode *v1.Node, existingCSINode *storage.CSINode) *fake.Clientset {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  7. src/database/sql/fakedb_test.go

    	placeholderConverter []driver.ValueConverter // used by INSERT
    }
    
    var fdriver driver.Driver = &fakeDriver{}
    
    func init() {
    	Register("test", fdriver)
    }
    
    type Dummy struct {
    	driver.Driver
    }
    
    func TestDrivers(t *testing.T) {
    	unregisterAllDrivers()
    	Register("test", fdriver)
    	Register("invalid", Dummy{})
    	all := Drivers()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 12:38:07 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"":         "CSIDriver captures information about a Container Storage Interface (CSI) volume driver deployed on the cluster. CSI drivers do not need to create the CSIDriver object directly. Instead they may use the cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically creates a CSIDriver object representing the driver. Kubernetes attach detach controller uses this object to determine whether attach is required. Kubelet uses this object...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/storage/v1beta1/generated.proto

    // CSIDriver captures information about a Container Storage Interface (CSI)
    // volume driver deployed on the cluster.
    // CSI drivers do not need to create the CSIDriver object directly. Instead they may use the
    // cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically
    // creates a CSIDriver object representing the driver.
    // Kubernetes attach detach controller uses this object to determine whether attach is required.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1beta1/generated.proto

    // CSIDriver captures information about a Container Storage Interface (CSI)
    // volume driver deployed on the cluster.
    // CSI drivers do not need to create the CSIDriver object directly. Instead they may use the
    // cluster-driver-registrar sidecar container. When deployed with a CSI driver it automatically
    // creates a CSIDriver object representing the driver.
    // Kubernetes attach detach controller uses this object to determine whether attach is required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top