Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 579 for driver1 (0.4 sec)

  1. src/database/sql/sql_test.go

    		}
    	})
    
    	db := newTestDB(t, "magicquery")
    	defer closeDB(t, db)
    
    	driver := db.Driver().(*fakeDriver)
    
    	// Force the number of open connections to 0 so we can get an accurate
    	// count for the test
    	db.clearAllConns(t)
    
    	driver.mu.Lock()
    	opens0 := driver.openCount
    	closes0 := driver.closeCount
    	driver.mu.Unlock()
    
    	db.SetMaxIdleConns(10)
    	db.SetMaxOpenConns(10)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/state/state_checkpoint_test.go

    			"",
    			[]ClaimInfoState{
    				{
    					DriverName: "meta-test-driver.cdi.k8s.io",
    					ClassName:  "class-name",
    					ClaimUID:   "067798be-454e-4be4-9047-1aa06aea63f7",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/sql/DriverManagerUtil.java

        }
    
        /**
         * JDBCドライバを登録します。
         *
         * @param driver
         *            登録するJDBCドライバ。{@literal null}であってはいけません
         */
        public static void registerDriver(final Driver driver) {
            assertArgumentNotNull("driver", driver);
    
            try {
                DriverManager.registerDriver(driver);
            } catch (final SQLException e) {
                throw new SQLRuntimeException(e);
            }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/tests/runtimeClasspath.out

    org.mongodb:bson:3.9.1
    +--- org.mongodb:mongodb-driver-core:3.9.1
    |    \--- org.mongodb:mongodb-driver-sync:3.9.1
    |         \--- org.gradle.demo:producer:1.0
    |              \--- runtimeClasspath
    \--- org.mongodb:mongodb-driver-sync:3.9.1 (*)
    
    org.mongodb:mongodb-driver-core:3.9.1
      Variant runtime:
        | Attribute Name                 | Provided     | Requested    |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. tests/go.mod

    	github.com/lib/pq v1.10.9
    	github.com/stretchr/testify v1.9.0
    	gorm.io/driver/mysql v1.5.7
    	gorm.io/driver/postgres v1.5.9
    	gorm.io/driver/sqlite v1.5.6
    	gorm.io/driver/sqlserver v1.5.3
    	gorm.io/gorm v1.25.10
    )
    
    require (
    	filippo.io/edwards25519 v1.1.0 // indirect
    	github.com/davecgh/go-spew v1.1.1 // indirect
    	github.com/go-sql-driver/mysql v1.8.1 // indirect
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/pprof/pprof.go

    	"time"
    
    	"cmd/internal/objfile"
    	"cmd/internal/telemetry"
    
    	"github.com/google/pprof/driver"
    	"github.com/google/pprof/profile"
    )
    
    func main() {
    	telemetry.Start()
    	telemetry.Inc("pprof/invocations")
    	options := &driver.Options{
    		Fetch: new(fetcher),
    		Obj:   new(objTool),
    		UI:    newUI(),
    	}
    	err := driver.PProf(options)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_mounter_test.go

    		t.Logf("testing: %s", tc.name)
    		// Define the driver and set the FSGroupPolicy
    		driver := getTestCSIDriver(testDriver, nil, nil, nil)
    		if tc.defined {
    			driver.Spec.FSGroupPolicy = &tc.expectedFSGroupPolicy
    		} else {
    			driver.Spec.FSGroupPolicy = &defaultPolicy
    		}
    
    		// Create the client and register the resources
    		fakeClient := fakeclient.NewSimpleClientset(driver)
    		plug, tmpDir := newTestPlugin(t, fakeClient)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithExecutableJarIntegrationTest.groovy

    import spock.lang.Issue
    
    class JavaExecWithExecutableJarIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            file("src/main/java/driver/Driver.java") << """
                package driver;
    
                import java.io.*;
    
                public class Driver {
                    public static void main(String[] args) {
                        try {
                            FileWriter out = new FileWriter("out.txt");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/database/sql/driver/types_test.go

    	{Bool, false, false, ""},
    	{Bool, "0", false, ""},
    	{Bool, 0, false, ""},
    	{Bool, int64(0), false, ""},
    	{Bool, uint16(0), false, ""},
    	{c: Bool, in: "foo", err: "sql/driver: couldn't convert \"foo\" into type bool"},
    	{c: Bool, in: 2, err: "sql/driver: couldn't convert 2 into type bool"},
    	{DefaultParameterConverter, now, now, ""},
    	{DefaultParameterConverter, (*int64)(nil), nil, ""},
    	{DefaultParameterConverter, &answer, answer, ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:53:24 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecDebugIntegrationTest.groovy

            file("src/main/java/driver/Driver.java").text = """
                package driver;
    
                public class Driver {
                    public static void main(String[] args) {
                        System.exit(0);
                    }
                }
    
            """
    
            file('src/test/java/driver/DriverTest.java').text = """
                package driver;
    
                public class DriverTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top