Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,729 for meth (0.09 sec)

  1. src/cmd/compile/internal/walk/closure.go

    		base.Fatalf("methodValueWrapper: unexpected %v (%v)", dot, dot.Op())
    	}
    
    	meth := dot.Sel
    	rcvrtype := dot.X.Type()
    	sym := ir.MethodSymSuffix(rcvrtype, meth, "-fm")
    
    	if sym.Uniq() {
    		return sym.Def.(*ir.Name)
    	}
    	sym.SetUniq(true)
    
    	base.FatalfAt(dot.Pos(), "missing wrapper for %v", meth)
    	panic("unreachable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. test/codegen/math.go

    	// ppc64x:"FMADD"
    	// riscv64:"FMADDD"
    	return math.FMA(x, y, z)
    }
    
    func fms(x, y, z float64) float64 {
    	// riscv64:"FMSUBD"
    	return math.FMA(x, y, -z)
    }
    
    func fnms(x, y, z float64) float64 {
    	// riscv64:"FNMSUBD",-"FNMADDD"
    	return math.FMA(-x, y, z)
    }
    
    func fnma(x, y, z float64) float64 {
    	// riscv64:"FNMADDD",-"FNMSUBD"
    	return math.FMA(x, -y, -z)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K 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. pilot/pkg/bootstrap/mesh.go

    				log.Warnf("Using local mesh config file %s, in cluster configs ignored", args.MeshConfigFile)
    			}
    			return
    		}
    	}
    
    	// Config file either didn't exist or failed to load.
    	if s.kubeClient == nil {
    		// Use a default mesh.
    		meshConfig := mesh.DefaultMeshConfig()
    		s.environment.Watcher = mesh.NewFixedWatcher(meshConfig)
    		log.Warnf("Using default mesh - missing file %s and no k8s client", args.MeshConfigFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/meta.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/uuid"
    )
    
    // WipeObjectMetaSystemFields erases fields that are managed by the system on ObjectMeta.
    func WipeObjectMetaSystemFields(meta metav1.Object) {
    	meta.SetCreationTimestamp(metav1.Time{})
    	meta.SetUID("")
    	meta.SetDeletionTimestamp(nil)
    	meta.SetDeletionGracePeriodSeconds(nil)
    	meta.SetSelfLink("")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 19 01:47:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top