Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for Driver (0.2 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    	Message  string
    
    	// URL is the optional location of a web page that provides
    	// additional documentation for this diagnostic.
    	//
    	// If URL is empty but a Category is specified, then the
    	// Analysis driver should treat the URL as "#"+Category.
    	//
    	// The URL may be relative. If so, the base URL is that of the
    	// Analyzer that produced the diagnostic;
    	// see https://pkg.go.dev/net/url#URL.ResolveReference.
    	URL string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

                      mlir::vhlo::VhloDialect>();
      mlir::mhlo::registerAllMhloDialects(registry);
      mlir::func::registerAllExtensions(registry);
      return failed(
          mlir::MlirOptMain(argc, argv, "StableHLO quant Pass Driver\n", registry));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. manifests/charts/ztunnel/values.yaml

      # Set to `type: RuntimeDefault` to use the default profile if available.
      seLinuxOptions: {}
      # TODO Ambient inpod - for OpenShift, set to the following to get writable sockets in hostmounts to work, eventually consider CSI driver instead
      #seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K 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. CHANGELOG/CHANGELOG-1.31.md

    - Kubelet no longer crashes when a DRA driver returns a nil as part of the Node(Un)PrepareResources response instead of an empty struct (did not affect drivers written in Go, first showed up with a driver written in Rust). ([#124091](https://github.com/kubernetes/kubernetes/pull/124091), [@bitoku](https://github.com/bitoku)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top