Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for choosing (0.33 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. 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: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * successfully cancelled step will immediately start closing all objects captured for later closing
     * by it and by its input steps.
     *
     * <h3>Ending a pipeline</h3>
     *
     * Each {@code ClosingFuture} pipeline must be ended. To end a pipeline, decide whether you want to
     * close the captured objects automatically or manually.
     *
     * <h4>Automatically closing</h4>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * successfully cancelled step will immediately start closing all objects captured for later closing
     * by it and by its input steps.
     *
     * <h3>Ending a pipeline</h3>
     *
     * Each {@code ClosingFuture} pipeline must be ended. To end a pipeline, decide whether you want to
     * close the captured objects automatically or manually.
     *
     * <h4>Automatically closing</h4>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `You can draw water out of a water-well,' said the Hatter; `so
    I should think you could draw treacle out of a treacle-well--eh,
    stupid?'
    
      `But they were IN the well,' Alice said to the Dormouse, not
    choosing to notice this last remark.
    
      `Of course they were', said the Dormouse; `--well in.'
    
      This answer so confused poor Alice, that she let the Dormouse
    go on for some time without interrupting it.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `You can draw water out of a water-well,' said the Hatter; `so
    I should think you could draw treacle out of a treacle-well--eh,
    stupid?'
    
      `But they were IN the well,' Alice said to the Dormouse, not
    choosing to notice this last remark.
    
      `Of course they were', said the Dormouse; `--well in.'
    
      This answer so confused poor Alice, that she let the Dormouse
    go on for some time without interrupting it.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top