Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 266 for alias1 (0.14 sec)

  1. pilot/pkg/model/push_context_test.go

    				{Name: "alias2", ExternalName: "concrete"},
    			},
    		},
    		{
    			name: "looping alias",
    			input: []service{
    				{Name: "alias1", ExternalName: "alias2"},
    				{Name: "alias2", ExternalName: "alias1"},
    			},
    			output: []service{
    				{Name: "alias1", ExternalName: "alias2"},
    				{Name: "alias2", ExternalName: "alias1"},
    			},
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    	}
    
    	// resolvedAliases builds a map of Alias -> Concrete, fully resolving through multiple hops.
    	// Ex: Alias1 -> Alias2 -> Concrete will flatten to Alias1 -> Concrete.
    	resolvedAliases := make(map[NamespacedHostname]host.Name, len(rawAlias))
    	for alias, referencedService := range rawAlias {
    		// referencedService may be another alias or a concrete service.
    		if _, f := unnamespacedRawAlias[referencedService]; !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/alias.go

    // If a is not an instance of a generic alias, the result is nil.
    func (a *Alias) TypeArgs() *TypeList { return a.targs }
    
    // Rhs returns the type R on the right-hand side of an alias
    // declaration "type A = R", which may be another alias.
    func (a *Alias) Rhs() Type { return a.fromRHS }
    
    // Unalias returns t if it is not an alias type;
    // otherwise it follows t's alias chain until it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/go/types/alias.go

    	actual  Type           // actual (aliased) type; never an alias
    }
    
    // NewAlias creates a new Alias type with the given type name and rhs.
    // rhs must not be nil.
    func NewAlias(obj *TypeName, rhs Type) *Alias {
    	alias := (*Checker)(nil).newAlias(obj, rhs)
    	// Ensure that alias.actual is set (#65455).
    	alias.cleanup()
    	return alias
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases.go

    // license that can be found in the LICENSE file.
    
    package aliases
    
    import (
    	"go/token"
    	"go/types"
    )
    
    // Package aliases defines backward compatible shims
    // for the types.Alias type representation added in 1.22.
    // This defines placeholders for x/tools until 1.26.
    
    // NewAlias creates a new TypeName in Package pkg that
    // is an alias for the type rhs.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. cluster/gce/upgrade-aliases.sh

    detect-master
    
    k8s_node_routes_count=$(get-k8s-node-routes-count)
    if [[ "${k8s_node_routes_count}" -eq 0 ]]; then
      echo "No k8s node routes found and IP alias should already be enabled. Exiting..."
      exit 0
    fi
    echo "Found ${k8s_node_routes_count} K8s node routes. Proceeding to upgrade them to IP aliases based connectivity..."
    
    detect-k8s-subnetwork
    if [ -z "${IP_ALIAS_SUBNETWORK}" ]; then
      echo "No k8s cluster subnetwork found. Exiting..."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. test/alias2.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test basic restrictions on type aliases.
    
    package p
    
    import (
    	"reflect"
    	. "reflect"
    )
    
    type T0 struct{}
    
    // Valid type alias declarations.
    
    type _ = T0
    type _ = int
    type _ = struct{}
    type _ = reflect.Value
    type _ = Value
    
    type (
    	A0 = T0
    	A1 = int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go121.go

    //go:build !go1.22
    // +build !go1.22
    
    package aliases
    
    import (
    	"go/types"
    )
    
    // Alias is a placeholder for a go/types.Alias for <=1.21.
    // It will never be created by go/types.
    type Alias struct{}
    
    func (*Alias) String() string         { panic("unreachable") }
    func (*Alias) Underlying() types.Type { panic("unreachable") }
    func (*Alias) Obj() *types.TypeName   { panic("unreachable") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 962 bytes
    - Viewed (0)
  9. fastapi/param_functions.py

                allowed by the alias or set of aliases defined.
                """
            ),
        ] = None,
        serialization_alias: Annotated[
            Union[str, None],
            Doc(
                """
                'Blacklist' validation step. The vanilla parameter field will be the
                single one of the alias' or set of aliases' fields and all the other
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationIndex.kt

        /**
         * Maps a simple name `N` to type aliases `A` in whose definition `N` occurs as the topmost user type, which is a prerequisite for other
         * classes inheriting from `N` by referring to `A`. Does not support function types (e.g. `Function1`).
         *
         * There is no guarantee that the type alias can be inherited from. For example, if its expanded type is final, the type alias is not
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top