Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for alphabet (0.24 sec)

  1. src/main/java/jcifs/smb1/util/Base64.java

                buffer.append(ALPHABET.charAt(block >>> 6));
                buffer.append(ALPHABET.charAt(block & 0x3f));
                buffer.append("==");
                return buffer.toString();
            }
            block = (((bytes[i++] & 0xff) << 8) | ((bytes[i]) & 0xff)) << 2;
            buffer.append(ALPHABET.charAt(block >>> 12));
            buffer.append(ALPHABET.charAt((block >>> 6) & 0x3f));
            buffer.append(ALPHABET.charAt(block & 0x3f));
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/BaseEncoding.java

        Base16Encoding(String name, String alphabetChars) {
          this(new Alphabet(name, alphabetChars.toCharArray()));
        }
    
        private Base16Encoding(Alphabet alphabet) {
          super(alphabet, null);
          checkArgument(alphabet.chars.length == 16);
          for (int i = 0; i < 256; ++i) {
            encoding[i] = alphabet.encode(i >>> 4);
            encoding[i | 0x100] = alphabet.encode(i & 0xF);
          }
        }
    
        @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Mar 15 16:33:32 GMT 2024
    - 41.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Charsets.java

       *
       */
      @J2ktIncompatible
      @GwtIncompatible // Charset not supported by GWT
      public static final Charset US_ASCII = Charset.forName("US-ASCII");
    
      /**
       * ISO-8859-1: ISO Latin Alphabet Number 1 (ISO-LATIN-1).
       *
       * <p><b>Java 7+ users:</b> this constant should be treated as deprecated; use {@link
       * java.nio.charset.StandardCharsets#ISO_8859_1} instead.
       *
       */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Charsets.java

       *
       */
      @J2ktIncompatible
      @GwtIncompatible // Charset not supported by GWT
      public static final Charset US_ASCII = Charset.forName("US-ASCII");
    
      /**
       * ISO-8859-1: ISO Latin Alphabet Number 1 (ISO-LATIN-1).
       *
       * <p><b>Java 7+ users:</b> this constant should be treated as deprecated; use {@link
       * java.nio.charset.StandardCharsets#ISO_8859_1} instead.
       *
       */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  5. SECURITY.md

      - A minimal example of the vulnerability. It is very important to let us know
        how we can reproduce your findings. For memory corruption triggerable in
        TensorFlow models, please demonstrate an exploit against one of Alphabet's
        models in <https://tfhub.dev/>
      - An explanation of who can exploit this vulnerability, and what they gain
        when doing so. Write an attack scenario that demonstrates how your issue
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Sun Oct 01 06:06:35 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/metadata.md

    ### Reihenfolge der Tags
    
    Die Reihenfolge der Tag-Metadaten-Dicts definiert auch die Reihenfolge, in der diese in der Benutzeroberfläche der Dokumentation angezeigt werden.
    
    Auch wenn beispielsweise `users` im Alphabet nach `items` kommt, wird es vor diesen angezeigt, da wir seine Metadaten als erstes Dict der Liste hinzugefügt haben.
    
    ## OpenAPI-URL
    
    Standardmäßig wird das OpenAPI-Schema unter `/openapi.json` bereitgestellt.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:25:38 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

              override fun encode(
                writer: DerWriter,
                value: String,
              ) = writer.writeUtf8(value)
            },
        )
    
      /**
       * Based on International Alphabet No. 5. Note that there are bytes that IA5 and US-ASCII
       * disagree on interpretation.
       *
       * TODO(jwilson): constrain to IA5 characters.
       */
      val IA5_STRING =
        BasicDerAdapter(
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 15K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/CharMatcher.java

      }
    
      /**
       * Determines whether a character is a BMP letter according to {@linkplain
       * Character#isLetter(char) Java's definition}. If you only care to match letters of the Latin
       * alphabet, you can use {@code inRange('a', 'z').or(inRange('A', 'Z'))}.
       *
       * @deprecated Most letters are supplementary characters; see the class documentation.
       * @since 19.0 (since 1.0 as constant {@code JAVA_LETTER})
       */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CharMatcher.java

      }
    
      /**
       * Determines whether a character is a BMP letter according to {@linkplain
       * Character#isLetter(char) Java's definition}. If you only care to match letters of the Latin
       * alphabet, you can use {@code inRange('a', 'z').or(inRange('A', 'Z'))}.
       *
       * @deprecated Most letters are supplementary characters; see the class documentation.
       * @since 19.0 (since 1.0 as constant {@code JAVA_LETTER})
       */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  10. cmd/dummy-data-generator_test.go

    	}
    	if skipOffset < 0 {
    		panic("Negative rotations are not allowed")
    	}
    
    	skipOffset %= int64(len(alphabets))
    	as := make([]byte, 2*len(alphabets))
    	copy(as, alphabets)
    	copy(as[len(alphabets):], alphabets)
    	b := as[skipOffset : skipOffset+int64(len(alphabets))]
    	return &DummyDataGen{
    		length: totalLength,
    		b:      b,
    	}
    }
    
    func (d *DummyDataGen) Read(b []byte) (n int, err error) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Sep 19 18:05:16 GMT 2022
    - 4.8K bytes
    - Viewed (0)
Back to top