Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for unambiguous (0.17 sec)

  1. src/cmd/go/internal/modload/import.go

    	return e.importPath
    }
    
    func (e *AmbiguousImportError) Error() string {
    	locType := "modules"
    	if len(e.Modules) == 0 {
    		locType = "directories"
    	}
    
    	var buf strings.Builder
    	fmt.Fprintf(&buf, "ambiguous import: found package %s in multiple %s:", e.importPath, locType)
    
    	for i, dir := range e.Dirs {
    		buf.WriteString("\n\t")
    		if i < len(e.Modules) {
    			m := e.Modules[i]
    			buf.WriteString(m.Path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/util.go

    	sc := armCondCode[(s&C_SCOND)^C_SCOND_XOR]
    	if s&C_SBIT != 0 {
    		sc += ".S"
    	}
    	if s&C_PBIT != 0 {
    		sc += ".P"
    	}
    	if s&C_WBIT != 0 {
    		sc += ".W"
    	}
    	if s&C_UBIT != 0 { /* ambiguous with FBIT */
    		sc += ".U"
    	}
    	return sc
    }
    
    func (p *Prog) String() string {
    	if p == nil {
    		return "<nil Prog>"
    	}
    	if p.Ctxt == nil {
    		return "<Prog without ctxt>"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishExternalVariantIntegrationTest.groovy

            when:
            succeeds ":printFirstRuntimeClasspath"
    
            then:
            readClasspath("first") == resolution.artifactFileNames
        }
    
        def "warns when when two dependencies are ambiguous"() {
            given:
            publishes(multiCoordinateComponent {
                compilation("first")
                compilation("second") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/query.go

    		if !gover.ModIsValid(path, v) {
    			return badVersion(v)
    		}
    		if gover.ModIsPrefix(path, v) {
    			// Refuse to say whether <=v1.2 allows v1.2.3 (remember, @v1.2 might mean v1.2.3).
    			return nil, fmt.Errorf("ambiguous semantic version %q in range %q", v, query)
    		}
    		qm.filter = func(mv string) bool { return gover.ModCompare(qm.path, mv, v) <= 0 }
    		if !matchesMajor(v) {
    			qm.preferIncompatible = true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  5. src/debug/dwarf/type.go

    type BoolType struct {
    	BasicType
    }
    
    // An AddrType represents a machine address type.
    type AddrType struct {
    	BasicType
    }
    
    // An UnspecifiedType represents an implicit, unknown, ambiguous or nonexistent type.
    type UnspecifiedType struct {
    	BasicType
    }
    
    // qualifiers
    
    // A QualType represents a type that has the C/C++ "const", "restrict", or "volatile" qualifier.
    type QualType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  6. src/go/doc/example.go

    	}
    	return
    }
    
    // classifyExamples classifies examples and assigns them to the Examples field
    // of the relevant Func, Type, or Package that the example is associated with.
    //
    // The classification process is ambiguous in some cases:
    //
    //   - ExampleFoo_Bar matches a type named Foo_Bar
    //     or a method named Foo.Bar.
    //   - ExampleFoo_bar matches a type named Foo_bar
    //     or Foo (with a "bar" suffix).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    // but we diagnose the problem instead.)
    type ambiguousVerifierError struct {
    	name string
    	hash uint32
    }
    
    func (e *ambiguousVerifierError) Error() string {
    	return fmt.Sprintf("ambiguous key %s+%08x", e.name, e.hash)
    }
    
    // VerifierList returns a [Verifiers] implementation that uses the given list of verifiers.
    func VerifierList(list ...Verifier) Verifiers {
    	m := make(verifierMap)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      "tf.StackCloseV2"(%stack) : (tensor<!tf_type.resource>) -> ()
      func.return
    }
    
    // -----
    
    // Tests that the pass reports error on ambiguous stack.
    
    func.func @main(%arg0: tensor<i1>) -> () {
      %max_size = "tf.Const"() {value = dense<10> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  9. src/go/build/build_test.go

    		Files:    []string{"file.go", "file_appengine.go"},
    	}
    	if !reflect.DeepEqual(mpe, want) {
    		t.Errorf("err = %#v; want %#v", mpe, want)
    	}
    
    	// TODO(#45999): Since the name is ambiguous, pkg.Name should be left empty.
    	if wantName := "main"; pkg.Name != wantName {
    		t.Errorf("pkg.Name = %q; want %q", pkg.Name, wantName)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/modfile.go

    	})
    }
    
    var latestVersionIgnoringRetractionsCache par.ErrCache[string, module.Version] // path → queryLatestVersionIgnoringRetractions result
    
    // ToDirectoryPath adds a prefix if necessary so that path in unambiguously
    // an absolute path or a relative path starting with a '.' or '..'
    // path component.
    func ToDirectoryPath(path string) string {
    	if modfile.IsDirectoryPath(path) {
    		return path
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
Back to top