Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for E$1 (0.03 sec)

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

       * will be added more than once, with the count summed over all appearances of the element.
       *
       * <p>Note that {@code stream.collect(toMultiset(function, e -> 1, supplier))} is equivalent to
       * {@code stream.map(function).collect(Collectors.toCollection(supplier))}.
       *
       * <p>To collect to an {@link ImmutableMultiset}, use {@link
       * ImmutableMultiset#toImmutableMultiset}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

      public static <E> Collector<E, ?, ImmutableSortedMultiset<E>> toImmutableSortedMultiset(
          Comparator<? super E> comparator) {
        return toImmutableSortedMultiset(comparator, Function.identity(), e -> 1);
      }
    
      /**
       * Returns a {@code Collector} that accumulates elements into an {@code ImmutableSortedMultiset}
       * whose elements are the result of applying {@code elementFunction} to the inputs, with counts
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure.sh

          fi
        done
      done
    }
    
    function is-preloaded {
      local -r key=$1
      local -r value=$2
      grep -qs "${key},${value}" "${KUBE_HOME}/preload_info"
    }
    
    function split-commas {
      echo -e "${1//,/'\n'}"
    }
    
    function remount-flexvolume-directory {
      local -r flexvolume_plugin_dir=$1
      mkdir -p "$flexvolume_plugin_dir"
      mount --bind "$flexvolume_plugin_dir" "$flexvolume_plugin_dir"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. src/crypto/internal/bigmod/nat.go

    	// doesn't pay off. Instead, we do a simple conditional square-and-multiply
    	// chain, skipping the initial run of zeroes.
    	xR := NewNat().set(x).montgomeryRepresentation(m)
    	out.set(xR)
    	for i := bits.UintSize - bitLen(e) + 1; i < bits.UintSize; i++ {
    		out.montgomeryMul(out, out, m)
    		if k := (e >> (bits.UintSize - i - 1)) & 1; k != 0 {
    			out.montgomeryMul(out, xR, m)
    		}
    	}
    	return out.montgomeryReduction(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/go/scanner/scanner_test.go

    		{token.FLOAT, "0123.0123", "0123.0123", ""},
    
    		{token.FLOAT, "0e0", "0e0", ""},
    		{token.FLOAT, "123e+0", "123e+0", ""},
    		{token.FLOAT, "0123E-1", "0123E-1", ""},
    
    		{token.FLOAT, "0.e+1", "0.e+1", ""},
    		{token.FLOAT, "123.E-10", "123.E-10", ""},
    		{token.FLOAT, "0123.e123", "0123.e123", ""},
    
    		{token.FLOAT, ".0e-1", ".0e-1", ""},
    		{token.FLOAT, ".123E+10", ".123E+10", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/poset.go

    type posetEdge uint32
    
    func newedge(t uint32, strict bool) posetEdge {
    	s := uint32(0)
    	if strict {
    		s = 1
    	}
    	return posetEdge(t<<1 | s)
    }
    func (e posetEdge) Target() uint32 { return uint32(e) >> 1 }
    func (e posetEdge) Strict() bool   { return uint32(e)&1 != 0 }
    func (e posetEdge) String() string {
    	s := fmt.Sprint(e.Target())
    	if e.Strict() {
    		s += "*"
    	}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top