Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,100 for Driver (0.12 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/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)
  3. 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)
  4. pkg/volume/flexvolume/driver-call.go

    		Command: command,
    		Timeout: timeout,
    		plugin:  plugin,
    		args:    []string{command},
    	}
    }
    
    // Append appends arg into driver call argument list
    func (dc *DriverCall) Append(arg string) {
    	dc.args = append(dc.args, arg)
    }
    
    // AppendSpec appends volume spec to driver call argument list
    func (dc *DriverCall) AppendSpec(spec *volume.Spec, host volume.VolumeHost, extraOptions map[string]string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 25 02:39:55 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  5. 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)
  6. pkg/volume/flexvolume/driver-call_test.go

    Mikaƫl Cluseau <******@****.***> 1503456285 +1100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 11:18:58 UTC 2017
    - 894 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top