Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for Characteristics (0.2 sec)

  1. guava/src/com/google/common/collect/MapMaker.java

     * map that behaves similarly to a {@link ConcurrentHashMap}.
     *
     * <p>The returned map is implemented as a hash table with similar performance characteristics to
     * {@link ConcurrentHashMap}. It supports all optional operations of the {@code ConcurrentMap}
     * interface. It does not permit null keys or values.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. src/debug/buildinfo/buildinfo.go

    		IMAGE_SCN_LNK_NRELOC_OVFL        = 0x1000000
    		IMAGE_SCN_ALIGN_32BYTES          = 0x600000
    	)
    	for _, sect := range x.f.Sections {
    		if sect.VirtualAddress != 0 && sect.Size != 0 &&
    			sect.Characteristics&^IMAGE_SCN_ALIGN_32BYTES == IMAGE_SCN_CNT_INITIALIZED_DATA|IMAGE_SCN_MEM_READ|IMAGE_SCN_MEM_WRITE {
    			return uint64(sect.VirtualAddress) + x.imageBase(), uint64(sect.VirtualSize)
    		}
    	}
    	return 0, 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Stats.java

            StatsAccumulator::new,
            (a, x) -> a.add(x.doubleValue()),
            (l, r) -> {
              l.addAll(r);
              return l;
            },
            StatsAccumulator::snapshot,
            Collector.Characteristics.UNORDERED);
      }
    
      /** Returns the number of values. */
      public long count() {
        return count;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/fsys/fsys.go

    	}
    }
    
    // fakeFile provides an fs.FileInfo implementation for an overlaid file,
    // so that the file has the name of the overlaid file, but takes all
    // other characteristics of the replacement file.
    type fakeFile struct {
    	name string
    	real fs.FileInfo
    }
    
    func (f fakeFile) Name() string       { return f.name }
    func (f fakeFile) Size() int64        { return f.real.Size() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Multisets.java

        return CollectSpliterators.flatMap(
            entrySpliterator,
            entry -> Collections.nCopies(entry.getCount(), entry.getElement()).spliterator(),
            Spliterator.SIZED
                | (entrySpliterator.characteristics()
                    & (Spliterator.ORDERED | Spliterator.NONNULL | Spliterator.IMMUTABLE)),
            multiset.size());
      }
    
      /** An implementation of {@link Multiset#size}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Lists.java

      }
    
      /**
       * Implementation of a transforming random access list. We try to make as many of these methods
       * pass-through to the source list as possible so that the performance characteristics of the
       * source list and transformed list are similar.
       *
       * @see Lists#transform
       */
      private static class TransformingRandomAccessList<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Lists.java

      }
    
      /**
       * Implementation of a transforming random access list. We try to make as many of these methods
       * pass-through to the source list as possible so that the performance characteristics of the
       * source list and transformed list are similar.
       *
       * @see Lists#transform
       */
      private static class TransformingRandomAccessList<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  8. src/crypto/cipher/gcm.go

    	i = ((i << 1) & 0xa) | ((i >> 1) & 0x5)
    	return i
    }
    
    // gcmAdd adds two elements of GF(2¹²⁸) and returns the sum.
    func gcmAdd(x, y *gcmFieldElement) gcmFieldElement {
    	// Addition in a characteristic 2 field is just XOR.
    	return gcmFieldElement{x.low ^ y.low, x.high ^ y.high}
    }
    
    // gcmDouble returns the result of doubling an element of GF(2¹²⁸).
    func gcmDouble(x *gcmFieldElement) (double gcmFieldElement) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/HashFunction.java

     *       always returns zero could be called a hash function. It is not.)
     * </ul>
     *
     * <p>Summarizing the last two points: "equal yield equal <i>always</i>; unequal yield unequal
     * <i>often</i>." This is the most important characteristic of all hash functions.
     *
     * <h3>Desirable properties</h3>
     *
     * <p>A high-quality hash function strives for some subset of the following virtues:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/HashFunction.java

     *       always returns zero could be called a hash function. It is not.)
     * </ul>
     *
     * <p>Summarizing the last two points: "equal yield equal <i>always</i>; unequal yield unequal
     * <i>often</i>." This is the most important characteristic of all hash functions.
     *
     * <h3>Desirable properties</h3>
     *
     * <p>A high-quality hash function strives for some subset of the following virtues:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
Back to top