Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 239 for 250 (0.22 sec)

  1. docs/zh/docs/tutorial/metadata.md

    | `contact` | `dict` | 公开的 API 的联系信息。它可以包含多个字段。<details><summary><code>contact</code> 字段</summary><table><thead><tr><th>参数</th><th>Type</th><th>描述</th></tr></thead><tbody...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/go.mod

    	go.uber.org/zap v1.26.0 // indirect
    	golang.org/x/crypto v0.23.0 // indirect
    	golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
    	golang.org/x/mod v0.17.0 // indirect
    	golang.org/x/net v0.25.0 // indirect
    	golang.org/x/oauth2 v0.20.0 // indirect
    	golang.org/x/sync v0.7.0 // indirect
    	golang.org/x/sys v0.20.0 // indirect
    	golang.org/x/term v0.20.0 // indirect
    	golang.org/x/text v0.15.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallKotlinTest.kt

        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
    
        // Give the socket a chance to become stale.
        connection!!.idleAtNs -= IDLE_CONNECTION_HEALTHY_NS
        Thread.sleep(250)
    
        val requestB =
          Request(
            url = server.url("/"),
            body = "b".toRequestBody("text/plain".toMediaType()),
          )
        val responseB = client.newCall(requestB).execute()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go

    	SYS_IO_DESTROY                   = 246
    	SYS_IO_GETEVENTS                 = 247
    	SYS_IO_SUBMIT                    = 248
    	SYS_IO_CANCEL                    = 249
    	SYS_FADVISE64                    = 250
    	SYS_EXIT_GROUP                   = 252
    	SYS_LOOKUP_DCOOKIE               = 253
    	SYS_EPOLL_CREATE                 = 254
    	SYS_EPOLL_CTL                    = 255
    	SYS_EPOLL_WAIT                   = 256
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/metadata.md

    | `description` | `str` | A short description of the API. It can use Markdown. |
    | `version` | `string` | The version of the API. This is the version of your own application, not of OpenAPI. For example `2.5.0`. |
    | `terms_of_service` | `str` | A URL to the Terms of Service for the API. If provided, this has to be a URL. |
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbConstants.java

        static final int DEFAULT_RCV_BUF_SIZE = 0xFFFF;
        static final int DEFAULT_SND_BUF_SIZE = 0xFFFF;
        static final int DEFAULT_NOTIFY_BUF_SIZE = 1024;
    
        static final int DEFAULT_SSN_LIMIT = 250;
        static final int DEFAULT_CONN_TIMEOUT = 35000;
    
        static final int FLAGS_NONE = 0x00;
        static final int FLAGS_LOCK_AND_READ_WRITE_AND_UNLOCK = 0x01;
        static final int FLAGS_RECEIVE_BUFFER_POSTED = 0x02;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go

    	SYS_POSIX_SPAWN                    = 244
    	SYS_FFSCTL                         = 245
    	SYS_NFSCLNT                        = 247
    	SYS_FHOPEN                         = 248
    	SYS_MINHERIT                       = 250
    	SYS_SEMSYS                         = 251
    	SYS_MSGSYS                         = 252
    	SYS_SHMSYS                         = 253
    	SYS_SEMCTL                         = 254
    	SYS_SEMGET                         = 255
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go

    	SYS_CLOCK_SETTIME           = 245
    	SYS_CLOCK_GETTIME           = 246
    	SYS_CLOCK_GETRES            = 247
    	SYS_CLOCK_NANOSLEEP         = 248
    	SYS_SWAPCONTEXT             = 249
    	SYS_TGKILL                  = 250
    	SYS_UTIMES                  = 251
    	SYS_STATFS64                = 252
    	SYS_FSTATFS64               = 253
    	SYS_RTAS                    = 255
    	SYS_SYS_DEBUG_SETCONTEXT    = 256
    	SYS_MIGRATE_PAGES           = 258
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/ConnectionListenerTest.kt

        server!!.enqueue(
          MockResponse.Builder()
            .headersDelay(2, TimeUnit.SECONDS)
            .build(),
        )
        client =
          client.newBuilder()
            .readTimeout(Duration.ofMillis(250))
            .build()
        val call =
          client.newCall(
            Request.Builder()
              .url(server!!.url("/"))
              .build(),
          )
        assertFailsWith<IOException> {
          call.execute()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-IssueTicketPreDisable

    00000160  aa b6 14 43 ed 97 a7 75  62 f4 14 c8 52 d7 02 03  |...C...ub...R...|
    00000170  01 00 01 a3 81 93 30 81  90 30 0e 06 03 55 1d 0f  |......0..0...U..|
    00000180  01 01 ff 04 04 03 02 05  a0 30 1d 06 03 55 1d 25  |.........0...U.%|
    00000190  04 16 30 14 06 08 2b 06  01 05 05 07 03 01 06 08  |..0...+.........|
    000001a0  2b 06 01 05 05 07 03 02  30 0c 06 03 55 1d 13 01  |+.......0...U...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top