Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 359 for Aggregate (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/GradleApiSpecAggregator.java

        public GradleApiSpecAggregator(ClassLoader classLoader, Instantiator instantiator) {
            this.classLoader = classLoader;
            this.instantiator = instantiator;
        }
    
        public Spec aggregate() {
            List<Class<? extends GradleApiSpecProvider>> providers = providers();
            if (providers.isEmpty()) {
                return emptySpec();
            }
    
            if (providers.size() == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  2. internal/bucket/bandwidth/measurement.go

    	atomic.AddUint64(&m.bytesSinceLastWindow, bytes)
    }
    
    // updateExponentialMovingAverage processes the measurements captured so far.
    func (m *bucketMeasurement) updateExponentialMovingAverage(endTime time.Time) {
    	// Calculate aggregate avg bandwidth and exp window avg
    	m.lock.Lock()
    	defer func() {
    		m.startTime = endTime
    		m.lock.Unlock()
    	}()
    
    	if m.startTime.IsZero() {
    		return
    	}
    
    	if endTime.Before(m.startTime) {
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 03 20:41:51 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/CollectionFuture.java

    import com.google.errorprone.annotations.concurrent.LazyInit;
    import java.util.Collections;
    import java.util.List;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Aggregate future that collects (stores) results of each future. */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    abstract class CollectionFuture<V extends @Nullable Object, C extends @Nullable Object>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. cmd/tier-last-day-stats.go

    		cl.forwardTo(cm.UpdatedAt)
    		merged.UpdatedAt = cm.UpdatedAt
    	}
    
    	for i := range cl.Bins {
    		merged.Bins[i] = cl.Bins[i].add(cm.Bins[i])
    	}
    
    	return merged
    }
    
    // DailyAllTierStats is used to aggregate last day tier stats across MinIO servers
    type DailyAllTierStats map[string]lastDayTierStats
    
    func (l DailyAllTierStats) merge(m DailyAllTierStats) {
    	for tier, st := range m {
    		l[tier] = l[tier].merge(st)
    	}
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/field.go

    func (bs BitFields) ParseSigned(i [2]uint32) int64 {
    	u, l := bs.parse(i)
    	return int64(u) << (64 - l) >> (64 - l)
    }
    
    // Count the number of bits in the aggregate BitFields
    func (bs BitFields) NumBits() int {
    	num := 0
    	for _, b := range bs {
    		num += int(b.Bits)
    	}
    	return num
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultRepositoryFactory.java

                    .setSnapshotPolicy(buildRepositoryPolicy(repository.getSnapshots()))
                    .build());
        }
    
        @Override
        public List<RemoteRepository> aggregate(
                Session session,
                List<RemoteRepository> dominant,
                List<RemoteRepository> recessive,
                boolean processRecessive) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionStrategyInternal.java

         *
         * @return conflict resolution
         */
        ConflictResolution getConflictResolution();
    
        /**
         * @return the dependency substitution rule (may aggregate multiple rules)
         */
        ImmutableActionSet<DependencySubstitutionInternal> getDependencySubstitutionRule();
    
        /**
         * Used by tests to validate behaviour of the 'task graph modified' state
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    `assemble`::
    _Depends on_: `jar`
    +
    Aggregate task that assembles all the archives in the project. This task is added by the Base Plugin.
    
    `check`::
    _Depends on_: `test`
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  9. pkg/test/framework/features/README.md

    ```
    
    where "usability.observability.status" is the feature, and "exist-by-default" is the scenario in the first case, and the second case has no scenario.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    Depends on: `linkDebug` when linkage includes `shared` or `createDebug` otherwise.
    ::
    Aggregate task that assembles the debug variant of the shared library (if available) for the current host (if present) in the project.
    This task is added by the <<base_plugin.adoc#base_plugin,Base Plugin>>.
    
    `check` - Task (lifecycle)::
    Aggregate task that performs verification tasks, such as running the tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top