Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setHandled (0.13 sec)

  1. src/go/types/unify.go

    	case *hx != nil:
    		// Only type parameter x has an inferred type. Use handle of x.
    		u.setHandle(y, hx)
    	// This case is treated like the default case.
    	// case *hy != nil:
    	// 	// Only type parameter y has an inferred type. Use handle of y.
    	//	u.setHandle(x, hy)
    	default:
    		// Neither type parameter has an inferred type. Use handle of y.
    		u.setHandle(x, hy)
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    	case *hx != nil:
    		// Only type parameter x has an inferred type. Use handle of x.
    		u.setHandle(y, hx)
    	// This case is treated like the default case.
    	// case *hy != nil:
    	// 	// Only type parameter y has an inferred type. Use handle of y.
    	//	u.setHandle(x, hy)
    	default:
    		// Neither type parameter has an inferred type. Use handle of y.
    		u.setHandle(x, hy)
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. pkg/kube/inject/webhook.go

    	mu           sync.RWMutex
    	Config       *Config
    	meshConfig   *meshconfig.MeshConfig
    	valuesConfig ValuesConfig
    	namespaces   *multicluster.KclientComponent[*corev1.Namespace]
    
    	// please do not call SetHandler() on this watcher, instead us MultiCast.AddHandler()
    	watcher   Watcher
    	MultiCast *WatcherMulticast
    
    	env      *model.Environment
    	revision string
    }
    
    func (wh *Webhook) GetConfig() WebhookConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top