Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for unambiguous (0.25 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
    
                task ambiguous(type: Consumer) {
                    // reference cannot be resolved by type as multiple services with the given type exist
                    doLast {
                        counter.get()
                    }
                }
            """
            enableStableConfigurationCache()
    
            when:
            fails 'ambiguous'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    //
    // resolveQueries starts by resolving one module version from each
    // unambiguous pathSet attached to the given queries.
    //
    // If no unambiguous query results in a change to the build list,
    // resolveQueries revisits the ambiguous query candidates and resolves them
    // arbitrarily in order to guarantee forward progress.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    	// packages in external modules. However, if we drop the explicit
    	// requirements, that may change an import from unambiguous (due to lazy
    	// module loading) to ambiguous (because lazy module loading no longer
    	// disambiguates it). For any package that has become ambiguous, we try
    	// to fix it by promoting its module to an explicit root.
    	// (See https://go.dev/issue/60313.)
    	q := par.NewQueue(runtime.GOMAXPROCS(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/internal/trace/order.go

    	// so that we can correctly model P stealing. Without this sequence number here,
    	// the syscall from which a ProcSteal event is stealing can be ambiguous in the
    	// face of broken timestamps. See the go122-syscall-steal-proc-ambiguous test for
    	// more details.
    	//
    	// Note that because this sequence number only exists as a tool for disambiguation,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                else -> null
            }
    
            return (unambiguousSymbol as? FirCallableSymbol<*>)
        }
    
        /**
         * If [namedReference] is ambiguous and all candidates point to the callables with same callableId,
         * returns the first candidate; otherwise returns null.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    		// Tell writeLoop to skip sending the body if we're going to close the connection,
    		// or to send it otherwise.
    		//
    		// The case where we receive a 101 Switching Protocols response is a bit
    		// ambiguous, since we don't know what protocol we're switching to.
    		// Conceivably, it's one that doesn't need us to send the body.
    		// Given that we'll send the body if ExpectContinueTimeout expires,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    	// paths of loaded packages. We need to retain sums for all of these modules —
    	// not just the modules containing the actual packages — in order to rule out
    	// ambiguous import errors the next time we load the package.
    	keepModSumsForZipSums := true
    	if ld == nil {
    		if gover.Compare(MainModules.GoVersion(), gover.TidyGoModSumVersion) < 0 && cfg.BuildMod != "mod" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. src/reflect/type.go

    	t2    *abi.Type
    	extra uintptr
    }
    
    // The funcLookupCache caches FuncOf lookups.
    // FuncOf does not share the common lookupCache since cacheKey is not
    // sufficient to represent functions unambiguously.
    var funcLookupCache struct {
    	sync.Mutex // Guards stores (but not loads) on m.
    
    	// m is a map[uint32][]*rtype keyed by the hash calculated in FuncOf.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top