Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,100 for Driver (0.21 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/flexvolumesource.go

    }
    
    // WithDriver sets the Driver field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Driver field is set to the value of the last call.
    func (b *FlexVolumeSourceApplyConfiguration) WithDriver(value string) *FlexVolumeSourceApplyConfiguration {
    	b.Driver = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"metadata":   "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"driverName": "Name of the CSI driver This field is immutable.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/tests/build.out

    ------------------------------------------------------------
    
    mongodbSupportCompileClasspath - Compile classpath for source set 'mongodb support'.
    \--- org.mongodb:mongodb-driver-sync:3.9.1
         +--- org.mongodb:bson:3.9.1
         \--- org.mongodb:mongodb-driver-core:3.9.1
              \--- org.mongodb:bson:3.9.1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 784 bytes
    - Viewed (0)
  4. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/util/ProfileUtil.java

                }
            }
    
            if (ResourceUtil.getResourceNoException("org/h2/Driver.class") != null) {
                list.add("h2");
            }
    
            if (ResourceUtil.getResourceNoException("com/mysql/jdbc/Driver.class") != null) {
                list.add("mysql");
            }
    
            if (ResourceUtil.getResourceNoException("oracle/jdbc/driver/OracleDriver.class") != null) {
                list.add("oracle");
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

    class JavaExecWithLongCommandLineIntegrationTest extends AbstractIntegrationSpec {
        def veryLongFileNames = getLongCommandLine()
    
        def setup() {
            file("src/main/java/Driver.java") << """
                package driver;
    
                public class Driver {
                    public static void main(String[] args) {}
                }
            """
    
            buildFile << """
                apply plugin: "java"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. tests/tests_test.go

    package tests_test
    
    import (
    	"log"
    	"math/rand"
    	"os"
    	"path/filepath"
    	"time"
    
    	"gorm.io/driver/mysql"
    	"gorm.io/driver/postgres"
    	"gorm.io/driver/sqlite"
    	"gorm.io/driver/sqlserver"
    	"gorm.io/gorm"
    	"gorm.io/gorm/logger"
    	. "gorm.io/gorm/utils/tests"
    )
    
    var DB *gorm.DB
    var (
    	mysqlDSN     = "gorm:gorm@tcp(localhost:9910)/gorm?charset=utf8&parseTime=True&loc=Local"
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/BUILD

        licenses = ["notice"],
    )
    
    glob_lit_tests(
        name = "all_tests",
        data = [":test_utilities"],
        # Custom driver is unsupported in OSS. Fails if one is provided.
        # copybara:uncomment driver = "//tensorflow/compiler/mlir:run_lit.sh",
        # copybara:comment_begin(JitRt/Auto fusion depreciated)
        exclude = [
            "auto-fusion.mlir",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. utils/utils.go

    	yval := reflect.ValueOf(y)
    	if xval.Kind() == reflect.Ptr && xval.IsNil() ||
    		yval.Kind() == reflect.Ptr && yval.IsNil() {
    		return false
    	}
    
    	if valuer, ok := x.(driver.Valuer); ok {
    		x, _ = valuer.Value()
    	}
    	if valuer, ok := y.(driver.Valuer); ok {
    		y, _ = valuer.Value()
    	}
    	return reflect.DeepEqual(x, y)
    }
    
    func ToString(value interface{}) string {
    	switch v := value.(type) {
    	case string:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 22 06:43:02 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. internal/event/target/postgresql_test.go

    import (
    	"database/sql"
    	"testing"
    )
    
    // TestPostgreSQLRegistration checks if postgres driver
    // is registered and fails otherwise.
    func TestPostgreSQLRegistration(t *testing.T) {
    	var found bool
    	for _, drv := range sql.Drivers() {
    		if drv == "postgres" {
    			found = true
    			break
    		}
    	}
    	if !found {
    		t.Fatal("postgres driver not registered")
    	}
    }
    
    func TestPsqlTableNameValidation(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 24 17:51:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. pkg/apis/storage/validation/validation.go

    	// check for duplicate entries for the same driver in specs
    	if driverNamesInSpecs.Has(driver.Name) {
    		allErrs = append(allErrs, field.Duplicate(fldPath.Child("name"), driver.Name))
    	}
    	driverNamesInSpecs.Insert(driver.Name)
    	topoKeys := sets.New[string]()
    	for _, key := range driver.TopologyKeys {
    		if len(key) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top