Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkSize (0.11 sec)

  1. src/cmd/link/internal/ld/data.go

    	// we skip size comparison and do the name comparison instead
    	// (conveniently, .got sorts before .toc).
    	checkSize := symn != sym.SELFGOT
    
    	for k, s := range syms {
    		ss := ldr.SymSize(s)
    		sl[k] = symNameSize{sz: ss, sym: s}
    		if !checkSize {
    			sl[k].name = ldr.SymName(s)
    		}
    		ds := int64(len(ldr.Data(s)))
    		switch {
    		case ss < ds:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

         * refresh.
         */
        @CanIgnoreReturnValue
        @CheckForNull
        V refresh(K key, int hash, CacheLoader<? super K, V> loader, boolean checkTime) {
          final LoadingValueReference<K, V> loadingValueReference =
              insertLoadingValueReference(key, hash, checkTime);
          if (loadingValueReference == null) {
            return null;
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

         * refresh.
         */
        @CanIgnoreReturnValue
        @CheckForNull
        V refresh(K key, int hash, CacheLoader<? super K, V> loader, boolean checkTime) {
          final LoadingValueReference<K, V> loadingValueReference =
              insertLoadingValueReference(key, hash, checkTime);
          if (loadingValueReference == null) {
            return null;
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top