Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for methodNames (0.07 sec)

  1. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <module name="LocalVariableName"/>
            <module name="MemberName">
                <property name="format" value="^[a-z_][a-zA-Z0-9_]*$"/>
            </module>
            <module name="MethodName">
                <property name="format" value="^[a-z_][a-zA-Z0-9_]*$"/>
            </module>
            <module name="PackageName">
                <property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$"/>
            </module>
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/Hashing.java

       */
      public static HashFunction hmacSha512(byte[] key) {
        return hmacSha512(new SecretKeySpec(checkNotNull(key), "HmacSHA512"));
      }
    
      private static String hmacToString(String methodName, Key key) {
        return "Hashing."
            + methodName
            + "(Key[algorithm="
            + key.getAlgorithm()
            + ", format="
            + key.getFormat()
            + "])";
      }
    
      /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 19 16:02:36 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </p>
    
    <pre class="ebnf">
    InterfaceType      = "interface" "{" { ( MethodSpec | InterfaceTypeName ) ";" } "}" .
    MethodSpec         = MethodName Signature .
    MethodName         = identifier .
    InterfaceTypeName  = TypeName .
    </pre>
    
    <p>
    An interface type may specify methods <i>explicitly</i> through method specifications,
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </p>
    
    <pre class="ebnf">
    InterfaceType  = "interface" "{" { InterfaceElem ";" } "}" .
    InterfaceElem  = MethodElem | TypeElem .
    MethodElem     = MethodName Signature .
    MethodName     = identifier .
    TypeElem       = TypeTerm { "|" TypeTerm } .
    TypeTerm       = Type | UnderlyingType .
    UnderlyingType = "~" Type .
    </pre>
    
    <p>
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
Back to top