Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Driver (0.09 sec)

  1. 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)
  2. pkg/apis/resource/validation/validation_resourceclass_test.go

    	scenarios := map[string]struct {
    		class        *resource.ResourceClass
    		wantFailures field.ErrorList
    	}{
    		"good-class": {
    			class: testClass(goodName, goodName),
    		},
    		"good-long-driver-name": {
    			class: testClass(goodName, "acme.example.com"),
    		},
    		"missing-name": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	//
    	// Disables the Azure File in-tree driver.
    	InTreePluginAzureFileUnregister featuregate.Feature = "InTreePluginAzureFileUnregister"
    
    	// owner: @Jiawei0227
    	// alpha: v1.21
    	//
    	// Disables the GCE PD in-tree driver.
    	InTreePluginGCEUnregister featuregate.Feature = "InTreePluginGCEUnregister"
    
    	// owner: @adisky
    	// alpha: v1.21
    	//
    	// Disables the OpenStack Cinder in-tree driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. scan.go

    package gorm
    
    import (
    	"database/sql"
    	"database/sql/driver"
    	"reflect"
    	"time"
    
    	"gorm.io/gorm/schema"
    	"gorm.io/gorm/utils"
    )
    
    // prepareValues prepare values slice
    func prepareValues(values []interface{}, db *DB, columnTypes []*sql.ColumnType, columns []string) {
    	if db.Statement.Schema != nil {
    		for idx, name := range columns {
    			if field := db.Statement.Schema.LookUpField(name); field != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. go.mod

    	github.com/fatih/color v1.17.0
    	github.com/felixge/fgprof v0.9.4
    	github.com/fraugster/parquet-go v0.12.0
    	github.com/go-ldap/ldap/v3 v3.4.8
    	github.com/go-openapi/loads v0.22.0
    	github.com/go-sql-driver/mysql v1.8.1
    	github.com/gobwas/ws v1.4.0
    	github.com/golang-jwt/jwt/v4 v4.5.0
    	github.com/gomodule/redigo v1.9.2
    	github.com/google/uuid v1.6.0
    	github.com/hashicorp/golang-lru/v2 v2.0.7
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    	if err != nil {
    		// In theory this is unreachable - such volume would not pass validation.
    		klog.V(4).ErrorS(err, "failed to get CSI driver name from volume spec")
    		driverName = "unknown"
    	}
    	// `/` is used to separate plugin + CSI driver in util.GetUniqueVolumeName() too
    	return pluginName + "/" + driverName
    }
    
    func getVolumeAccessMode(spec *volume.Spec) string {
    	if spec.PersistentVolume == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/BUILD

            "@llvm-project//mlir:Support",
            "@local_tsl//tsl/platform:statusor",
        ],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        driver = "@llvm-project//mlir:run_lit.sh",
        test_file_exts = [
            "mlir",
        ],
    )
    
    # Bundle together all of the test utilities that are used by tests.
    filegroup(
        name = "test_utilities",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 17:50:14 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. hack/unwanted-dependencies.json

          "github.com/smartystreets/goconvey": "MPL license not in CNCF allowlist",
          "github.com/spf13/viper": "refer to #102598",
          "github.com/xeipuuv/gojsonschema": "unmaintained",
          "go.mongodb.org/mongo-driver": "",
          "go.opencensus.io": "unmaintained, https://github.com/census-instrumentation/opencensus-go archive mode",
          "golang.org/x/exp": "This subrepository holds experimental and deprecated packages",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation.go

    	"k8s.io/kubernetes/pkg/apis/resource"
    	namedresourcesvalidation "k8s.io/kubernetes/pkg/apis/resource/structured/namedresources/validation"
    )
    
    // validateResourceDriverName reuses the validation of a CSI driver because
    // the allowed values are exactly the same.
    var validateResourceDriverName = corevalidation.ValidateCSIDriverName
    
    // ValidateClaim validates a ResourceClaim.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    func (spec *Spec) KubeletExpandablePluginName() string {
    	switch {
    	case spec.Volume != nil && spec.Volume.FlexVolume != nil:
    		return spec.Volume.FlexVolume.Driver
    	case spec.PersistentVolume != nil && spec.PersistentVolume.Spec.FlexVolume != nil:
    		return spec.PersistentVolume.Spec.FlexVolume.Driver
    	default:
    		return ""
    	}
    }
    
    // VolumeConfig is how volume plugins receive configuration.  An instance
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top