Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OtherBean (0.56 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaSerializationIntegrationTest.groovy

                        return new OtherBean(prop: "[\$value]")
                    }
                }
    
                class OtherBean implements Serializable {
                    String prop
    
                    private Object writeReplace() {
                        return new Placeholder(value: prop)
                    }
                }
    
                class SomeBean {
                    OtherBean value
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/StatsAccumulator.java

          if (isFinite(mean) && isFinite(otherMean)) {
            // This is a generalized version of the calculation in add(double) above.
            double delta = otherMean - mean;
            mean += delta * otherCount / count;
            sumOfSquaresOfDeltas += otherSumOfSquaresOfDeltas + delta * (otherMean - mean) * otherCount;
          } else {
            mean = calculateNewMeanNonFinite(mean, otherMean);
            sumOfSquaresOfDeltas = NaN;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/StatsAccumulator.java

          if (isFinite(mean) && isFinite(otherMean)) {
            // This is a generalized version of the calculation in add(double) above.
            double delta = otherMean - mean;
            mean += delta * otherCount / count;
            sumOfSquaresOfDeltas += otherSumOfSquaresOfDeltas + delta * (otherMean - mean) * otherCount;
          } else {
            mean = calculateNewMeanNonFinite(mean, otherMean);
            sumOfSquaresOfDeltas = NaN;
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top