Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mq_open (0.21 sec)

  1. src/database/sql/sql.go

    	db.mu.Lock()
    	if n > 0 {
    		db.maxIdleCount = n
    	} else {
    		// No idle connections.
    		db.maxIdleCount = -1
    	}
    	// Make sure maxIdle doesn't exceed maxOpen
    	if db.maxOpen > 0 && db.maxIdleConnsLocked() > db.maxOpen {
    		db.maxIdleCount = db.maxOpen
    	}
    	var closing []*driverConn
    	idleCount := len(db.freeConn)
    	maxIdle := db.maxIdleConnsLocked()
    	if idleCount > maxIdle {
    		closing = db.freeConn[maxIdle:]
    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. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

        *serialized_model = std::string{std::istreambuf_iterator<char>(std::cin),
                                        std::istreambuf_iterator<char>()};
      } else {
        std::ifstream t(file_path);
        if (!t.is_open()) {
          std::cerr << "Failed to open input file.\n";
          return true;
        }
        *serialized_model = std::string{std::istreambuf_iterator<char>(t),
                                        std::istreambuf_iterator<char>()};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    		t.Errorf("free conns = %d; want %d", g, w)
    	}
    }
    
    // Issue 10886: tests that all connection attempts return when more than
    // DB.maxOpen connections are in flight and the first DB.maxOpen fail.
    func TestPendingConnsAfterErr(t *testing.T) {
    	const (
    		maxOpen = 2
    		tryOpen = maxOpen*2 + 2
    	)
    
    	// No queries will be run.
    	db, err := Open("test", fakeDBName)
    	if err != nil {
    		t.Fatalf("Open: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	IN_MOVED_TO                                 = 0x80
    	IN_MOVE_SELF                                = 0x800
    	IN_ONESHOT                                  = 0x80000000
    	IN_ONLYDIR                                  = 0x1000000
    	IN_OPEN                                     = 0x20
    	IN_Q_OVERFLOW                               = 0x4000
    	IN_UNMOUNT                                  = 0x2000
    	IPPROTO_AH                                  = 0x33
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top