Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 97 for unambiguous (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    dependencies {
        implementation("com.acme:example:1.0")  // <2>
    }
    ----
    =====
    ====
    <1> Property assignment
    <2> Function invocation
    
    While staying valid Groovy, it is now unambiguous and close to the Kotlin syntax, making it easier to then rename the script to turn it into a Gradle Kotlin DSL script.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // Import paths are intermediate between module paths and file paths: we allow
    // disallow characters that would be confusing or ambiguous as arguments to
    // 'go get' (such as '@' and ' ' ), but allow certain characters that are
    // otherwise-unambiguous on the command line and historically used for some
    // binary names (such as '++' as a suffix for compiler binaries and wrappers).
    func importPathOK(r rune) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    	// are unambiguous. That also produces clearer diagnostics, since we can say
    	// exactly what happened to the package if it became ambiguous or disappeared
    	// entirely.
    	//
    	// We re-resolve the packages in parallel because this process involves disk
    	// I/O to check for package sources, and because the process of checking for
    	// ambiguous imports may require us to download additional modules that are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/coderepo.go

    				// can't use the version from the tag directly: since the tag is not
    				// canonical, it could be ambiguous. For example, tags v0.0.1+a and
    				// v0.0.1+b might both exist and refer to different revisions.
    				//
    				// The tag is otherwise valid for the module, so we can at least use it as
    				// the base of an unambiguous pseudo-version.
    				//
    				// If multiple tags match, tagToVersion will canonicalize them to the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. src/os/exec/exec.go

    		// We may need to add a filename extension from PATHEXT
    		// or verify an extension that is already present.
    		// Since the path is absolute, its extension should be unambiguous
    		// and independent of cmd.Dir, and we can go ahead and cache the lookup now.
    		//
    		// Note that we cannot add an extension here for relative paths, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    	setupCmd(cmd)
    	if t.json && opts.variant != "" && !opts.omitVariant {
    		// Rewrite Package in the JSON output to be pkg:variant. When omitVariant
    		// is true, pkg.TestName is already unambiguous, so we don't need to
    		// rewrite the Package field.
    		//
    		// We only want to process JSON on the child's stdout. Ideally if
    		// stdout==stderr, we would also use the same testJSONFilter for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-syscall-steal-proc-ambiguous.go

    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing.
    //
    // Specifically, it tests a scenerio wherein, without a
    // P sequence number of GoSyscallBegin, the syscall that
    // a ProcSteal applies to is ambiguous. This only happens in
    // practice when the events aren't already properly ordered
    // by timestamp, since the ProcSteal won't be seen until after
    // the correct GoSyscallBegin appears on the frontier.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/tests/go122-syscall-steal-proc-ambiguous.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 589 bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

            failure.assertHasResolutions(
                GET_TASKS,
                NAME_EXPANSION,
                INFO_DEBUG,
                SCAN,
                GET_HELP
            )
        }
    
        def "reports ambiguous task"() {
            enableProblemsApiCheck()
            createDirs("a", "b")
            settingsFile << """
                rootProject.name = 'test'
                include 'a', 'b'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. doc/next/4-runtime.md

    The traceback printed by the runtime after an unhandled panic or other
    fatal error now indents the second and subsequent lines of the error
    message (for example, the argument to panic) by a single tab, so that
    it can be unambiguously distinguished from the stack trace of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 359 bytes
    - Viewed (0)
Back to top