Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 148 for 1016 (0.03 sec)

  1. guava-tests/test/com/google/common/hash/HashingTest.java

        HashTestUtils.checkNoFunnels(Hashing.goodFastHash(256));
        HashTestUtils.assertInvariants(Hashing.goodFastHash(256));
      }
    
      public void testConsistentHash_correctness() {
        long[] interestingValues = {-1, 0, 1, 2, Long.MAX_VALUE, Long.MIN_VALUE};
        for (long h : interestingValues) {
          checkConsistentHashCorrectness(h);
        }
        Random r = new Random(7);
        for (int i = 0; i < 20; i++) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 09 17:40:09 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/bigger-applications.md

    ```Python hl_lines="5" title="app/main.py"
    {!../../docs_src/bigger_applications/app/main.py!}
    ```
    
    ### πŸ”Œ `APIRouter`β“‚ `users` &amp; `items`
    
    πŸ”œ, ➑️ πŸ”Œ `router`β“‚ βšͺ️➑️ πŸ” `users` &amp; `items`:
    
    ```Python hl_lines="10-11" title="app/main.py"
    {!../../docs_src/bigger_applications/app/main.py!}
    ```
    
    /// info
    
    `users.router` πŸ”Œ `APIRouter` πŸ”˜ πŸ“ `app/routers/users.py`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

        if (value > 0.0) {
          return value;
        } else {
          return Double.MIN_VALUE;
        }
      }
    
      private static double ensureInUnitRange(double value) {
        return Doubles.constrainToRange(value, -1.0, 1.0);
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/output.json

                         },
                         {
                            "id": "custom.lineStyle",
                            "value": {
                               "dash": [
                                  10,
                                  10
                               ],
                               "fill": "dash"
                            }
                         }
                      ]
                   }
                ]
             },
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. docs/ko/docs/tutorial/request-files.md

    ///
    
    ## 닀쀑 파일 μ—…λ‘œλ“œ
    
    μ—¬λŸ¬ νŒŒμΌμ„ λ™μ‹œμ— μ—…λ‘œλ“œ ν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    
    그듀은 "폼 데이터"λ₯Ό μ‚¬μš©ν•˜μ—¬ μ „μ†‘λœ λ™μΌν•œ "폼 ν•„λ“œ"에 μ—°κ²°λ©λ‹ˆλ‹€.
    
    이 κΈ°λŠ₯을 μ‚¬μš©ν•˜κΈ° μœ„ν•΄ , `bytes` 의 `List` λ˜λŠ” `UploadFile` λ₯Ό μ„ μ–Έν•˜κΈ° λ°”λžλ‹ˆλ‹€:
    
    ```Python hl_lines="10  15"
    {!../../docs_src/request_files/tutorial002.py!}
    ```
    
    μ„ μ–Έν•œλŒ€λ‘œ, `bytes` 의 `list` λ˜λŠ” `UploadFile` 듀을 전솑받을 κ²ƒμž…λ‹ˆλ‹€.
    
    /// note | "μ°Έκ³ "
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/orig/view/advance.jsp

    					<la:select property="num" styleId="numSearchOption" styleClass="form-control">
    						<option value="">
    							<la:message key="labels.search_result_select_num" />
    						</option>
    						<la:option value="10">10</la:option>
    						<la:option value="20">20</la:option>
    						<la:option value="30">30</la:option>
    						<la:option value="40">40</la:option>
    						<la:option value="50">50</la:option>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/LongMath.java

        if (-2 <= b && b <= 2) {
          switch ((int) b) {
            case 0:
              return (k == 0) ? 1 : 0;
            case 1:
              return 1;
            case (-1):
              return ((k & 1) == 0) ? 1 : -1;
            case 2:
              return (k < Long.SIZE) ? 1L << k : 0;
            case (-2):
              if (k < Long.SIZE) {
                return ((k & 1) == 0) ? 1L << k : -(1L << k);
              } else {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 09 16:39:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

         * <li><code>[1.0,2.0]</code> Versions 1.0 to 2.0 (both included)</li>
         * <li><code>[1.5,)</code> Versions 1.5 and higher</li>
         * <li><code>(,1.0],[1.2,)</code> Versions up to 1.0 (included) and 1.2 or higher</li>
         * </ul>
         *
         * @param spec string representation of a version or version range
         * @return a new {@link VersionRange} object that represents the spec
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. cmd/xl-storage-format-v2_test.go

    	if len(xl2.data) != 0 {
    		t.Fatal("data, was not trimmed, bytes left:", len(xl2.data))
    	}
    	// Corrupt metadata, last 5 bytes is the checksum, so go a bit further back.
    	trimmed[len(trimmed)-10] += 10
    	if err := xl2.Load(trimmed); err == nil {
    		t.Fatal("metadata corruption not detected")
    	}
    }
    
    // TestUsesDataDir tests xlMetaV2.UsesDataDir
    func TestUsesDataDir(t *testing.T) {
    	vID := uuid.New()
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/bigger-applications.md

    {!../../docs_src/bigger_applications/app/main.py!}
    ```
    
    ### Include the `APIRouter`s for `users` and `items`
    
    Now, let's include the `router`s from the submodules `users` and `items`:
    
    ```Python hl_lines="10-11" title="app/main.py"
    {!../../docs_src/bigger_applications/app/main.py!}
    ```
    
    /// info
    
    `users.router` contains the `APIRouter` inside of the file `app/routers/users.py`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top