Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,733 for MethodC (0.42 sec)

  1. test/method1.go

    // errorcheck
    
    // Copyright 2009 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.
    
    // Verify that method redeclarations are caught by the compiler.
    // Does not compile.
    
    package main
    
    type T struct{}
    
    func (t *T) M(int, string)  // GCCGO_ERROR "previous"
    func (t *T) M(int, float64) {} // ERROR "already declared|redefinition"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:59:19 UTC 2022
    - 739 bytes
    - Viewed (0)
  2. test/method6.go

    // license that can be found in the LICENSE file.
    
    // Verify that pointer method calls are caught during typechecking.
    // Reproducer extracted and adapted from method.go
    
    package foo
    
    type A struct {
    	B
    }
    type B int
    
    func (*B) g() {}
    
    var _ = func() {
    	var a A
    	A(a).g() // ERROR "cannot call pointer method .*on|cannot take the address of"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 04 21:22:23 UTC 2020
    - 467 bytes
    - Viewed (0)
  3. test/method7.go

    type Outer struct{ *Inner }
    type Inner struct{ s string }
    
    func (i Inner) M() string { return i.s }
    
    func main() {
    	// method expressions with named receiver types
    	I.m(S{})
    	want += " m()"
    
    	S.m1(S{}, "a")
    	want += " m1(a)"
    
    	// method expressions with literal receiver types
    	f := interface{ m1(string) }.m1
    	f(S{}, "b")
    	want += " m1(b)"
    
    	interface{ m1(string) }.m1(S{}, "c")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 26 17:05:06 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. test/method5.go

    // run
    
    // Copyright 2013 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 main
    
    // Concrete types implementing M method.
    // Smaller than a word, word-sized, larger than a word.
    // Value and pointer receivers.
    
    type Tinter interface {
    	M(int, byte) (byte, int)
    }
    
    type Tsmallv byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 6.7K bytes
    - Viewed (0)
  5. test/method3.go

    // run
    
    // Copyright 2009 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.
    
    // Test methods on slices.
    
    package main
    
    type T []int
    
    func (t T) Len() int { return len(t) }
    
    type I interface {
    	Len() int
    }
    
    func main() {
    	var t T = T{0, 1, 2, 3, 4}
    	var i I
    	i = t
    	if i.Len() != 5 {
    		println("i.Len", i.Len())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 570 bytes
    - Viewed (0)
  6. src/net/http/method.go

    // Copyright 2015 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 http
    
    // Common HTTP methods.
    //
    // Unless otherwise noted, these are defined in RFC 7231 section 4.3.
    const (
    	MethodGet     = "GET"
    	MethodHead    = "HEAD"
    	MethodPost    = "POST"
    	MethodPut     = "PUT"
    	MethodPatch   = "PATCH" // RFC 5789
    	MethodDelete  = "DELETE"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 22:11:56 UTC 2016
    - 517 bytes
    - Viewed (0)
  7. test/method.go

    // run
    
    // Copyright 2009 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.
    
    // Test simple methods of various types, with pointer and
    // value receivers.
    
    package main
    
    type S string
    type S1 string
    type I int
    type I1 int
    type T struct {
    	x int
    }
    type T1 T
    
    func (s S) val() int   { return 1 }
    func (s *S1) val() int { return 2 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 11 23:20:52 UTC 2013
    - 5.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/invalid/httproute/invalid-method.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-method
    spec:
      rules:
      - matches:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 145 bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/configuration-factory-methods.txt

    Method <org.gradle.api.plugins.BasePlugin.configureConfigurations(org.gradle.api.Project)> calls method <org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal.maybeCreateConsumableUnlocked(java.lang.String)> in (BasePlugin.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-method.yaml

    #$ Used in:
    #$ - geps/gep-1748.md
    kind: HTTPRoute
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: api
    spec:
      parentRefs:
      - name: api-gw
      rules:
      - matches:
        - method: POST
        - method: PUT
        - method: DELETE
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: api-primary
          port: 8080
      - backendRefs:
        - group: multicluster.x-k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 474 bytes
    - Viewed (0)
Back to top