Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 27 for Huang (0.06 seconds)

  1. android/guava/src/com/google/common/hash/HashingInputStream.java

    import java.io.FilterInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    
    /**
     * An {@link InputStream} that maintains a hash of the data read from it.
     *
     * @author Qian Huang
     * @since 16.0
     */
    @Beta
    public final class HashingInputStream extends FilterInputStream {
      private final Hasher hasher;
    
      /**
    Created: 2026-04-03 12:43
    - Last Modified: 2024-12-21 03:10
    - 2.9K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/hash/HashingInputStreamTest.java

    import java.io.ByteArrayInputStream;
    import java.util.Arrays;
    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@link HashingInputStream}.
     *
     * @author Qian Huang
     */
    @NullUnmarked
    public class HashingInputStreamTest extends TestCase {
      private Hasher hasher;
      private HashFunction hashFunction;
      private static final byte[] testBytes = new byte[] {'y', 'a', 'm', 's'};
    Created: 2026-04-03 12:43
    - Last Modified: 2026-03-19 18:53
    - 5.1K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/hash/HashingInputStreamTest.java

    import java.io.ByteArrayInputStream;
    import java.util.Arrays;
    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@link HashingInputStream}.
     *
     * @author Qian Huang
     */
    @NullUnmarked
    public class HashingInputStreamTest extends TestCase {
      private Hasher hasher;
      private HashFunction hashFunction;
      private static final byte[] testBytes = new byte[] {'y', 'a', 'm', 's'};
    Created: 2026-04-03 12:43
    - Last Modified: 2026-03-19 18:53
    - 5.1K bytes
    - Click Count (0)
  4. CHANGELOG/CHANGELOG-1.13.md

    - Report kube-scheduler unhealthy if leader election is deadlocked. ([#71085](https://github.com/kubernetes/kubernetes/pull/71085), [@bsalamat](https://github.com/bsalamat))
    - Fixed a potential bug that scheduler preempts unnecessary pods. ([#70898](https://github.com/kubernetes/kubernetes/pull/70898), [@Huang-Wei](https://github.com/Huang-Wei))
    
    ### SIG Storage
    
    Created: 2026-04-03 09:05
    - Last Modified: 2022-05-05 13:44
    - 273.1K bytes
    - Click Count (0)
  5. CHANGELOG/CHANGELOG-1.19.md

    - A new extension point `PostFilter` is introduced to scheduler framework which runs after Filter phase to resolve scheduling filter failures. A typical implementation is running preemption logic. ([#91314](https://github.com/kubernetes/kubernetes/pull/91314), [@Huang-Wei](https://github.com/Huang-Wei)) [SIG Scheduling and Testing]
    Created: 2026-04-03 09:05
    - Last Modified: 2022-01-05 05:42
    - 489.7K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.18.md

    - Fix a bug that Pods with topologySpreadConstraints get scheduled to nodes without required labels. ([#95883](https://github.com/kubernetes/kubernetes/pull/95883), [@Huang-Wei](https://github.com/Huang-Wei)) [SIG Scheduling]
    Created: 2026-04-03 09:05
    - Last Modified: 2021-06-16 17:18
    - 373.2K bytes
    - Click Count (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Fixed a 1.27 scheduling regression that PostFilter plugin may not function if previous PreFilter plugins return Skip ([#119943](https://github.com/kubernetes/kubernetes/pull/119943), [@Huang-Wei](https://github.com/Huang-Wei)) [SIG Scheduling and Testing]
    Created: 2026-04-03 09:05
    - Last Modified: 2024-07-17 07:48
    - 466.3K bytes
    - Click Count (2)
  8. CHANGELOG/CHANGELOG-1.22.md

     - The `CSIMigrationVSphereComplete` feature flag is removed. `InTreePluginvSphereUnregister` will be the way moving forward. ([#101272](https://github.com/kubernetes/kubernetes/pull/101272), [@Jiawei0227](https://github.com/Jiawei0227))...
    Created: 2026-04-03 09:05
    - Last Modified: 2022-12-13 12:43
    - 454.1K bytes
    - Click Count (0)
  9. CHANGELOG/CHANGELOG-1.15.md

    - Fixed a scheduler racing issue to ensure low priority pods are unschedulable on the node(s) where high priority pods have `NominatedNodeName` set to the node(s).  ([#77990](https://github.com/kubernetes/kubernetes/pull/77990), [@Huang-Wei](https://github.com/Huang-Wei))
    
    ### Storage
    
    Created: 2026-04-03 09:05
    - Last Modified: 2022-05-05 13:44
    - 278.9K bytes
    - Click Count (0)
  10. CHANGELOG/CHANGELOG-1.14.md

    ### Storage
    
    - Fixed scanning of failed iSCSI targets. ([#74306](https://github.com/kubernetes/kubernetes/pull/74306), [@jsafrane](https://github.com/jsafrane))
    Created: 2026-04-03 09:05
    - Last Modified: 2021-06-14 22:06
    - 271.5K bytes
    - Click Count (0)
Back to Top