Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,143 for resolutions (0.32 sec)

  1. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

                    (hasFailures() ? " " + failureMessage() : "");
    
                String[] resolutions = {
                    "Learn more about toolchain auto-detection at " + Documentation.userManual("toolchains", "sec:auto_detection").getUrl() + ".",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockFileReaderWriterTest.groovy

            then:
            def ex = thrown(InvalidLockFileException)
            ex.message == "Invalid lock state for lock file specified in '${lockFile.path}'. Line: '<<<<<<< HEAD'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/net/dnsconfig_unix.go

    					// Linux (use-vc), FreeBSD (usevc) and OpenBSD (tcp) option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    					// "Sets RES_USEVC in _res.options.
    					//  This option forces the use of TCP for DNS resolutions."
    					// https://www.freebsd.org/cgi/man.cgi?query=resolv.conf&sektion=5&manpath=freebsd-release-ports
    					// https://man.openbsd.org/resolv.conf.5
    					conf.useTCP = true
    				case s == "trust-ad":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/go/parser/resolver_test.go

    				if got := fromParser[k]; got != want {
    					t.Errorf("%s resolved to %s, want %s", pos(k), pos(got), pos(want))
    				}
    				delete(fromParser, k)
    			}
    			// What remains in fromParser are unexpected resolutions.
    			for k, got := range fromParser {
    				t.Errorf("%s resolved to %s, want no object", pos(k), pos(got))
    			}
    		})
    	}
    }
    
    // declsFromParser walks the file and collects the map associating an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

                if (!versionConflicts.isEmpty()) {
                    List<String> resolutions = resolveContext.getFailureResolutions().forVersionConflict(versionConflicts);
                    nonFatalFailuresBuilder.add(new VersionConflictException(versionConflicts, resolutions));
                }
            }
    
            Set<Throwable> nonFatalFailures = nonFatalFailuresBuilder.build();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

            1 * owner.getCapitalizedDisplayName() >> "Owner"
            ex.message == 'Locking strict mode: Owner is locked but does not have lock state.'
            ex.resolutions == ["To create the lock state, run a task that performs dependency resolution and add '--write-locks' to the command line.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            @Override
            public void failOnInabilityToMutateUsage() {
                List<String> resolutions = Lists.newArrayList(
                    RoleBasedConfigurationCreationRequest.getDefaultReservedNameAdvice(getConfigurationName()),
                    getUsageMutationAdvice());
                throw new UnmodifiableUsageException(getConfigurationName(), resolutions);
            }
    
            private String getUsageMutationAdvice() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top