Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 326 for marker (0.04 sec)

  1. android/guava/src/com/google/common/cache/ReferenceEntry.java

     * </ul>
     *
     * <p>Invalid:
     *
     * <ul>
     *   <li>Expired: time expired (key/value may still be set)
     *   <li>Collected: key/value was partially collected, but not yet cleaned up
     *   <li>Unset: marked as unset, awaiting cleanup or reuse
     * </ul>
     */
    @GwtIncompatible
    interface ReferenceEntry<K, V> {
      /** Returns the value reference from this entry. */
      @Nullable ValueReference<K, V> getValueReference();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Feb 11 18:34:30 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/path-operation-configuration.md

    ## Deprecate a *path operation* { #deprecate-a-path-operation }
    
    If you need to mark a *path operation* as <abbr title="obsolete, recommended not to use it">deprecated</abbr>, but without removing it, pass the parameter `deprecated`:
    
    {* ../../docs_src/path_operation_configuration/tutorial006.py hl[16] *}
    
    It will be clearly marked as deprecated in the interactive docs:
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  3. guava-testlib/README.md

    -   [guava-discuss: For open-ended questions and discussion](https://groups.google.com/group/guava-discuss)
    
    ## IMPORTANT WARNINGS
    
    1. APIs marked with the `@Beta` annotation at the class or method level
    are subject to change. They can be modified in any way, or even
    removed, at any time. If your code is a library itself (i.e. it is
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 18:38:35 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbWatchHandleImplTest.java

            assertThrows(SmbUnsupportedOperationException.class, sut::watch);
            verify(tree, times(1)).close();
        }
    
        // SMB1 path: on error code 0x10B the handle should be marked closed
        @Test
        @DisplayName("watch() SMB1 marks handle closed on error 0x10B")
        void watch_smb1_marksClosed_onError10B() throws Exception {
            NotifyResponse resp = mock(NotifyResponse.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectionListener.kt

      ) {}
    
      /**
       * Invoked when a call no longer uses a connection.
       */
      open fun connectionReleased(
        connection: Connection,
        call: Call,
      ) {}
    
      /**
       * Invoked when a connection is marked for no new exchanges.
       */
      open fun noNewExchanges(connection: Connection) {}
    
      companion object {
        val NONE: ConnectionListener = object : ConnectionListener() {}
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri May 30 21:28:20 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  6. docs/en/data/sponsors.yml

        img: https://fastapi.tiangolo.com/img/sponsors/railway.png
    silver:
      - url: https://databento.com/?utm_source=fastapi&utm_medium=sponsor&utm_content=display
        title: Pay as you go for market data
        img: https://fastapi.tiangolo.com/img/sponsors/databento.svg
      - url: https://speakeasy.com/editor?utm_source=fastapi+repo&utm_medium=github+sponsorship
        title: SDKs for your API | Speakeasy
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 15:19:49 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/util/SecureCredentialStorageTest.java

                // This is acceptable - not all JVM implementations support destroying SecretKey
                // The important part is that the storage is marked as destroyed
            }
    
            assertTrue(storage.isDestroyed(), "Storage should be marked as destroyed");
    
            // Operations should fail after destroy
            assertThrows(IllegalStateException.class, () -> {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  8. docs/en/data/contributors.yml

      url: https://github.com/frankie567
    marier-nico:
      login: marier-nico
      count: 2
      avatarUrl: https://avatars.githubusercontent.com/u/30477068?u=c7df6af853c8f4163d1517814f3e9a0715c82713&v=4
      url: https://github.com/marier-nico
    Dustyposa:
      login: Dustyposa
      count: 2
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:58:29 UTC 2025
    - 20K bytes
    - Viewed (0)
  9. src/main/java/jcifs/SmbResource.java

        /**
         * Tests to see if the file this SmbResource represents is marked as
         * hidden. This method will also return true for shares with names that
         * end with '$' such as <code>IPC$</code> or <code>C$</code>.
         *
         * @return <code>true</code> if the <code>SmbResource</code> is marked as being hidden
         * @throws CIFSException if an error occurs accessing the resource
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 28K bytes
    - Viewed (1)
  10. src/test/java/jcifs/netbios/SessionRequestPacketTest.java

            byte[] dst = new byte[256];
            int bytesWritten = packet.writeTrailerWireFormat(dst, 0);
    
            assertTrue(bytesWritten > 68); // Should be larger due to scope
        }
    
        @Test
        @DisplayName("readTrailerWireFormat should read complete packet data")
        void testReadTrailerWireFormatSuccess() throws IOException {
            SessionRequestPacket writePacket =
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
Back to top