Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for E$1 (0.08 sec)

  1. android/guava/src/com/google/common/collect/Collections2.java

      private static <E extends @Nullable Object> ObjectCountHashMap<E> counts(
          Collection<E> collection) {
        ObjectCountHashMap<E> map = new ObjectCountHashMap<>();
        for (E e : collection) {
          map.put(e, map.get(e) + 1);
        }
        return map;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/internal/trace/traceviewer/static/trace_viewer_full.html

    t,e,r,u=n.length,i=n[0].length,o=[],a=0,c=[];for(e=0;i>e;++e){for(t=0,r=0;u>t;t++)r+=n[t][e][1];r>a&&(a=r),o.push(r)}for(e=0;i>e;++e)c[e]=(a-o[e])/2;return c},wiggle:function(n){var t,e,r,u,i,o,a,c,s,l=n.length,f=n[0],h=f.length,g=[];for(g[0]=c=s=0,e=1;h>e;++e){for(t=0,u=0;l>t;++t)u+=n[t][e][1];for(t=0,i=0,a=f[e][0]-f[e-1][0];l>t;++t){for(r=0,o=(n[t][e][1]-n[t][e-1][1])/(2*a);t>r;++r)o+=(n[r][e][1]-n[r][e-1][1])/a;i+=o*n[t][e][1]}g[e]=c-=u?i/u*a:0,s>c&&(s=c)}for(e=0;h>e;++e)g[e]-=s;return g},expand:function(n){var...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  3. src/cmd/compile/internal/syntax/scanner_test.go

    		{FloatLit, "0123.0123", "0123.0123", ""},
    
    		{FloatLit, "0e0", "0e0", ""},
    		{FloatLit, "123e+0", "123e+0", ""},
    		{FloatLit, "0123E-1", "0123E-1", ""},
    
    		{FloatLit, "0.e+1", "0.e+1", ""},
    		{FloatLit, "123.E-10", "123.E-10", ""},
    		{FloatLit, "0123.e123", "0123.e123", ""},
    
    		{FloatLit, ".0e-1", ".0e-1", ""},
    		{FloatLit, ".123E+10", ".123E+10", ""},
    		{FloatLit, ".0123E123", ".0123E123", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/magic.go

    // We'll chose m = ⎡2^e/c⎤ to satisfy that equation.
    // What remains is to choose e.
    // Let m = 2^e/c + delta, 0 <= delta < 1
    //   ⎣x * (2^e/c + delta) / 2^e⎦
    //   ⎣x / c + x * delta / 2^e⎦
    // We must have x * delta / 2^e < 1/c so that this
    // additional term never rounds differently than ⎣x / c⎦ does.
    // Rearranging,
    //   2^e > x * delta * c
    // x can be at most 2^n-1 and delta can be at most 1.
    // So it is sufficient to have 2^e >= 2^n*c.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/merge_control_flow.mlir

          }, {
          %2 = "tf.C"() : () -> (tensor<f32>)
          "tf.Yield"(%2) : (tensor<f32>) -> ()
        }) { is_stateless = true } : (tensor<i1>) -> (tensor<f32>)
        "tf.IfRegion"(%8) ({
          %4 = "tf.E"(%1) : (tensor<f32>) -> (tensor<f32>)
          "tf.Yield"(%4) : (tensor<f32>) -> ()
          }, {
          %4 = "tf.F"() : () -> (tensor<f32>)
          "tf.Yield"(%4) : (tensor<f32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 63.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSortedMultiset.java

       * @since 21.0
       */
      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: Wed May 08 03:01:02 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. src/runtime/proc_test.go

    			t.Errorf("want locked counts 0, 0; got %d, %d", e, i)
    			return
    		}
    		runtime.LockOSThread()
    		runtime.LockOSThread()
    		runtime.UnlockOSThread()
    		e, i = runtime.LockOSCounts()
    		if e != 1 || i != 0 {
    			t.Errorf("want locked counts 1, 0; got %d, %d", e, i)
    			return
    		}
    		runtime.UnlockOSThread()
    		e, i = runtime.LockOSCounts()
    		if e != 0 || i != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/match.go

    		m.regGroupDist = regGroupDist
    	}
    }
    
    func isParadigmLocale(lang language.Language, r language.Region) bool {
    	for _, e := range paradigmLocales {
    		if language.Language(e[0]) == lang && (r == language.Region(e[1]) || r == language.Region(e[2])) {
    			return true
    		}
    	}
    	return false
    }
    
    // regionGroupDist computes the distance between two regions based on their
    // CLDR grouping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/test.go

    	}
    }
    
    func testNamedEnum(t *testing.T) {
    	e := new(C.enum_E)
    
    	*e = C.Enum1
    	if *e != 1 {
    		t.Error("bad enum", C.Enum1)
    	}
    
    	*e = C.Enum2
    	if *e != 2 {
    		t.Error("bad enum", C.Enum2)
    	}
    }
    
    func testCastToEnum(t *testing.T) {
    	e := C.enum_E(C.Enum1)
    	if e != 1 {
    		t.Error("bad enum", C.Enum1)
    	}
    
    	e = C.enum_E(C.Enum2)
    	if e != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. android/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: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top