Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for unambiguous (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

            if (matches.size() == 1) {
                return matches.get(0).getArtifacts();
            } else if (matches.size() > 1) {
                // Request is ambiguous. Rerun matching again, except capture an explanation this time for reporting.
                TraceDiscardedVariants newExpBuilder = new TraceDiscardedVariants();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/runtime/error.go

    // If panic is called with a value that has a String or Error method,
    // it has already been converted into a string by preprintpanics.
    //
    // To ensure that the traceback can be unambiguously parsed even when
    // the panic value contains "\ngoroutine" and other stack-like
    // strings, newlines in the string representation of v are replaced by
    // "\n\t".
    func printpanicval(v any) {
    	switch v := v.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

            failure.assertHasErrorOutput(UnknownPluginException.class.getName())
        }
    
        @Issue("https://github.com/gradle/gradle/issues/24609")
        def "when plugin request fails due to ambiguous plugin variants available, gets default error message"() {
            given:
            def producer = file('producer')
            def consumer = file('consumer')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/typecheck.go

    			return f
    		}
    		if f.Sym != s {
    			continue
    		}
    		if r != nil {
    			if errnode != nil {
    				base.Errorf("ambiguous selector %v", errnode)
    			} else if t.IsPtr() {
    				base.Errorf("ambiguous selector (%v).%v", t, s)
    			} else {
    				base.Errorf("ambiguous selector %v.%v", t, s)
    			}
    			break
    		}
    
    		r = f
    	}
    
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    // resolvePorts takes a Gateway port, and resolves it to the port that will actually be listened on.
    // When legacyGatewaySelector=false, then the gateway is directly referencing a Service. In this
    // case, the translation is un-ambiguous - we just find the matching port and return the targetPort
    // When legacyGatewaySelector=true things are a bit more complex, as we support referencing a Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

            typeArguments.flatMap(::apiTypeKey) +
            bounds.flatMap(::apiTypeKey)
    }
    
    
    // TODO Policy for extensions with reified generics
    //
    // Goals
    // - make the dsl predictable
    // - prevent ambiguous overload situations
    //
    // Rules
    // 1. an extension should either require no type parameters, a single reifeid type parameter, at call site
    // 2. all type parameters must all be reifeid or values (TypeOf, KClass or Class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 21:41:53 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    Gradle's dependency resolution is variant-aware and selects one or more variants of each component after a component (i.e. one version of a module) has been selected.
    It may also fail if the variant selection result is ambiguous, meaning that Gradle does not have enough information to select one of multiple mutual exclusive variants.
    In that case, more information can be provided through <<#sub:terminology_attribute,variant attributes>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

            }
    
            return getMostSpecific(methodList, classes);
        }
    
        /**
         * simple distinguishable exception, used when
         * we run across ambiguous overloading
         */
        static class AmbiguousException extends Exception {
    
            private static final long serialVersionUID = 751688436639650618L;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.go

    	LFSUX: "FMOVSU", STFSUX: "FMOVSU",
    	CMPD: "CMP", CMPDI: "CMP",
    	CMPW: "CMPW", CMPWI: "CMPW",
    	CMPLD: "CMPU", CMPLDI: "CMPU",
    	CMPLW: "CMPWU", CMPLWI: "CMPWU",
    	MTSPR: "MOVD", MFSPR: "MOVD", // the width is ambiguous for SPRs
    	B:  "BR",
    	BL: "CALL",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ObjectExtensionInstantiationIntegrationTest.groovy

            failure.assertHasCause("Could not create an instance of type Thing.")
            failure.assertHasCause("No constructors of type Thing match parameters: ['a', 12]")
        }
    
        def "fails when constructor is ambiguous"() {
            buildFile """
                class Thing {
                    Thing(String a, String b, ObjectFactory f) {
                    }
                    Thing(String a, String b, ProjectLayout p) {
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 16.9K bytes
    - Viewed (0)
Back to top