Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 124 (0.17 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     *    119 : Ignored.
     *    120 : Valid.
     *    121 : Disallowed
     *    122 : Mapped inline to the sequence: [b2].
     *    123 : Mapped inline to the sequence: [b2a].
     *    124 : Mapped inline to the sequence: [b2, b3].
     *    125 : Mapped inline to the sequence: [b2a, b3].
     *    126 : Mapped inline to the sequence: [b2, b3a].
     *    127 : Mapped inline to the sequence: [b2a, b3a].
     *
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Apr 02 11:39:58 GMT 2024
    - 9K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappedRange.kt

            val b2bit8 = mappedTo[0] and 0x80 != 0
            val b3bit8 = mappedTo[1] and 0x80 != 0
            return when {
              b2bit8 && b3bit8 -> 127
              b3bit8 -> 126
              b2bit8 -> 125
              else -> 124
            }
          }
    
        val b2: Int
          get() = mappedTo[0] and 0x7f
    
        val b3: Int
          get() = mappedTo[1] and 0x7f
      }
    
      data class InlineDelta(
        override val rangeStart: Int,
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/ws/WebSocketWriterTest.kt

            "Payload size must be less than or equal to 125",
          )
        }
      }
    
      @Test fun closeTooLongThrows() {
        assertFailsWith<IllegalArgumentException> {
          val longReason: ByteString = repeat('X', 124).encodeUtf8()
          serverWriter.writeClose(1000, longReason)
        }.also { expected ->
          assertThat(expected.message).isEqualTo(
            "Payload size must be less than or equal to 125",
          )
        }
      }
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/FormBodyTest.kt

        assertThat(formEncode(96)).isEqualTo("%60")
        assertThat(formEncode(97)).isEqualTo("a")
        assertThat(formEncode(122)).isEqualTo("z")
        assertThat(formEncode(123)).isEqualTo("%7B")
        assertThat(formEncode(124)).isEqualTo("%7C")
        assertThat(formEncode(125)).isEqualTo("%7D")
        assertThat(formEncode(126)).isEqualTo("%7E")
        assertThat(formEncode(127)).isEqualTo("%7F")
        assertThat(formEncode(128)).isEqualTo("%C2%80")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  5. api/go1.21.txt

    pkg debug/elf, const DF_1_TRANS DynFlag1 #56887
    pkg debug/elf, const DF_1_WEAKFILTER = 536870912 #56887
    pkg debug/elf, const DF_1_WEAKFILTER DynFlag1 #56887
    pkg debug/elf, const R_PPC64_REL24_P9NOTOC = 124 #60348
    pkg debug/elf, const R_PPC64_REL24_P9NOTOC R_PPC64 #60348
    pkg debug/elf, method (DynFlag1) GoString() string #56887
    pkg debug/elf, method (DynFlag1) String() string #56887
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (darwin-386), const SYS_EXIT = 1
    pkg syscall (darwin-386), const SYS_FCHDIR = 13
    pkg syscall (darwin-386), const SYS_FCHFLAGS = 35
    pkg syscall (darwin-386), const SYS_FCHMOD = 124
    pkg syscall (darwin-386), const SYS_FCHMOD_EXTENDED = 283
    pkg syscall (darwin-386), const SYS_FCHOWN = 123
    pkg syscall (darwin-386), const SYS_FCNTL = 92
    pkg syscall (darwin-386), const SYS_FCNTL_NOCANCEL = 406
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/ws/WebSocketHttpTest.kt

            .webSocketUpgrade(serverListener)
            .build(),
        )
        val webSocket: WebSocket = newWebSocket()
        val server = serverListener.assertOpen()
        clientListener.assertOpen()
        val reason = repeat('X', 124)
        assertFailsWith<IllegalArgumentException> {
          webSocket.close(1000, reason)
        }.also { expected ->
          assertThat(expected.message).isEqualTo("reason.size() > 123: $reason")
        }
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Mar 31 17:16:15 GMT 2024
    - 35.2K bytes
    - Viewed (1)
  8. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const DLT_RAIF1 ideal-int #53466
    pkg syscall (freebsd-riscv64), const DLT_RAW = 12 #53466
    pkg syscall (freebsd-riscv64), const DLT_RAW ideal-int #53466
    pkg syscall (freebsd-riscv64), const DLT_RIO = 124 #53466
    pkg syscall (freebsd-riscv64), const DLT_RIO ideal-int #53466
    pkg syscall (freebsd-riscv64), const DLT_SCCP = 142 #53466
    pkg syscall (freebsd-riscv64), const DLT_SCCP ideal-int #53466
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  9. api/go1.14.txt

    pkg debug/dwarf, const AttrCallAllCalls Attr
    pkg debug/dwarf, const AttrCallAllSourceCalls = 123
    pkg debug/dwarf, const AttrCallAllSourceCalls Attr
    pkg debug/dwarf, const AttrCallAllTailCalls = 124
    pkg debug/dwarf, const AttrCallAllTailCalls Attr
    pkg debug/dwarf, const AttrCallDataLocation = 133
    pkg debug/dwarf, const AttrCallDataLocation Attr
    pkg debug/dwarf, const AttrCallDataValue = 134
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.26.md

    - Fix a bug that caused to panic the apiserver when trying to allocate a Service with a dynamic ClusterIP and it has been configured with Service CIDRs with a /28 mask for IPv4 and a /124 mask for IPv6 ([#115333](https://github.com/kubernetes/kubernetes/pull/115333), [@aojea](https://github.com/aojea)) [SIG Testing]
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Mar 14 16:24:51 GMT 2024
    - 425.7K bytes
    - Viewed (0)
Back to top