Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for disambiguate (0.37 sec)

  1. src/cmd/go/internal/modget/get.go

    	}
    	base.ExitIfErrors()
    
    	changed = r.updateBuildList(ctx, tentative)
    	return changed
    }
    
    // disambiguate eliminates candidates from cs that conflict with other module
    // versions that have already been resolved. If there is only one (unique)
    // remaining candidate, disambiguate returns that candidate, along with
    // an indication of whether that result interprets cs.path as a package
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

         *
         * We must rely on the dynamic cast and possible runtime failure here due to a Kotlin extension member limitation.
         * Kotlin currently can't disambiguate between invoke operators with more specific receivers in a type hierarchy.
         *
         * See https://youtrack.jetbrains.com/issue/KT-15711
         */
        private
        fun polymorphicDomainObjectContainer() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/crypto/ed25519/ed25519.go

    	// stack-allocated.
    	signature := make([]byte, SignatureSize)
    	sign(signature, privateKey, message, domPrefixPure, "")
    	return signature
    }
    
    // Domain separation prefixes used to disambiguate Ed25519/Ed25519ph/Ed25519ctx.
    // See RFC 8032, Section 2 and Section 5.1.
    const (
    	// domPrefixPure is empty for pure Ed25519.
    	domPrefixPure = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/fmt.go

    // BlankSym is the blank (_) symbol.
    var BlankSym *Sym
    
    // numImport tracks how often a package with a given name is imported.
    // It is used to provide a better error message (by using the package
    // path to disambiguate) if a package that appears multiple times with
    // the same name appears in an error message.
    var NumImport = make(map[string]int)
    
    // fmtMode represents the kind of printing being done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    - `org.gradle.status` indicates the kind of release: one of `release` or `integration`.
    - `org.gradle.category` indicates the type of component (library, platform or documentation). This attribute is mostly used to disambiguate Maven POM files derived either as a platform or a library. Value must be a string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/runtime/select.go

    		// start of queue
    		y.prev = nil
    		q.first = y
    		sgp.next = nil
    		return
    	}
    
    	// x==y==nil. Either sgp is the only element in the queue,
    	// or it has already been removed. Use q.first to disambiguate.
    	if q.first == sgp {
    		q.first = nil
    		q.last = nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    - `org.gradle.status` indicates the kind of release: one of `release` or `integration`.
    - `org.gradle.category` indicates the type of component (library, platform or documentation). This attribute is mostly used to disambiguate Maven POM files derived either as a platform or a library. Value must be a string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    }
    
    // getDisambiguatedNames returns a map from each node in the graph to
    // the name to use in the callgrind output. Callgrind merges all
    // functions with the same [file name, function name]. Add a [%d/n]
    // suffix to disambiguate nodes with different values of
    // node.Function, which we want to keep separate. In particular, this
    // affects graphs created with --call_tree, where nodes from different
    // contexts are associated to different Functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.yaml

        template: "This VirtualService routes to a service %q that exposes multiple ports %v. Specifying a port in the destination is required to disambiguate."
        args:
          - name: destHost
            type: string
          - name: destPorts
            type: "[]int"
    
      # IST0113 RETIRED
      # IST0114 RETIRED
      # IST0115 RETIRED
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/lookup.go

    		case wrongSig:
    			fs, ms := check.funcString(f, false), check.funcString(m, false)
    			if fs == ms {
    				// Don't report "want Foo, have Foo".
    				// Add package information to disambiguate (go.dev/issue/54258).
    				fs, ms = check.funcString(f, true), check.funcString(m, true)
    			}
    			if fs == ms {
    				// We still have "want Foo, have Foo".
    				// This is most likely due to different type parameters with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top