Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 318 for resolutions (0.17 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

            List<String> resolutions = Arrays.asList("Remove any existing files in the project directory and run the init task again.", "Enable the --overwrite option to allow existing files to be overwritten.");
            throw new BuildInitException("Aborting build initialization due to existing files in the project directory: '" + projectDirFile + "'.", resolutions);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

            0 * connection3.stop()
            def exception = thrown(NoUsableDaemonFoundException)
            exception.message.contains 'A new daemon was started but could not be connected to'
            exception.resolutions[0].contains new DocumentationRegistry().getDocumentationRecommendationFor("information", "troubleshooting", "network_connection")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            @Override
            public ExecutionFailure assertHasResolutions(String... resolutions) {
                outputFailure.assertHasResolutions(resolutions);
                return this;
            }
    
            @Override
            public ExecutionFailure assertHasResolution(String resolution) {
                outputFailure.assertHasResolution(resolution);
                return this;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

    import java.util.stream.Collectors;
    
    /**
     * Holds the resolution state for a local component. The state is calculated as required, and an instance can be used for multiple resolutions across a build tree.
     *
     * <p>The aim is to create only a single instance of this type per project and reuse that for all resolution that happens in a build tree. This isn't quite the case yet.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <description>The type of dependency.</description>
            </field>
          </fields>
        </class>
    
        <class xdoc.anchorName="resolution">
          <name>Resolution</name>
          <version>2.0.0+</version>
          <description>Dependency collection or resolution injection.</description>
          <fields>
            <field>
              <name>field</name>
              <required>false</required>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Resolution.java

    import java.lang.annotation.Target;
    
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Indicates that a given field will be injected with the result of
     * a dependency collection or resolution request. Whether a collection
     * or resolution request is performed is controlled by the {@link #pathScope()}
     * field, the injected field type and the {@link #requestType()}.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/resolution.kt

        data class DuplicateLocalValue(val name: String) : ErrorReason
        data object UnresolvedAssignmentLhs : ErrorReason // TODO: report candidate with rejection reasons
        data object UnresolvedAssignmentRhs : ErrorReason // TODO: resolution trace here, too?
        data object UnitAssignment : ErrorReason
        data object DanglingPureExpression : ErrorReason
    }
    
    
    class DefaultOperationGenerationId(override val ordinal: Int) : OperationGenerationId {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/time/time_test.go

    	min1, err := ParseDuration(min0.String())
    	if err != nil || min0 != min1 {
    		t.Errorf("round-trip failed: %d => %q => %d, %v", min0, min0.String(), min1, err)
    	}
    
    	for i := 0; i < 100; i++ {
    		// Resolutions finer than milliseconds will result in
    		// imprecise round-trips.
    		d0 := Duration(rand.Int31()) * Millisecond
    		s := d0.String()
    		d1, err := ParseDuration(s)
    		if err != nil || d0 != d1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/Problem.java

         */
        ProblemDefinition getDefinition();
    
        @Nullable
        String getContextualLabel();
    
        /**
         * Returns solutions and advice that contain context-sensitive data, e.g. the message contains references to variables, locations, etc.
         */
        List<String> getSolutions();
    
        /**
         * A long description detailing the problem.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblem.java

            return problemDefinition;
        }
    
        @Nullable
        @Override
        public String getContextualLabel() {
            return contextualLabel;
        }
    
        @Override
        public List<String> getSolutions() {
            return solutions;
        }
    
        @Nullable
        @Override
        public String getDetails() {
            return details;
        }
    
        @Override
        public List<ProblemLocation> getLocations() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top