Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 328 for Solution (0.3 sec)

  1. platforms/ide/ide-native/src/main/resources/org/gradle/ide/visualstudio/tasks/internal/default.sln

    Microsoft Visual Studio Solution File, Format Version 11.00
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 86 bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

                            .severity(ERROR)
                            .details("The '@" + propertyType.getSimpleName() + "' annotation cannot be used in this context")
                            .solution("Remove the property")
                            .solution("Use a different annotation, e.g one of " + toListOfAnnotations(propertyAnnotationHandlers.keySet()))
                    );
                    continue;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemBuilder.java

        @Override
        InternalProblemBuilder stackLocation();
    
        @Override
        InternalProblemBuilder details(String details);
    
        @Override
        InternalProblemBuilder solution(String solution);
    
        @Override
        <U extends AdditionalDataSpec> InternalProblemBuilder additionalData(Class<? extends U> specType, Action<? super U> config);
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

                        .severity(WARNING)
                        .details(reason)
                        .solution("Use a different input annotation if type is not a bean")
                        .solution("Use a different package that doesn't conflict with standard Java or Kotlin types for custom types")
                )
            );
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. .github/ISSUE_TEMPLATE/feature_request.md

    A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
    
    **Describe the solution you'd like**
    A clear and concise description of what you want to happen.
    
    **Describe alternatives you've considered**
    A clear and concise description of any alternative solutions or features you've considered.
    
    **Additional context**
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 20:49:54 UTC 2019
    - 610 bytes
    - Viewed (0)
  8. 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)
  9. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea
    title: ''
    labels: enhancement
    assignees: ''
    
    ---
    
    Start by telling us what problem you’re trying to solve. Often a solution already exists!
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 30 18:42:51 UTC 2018
    - 350 bytes
    - Viewed (0)
  10. .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)
Back to top