Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for nto (0.14 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/internal/Exceptions.java

    public class Exceptions {
    
        public final static String INCOMPATIBLE_VERSION_HINT =
                "Most likely the model of that type is not supported in the target Gradle version."
                        + "\nTo resolve the problem you can change/upgrade the Gradle version the tooling api connects to.";
    
        public static UnsupportedMethodException unsupportedMethod(String method) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    stderr '\n\nTo proceed despite packages unresolved in go 1\.16:\n\tgo mod tidy -e\nIf reproducibility with go 1.16 is not needed:\n\tgo mod tidy -compat=1\.17\nFor other options, see:\n\thttps://golang\.org/doc/modules/pruning\n'
    
    cmp go.mod go.mod.orig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/syscall/mksyscall_windows.go

    		// https://golang.org/issue/25922), so they don't need this wrapper to
    		// set module mode and -mod=readonly explicitly.
    		os.Stderr.WriteString("WARNING: Please switch from using:\n    go run $GOROOT/src/syscall/mksyscall_windows.go\nto using:\n    go run golang.org/x/sys/windows/mkwinsyscall\n")
    	}
    
    	args := append([]string{"run"}, modArgs...)
    	args = append(args, "golang.org/x/sys/windows/mkwinsyscall")
    	args = append(args, os.Args[1:]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    stderr '\n\nTo upgrade to the versions selected by go 1\.16:\n\tgo mod tidy -go=1\.16 && go mod tidy -go=1\.17\nIf reproducibility with go 1.16 is not needed:\n\tgo mod tidy -compat=1.17\nFor other options, see:\n\thttps://golang\.org/doc/modules/pruning\n'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue22662b.go

    			log.Fatal(err)
    		}
    
    		out, err := exec.Command("go", "tool", "compile", "-p=p", f.Name()).CombinedOutput()
    		if err == nil {
    			log.Fatalf("expected compiling\n---\n%s\n---\nto fail", test.src)
    		}
    
    		errmsg := strings.Replace(string(out), f.Name(), "filename", -1) // use "filename" instead of actual (long) filename
    		if !strings.HasPrefix(errmsg, test.pos) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    ! go mod tidy
    
    stderr '^go: example\.com/m imports\n\texample\.net/deleted loaded from example\.net/deleted@v0\.1\.0,\n\tbut go 1\.16 would fail to locate it in example\.net/deleted@v0\.2\.0\n\n'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    ! go mod tidy
    stderr '^go: example\.com/m imports\n\texample\.net/lazy imports\n\texample\.com/retract/incompatible loaded from example\.com/retract/incompatible@v1\.0\.0,\n\tbut go 1\.16 would select v2\.0\.0\+incompatible\n\n'
    stderr '\n\nTo upgrade to the versions selected by go 1\.16:\n\tgo mod tidy -go=1\.16 && go mod tidy -go=1\.17\nIf reproducibility with go 1\.16 is not needed:\n\tgo mod tidy -compat=1.17\nFor other options, see:\n\thttps://golang\.org/doc/modules/pruning\n'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AlphabeticalAcceptedApiChangesTask.kt

                    "$formattedMismatches\n"
            }.joinToString(separator = "\n")
    
            return "$messages\nTo automatically alphabetize these changes run: 'gradlew :architecture-test:sortAcceptedApiChanges'"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/IntegrationTestSamplesRunner.java

                        "-PenableConfigurationCacheForDocsTests=true" : "";
                    super.fireTestFailure(new Failure(failure.getDescription(), new GradleException(
                        "Sample test run failed.\nTo understand how docsTest works, See:\n" +
                            "  https://github.com/gradle/gradle/blob/master/platforms/documentation/docs/README.md#testing-docs\n" +
                            "To reproduce this failure, run:\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 22:10:58 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/help.go

    		flag.VisitAll(func(f *flag.Flag) {
    			if !strings.Contains(f.Name, ".") {
    				fs.Var(f.Value, f.Name, f.Usage)
    			}
    		})
    		fs.SetOutput(os.Stdout)
    		fs.PrintDefaults()
    
    		fmt.Printf("\nTo see details and flags of a specific analyzer, run '%s help name'.\n", progname)
    
    		return
    	}
    
    	// Show help on specific analyzer(s).
    outer:
    	for _, arg := range args {
    		for _, a := range analyzers {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 01:33:44 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top