Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,639 for Sall (0.14 sec)

  1. platforms/ide/tooling-api/readme.md

    This is used by `AbstractCompatibilityTestInterceptor` to filter out incompatible Gradle Versions.
    Also, all TestPrecondition annotations are checked in an interceptor (e.g. TestPrecondition.NOT_MAC_OS_X). 
    The preconditions will also end up in the same message if it filters all tests.
    
    ### Executing with Kotlin scripts on Gradle Version prior to 5.0.
        
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 21:50:04 UTC 2024
    - 2.2K 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/MetadataSourcesResolveIntegrationTest.groovy

        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        def "can resolve with only gradle metadata"() {
            buildFile << """
                repositories.all {
                    metadataSources {
                        gradleMetadata()
                    }
                }
                dependencies {
                    conf 'org.test:projectA:1.+'
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.ApplicationPluginConvention.xml

                </tr>
                <tr>
                    <td>applicationDistribution</td>
                    <td>A copy spec that includes all of the contents of <literal>src/dist</literal>, copies the start scripts into <literal>bin</literal>, and copies the built jar and all dependencies into <literal>lib</literal></td>
                </tr>
                <tr>
                    <td>executableDir</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/TaskProperties.java

        /**
         * Input file properties.
         *
         * It is guaranteed that all the {@link InputFilePropertySpec}s have a name and that the names are unique.
         */
        ImmutableSortedSet<InputFilePropertySpec> getInputFileProperties();
    
        /**
         * Output file properties.
         *
         * It is guaranteed that all the {@link OutputFilePropertySpec}s have a name and that the names are unique.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:32:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/customTask/kotlin/buildSrc/src/main/java/org/myorg/LatestArtifactVersion.java

        @TaskAction
        public void resolveLatestVersion() {
            System.out.println("Retrieving artifact " + getCoordinates().get() + " from " + getServerUrl().get());
            // Issue HTTP call and parse response
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 22:31:35 UTC 2024
    - 629 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