Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for worthwhile (0.23 sec)

  1. guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java

        // faster (and that's debatable), but definitely more memory-hungry. We're
        // choosing to turn .precomputed() into a no-op in GWT, because it doesn't
        // seem to be a worthwhile tradeoff in a browser.
        return matcher;
      }
    
      static String formatCompact4Digits(double value) {
        return toPrecision(value, 4);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 27 13:56:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/math/rand/v2/pcg.go

    	//
    	// Numpy's PCG multiplies by the 64-bit value cheapMul
    	// instead of the 128-bit value used here and in the official PCG code.
    	// This does not seem worthwhile, at least for Go: not having any high
    	// bits in the multiplier reduces the effect of low bits on the highest bits,
    	// and it only saves 1 multiply out of 3.
    	// (On 32-bit systems, it saves 1 out of 6, since Mul64 is doing 4.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Comparators.java

      // Note: 90% of the time we don't add type parameters or wildcards that serve only to "tweak" the
      // desired return type. However, *nested* generics introduce a special class of problems that we
      // think tip it over into being worthwhile.
      public static <T extends @Nullable Object, S extends T> Comparator<Iterable<S>> lexicographical(
          Comparator<T> comparator) {
        return new LexicographicalOrdering<S>(checkNotNull(comparator));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/go/token/position.go

    	// future, but at the moment this change improves the go/printer
    	// benchmark performance by ~30%. This has a direct impact on the
    	// speed of gofmt and thus seems worthwhile (2011-04-29).
    	// TODO(gri): Remove this when compilers have caught up.
    	i, j := 0, len(a)
    	for i < j {
    		h := int(uint(i+j) >> 1) // avoid overflow when computing h
    		// i ≤ h < j
    		if a[h] <= x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. src/runtime/panic.go

    		// run into where the last panic started, and then just pick up
    		// where it left off instead.
    		//
    		// With how subtle defer handling is, this might not actually be
    		// worthwhile though.
    		if p.goexit {
    			pc, sp = p.startPC, uintptr(p.startSP)
    			saveOpenDeferState = false // goexit is unwinding the stack anyway
    			break
    		}
    
    		runningPanicDefers.Add(-1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	brev_arch := []sys.ArchFamily{sys.AMD64, sys.I386, sys.ARM64, sys.ARM, sys.S390X}
    	if buildcfg.GOPPC64 >= 10 {
    		// Use only on Power10 as the new byte reverse instructions that Power10 provide
    		// make it worthwhile as an intrinsic
    		brev_arch = append(brev_arch, sys.PPC64)
    	}
    	/******** runtime/internal/sys ********/
    	addF("runtime/internal/sys", "Bswap32",
    		func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top