Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 891 for u$ (2.56 sec)

  1. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.2.txt

    Russ Cox <******@****.***> 1531944576 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_!q!u!o!t!e_v1.5.3-!p!r!e.txt

    Russ Cox <******@****.***> 1531944576 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  3. src/net/netip/uint128.go

    func (u uint128) xor(m uint128) uint128 {
    	return uint128{u.hi ^ m.hi, u.lo ^ m.lo}
    }
    
    // or returns the bitwise OR of u and m (u|m).
    func (u uint128) or(m uint128) uint128 {
    	return uint128{u.hi | m.hi, u.lo | m.lo}
    }
    
    // not returns the bitwise NOT of u.
    func (u uint128) not() uint128 {
    	return uint128{^u.hi, ^u.lo}
    }
    
    // subOne returns u - 1.
    func (u uint128) subOne() uint128 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 21:28:44 UTC 2022
    - 2.2K bytes
    - Viewed (1)
  4. src/internal/types/testdata/check/conversions1.go

    	type T struct{}
    	var s S
    	var t T
    	var u struct{}
    	s = s
    	s = t // ERRORx `cannot use .* in assignment`
    	s = u
    	s = S(s)
    	s = S(t)
    	s = S(u)
    	t = u
    	t = T(u)
    }
    
    func _() {
    	type S struct{ x int }
    	type T struct {
    		x int "foo"
    	}
    	var s S
    	var t T
    	var u struct {
    		x int "bar"
    	}
    	s = s
    	s = t // ERRORx `cannot use .* in assignment`
    	s = u // ERRORx `cannot use .* in assignment`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_list.go

    	return err
    }
    
    func (u *UnstructuredList) GetAPIVersion() string {
    	return getNestedString(u.Object, "apiVersion")
    }
    
    func (u *UnstructuredList) SetAPIVersion(version string) {
    	u.setNestedField(version, "apiVersion")
    }
    
    func (u *UnstructuredList) GetKind() string {
    	return getNestedString(u.Object, "kind")
    }
    
    func (u *UnstructuredList) SetKind(kind string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 04:46:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. test/convert2.go

    func _() {
    	type S struct{}
    	type T struct{}
    	var s S
    	var t T
    	var u struct{}
    	s = s
    	s = t // ERROR "cannot use .* in assignment|incompatible type"
    	s = u
    	s = S(s)
    	s = S(t)
    	s = S(u)
    	t = u
    	t = T(u)
    }
    
    func _() {
    	type S struct{ x int }
    	type T struct {
    		x int "foo"
    	}
    	var s S
    	var t T
    	var u struct {
    		x int "bar"
    	}
    	s = s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 15:55:44 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  8. test/escape_struct_param1.go

    package notmain
    
    var Ssink *string
    
    type U struct {
    	_sp  *string
    	_spp **string
    }
    
    type V struct {
    	_u   U
    	_up  *U
    	_upp **U
    }
    
    func (u *U) SP() *string { // ERROR "leaking param: u to result ~r0 level=1$"
    	return u._sp
    }
    
    func (u *U) SPP() **string { // ERROR "leaking param: u to result ~r0 level=1$"
    	return u._spp
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  9. test/escape_struct_param2.go

    package notmain
    
    var Ssink *string
    
    type U struct {
    	_sp  *string
    	_spp **string
    }
    
    type V struct {
    	_u   U
    	_up  *U
    	_upp **U
    }
    
    func (u U) SP() *string { // ERROR "leaking param: u to result ~r0 level=0$"
    	return u._sp
    }
    
    func (u U) SPP() **string { // ERROR "leaking param: u to result ~r0 level=0$"
    	return u._spp
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  10. src/net/url/example_test.go

    	// Output:
    	// [meow mew mau]
    	// [meow]
    }
    
    func ExampleURL() {
    	u, err := url.Parse("http://bing.com/search?q=dotnet")
    	if err != nil {
    		log.Fatal(err)
    	}
    	u.Scheme = "https"
    	u.Host = "google.com"
    	q := u.Query()
    	q.Set("q", "golang")
    	u.RawQuery = q.Encode()
    	fmt.Println(u)
    	// Output: https://google.com/search?q=golang
    }
    
    func ExampleURL_roundtrip() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.2K bytes
    - Viewed (0)
Back to top