Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for unambiguous (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper_test.go

    			ExpectedKinds: []schema.GroupVersionKind{
    				{Group: "first-group", Version: "first-version", Kind: "my-kind"},
    			},
    		},
    
    		{
    			// group prefixes can be ambiguous
    			Name: "groups, with ambiguous group prefix",
    			PreferredOrder: []schema.GroupVersion{
    				{Group: "first-group-1", Version: "first-version"},
    				{Group: "first-group", Version: "first-version"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 01 08:38:57 UTC 2020
    - 28.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

        }
    
        def "demonstrate ambiguous graph variant without single disambiguating value selection failure for project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            TextUtil.normaliseLineSeparators(e.cause.message) == '''Type-only model reference of type java.lang.Long is ambiguous as multiple model elements are available for this type:
      - a (created by: test)
      - b (created by: test)'''
        }
    
        def "cannot add node that would make a by-type input ambiguous"() {
            given:
            bindings.add(rule("other") { it.inputReference(Long) })
            addNode(node("a", Long))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

                    configuration = "runtimeElements"
                    compositeSubstitute()
                }
            }
        }
    
        def "reports failure to resolve dependencies when substitution is ambiguous"() {
            given:
            def buildC = multiProjectBuild("buildC", ['a1', 'b1']) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

        Long boxedLong = null;
        int anInt = 1;
        // With a boxed predicate, no overloads can be selected in phase 1
        // ambiguous without the call to .booleanValue to unbox the Boolean
        Preconditions.checkState(boxedBoolean.booleanValue(), "", 1);
        // ambiguous without the cast to Object because the boxed predicate prevents any overload from
        // being selected in phase 1
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

            ":aB:help"           | "Cannot locate tasks that match ':aB:help' as project 'aB' is ambiguous in root project 'broken'. Candidates are: 'aaBb', 'aaaBbb', 'aaaaBbbb'."
            ":aaBb:cD:help"      | "Cannot locate tasks that match ':aaBb:cD:help' as project 'cD' is ambiguous in project ':aaBb'. Candidates are: 'ccDD', 'cccDDD'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top