Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 447 for Sall (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

                    conf 'org:testA:1.0'
                    conf 'org:testB:1.0'
                }
    
                // fix the conflict between modules providing the same capability using resolution rules
                configurations.all {
                    resolutionStrategy {
                       capabilitiesResolution.withCapability('org.test:cap') {
                          $rule
                          because "we like testB better"
                       }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptFileUtil.java

            return getFileNames(BUILD_FILE_BASE_NAME);
        }
    
        public static String[] getValidExtensions() {
            List<ScriptingLanguage> scriptingLanguages = ScriptingLanguages.all();
            String[] extensions = new String[scriptingLanguages.size()];
            for (int i = 0; i < scriptingLanguages.size(); i++) {
                extensions[i] = scriptingLanguages.get(i).getExtension();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild.public-api-jar.gradle.kts

        configureAsRuntimeJarClasspath(objects)
    }
    
    enum class Filtering {
        PUBLIC_API, ALL
    }
    
    val filteredAttribute: Attribute<Filtering> = Attribute.of("org.gradle.apijar.filtered", Filtering::class.java)
    
    dependencies {
        artifactTypes.getByName("jar") {
            attributes.attribute(filteredAttribute, Filtering.ALL)
        }
    
        // Filters out classes that are not exposed by our API.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/Module.java

         */
        Set<Module> getRequiredModules();
    
        /**
         * Returns the transitive closure of all modules required by this module, including the module itself.
         */
        Set<Module> getAllRequiredModules();
    
        /**
         * Returns the implementation + runtime classpath of the transitive closure of all modules required by this module, including the module itself.
         */
        ClassPath getAllRequiredModulesClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top