Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 414 for Driver (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package driver provides an external entry point to the pprof driver.
    package driver
    
    import (
    	"io"
    	"net/http"
    	"regexp"
    	"time"
    
    	internaldriver "github.com/google/pprof/internal/driver"
    	"github.com/google/pprof/internal/plugin"
    	"github.com/google/pprof/profile"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K 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/apis/storage/validation/validation_test.go

    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io.kubernetes.storage.csi.driver",
    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// driver name: dash only
    		ObjectMeta: metav1.ObjectMeta{Name: "foo2"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io-kubernetes-storage-csi-driver",
    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. 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)
  7. 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)
  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/registry/storage/csinode/strategy_test.go

    				},
    				Spec: storage.CSINodeSpec{
    					Drivers: []storage.CSINodeDriver{
    						{
    							Name:         "valid-driver-name",
    							NodeID:       "valid-node",
    							TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    							Allocatable:  &storage.VolumeNodeResources{Count: nil},
    						},
    					},
    				},
    			},
    			false,
    		},
    		{
    			"invalid driver name",
    			&storage.CSINode{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top