Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for constructorsOf (0.23 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    Enum Constant Detail Use Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

       * the cache hit rate to be similar to that of a global LRU algorithm.
       */
    
      // Constants
    
      /**
       * The maximum capacity, used if a higher value is implicitly specified by either of the
       * constructors with arguments. MUST be a power of two {@code <= 1<<30} to ensure that entries are
       * indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = 1 << 30;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    type GlobalCDtor struct {
    	Ctor bool
    	Key  AST
    }
    
    func (gcd *GlobalCDtor) print(ps *printState) {
    	ps.writeString("global ")
    	if gcd.Ctor {
    		ps.writeString("constructors")
    	} else {
    		ps.writeString("destructors")
    	}
    	ps.writeString(" keyed to ")
    	ps.print(gcd.Key)
    }
    
    func (gcd *GlobalCDtor) Traverse(fn func(AST) bool) {
    	if fn(gcd) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

       * the cache hit rate to be similar to that of a global LRU algorithm.
       */
    
      // Constants
    
      /**
       * The maximum capacity, used if a higher value is implicitly specified by either of the
       * constructors with arguments. MUST be a power of two {@code <= 1<<30} to ensure that entries are
       * indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = 1 << 30;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. src/reflect/value.go

    		if t.IfaceIndir() {
    			recv = Value{t, p, fl | flagIndir}
    		} else {
    			recv = Value{t, *(*unsafe.Pointer)(p), fl}
    		}
    	}
    	return chosen, recv, recvOK
    }
    
    /*
     * constructors
     */
    
    // implemented in package runtime
    
    //go:noescape
    func unsafe_New(*abi.Type) unsafe.Pointer
    
    //go:noescape
    func unsafe_NewArray(*abi.Type, int) unsafe.Pointer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    func join(b ...[]byte) []byte    { return bytes.Join(b, nil) }
    func lit(x ...byte) []byte       { return x }
    
    func TestTypeOfTypeOf(t *testing.T) {
    	// Check that all the type constructors return concrete *rtype implementations.
    	// It's difficult to test directly because the reflect package is only at arm's length.
    	// The easiest thing to do is just call a function that crashes if it doesn't get an *rtype.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top