Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 359 for Aggregate (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    `test` - Task (lifecycle)::
    Depends on: `runTest__Variant__` that most closely matches the build host
    ::
    Aggregate task of the variant that most closely match the build host for testing the component.
    
    `check` - Task (lifecycle)::
    Depends on: `test`
    ::
    Aggregate task that performs verification tasks, such as running the tests.
    Some plugins add their own verification task to `check`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/build_dashboard_plugin.adoc

    ====
    
    Applying the plugin adds the `buildDashboard` task to your project. The task aggregates the reports for all tasks that implement the link:{groovyDslPath}/org.gradle.api.reporting.Reporting.html[Reporting] interface from _all projects_ in the build. It is typically only applied to the root project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoConfigurationCacheIntegrationTest.groovy

            // run all tests with configuration caching
            file('gradle.properties') << 'org.gradle.configuration-cache=true'
        }
    
        @Issue('https://github.com/gradle/gradle/issues/26922')
        def 'can aggregate with `java-gradle-plugin` subproject'() {
            given:
            file('settings.gradle.kts') << """
                include(":plugin")
                dependencyResolutionManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 16:53:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    `assemble` - Task (lifecycle)::
    Depends on: `linkDebug`
    ::
    Aggregate task that assembles the debug variant of the application 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
    - 13.2K bytes
    - Viewed (0)
  8. src/internal/profile/profile.go

    					return fmt.Errorf("inconsistent function %p: %d", f, f.ID)
    				}
    			}
    		}
    	}
    	return nil
    }
    
    // Aggregate merges the locations in the profile into equivalence
    // classes preserving the request attributes. It also updates the
    // samples to point to the merged locations.
    func (p *Profile) Aggregate(inlineFrame, function, filename, linenumber, address bool) error {
    	for _, m := range p.Mapping {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/VerificationException.java

     * A failed test, for instance, will cause a failing outcome for the test task, but this does not prevent another task
     * from reading and processing the (valid) test results output it produced (perhaps to aggregate multiple test reports).
     *
     * Verification failures do not represent a bug in either the build tool or custom task logic; the responsibility falls to the
     * project's software engineer to correct the verification failure.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 18:24:23 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/token/union/union.go

    	FailOnError bool
    }
    
    // New returns a token authenticator that validates credentials using a chain of authenticator.Token objects.
    // The entire chain is tried until one succeeds. If all fail, an aggregate error is returned.
    func New(authTokenHandlers ...authenticator.Token) authenticator.Token {
    	if len(authTokenHandlers) == 1 {
    		return authTokenHandlers[0]
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
Back to top