Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for disambiguation (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

        private final Demonstration ambiguousGraphVariantForProjectWithoutSingleDisambiguatingAttribute = new Demonstration("Ambiguous graph variant (project without single disambiguating attribute)", VariantSelectionException.class, VariantAwareAm...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributesSchema.java

         * <p>
         * By default, there is no explicit precedence between attributes and all attributes must be considered when disambiguating.
         *
         * @param attributes the attributes in order, highest priority first
         * @since 7.5
         */
        @Incubating
        void setAttributeDisambiguationPrecedence(List<Attribute<?>> attributes);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. src/testing/match.go

    			if len(prefix) < len(base) && nn < m.subNames[prefix] {
    				// This test is explicitly named like "parent/subname#NN",
    				// and #NN was already used for the NNth occurrence of "parent/subname".
    				// Loop to add a disambiguating suffix.
    				continue
    			}
    			return base
    		}
    
    		name := fmt.Sprintf("%s#%02d", base, n)
    		if m.subNames[name] != 0 {
    			// This is the nth occurrence of base, but the name "parent/subname#NN"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/typestring.go

    		w.typ(t.elem)
    
    	case *Slice:
    		w.string("[]")
    		w.typ(t.elem)
    
    	case *Struct:
    		w.string("struct{")
    		for i, f := range t.fields {
    			if i > 0 {
    				w.byte(';')
    			}
    
    			// If disambiguating one struct for another, look for the first unexported field.
    			// Do this first in case of nested structs; tag the first-outermost field.
    			pkgAnnotate := false
    			if w.qf == nil && w.pkgInfo && !isExported(f.name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. src/go/types/typestring.go

    		w.typ(t.elem)
    
    	case *Slice:
    		w.string("[]")
    		w.typ(t.elem)
    
    	case *Struct:
    		w.string("struct{")
    		for i, f := range t.fields {
    			if i > 0 {
    				w.byte(';')
    			}
    
    			// If disambiguating one struct for another, look for the first unexported field.
    			// Do this first in case of nested structs; tag the first-outermost field.
    			pkgAnnotate := false
    			if w.qf == nil && w.pkgInfo && !isExported(f.name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. src/cmd/doc/main.go

    			return pkg, arg, "", false
    		}
    	} else {
    		pkg, importErr = build.Import(arg, wd, build.ImportComment)
    		if importErr == nil {
    			return pkg, arg, "", false
    		}
    	}
    	// Another disambiguator: If the argument starts with an upper
    	// case letter, it can only be a symbol in the current directory.
    	// Kills the problem caused by case-insensitive file systems
    	// matching an upper case name as a package name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/go/types/check.go

    	// pkgPathMap maps package names to the set of distinct import paths we've
    	// seen for that name, anywhere in the import graph. It is used for
    	// disambiguating package names in error messages.
    	//
    	// pkgPathMap is allocated lazily, so that we don't pay the price of building
    	// it on the happy path. seenPkgMap tracks the packages that we've already
    	// walked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/check.go

    	// pkgPathMap maps package names to the set of distinct import paths we've
    	// seen for that name, anywhere in the import graph. It is used for
    	// disambiguating package names in error messages.
    	//
    	// pkgPathMap is allocated lazily, so that we don't pay the price of building
    	// it on the happy path. seenPkgMap tracks the packages that we've already
    	// walked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    As a first migration step, it is recommended to prepare your Groovy build scripts by
    
    * unifying quotes using double quotes,
    * disambiguating function invocations and property assignments (using respectively parentheses and assignment operator).
    
    The former can easily be done by searching for `'` and replacing by `"`.
    For example,
    
    [.multi-language-sample]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway_simulation_test.go

    						RouteConfigMatched: "http.80",
    						VirtualHostMatched: "blackhole:80",
    					},
    				},
    			},
    		},
    		simulationTest{
    			name: "multiple wildcards with virtual service disambiguator",
    			config: createGateway("alpha", "", `
    hosts:
      - ns-1/*.example.com
    port:
      name: http
      number: 80
      protocol: HTTP`) +
    				createGateway("beta", "", `
    hosts:
      - ns-2/*.example.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top