Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isAlias (0.12 sec)

  1. src/cmd/compile/internal/types2/unify.go

    	switch x := x.(type) {
    	case *Basic:
    		// Basic types are singletons except for the rune and byte
    		// aliases, thus we cannot solely rely on the x == y check
    		// above. See also comment in TypeName.IsAlias.
    		if y, ok := y.(*Basic); ok {
    			return x.kind == y.kind
    		}
    
    	case *Array:
    		// Two array types unify if they have the same array length
    		// and their element types unify.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/go/types/unify.go

    	switch x := x.(type) {
    	case *Basic:
    		// Basic types are singletons except for the rune and byte
    		// aliases, thus we cannot solely rely on the x == y check
    		// above. See also comment in TypeName.IsAlias.
    		if y, ok := y.(*Basic); ok {
    			return x.kind == y.kind
    		}
    
    	case *Array:
    		// Two array types unify if they have the same array length
    		// and their element types unify.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      # route, the packet will be routed to the pod subnetwork, and not leave the
      # VM.
      $mgmt_net_adapter = Get_MgmtNetAdapter
      New-NetRoute `
          -ErrorAction Ignore `
          -InterfaceAlias ${mgmt_net_adapter}.ifAlias `
          -DestinationPrefix ${env:POD_CIDR} `
          -NextHop "0.0.0.0" `
          -Verbose
    
      if ($created_hns_network) {
        # There is an HNS bug where the route to the GCE metadata server will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top