Search Options

Results per page
Sort
Preferred Languages
Advance

Results 711 - 720 of 5,794 for 20 (0.04 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

    /*
     * Copyright (C) 2011 The Guava Authors
     *
     * Licensed under the Apache License, Version 2.0 (the "License"); you may not
     * use this file except in compliance with the License. You may obtain a copy of
     * the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        stopwatch.sleepMillis(340); // #2
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // #3
        }
        assertEvents(
            "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20", // #1
            "U0.34", // #2
            "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20"); // #3
      }
    
      @AndroidIncompatible // difference in String.format rounding?
      public void testWarmUpAndUpdate() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        stopwatch.sleepMillis(340); // #2
        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // #3
        }
        assertEvents(
            "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20", // #1
            "U0.34", // #2
            "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20"); // #3
      }
    
      @AndroidIncompatible // difference in String.format rounding?
      public void testWarmUpAndUpdate() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  4. docs/em/docs/advanced/advanced-dependencies.md

    &amp; πŸ•β” ❎ πŸ”—, **FastAPI** πŸ”œ πŸ€™ πŸ‘‰ `checker` πŸ’–:
    
    ```Python
    checker(q="somequery")
    ```
    
    ...&amp; πŸšΆβ€β™€οΈ βš«οΈβ” πŸ‘ˆ πŸ“¨ πŸ’² πŸ”— πŸ‘† *➑ πŸ› οΈ πŸ”’* πŸ”’ `fixed_content_included`:
    
    {* ../../docs_src/dependencies/tutorial011.py hl[20] *}
    
    /// tip
    
    🌐 πŸ‘‰ πŸ’ͺ πŸ˜‘ 🎭. &amp; ⚫️ πŸ’ͺ 🚫 πŸ“Ά πŸ†‘ ❔ ⚫️ ⚠.
    
    πŸ‘« πŸ–Ό 😫 πŸ™…, βœ‹οΈ 🎦 ❔ ⚫️ 🌐 πŸ‘·.
    
    πŸ“ƒ πŸ”ƒ πŸ’‚β€β™‚, πŸ“€ πŸš™ πŸ”’ πŸ‘ˆ πŸ› οΈ πŸ‘‰ 🎏 🌌.
    
    πŸš₯ πŸ‘† πŸ€” 🌐 πŸ‘‰, πŸ‘† βͺ πŸ’­ ❔ πŸ‘ˆ πŸš™ 🧰 πŸ’‚β€β™‚ πŸ‘· πŸ”˜.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            assertTrue(robotsTxt.allows("/ddd", "Crawler/1.0"));
            assertTrue(robotsTxt.allows("/aaa", "Crawler/2.0"));
            assertTrue(robotsTxt.allows("/bbb", "Crawler/2.0"));
            assertFalse(robotsTxt.allows("/ccc", "Crawler/2.0"));
            assertTrue(robotsTxt.allows("/ddd", "Crawler/2.0"));
            assertTrue(robotsTxt.allows("/aaa", "Hoge Crawler"));
            assertTrue(robotsTxt.allows("/bbb", "Hoge Crawler"));
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/SmbComNtTransactionResponseTest.java

            buffer[bufferIndex++] = 0x00;
            buffer[bufferIndex++] = 0x00;
    
            // totalParameterCount = 10
            writeInt4(10, buffer, bufferIndex);
            bufferIndex += 4;
            // totalDataCount = 20
            writeInt4(20, buffer, bufferIndex);
            bufferIndex += 4;
            // parameterCount = 5
            writeInt4(5, buffer, bufferIndex);
            bufferIndex += 4;
            // parameterOffset = 30
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/CountTest.java

    @NullMarked
    public class CountTest extends TestCase {
      public void testGet() {
        assertEquals(20, new Count(20).get());
      }
    
      public void testGetAndAdd() {
        Count holder = new Count(20);
        assertEquals(20, holder.get());
        holder.add(1);
        assertEquals(21, holder.get());
      }
    
      public void testAddAndGet() {
        Count holder = new Count(20);
        assertEquals(21, holder.addAndGet(1));
      }
    
      public void testGetAndSet() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/fscc/FileRenameInformation2Test.java

            // 20 bytes fixed + 2 * length
            assertEquals(20 + 2 * longFileName.length(), info.size());
        }
    
        @Test
        @DisplayName("Test size calculation with empty filename")
        void testSizeWithEmptyFilename() {
            FileRenameInformation2 info = new FileRenameInformation2("", false);
            assertEquals(20, info.size());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  9. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/NewestConflictResolverTest.java

        }
    
        /**
         * Tests that <code>a:2.0</code> wins in the scenario:
         * <pre>
         * a:1.0
         * a:2.0
         * </pre>
         */
        @Test
        void testEqual() {
            ResolutionNode a1n = createResolutionNode(a1);
            ResolutionNode a2n = createResolutionNode(a2);
    
            assertResolveConflict(a2n, a1n, a2n);
        }
    
        /**
         * Tests that <code>a:2.0</code> wins in the scenario:
         * <pre>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  10. cmd/dynamic-timeouts_test.go

    	timeout := newDynamicTimeout(time.Minute, time.Second)
    
    	initial := timeout.Timeout()
    
    	for range dynamicTimeoutLogSize {
    		timeout.LogSuccess(20 * time.Second)
    	}
    
    	adjusted := timeout.Timeout()
    
    	for range dynamicTimeoutLogSize {
    		timeout.LogSuccess(20 * time.Second)
    	}
    
    	adjustedAgain := timeout.Timeout()
    
    	if initial <= adjusted || adjusted <= adjustedAgain {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top