Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for disambiguate (0.71 sec)

  1. src/go/types/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: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    For more information, see <<command_line_interface.adoc#sec:disambiguate_task_options_from_built_in_options, Disambiguate Task Options from Built-in Options>>.
    
    == Verification failures
    
    Normally, exceptions thrown during task execution result in a failure that immediately terminates a build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    func tidyUnprunedRoots(ctx context.Context, mainModule module.Version, old *Requirements, pkgs []*loadPkg) (*Requirements, error) {
    	var (
    		// keep is a set of of modules that provide packages or are needed to
    		// disambiguate imports.
    		keep     []module.Version
    		keptPath = map[string]bool{}
    
    		// rootPaths is a list of module paths that provide packages directly
    		// imported from the main module. They should be included as roots.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/go/types/issues_test.go

    	testenv.MustHaveGoBuild(t) // The go command is needed for the importer to determine the locations of stdlib .a files.
    
    	// All involved packages have the same name (template). Error messages should
    	// disambiguate between text/template and html/template by printing the full
    	// path.
    	const (
    		asrc = `package a; import "text/template"; func F(template.Template) {}; func G(int) {}`
    		bsrc = `
    package b
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. cmd/sts-handlers.go

    	// is an STS request for a claim based IDP (if one is present) and set
    	// roleArn = openid.DummyRoleARN.
    	//
    	// Currently, we do not support multiple claim based IDPs, as there is no
    	// defined parameter to disambiguate the intended IDP in this STS request.
    	roleArn := openid.DummyRoleARN
    	roleArnStr := r.Form.Get(stsRoleArn)
    	if roleArnStr != "" {
    		var err error
    		roleArn, _, err = globalIAMSys.GetRolePolicy(roleArnStr)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. src/internal/trace/event.go

    type RangeAttribute struct {
    	// Name is the human-readable name for the range.
    	Name string
    
    	// Value is the value of the attribute.
    	Value Value
    }
    
    // TaskID is the internal ID of a task used to disambiguate tasks (even if they
    // are of the same type).
    type TaskID uint64
    
    const (
    	// NoTask indicates the lack of a task.
    	NoTask = TaskID(^uint64(0))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/issues_test.go

    	testenv.MustHaveGoBuild(t) // The go command is needed for the importer to determine the locations of stdlib .a files.
    
    	// All involved packages have the same name (template). Error messages should
    	// disambiguate between text/template and html/template by printing the full
    	// path.
    	const (
    		asrc = `package a; import "text/template"; func F(template.Template) {}; func G(int) {}`
    		bsrc = `
    package b
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/messages.gen.go

    	VirtualServiceDestinationPortSelectorRequired = diag.NewMessageType(diag.Error, "IST0112", "This VirtualService routes to a service %q that exposes multiple ports %v. Specifying a port in the destination is required to disambiguate.")
    
    	// DeploymentAssociatedToMultipleServices defines a diag.MessageType for message "DeploymentAssociatedToMultipleServices".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    === Specify options for tasks
    To pass an option to a task, prefix the option name with `--` after the task name:
    
    ----
    $ gradle exampleTask --exampleOption=exampleValue
    ----
    
    ==== Disambiguate task options from built-in options
    Gradle does not prevent tasks from registering options that conflict with Gradle's built-in options, like `--profile` or `--help`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// initialization.
    	ready *ready
    
    	// Underlying storage.Interface.
    	storage storage.Interface
    
    	// Expected type of objects in the underlying cache.
    	objectType reflect.Type
    	// Used for logging, to disambiguate *unstructured.Unstructured (CRDs)
    	groupResource schema.GroupResource
    
    	// "sliding window" of recent changes of objects and the current state.
    	watchCache *watchCache
    	reflector  *cache.Reflector
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top