Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 770 for Sall (0.04 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/AsyncCacheAccess.java

         */
        void enqueue(Runnable task);
    
        /**
         * Runs the given action, blocking until the result is available.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

        }
    
        @Override
        List<BuildOperationRecord> all() {
            return operations.records.values().toList()
        }
    
        @Override
        List<BuildOperationRecord> all(Pattern displayName) {
            return operations.records.values().findAll { it.displayName ==~ displayName }
        }
    
        @Override
        BuildOperationRecord only(Pattern displayName) {
            def records = all(displayName)
            if (records.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/ResolutionOutputs.java

    /**
     * The outputs of a graph resolution. All results on this type are lazy. Resolution is only performed
     * when the results are accessed.
     *
     * TODO: This type is intended to be made public in future Gradle versions, in some form.
     */
    @HasInternalProtocol
    public interface ResolutionOutputs {
    
        /**
         * A {@link FileCollection} containing all resolved files. The returned collection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

             *
             * Because of it doing so, our decorated call site is removed from the dynamic invocation code path, and we lose the ability to track dynamic call entry points. <p>
             *
             * To fix that, we store the optimized call site that the Groovy runtime created (and we delegate to it in subsequent calls), and we put a reference to our
             * decorated call site back into the call site array.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/cpp-source/lib.cpp

    <% projectDeps.each { p ->
      sourceFiles.times { %>
    #include "${p}lib${it + 1}.h"
    <%
      }
    } %>
    
    <% functionCount.times { %>
    long CPP_${functionName}_${it + 1} () {
      long sum = 1;
      // Call functions defined in dependent projects.
      <% projectDeps.each { p ->
        sourceFiles.times {
          def functionName = "${p}lib${it + 1}"
          functionCount.times {
      %>
      sum += CPP_${functionName}_${it + 1}();
      <%
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 521 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    By default, `outgoingVariants` prints information about all variants.
    It offers the optional parameter `--variant <variantName>` to select a single variant to display.
    It also accepts the `--all` flag to include information about legacy and deprecated configurations, or `--no-all` to exclude this information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ExecutionTimeTaskConfigurationIntegrationTest.groovy

            when:
            executer.withArgument("--continue")
            fails("broken1", "broken2", "broken3")
    
            then:
            failure.assertHasCause("Cannot call ${description} on task ':broken1' after task has started execution.")
            failure.assertHasCause("Cannot call ${description} on task ':broken2' after task has started execution.")
    
            where:
            config                                                      | description
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/CachingServiceLocator.java

            if (allServices.containsKey(serviceType)) {
                return Cast.uncheckedNonnullCast(allServices.get(serviceType));
            }
            List<T> all = delegate.getAll(serviceType);
            allServices.put(serviceType, all);
            return all;
        }
    
        @Override
        public synchronized <T> DefaultServiceLocator.ServiceFactory<T> getFactory(Class<T> serviceType) throws UnknownServiceException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceRegistryBuilder.java

            this.strict = false;
            return this;
        }
    
        /**
         * Providing a scope makes the resulting {@link ServiceRegistry}
         * validate all registered services for being annotated with the given scope.
         * <p>
         * All registered services require the {@link org.gradle.internal.service.scopes.ServiceScope @ServiceScope}
         * annotation to be present and contain the given scope.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

        def "captures plugin application events"() {
            given:
            file("build.gradle") << "apply plugin: 'java'"
    
            when:
            succeeds "build"
    
            then:
            def plugins = operations.all(ApplyPluginBuildOperationType) {
                it.details.targetType == "project" &&
                    it.details.targetPath == ":" &&
                    it.details.buildPath == ":"
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top