Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for octets (0.44 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. docs/fr/docs/advanced/path-operation-advanced-configuration.md

    Dans cet exemple, nous n'avons déclaré aucun modèle Pydantic. En fait, le corps de la requête n'est même pas <abbr title="converti d'un format simple, comme des octets, en objets Python">parsé</abbr> en tant que JSON, il est lu directement en tant que `bytes`, et la fonction `magic_data_reader()` serait chargé de l'analyser d'une manière ou d'une autre.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/netbios/LmhostsTest.java

                writer.write("192.168 HOST1\n"); // Invalid IP - missing 2 octets (should be skipped)
                writer.write("192.168.1.100 VALIDHOST\n");
                writer.write("not.an.ip HOST2\n"); // Invalid IP format
                writer.write("192.168.1.256 HOST3\n"); // Invalid octet value > 255
            }
    
            when(mockConfig.getLmHostsFileName()).thenReturn(lmhostsFile.getAbsolutePath());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/test/java/jcifs/smb1/util/MimeMapTest.java

            void testUnknownExtension() throws IOException {
                assertEquals("application/octet-stream", mimeMap.getMimeType("unknownext"));
                assertEquals("application/octet-stream", mimeMap.getMimeType("notfound"));
                assertEquals("application/octet-stream", mimeMap.getMimeType("doesnotexist"));
            }
    
            @Test
            @DisplayName("Should handle case insensitive extensions")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/ASN1Util.java

            length = 0;
            do {
                final int octet = s.read();
                if (octet < 0) {
                    throw new EOFException("EOF found reading length");
                }
    
                if (length >>> 23 != 0) {
                    throw new IOException("long form definite-length more than 31 bits");
                }
    
                length = (length << 8) + octet;
            } while (++octetsPos < octetsCount);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/MimeMap.java

        }
    
        /**
         * Returns the MIME type for the given file extension.
         * If no mapping is found, returns "application/octet-stream" as the default.
         *
         * @param extension the file extension to look up (without the dot)
         * @return the MIME type for the extension, or "application/octet-stream" if not found
         * @throws IOException if there is an error processing the MIME mappings
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top