Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for database (0.17 sec)

  1. src/database/sql/sql.go

    	go db.connectionOpener(ctx)
    
    	return db
    }
    
    // Open opens a database specified by its database driver name and a
    // driver-specific data source name, usually consisting of at least a
    // database name and connection information.
    //
    // Most users will open a database via a driver-specific connection
    // helper function that returns a [*DB]. No database drivers are included
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    		}
    	}
    
    	// Wait a reasonable time for the database to close all connections.
    	tick := time.NewTicker(3 * time.Millisecond)
    	defer tick.Stop()
    	for {
    		select {
    		case <-tick.C:
    			db.mu.Lock()
    			if db.numOpen == 0 {
    				db.mu.Unlock()
    				return
    			}
    			db.mu.Unlock()
    		case <-to.C:
    			// Closing the database will check for numOpen and fail the test.
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		of module path prefixes that should always be fetched directly
    //		or that should not be compared against the checksum database.
    //		See https://golang.org/ref/mod#private-modules.
    //	GOROOT
    //		The root of the go tree.
    //	GOSUMDB
    //		The name of checksum database to use and optionally its public key and
    //		URL. See https://golang.org/ref/mod#authenticating.
    //	GOTOOLCHAIN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * completes before closing starts, rather than once it has finished.
     *
     * <pre>{@code
     * FluentFuture<UserName> userName =
     *     ClosingFuture.submit(
     *             closer -> closer.eventuallyClose(database.newTransaction(), closingExecutor),
     *             executor)
     *         .transformAsync((closer, transaction) -> transaction.queryClosingFuture("..."), executor)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * completes before closing starts, rather than once it has finished.
     *
     * <pre>{@code
     * FluentFuture<UserName> userName =
     *     ClosingFuture.submit(
     *             closer -> closer.eventuallyClose(database.newTransaction(), closingExecutor),
     *             executor)
     *         .transformAsync((closer, transaction) -> transaction.queryClosingFuture("..."), executor)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    				Spec: api.ServiceSpec{
    					Type:         api.ServiceTypeExternalName,
    					ExternalName: "my.database.example.com",
    				},
    			},
    			options: printers.GenerateOptions{},
    			// Columns: Name, Type, Cluster-IP, External-IP, Port(s), Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"test7", "ExternalName", "<none>", "my.database.example.com", "<none>", "<unknown>"}}},
    		},
    	}
    
    	for i, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	nodeIPs []net.IP
    
    	// use this function to validate the kubelet nodeIP
    	nodeIPValidator func(net.IP) error
    
    	// If non-nil, this is a unique identifier for the node in an external database, eg. cloudprovider
    	providerID string
    
    	// clock is an interface that provides time related functionality in a way that makes it
    	// easy to test the code.
    	clock clock.WithTicker
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    countryestate.museum
    county.museum
    crafts.museum
    cranbrook.museum
    creation.museum
    cultural.museum
    culturalcenter.museum
    culture.museum
    cyber.museum
    cymru.museum
    dali.museum
    dallas.museum
    database.museum
    ddr.museum
    decorativearts.museum
    delaware.museum
    delmenhorst.museum
    denmark.museum
    depot.museum
    design.museum
    detroit.museum
    dinosaur.museum
    discovery.museum
    dolls.museum
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  9. src/encoding/json/testdata/code.json.gz

    .0011574074074074073,"touches":1,"min_t":1252097274,"max_t":1252097274,"mean_t":1252097274},{"name":"errorMediumIcon.png","kids":[],"cl_weight":0.0011574074074074073,"touches":1,"min_t":1252097274,"max_t":1252097274,"mean_t":1252097274},{"name":"database.png","kids":[],"cl_weight":0.0011574074074074073,"touches":1,"min_t":1252097274,"max_t":1252097274,"mean_t":1252097274},{"name":"segmentHover.png","kids":[],"cl_weight":0.0011574074074074073,"touches":1,"min_t":1252097274,"max_t":1252097274,"mea...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top