Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 573 for Sall (0.03 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/language/java/internal/JavaLanguageServices.java

        private static class JavaProjectScopeServices implements ServiceRegistrationProvider {
            @Provides
            public ToolchainToolFactory createToolFactory(ExecActionFactory generator) {
                // TODO should we create all tools via this factory?
                return new ToolchainToolFactory() {
                    @Override
                    public <T> T create(Class<T> toolType, JavaToolchain toolchain) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            allowEmptySourcePath = false;
            return this;
        }
    
        /**
         * Returns a list with all Java compiler arguments as configured in this builder.
         * Returned arguments are guaranteed not to be null.
         *
         * @return a list containing all Java compiler arguments
         */
        public List<String> build() {
            args = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. .github/workflows/contributor-pr.yml

      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions: {}
    
    jobs:
      build:
        name: "Compile All"
        permissions:
          contents: read
        runs-on: ubuntu-latest
        steps:
          - name: git clone
            uses: actions/checkout@v4
          - id: setup-matrix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

         */
        @CheckReturnValue
        public abstract FileHierarchySet plus(File path);
    
        /**
         * Returns a set that contains the union of this set and the given absolute path. The set contains the path itself, plus all its descendants.
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    It cannot be used in script plugins or init scripts.
    
    [[sec:subprojects_plugins_dsl]]
    ==== Applying plugins to all subprojects
    
    Suppose you have a <<multi_project_builds.adoc#multi_project_builds,multi-project build>>, you probably want to apply plugins to some or all of the subprojects in your build but not to the `root` project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

         */
        protected
        fun setupPluginRequirements() {
            projectDir.resolve("version.txt").writeText("9999999.0") // All released versions should be lower than this
            projectDir.resolve("released-versions.json").writeText(
                """
                    {
                      "latestReleaseSnapshot": {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousGraphVariantsFailureDescriber.java

                for (String configuration : ambiguousVariants.keySet()) {
                    formatter.node(configuration);
                }
                formatter.endChildren();
                formatter.node("All of them match the consumer attributes");
            }
            return ambiguousVariants;
        }
    
        private void formatUnselectable(
            ResolutionCandidateAssessor.AssessedCandidate assessedCandidate,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

         *
         * @return null On end of connection or timeout.
         */
        Object receive(long timeoutValue, TimeUnit timeoutUnits);
    
        /**
         * Blocks until all handlers have been notified and any queued messages have been dispatched to the client.
         */
        @Override
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/base.css

    .docs-navigation a:hover {
        color: #35c1e4;
        text-decoration: none;
    }
    
    .docs-navigation a code {
        color: #02303A;
        overflow-wrap: break-word;
        padding: 0;
        word-break: break-all;
    }
    
    .docs-navigation a.active {
        text-decoration: underline;
        outline: 0;
        border: none;
        outline-style: none;
        -moz-outline-style: none;
    }
    
    .docs-navigation a.active:hover {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

            m.pom.expectGetBroken()
    
            when:
            maybeExpectDeprecation(expression)
            fails 'show'
    
            then:
            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
            failure.assertHasCause("Could not find any matches for org:test:1.0+ as no versions of org:test are available.")
            failure.assertHasCause("Could not resolve org:test2:2.0.")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top