Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 162 for Aggregate (0.12 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.reporting.GenerateBuildDashboard.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>reports</td>
                </tr>
                <tr>
                    <td>aggregate</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/aggregate/leak_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package aggregate
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 794 bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/AllDaemonExpirationStrategy.java

            for (DaemonExpirationStrategy expirationStrategy : expirationStrategies) {
                // If any of the child strategies don't expire the daemon, the daemon will not expire.
                // Otherwise, the daemon will expire and aggregate the reasons together.
                expirationResult = expirationStrategy.checkExpiration();
    
                if (expirationResult.getStatus() == DO_NOT_EXPIRE) {
                    return DaemonExpirationResult.NOT_TRIGGERED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestListener.java

         */
        void beforeSuite(TestDescriptor suite);
    
        /**
         * Called after a test suite is finished.
         * @param suite The suite whose tests have finished being executed.
         * @param result The aggregate result for the suite.
         */
        void afterSuite(TestDescriptor suite, TestResult result);
    
        /**
         * Called before an atomic test is started.
         * @param testDescriptor The test which is about to be executed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/internal/coverage/cformat/format.go

    	var totalStmts, coveredStmts uint64
    	for _, importpath := range pkgs {
    		p := fm.pm[importpath]
    		if !aggregate {
    			totalStmts, coveredStmts = 0, 0
    		}
    		for unit, count := range p.unitTable {
    			nx := uint64(unit.NxStmts)
    			totalStmts += nx
    			if count != 0 {
    				coveredStmts += nx
    			}
    		}
    		if !aggregate {
    			if _, err := fmt.Fprintf(w, "\t%s\t\t", importpath); err != nil {
    				return err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. operator/pkg/util/progress/progress.go

    // This aims to provide information about the install of multiple components in parallel, while working
    // around the limitations of the pb library, which will only support single lines. To do this, we aggregate
    // the current components into a single line, and as components complete there final state is persisted to a new line.
    type Log struct {
    	components map[string]*ManifestLog
    	bar        *pb.ProgressBar
    	template   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/match/matchers.go

    var Any Matcher = func(_ echo.Instance) bool {
    	return true
    }
    
    // And is an aggregate Matcher that requires all matches return true.
    func And(ms ...Matcher) Matcher {
    	return func(i echo.Instance) bool {
    		for _, m := range ms {
    			if m != nil && !m(i) {
    				return false
    			}
    		}
    		return true
    	}
    }
    
    // Or is an aggregate Matcher that requires at least one matches return true.
    func Or(ms ...Matcher) Matcher {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/cmd/vet/README

    is not acceptable.
    
    Frequency:
    
    Vet is run every day by many programmers, often as part of every compilation or
    submission. The cost in execution time is considerable, especially in aggregate,
    so checks must be likely enough to find real problems that they are worth the
    overhead of the added check. A new check that finds only a handful of problems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/IntermediateToolingModelProvider.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Fetches models for given projects in an Isolated Project-compatible manner.
     * <p>
     * It should be used by tooling model builders when they need to aggregate models
     * from <b>multiple projects of the same build</b>.
     */
    @NonNullApi
    @ServiceScope(Scope.Build.class)
    public interface IntermediateToolingModelProvider {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/RepositoryFactory.java

        @Nonnull
        RemoteRepository createRemote(@Nonnull String id, @Nonnull String url);
    
        @Nonnull
        RemoteRepository createRemote(@Nonnull Repository repository);
    
        @Nonnull
        List<RemoteRepository> aggregate(
                @Nonnull Session session,
                @Nonnull List<RemoteRepository> dominant,
                @Nonnull List<RemoteRepository> recessive,
                boolean processRecessive);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top