Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 226 for Dent (0.02 sec)

  1. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // https://www.iana.org/domains/root/db/gdn.html
    gdn
    
    // gea : GEA Group Aktiengesellschaft
    // https://www.iana.org/domains/root/db/gea.html
    gea
    
    // gent : Easyhost BV
    // https://www.iana.org/domains/root/db/gent.html
    gent
    
    // genting : Resorts World Inc Pte. Ltd.
    // https://www.iana.org/domains/root/db/genting.html
    genting
    
    // george : Wal-Mart Stores, Inc.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

         *
         * @param primary true if primary
         */
        public void setPrimary(boolean primary) {
            this.isPrimary = primary;
        }
    
        /**
         * Get number of bytes sent
         *
         * @return bytes sent
         */
        public long getBytesSent() {
            return bytesSent.get();
        }
    
        /**
         * Get number of bytes received
         *
         * @return bytes received
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  3. okhttp-sse/README.md

    OkHttp Server-Sent Events
    =========================
    
    Experimental support for server-sent events.
    API is not considered stable and may change at any time.
    
    ### Download
    
    ```kotlin
    testImplementation("com.squareup.okhttp3:okhttp-sse:5.1.0")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 244 bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/NtlmFlags.java

         */
        int NTLMSSP_NEGOTIATE_ALWAYS_SIGN = 0x00008000;
    
        /**
         * Sent by the server in the Type 2 message to indicate that the
         * target authentication realm is a domain.
         */
        int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000;
    
        /**
         * Sent by the server in the Type 2 message to indicate that the
         * target authentication realm is a server.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  5. internal/lru/lru.go

    	c.mu.Lock()
    	defer c.mu.Unlock()
    	if ent := c.evictList.Back(); ent != nil {
    		return ent.Key, ent.Value, true
    	}
    	return
    }
    
    func (c *LRU[K, V]) KeyValues() map[K]V {
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	maps := make(map[K]V)
    	now := time.Now()
    	for ent := c.evictList.Back(); ent != nil; ent = ent.PrevEntry() {
    		if now.After(ent.ExpiresAt) {
    			continue
    		}
    		maps[ent.Key] = ent.Value
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Apr 25 08:22:26 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/RealWebSocketTest.kt

        client.webSocket!!.finishReader()
        taskFaker.runTasks()
        assertThat(client.closed).isTrue()
        client.listener.assertFailure(
          ProtocolException::class.java,
          "Server-sent frames must not be masked.",
        )
        server.listener.assertClosing(1000, "Hello")
        server.listener.assertExhausted() // Client should not have sent second close.
      }
    
      @Test
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        */
        int NTLMSSP_NEGOTIATE_ALWAYS_SIGN = 0x00008000;
    
        /**
        * Sent by the server in the Type 2 message to indicate that the
        * target authentication realm is a domain.
        */
        int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000;
    
        /**
        * Sent by the server in the Type 2 message to indicate that the
        * target authentication realm is a server.
        */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  8. docs/nl/docs/python-types.md

    **FastAPI** is helemaal gebaseerd op deze type hints, ze geven veel voordelen.
    
    Maar zelfs als je **FastAPI** nooit gebruikt, heb je er baat bij om er iets over te leren.
    
    /// note
    
    Als je een Python expert bent en alles al weet over type hints, sla dan dit hoofdstuk over.
    
    ///
    
    ## Motivatie
    
    Laten we beginnen met een eenvoudig voorbeeld:
    
    {* ../../docs_src/python_types/tutorial001.py *}
    
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. cmd/metrics-v3-cluster-notification.go

    	notificationEventsSentTotalMD       = NewCounterMD(notificationEventsSentTotal, "Total number of events sent to the targets")
    	notificationEventsSkippedTotalMD    = NewCounterMD(notificationEventsSkippedTotal, "Events that were skipped to be sent to the targets due to the in-memory queue being full")
    )
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 24 04:10:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/request-files.md

    ```console
    $ pip install python-multipart
    ```
    
    This is because uploaded files are sent as "form data".
    
    ///
    
    ## Import `File` { #import-file }
    
    Import `File` and `UploadFile` from `fastapi`:
    
    {* ../../docs_src/request_files/tutorial001_an_py39.py hl[3] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.3K bytes
    - Viewed (0)
Back to top