Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 844 for aliasX (0.15 sec)

  1. src/math/big/nat_test.go

    	for _, mode := range []string{"noalias", "aliasX", "aliasY"} {
    		t.Run(mode, func(t *testing.T) {
    			for _, tt := range subMod2NTests {
    				x0 := natFromString(tt.x)
    				y0 := natFromString(tt.y)
    				want := natFromString(tt.z)
    				x := nat(nil).set(x0)
    				y := nat(nil).set(y0)
    				var z nat
    				switch mode {
    				case "aliasX":
    					z = x
    				case "aliasY":
    					z = y
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_issue59571.txt

    	Alias8  = SliceFlag[[8]int]
    	Alias9  = SliceFlag[[9]int]
    	Alias10 = SliceFlag[[10]int]
    	Alias11 = SliceFlag[[11]int]
    	Alias12 = SliceFlag[[12]int]
    	Alias13 = SliceFlag[[13]int]
    	Alias14 = SliceFlag[[14]int]
    	Alias15 = SliceFlag[[15]int]
    	Alias16 = SliceFlag[[16]int]
    	Alias17 = SliceFlag[[17]int]
    	Alias18 = SliceFlag[[18]int]
    	Alias19 = SliceFlag[[19]int]
    	Alias20 = SliceFlag[[20]int]
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 20:54:38 UTC 2023
    - 907 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. 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)
  7. src/crypto/internal/alias/alias.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package alias implements memory aliasing tests.
    // This code also exists as golang.org/x/crypto/internal/alias.
    package alias
    
    import "unsafe"
    
    // AnyOverlap reports whether x and y share memory at any (not necessarily
    // corresponding) index. The memory beyond the slice length is ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. hack/verify-import-aliases.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script verifies that all the imports have our preferred alias(es). The
    # preferred aliases for imports are listed in `hack/.import-aliases`.
    # Usage: `hack/verify-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/internal/alias/alias.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    // Package alias implements memory aliasing tests.
    package alias
    
    import "unsafe"
    
    // AnyOverlap reports whether x and y share memory at any (not necessarily
    // corresponding) index. The memory beyond the slice length is ignored.
    func AnyOverlap(x, y []byte) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/alias.yaml

        allowedRoutes:
          namespaces:
            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
      annotations:
        gateway.istio.io/alias-for: third-party-gateway
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top