Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for adler (1.45 sec)

  1. guava-tests/test/com/google/common/collect/SetsTest.java

        BiConsumer<A, SomeEnum> adder = collector.accumulator();
        adder.accept(accumulator, SomeEnum.A);
        adder.accept(accumulator, SomeEnum.B);
        ImmutableSet<SomeEnum> set = collector.finisher().apply(accumulator);
        assertThat(set).containsExactly(SomeEnum.A, SomeEnum.B);
    
        // Subsequent manual manipulation of the accumulator must not affect the state of the built set
        adder.accept(accumulator, SomeEnum.C);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    $PIGZ_TAR_HASH = '5a6f8f5530acc85ea51797f58c1409e5af6b69e55da243ffc608784cf14fec0cd16f74cc61c564d69e1a267750aecfc1e4c53b5219ff5f893b42a7576306f34c'
    
    # Install Pigz (https://github.com/madler/pigz) into Windows for improved image
    # extraction performance.
    function Install-Pigz {
      if ("${env:WINDOWS_ENABLE_PIGZ}" -eq "true") {
        if (-not (Test-Path $PIGZ_ROOT)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top