Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for choosing (0.58 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

       * function} should be fast. To avoid lazy evaluation when the returned map doesn't need to be a
       * view, copy the returned map into a new map of your choosing.
       */
      public static <
              K extends @Nullable Object, V1 extends @Nullable Object, V2 extends @Nullable Object>
          Map<K, V2> transformValues(Map<K, V1> fromMap, Function<? super V1, V2> function) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    		db.maxIdleCount = db.maxOpen
    	}
    	var closing []*driverConn
    	idleCount := len(db.freeConn)
    	maxIdle := db.maxIdleConnsLocked()
    	if idleCount > maxIdle {
    		closing = db.freeConn[maxIdle:]
    		db.freeConn = db.freeConn[:maxIdle]
    	}
    	db.maxIdleClosed += int64(len(closing))
    	db.mu.Unlock()
    	for _, c := range closing {
    		c.Close()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    			// verify this is always zero here, and any
    			// other value is a leak.
    			t.Errorf("while closing db, freeConn %d/%d had %d open stmts; want 0", i, len(db.freeConn), n)
    		}
    	}
    	db.mu.Unlock()
    
    	err := db.Close()
    	if err != nil {
    		t.Fatalf("error closing DB: %v", err)
    	}
    
    	var numOpen int
    	if !waitCondition(t, func() bool {
    		numOpen = db.numOpenConns()
    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/net/http/server.go

    	c.finalFlush()
    	c.rwc.Close()
    }
    
    // rstAvoidanceDelay is the amount of time we sleep after closing the
    // write side of a TCP connection before closing the entire socket.
    // By sleeping, we increase the chances that the client sees our FIN
    // and processes its final data before they process the subsequent RST
    // from closing a connection with known unread data.
    // This RST seems to occur mostly on BSD systems. (And Windows?)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    				}
    
    				// Check for 16 or 32B crossing of this prefixed insn.
    				// These do no require padding, but do require increasing
    				// the function alignment to prevent them from potentially
    				// crossing a 64B boundary when the linker assigns the final
    				// PC.
    				switch p.Pc & 31 {
    				case 28: // 32B crossing
    					falign = 64
    				case 12: // 16B crossing
    					if falign < 64 {
    						falign = 32
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    		t.Errorf("After CloseIdleConnections expected %d idle conn cache keys; got %d", e, g)
    	}
    }
    
    // Tests that the HTTP transport re-uses connections when a client
    // reads to the end of a response Body without closing it.
    func TestTransportReadToEndReusesConn(t *testing.T) { run(t, testTransportReadToEndReusesConn) }
    func testTransportReadToEndReusesConn(t *testing.T, mode testMode) {
    	const msg = "foobar"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		}
    	} else {
    		// In HTTP/1, we expect a 431 from the server.
    		// Some HTTP clients may fail on this undefined behavior (server replying and
    		// closing the connection while the request is still being written), but
    		// we do support it (at least currently), so we expect a response below.
    		if err != nil {
    			t.Fatalf("Do: %v", err)
    		}
    		if res.StatusCode != 431 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    			// We chopped off some number of path elements and
    			// added vendor\path to produce c:\gopath\src\foo\bar\baz\vendor\path.
    			// Now we want to know the import path for that directory.
    			// Construct it by chopping the same number of path elements
    			// (actually the same number of bytes) from parent's import path
    			// and then append /vendor/path.
    			chopped := len(dir) - i
    			if chopped == len(importPath)+1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    			t.Errorf("send 123 then close; Recv %d, %t", i.Int(), ok)
    		}
    		if i, ok := cv.Recv(); i.Int() != 0 || ok {
    			t.Errorf("after close Recv %d, %t", i.Int(), ok)
    		}
    		// Closing a read-only channel
    		shouldPanic("", func() {
    			c := make(<-chan int, 1)
    			cv := ValueOf(c)
    			cv.Close()
    		})
    	}
    
    	// check creation of unbuffered channel
    	var c chan int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top