Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,811 for meth (0.07 sec)

  1. test/inline.go

    type T1 struct{}
    
    func (a T1) meth(val int) int { // ERROR "can inline T1.meth"
    	return val + 5
    }
    
    func getMeth(t1 T1) func(int) int { // ERROR "can inline getMeth"
    	return t1.meth // ERROR "t1.meth escapes to heap"
    	// ERRORAUTO "inlining call to T1.meth"
    }
    
    func ii() { // ERROR "can inline ii"
    	var t1 T1
    	f := getMeth(t1) // ERROR "inlining call to getMeth" "t1.meth does not escape"
    	_ = f(3)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. test/newinline.go

    type T1 struct{}
    
    func (a T1) meth(val int) int { // ERROR "can inline T1.meth"
    	return val + 5
    }
    
    func getMeth(t1 T1) func(int) int { // ERROR "can inline getMeth"
    	return t1.meth // ERROR "t1.meth escapes to heap"
    	// ERRORAUTO "inlining call to T1.meth"
    }
    
    func ii() { // ERROR "can inline ii"
    	var t1 T1
    	f := getMeth(t1) // ERROR "inlining call to getMeth" "t1.meth does not escape"
    	_ = f(3)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/time/zoneinfo_read.go

    		//
    		if get4(buf) != zcheader {
    			break
    		}
    		meth := get2(buf[10:])
    		size := get4(buf[24:])
    		namelen := get2(buf[28:])
    		xlen := get2(buf[30:])
    		fclen := get2(buf[32:])
    		off := get4(buf[42:])
    		zname := buf[46 : 46+namelen]
    		buf = buf[46+namelen+xlen+fclen:]
    		if string(zname) != name {
    			continue
    		}
    		if meth != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/runtime/error.go

    		throw("panicwrap: no ) in " + name)
    	}
    	if i+2 >= len(name) || name[i:i+2] != ")." {
    		throw("panicwrap: unexpected string after type name: " + name)
    	}
    	typ := name[:i]
    	meth := name[i+2:]
    	panic(plainError("value method " + pkg + "." + typ + "." + meth + " called using nil *" + typ + " pointer"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	// of objectpath will only be giving us origin methods, anyway, as referring
    	// to instantiated methods is usually not useful.
    
    	if meth.Origin() != meth {
    		return "", false
    	}
    
    	_, named := typesinternal.ReceiverNamed(meth.Type().(*types.Signature).Recv())
    	if named == nil {
    		return "", false
    	}
    
    	if types.IsInterface(named) {
    		// Named interfaces don't have to be package-scoped
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/cmd/doc/pkg.go

    	}
    	found := false
    	for _, typ := range types {
    		if len(typ.Methods) > 0 {
    			for _, meth := range typ.Methods {
    				if match(method, meth.Name) {
    					decl := meth.Decl
    					pkg.emit(meth.Doc, decl)
    					found = true
    				}
    			}
    			continue
    		}
    		if symbol == "" {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. src/crypto/internal/boring/goboringcrypto.h

    int _goboringcrypto_ECDSA_verify(int, const uint8_t*, size_t, const uint8_t*, size_t, const GO_EC_KEY*);
    
    // #include <openssl/rsa.h>
    
    // Note: order of struct fields here is unchecked.
    typedef struct GO_RSA { void *meth; GO_BIGNUM *n, *e, *d, *p, *q, *dmp1, *dmq1, *iqmp; char data[168]; } GO_RSA;
    /*unchecked (opaque)*/ typedef struct GO_BN_GENCB { char data[1]; } GO_BN_GENCB;
    GO_RSA* _goboringcrypto_RSA_new(void);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. pkg/config/mesh/mesh.go

    	return ptr.Of(EmptyMeshNetworks())
    }
    
    // DefaultMeshConfig returns the default mesh config.
    // This is merged with values from the mesh config map.
    func DefaultMeshConfig() *meshconfig.MeshConfig {
    	proxyConfig := DefaultProxyConfig()
    
    	// Defaults matching the standard install
    	// order matches the generated mesh config.
    	return &meshconfig.MeshConfig{
    		EnableTracing:               true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/meta/meta.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package meta
    
    import (
    	"fmt"
    	"reflect"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/klog/v2"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 16.5K bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-merge.zip

    xl8/testbucket/hosts/xl.meta XL2 Æ n Ä$•Ä Ó ¹ô‡‰O/>Ä _ÒU_ Å Bƒ¤Type ¥V2ObjÞ ¢IDÄ ¤DDirÄ Ö¥`°IÔš¾”4þÄÿ ¦EcAlgo £EcM £EcN §EcBSizeÒ §EcIndex ¦EcDist” ¨CSumAlgo ¨PartNums‘ ©PartETagsÀ©PartSizes‘ÑJ©ªPartASizes‘ÑJ©¤SizeÑJ©¥MTimeÓ ¹ô‡‰O/>§MetaSys ¼x-minio-internal-inline-dataÄ true§MetaUsr‚¬content-type­text/markdown¤etagÙ 4af243ccccbadaf12545¡vÎeçnÐÎîjëä ¤nullÅ%u_oØ7ò Wë šÆ¾¥ yoì’ f T [•8²oinèýñ( ¼W1Ö>Iit LGaxwÖ! ²]U±¬Öá#ÆBmPC ábSZI’ ïøXwgZ èkwaç`w*†{pj ØwW]eæ†za ëuKt[WÆ>ÈIK]}@óº~gÉNHéæ)Þ $¾jyZPñ+Qjq†mëb39€...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top