Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for octets (0.17 sec)

  1. android/guava/src/com/google/common/net/PercentEscaper.java

        char[] safeCharArray = safeChars.toCharArray();
        for (char c : safeCharArray) {
          maxChar = max(c, maxChar);
        }
        boolean[] octets = new boolean[maxChar + 1];
        for (char c : safeCharArray) {
          octets[c] = true;
        }
        return octets;
      }
    
      /*
       * Overridden for performance. For unescaped strings this improved the performance of the uri
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_fr.properties

    labels.search_result_sort_favorite_count_asc=par nombre de favoris (asc)
    labels.search_result_sort_favorite_count_desc=par nombre de favoris (desc)
    labels.search_result_sort_multiple=Multiple
    labels.search_result_size={0} octets
    labels.search_result_created=Créé :
    labels.search_result_last_modified=Dernière modification :
    labels.search_result_favorite=J'aime
    labels.search_result_favorited=Aimé
    labels.search_click_count=Nombre de clics ({0})
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.33.md

    - When the `StrictIPCIDRValidation` feature gate is enabled, Kubernetes will be
      slightly stricter about what values will be accepted as IP addresses and network
      address ranges (“CIDR blocks”).
      
      In particular, octets within IPv4 addresses are not allowed to have any leading
      `0`s, and IPv4-mapped IPv6 values (e.g. `::ffff:192.168.0.1`) are forbidden.
      These sorts of values can potentially cause security problems when different
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/InetAddresses.java

        }
        int octet = 0;
        for (int i = start; i < end; i++) {
          octet *= 10;
          int digit = Character.digit(ipString.charAt(i), 10);
          if (digit < 0) {
            throw new NumberFormatException();
          }
          octet += digit;
        }
        if (octet > 255) {
          throw new NumberFormatException();
        }
        return (byte) octet;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

       *   directoryName                   [4]     Name,
       *   ediPartyName                    [5]     EDIPartyName,
       *   uniformResourceIdentifier       [6]     IA5String,
       *   iPAddress                       [7]     OCTET STRING,
       *   registeredID                    [8]     OBJECT IDENTIFIER
       * }
       * ```
       *
       * The first property of the pair is the adapter that was used, the second property is the value.
       */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  6. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerWriter.kt

      /**
       * False unless we made a recursive call to [write] at the current stack frame. The explicit box
       * adapter can clear this to synthesize non-constructed values that are embedded in octet strings.
       */
      var constructed = false
    
      fun write(
        name: String,
        tagClass: Int,
        tag: Long,
        block: (BufferedSink) -> Unit,
      ) {
        val constructedBit: Int
        val content = Buffer()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  7. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

        }
      }
    
      @Test fun `octet string`() {
        val bytes = "0404030206A0".decodeHex()
        val octetString = "030206A0".decodeHex()
        assertThat(Adapters.OCTET_STRING.fromDer(bytes)).isEqualTo(octetString)
        assertThat(Adapters.OCTET_STRING.toDer(octetString)).isEqualTo(bytes)
      }
    
      @Test fun `cannot decode constructed octet string`() {
        assertFailsWith<ProtocolException> {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  8. samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/TunnelingUnixSocket.java

    import java.net.SocketAddress;
    import jnr.unixsocket.UnixSocket;
    import jnr.unixsocket.UnixSocketAddress;
    import jnr.unixsocket.UnixSocketChannel;
    
    /**
     * Subtype UNIX socket for a higher-fidelity impersonation of TCP sockets. This is named "tunneling"
     * because it assumes the ultimate destination has a hostname and port.
     */
    final class TunnelingUnixSocket extends UnixSocket {
      private final File path;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Feb 12 16:33:52 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSocketFactory.kt

     */
    package okhttp3
    
    import java.io.IOException
    import java.net.InetAddress
    import java.net.Socket
    import javax.net.SocketFactory
    
    /**
     * A [SocketFactory] that delegates calls. Sockets can be configured after creation by
     * overriding [.configureSocket].
     */
    open class DelegatingSocketFactory(
      private val delegate: SocketFactory,
    ) : SocketFactory() {
      @Throws(IOException::class)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/internal/http/ThreadInterruptTest.kt

      private lateinit var server: MockWebServer
      private lateinit var client: OkHttpClient
    
      @BeforeEach
      fun setUp() {
        // Sockets on some platforms can have large buffers that mean writes do not block when
        // required. These socket factories explicitly set the buffer sizes on sockets created.
        server = MockWebServer()
        server.serverSocketFactory =
          object : DelegatingServerSocketFactory(getDefault()) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 6.1K bytes
    - Viewed (0)
Back to top