Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 569 for biases (0.19 sec)

  1. test/alias3.dir/c.go

    )
    
    func main() {
    	var _ float64 = b.F(0)
    	var _ a.Rune = int32(0)
    
    	// embedded types can have different names but the same types
    	var s a.S
    	s.Int = 1
    	s.IntAlias = s.Int
    	s.IntAlias2 = s.Int
    
    	// aliases denote identical types across packages
    	var c a.Context = b.C
    	var _ b.MyContext = c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 05:55:53 UTC 2017
    - 490 bytes
    - Viewed (0)
  2. src/internal/types/testdata/examples/types.go

    var _ List[List[int]] = []List[int]{}
    var _ List[List[List[Tree[int]]]] = []List[List[Tree[int]]]{}
    
    // Type parameters act like type aliases when used in generic types
    // in the sense that we can "emulate" a specific type instantiation
    // with type aliases.
    type T1[P any] struct {
    	f P
    }
    
    type T2[P any] struct {
    	f struct {
    		g P
    	}
    }
    
    var x1 T1[struct{ g int }]
    var x2 T2[int]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows_386.go

    	Description  [WSADESCRIPTION_LEN + 1]byte
    	SystemStatus [WSASYS_STATUS_LEN + 1]byte
    	MaxSockets   uint16
    	MaxUdpDg     uint16
    	VendorInfo   *byte
    }
    
    type Servent struct {
    	Name    *byte
    	Aliases **byte
    	Port    uint16
    	Proto   *byte
    }
    
    type JOBOBJECT_BASIC_LIMIT_INFORMATION struct {
    	PerProcessUserTimeLimit int64
    	PerJobUserTimeLimit     int64
    	LimitFlags              uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 875 bytes
    - Viewed (0)
  4. test/fixedbugs/issue23912.go

    // compile
    
    // 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.
    
    // A couple of aliases cases that gccgo incorrectly gave errors for.
    
    package p
    
    func F1() {
    	type E = struct{}
    	type X struct{}
    	var x X
    	var y E = x
    	_ = y
    }
    
    func F2() {
    	type E = struct{}
    	type S []E
    	type T []struct{}
    	type X struct{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 01:57:14 UTC 2018
    - 516 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows_arm.go

    	Description  [WSADESCRIPTION_LEN + 1]byte
    	SystemStatus [WSASYS_STATUS_LEN + 1]byte
    	MaxSockets   uint16
    	MaxUdpDg     uint16
    	VendorInfo   *byte
    }
    
    type Servent struct {
    	Name    *byte
    	Aliases **byte
    	Port    uint16
    	Proto   *byte
    }
    
    type JOBOBJECT_BASIC_LIMIT_INFORMATION struct {
    	PerProcessUserTimeLimit int64
    	PerJobUserTimeLimit     int64
    	LimitFlags              uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 875 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-versionCatalogPlugin/kotlin/build.gradle.kts

        `version-catalog`
        `maven-publish`
    }
    // end::apply_plugin[]
    
    group = "com.mycompany"
    version = "1.0"
    
    // tag::catalog_spec[]
    catalog {
        // declare the aliases, bundles and versions in this block
        versionCatalog {
            library("my-lib", "com.mycompany:mylib:1.2")
        }
    }
    // end::catalog_spec[]
    
    // tag::catalog_publish[]
    publishing {
        publications {
            create<MavenPublication>("maven") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/aliases/aliases_go121.go

    // Copyright 2024 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 !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") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 962 bytes
    - Viewed (0)
  8. 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
                fields will be ignored at serialization time.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  9. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    		Example: `  # Retrieve summary about workload configuration
      istioctl ztunnel-config workload
    
      # Retrieve summary about certificates
      istioctl ztunnel-config certificates`,
    		Aliases: []string{"zc"},
    	}
    
    	configCmd.AddCommand(logCmd(ctx))
    	configCmd.AddCommand(workloadConfigCmd(ctx))
    	configCmd.AddCommand(certificatesConfigCmd(ctx))
    	configCmd.AddCommand(servicesCmd(ctx))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/main/config/es/fess_log_search_log.json

    {
      "fess_log.search_log" : {
        "aliases" : { },
        "mappings" : {
          "search_log" : {
            "properties" : {
              "accessType" : {
                "type" : "keyword"
              },
              "clientIp" : {
                "type" : "keyword"
              },
              "hitCount" : {
                "type" : "long"
              },
              "hitCountRelation" : {
                "type" : "keyword"
              },
              "languages" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Apr 12 15:00:27 UTC 2019
    - 2K bytes
    - Viewed (0)
Back to top