Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 293 for Solution (0.32 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

            return this;
        }
    
    
        @Override
        public InternalProblemBuilder solution(@Nullable String solution) {
            if (this.solutions == null) {
                this.solutions = new ArrayList<String>();
            }
            this.solutions.add(solution);
            return this;
        }
    
        @Override
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                        consumer,
                        producer
                    ))
                    .solution("Declare task '" + producer + "' as an input of '" + consumer + "'")
                    .solution("Declare an explicit dependency on '" + producer + "' from '" + consumer + "' using Task#dependsOn")
                    .solution("Declare an explicit dependency on '" + producer + "' from '" + consumer + "' using Task#mustRunAfter")
            );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/NativeIdeSamplesIntegrationTest.groovy

            solutionFile.assertHasProjects("mainExe", "helloDll", "helloLib")
            solutionFile.content.contains "GlobalSection(SolutionNotes) = postSolution"
            solutionFile.content.contains "Text2 = The projects in this solution are [helloDll, helloLib, mainExe]."
    
            final dllProjectFile = projectFile(visualStudio.dir.file("vs/helloDll.vcxproj"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemSpec.java

        @Override
        InternalProblemSpec stackLocation();
    
        @Override
        InternalProblemSpec details(String details);
    
        @Override
        InternalProblemSpec solution(String solution);
    
        @Override
        InternalProblemSpec withException(RuntimeException e);
    
        @Override
        InternalProblemSpec severity(Severity severity);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/50_maintainer_chore.yml

        id: context
        attributes:
          label: Context (optional)
          description: |
            How has this issue affected you? What are you trying to accomplish?
            Providing context helps us come up with a solution that is most useful in the real world
        validations:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 11:52:53 UTC 2023
    - 856 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    This would usually mean that the version catalog file you're trying to use has been produced with a higher release of Gradle than the one you're using.
    
    A potential solution to this is to upgrade your Gradle version.
    
    [[invalid_plugin_notation]]
    == Invalid plugin notation
    
    This error indicates that the dependency notation associated with a plugin alias is incorrect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemContext.java

         *
         * @return the locations
         * @since 8.8
         */
        List<Location> getLocations();
    
        /**
         * Returns the list of solutions.
         *
         * @return the solutions
         * @since 8.8
         */
        List<Solution> getSolutions();
    
        /**
         * Returns the failure associated with this problem.
         * <br>
         * <code>null</code> if run against a Gradle version prior to 8.7
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 12:26:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/security/index.md

    !!! tip
        The next sections are **not necessarily "advanced"**.
    
        And it's possible that for your use case, the solution is in one of them.
    
    ## Read the Tutorial first
    
    The next sections assume you already read the main [Tutorial - User Guide: Security](../../tutorial/security/index.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 633 bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/AbstractVisualStudioProjectIntegrationTest.groovy

            and:
            solutionFile.assertReferencesProject(projectFile, projectConfigurations)
        }
    
        @ToBeFixedForConfigurationCache
        def "create visual studio solution for component with multiple target machines"() {
            assumeFalse(toolChain.meets(WINDOWS_GCC))
    
            when:
            componentUnderTest.writeToProject(testDirectory)
            makeSingleProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/developingPlugins/problemReporting/kotlin/buildSrc/src/main/java/org/myorg/ProblemReportingPlugin.java

            this.problemReporter.reporting(builder -> builder // <3>
                .id("adhoc-deprecation", "Plugin 'x' is deprecated")
                .details("The plugin 'x' is deprecated since version 2.5")
                .solution("Please use plugin 'y'")
                .severity(Severity.WARNING)
            );
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 944 bytes
    - Viewed (0)
Back to top