Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for disambiguation (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedArtifactsApiIntegrationTest.groovy

            "incoming.artifactView({}).artifacts"                         | _
            "incoming.artifactView({componentFilter { true }}).artifacts" | _
        }
    
        def "applies disambiguation rules to select variants"() {
            buildFile << """
    class OneRule implements AttributeDisambiguationRule<String> {
        void execute(MultipleCandidatesDetails<String> details) {
            details.closestMatch('one')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedFilesApiIntegrationTest.groovy

            "configurations.compile.incoming.artifactView({componentFilter { true }}).artifacts.artifactFiles" | _
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "applies disambiguation rules to select variant"() {
            createDirs("a", "b")
            settingsFile << """
    include 'a', 'b'
    """
            buildFile << """
    class SelectFreeRule implements AttributeDisambiguationRule<String> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. src/go/types/issues_test.go

    `
    
    		tsrc = `
    package template
    
    import "text/template"
    
    type T int
    
    // Verify that the current package name also causes disambiguation.
    var _ T = template /* ERRORx "cannot use.*text/template.* as T value" */.Template{}
    `
    	)
    
    	a := mustTypecheck(asrc, nil, nil)
    	imp := importHelper{pkg: a, fallback: importer.Default()}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/issues_test.go

    `
    
    		tsrc = `
    package template
    
    import "text/template"
    
    type T int
    
    // Verify that the current package name also causes disambiguation.
    var _ T = template /* ERRORx "cannot use.*text/template.* as T value" */.Template{}
    `
    	)
    
    	a := mustTypecheck(asrc, nil, nil)
    	imp := importHelper{pkg: a, fallback: defaultImporter()}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    == Variant aware selection
    
    The whole set of JVM plugins leverage <<variant_model.adoc#understanding-variant-selection,variant aware resolution>> for the dependencies used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[changes_7.6]]
    == Upgrading from 7.5 and earlier
    
    === Updates to Attribute Disambiguation Rules related methods
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. src/internal/trace/order.go

    	// 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,
    	// we can enforce that we have the right sequence number at this point; we don't need
    	// to back off and see if any other events will advance. This is a running P.
    	pSeq := makeSeq(gen, ev.args[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    // remaining candidate, disambiguate returns that candidate, along with
    // an indication of whether that result interprets cs.path as a package
    //
    // Note: we're only doing very simple disambiguation here. The goal is to
    // reproduce the user's intent, not to find a solution that a human couldn't.
    // In the vast majority of cases, we expect only one module per pathSet,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/testing/testing.go

    //
    // Each subtest and sub-benchmark has a unique name: the combination of the name
    // of the top-level test and the sequence of names passed to Run, separated by
    // slashes, with an optional trailing sequence number for disambiguation.
    //
    // The argument to the -run, -bench, and -fuzz command-line flags is an unanchored regular
    // expression that matches the test's name. For tests with multiple slash-separated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    func (rst *rustState) identifier() (int64, string) {
    	dis := rst.disambiguator()
    	ident, _ := rst.undisambiguatedIdentifier()
    	return dis, ident
    }
    
    // disambiguator parses an optional:
    //
    //	<disambiguator> = "s" <base-62-number>
    func (rst *rustState) disambiguator() int64 {
    	if len(rst.str) == 0 || rst.str[0] != 's' {
    		return 0
    	}
    	rst.advance(1)
    	return rst.base62Number() + 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top