Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Valore (0.21 sec)

  1. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        Object valueThree = new Object();
        int hashThree = map.hash(keyThree);
        DummyEntry<Object, Object> entryThree =
            createDummyEntry(keyThree, hashThree, valueThree, entryTwo);
    
        // alone
        assertNull(segment.removeEntryFromChain(entryOne, entryOne));
    
        // head
        assertSame(entryOne, segment.removeEntryFromChain(entryTwo, entryTwo));
    
        // middle
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        Object valueThree = new Object();
        int hashThree = map.hash(keyThree);
        DummyEntry<Object, Object> entryThree =
            createDummyEntry(keyThree, hashThree, valueThree, entryTwo);
    
        // alone
        assertNull(segment.removeEntryFromChain(entryOne, entryOne));
    
        // head
        assertSame(entryOne, segment.removeEntryFromChain(entryTwo, entryTwo));
    
        // middle
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * to {@code statusFuture} <i>in addition to</i> the call you make to {@link #finishToFuture()} or
       * a derivation method <i>on the same instance</i>. This is important because calling {@code
       * statusFuture} alone does not provide a way to close the pipeline.
       */
      public ListenableFuture<?> statusFuture() {
        return nonCancellationPropagating(future.transform(constant(null), directExecutor()));
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  4. fastapi/routing.py

            app = FastAPI()
            router = APIRouter()
    
            @router.head("/items/", status_code=204)
            def get_items_headers(response: Response):
                response.headers["X-Cat-Dog"] = "Alone in the world"
    
            app.include_router(router)
            ```
            """
            return self.api_route(
                path=path,
                response_model=response_model,
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  5. fastapi/applications.py

            app = FastAPI()
    
            @app.head("/items/", status_code=204)
            def get_items_headers(response: Response):
                response.headers["X-Cat-Dog"] = "Alone in the world"
            ```
            """
            return self.router.head(
                path,
                response_model=response_model,
                status_code=status_code,
                tags=tags,
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    value of type <code>uint</code>.
    If the left operand of a non-constant shift expression is an untyped constant,
    it is first implicitly converted to the type it would assume if the shift expression were
    replaced by its left operand alone.
    </p>
    
    <pre>
    var a [1024]byte
    var s uint = 33
    
    // The results of the following examples are given for 64-bit ints.
    var i = 1&lt;&lt;s                   // 1 has type int
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
Back to top