Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for method_name (0.41 sec)

  1. tests/callbacks_test.go

    				var argValues []reflect.Value
    				for _, arg := range args {
    					argValues = append(argValues, reflect.ValueOf(arg))
    				}
    
    				results := reflect.ValueOf(s).MethodByName(name).Call(argValues)
    				if len(results) > 0 {
    					v = results[0].Interface()
    				}
    			}
    
    			if c.name == "" {
    				c.name = getFuncName(c.h)
    			}
    
    			if c.before != "" {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 7.2K 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  3. schema/schema.go

    		if schema.err != nil {
    			logger.Default.Error(context.Background(), schema.err.Error())
    			cacheStore.Delete(modelType)
    		}
    	}()
    
    	for _, cbName := range callbackTypes {
    		if methodValue := modelValue.MethodByName(string(cbName)); methodValue.IsValid() {
    			switch methodValue.Type().String() {
    			case "func(*gorm.DB) error":
    				expectedPkgPath := path.Dir(reflect.TypeOf(schema).Elem().PkgPath())
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Tue Aug 19 06:35:49 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Predicates.java

        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      private static String toStringHelper(String methodName, Iterable<?> components) {
        StringBuilder builder = new StringBuilder("Predicates.").append(methodName).append('(');
        boolean first = true;
        for (Object o : components) {
          if (!first) {
            builder.append(',');
          }
          builder.append(o);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  5. 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:06:57 UTC 2025
    - 31.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

     * These tests validate actual SMB protocol operations against dperson/samba:latest.
     */
    @Testcontainers
    @TestInstance(TestInstance.Lifecycle.PER_CLASS)
    @TestMethodOrder(MethodOrderer.MethodName.class)
    class SmbFileIntegrationTest {
    
        private static final Logger log = LoggerFactory.getLogger(SmbFileIntegrationTest.class);
    
        private static final String IMAGE_NAME = "dperson/samba:latest";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  7. doc/go_spec.html

    interface type is <code>nil</code>.
    </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 Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 06 19:12:15 UTC 2025
    - 286.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg reflect, method (Value) Len() int
    pkg reflect, method (Value) MapIndex(Value) Value
    pkg reflect, method (Value) MapKeys() []Value
    pkg reflect, method (Value) Method(int) Value
    pkg reflect, method (Value) MethodByName(string) Value
    pkg reflect, method (Value) NumField() int
    pkg reflect, method (Value) NumMethod() int
    pkg reflect, method (Value) OverflowComplex(complex128) bool
    pkg reflect, method (Value) OverflowFloat(float64) bool
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top