Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 293 for Solution (0.11 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ProblemProgressEventCrossVersionTest.groovy

                (locations[1] as LineInFileLocation).path == "build file '$buildFile.path'"
                definition.severity == Severity.WARNING
                solutions.size() == 1
                solutions[0].solution == 'try this instead'
            }
    
            where:
            detailsConfig              | expectedDetails | documentationConfig                         | expecteDocumentation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/ServiceReferencePropertyAnnotationHandler.java

                        .solution(String.format("Make '%s' implement '%s'", typeVariables.get(0).getName(), BuildService.class.getName()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.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.
         *
         * @return the failure
         * @since 8.8
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidateAction.java

                                .solution("Add " + disableCachingAnnotation + "(because = ...)")
                                .solution("Add " + cacheableAnnotation);
                            if (isTask) {
                                builder.solution("Add " + untrackedTaskAnnotation + "(because = ...)");
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

                            debug
                            release
                        }
                    }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "create visual studio solution for executable that depends on a library in another project"() {
            when:
            app.executable.writeSources(file("exe/src/main"))
            app.library.writeSources(file("lib/src/hello"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioSolutionInternal.java

    import org.gradle.ide.visualstudio.VisualStudioSolution;
    
    import java.util.List;
    
    public interface VisualStudioSolutionInternal extends VisualStudioSolution {
        /**
         * The list of project artifacts included in this solution.
         */
        List<VisualStudioProjectMetadata> getProjects();
    
        /**
         * Adds tasks required to build this component.
         */
        void builtBy(Object... tasks);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Comparators.java

        return least(k, comparator.reversed());
      }
    
      /**
       * Returns the minimum of the two values. If the values compare as 0, the first is returned.
       *
       * <p>The recommended solution for finding the {@code minimum} of some values depends on the type
       * of your data and the number of elements you have. Read more in the Guava User Guide article on
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    		for idx, item := range classes {
    			ans[idx] = item.upperBound
    		}
    		return ans, ubRange.max, nil
    	}
    	// Now we know the solution is a unique fairProp in [lbRange.min, ubRange.max].
    	// See if the solution does not run into any bounds.
    	fairProp := requiredSumF / targetSum
    	if lbRange.max <= fairProp && fairProp <= ubRange.min { // no bounds matter
    		for idx := range classes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/problems-api-usage/reporters/standard-plugin/src/main/java/reporters/StandardPlugin.java

                    .contextualLabel("The 'standard-plugin' is deprecated")
                    .documentedAt("https://github.com/gradle/gradle/README.md")
                    .severity(Severity.WARNING)
                    .solution("Please use a more recent plugin version")
            );
            // end::problems-api-report[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRoles.java

         * Meant to be used only for resolving dependencies.
         */
        public static final ConfigurationRole RESOLVABLE = createNonDeprecatedRole("Resolvable", false, true, false);
    
        /**
         * Meant as a temporary solution for situations where we need to declare dependencies against a resolvable configuration.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top