Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 287 for emberi (0.29 sec)

  1. src/crypto/ecdsa/ecdsa.go

    )
    
    // PublicKey represents an ECDSA public key.
    type PublicKey struct {
    	elliptic.Curve
    	X, Y *big.Int
    }
    
    // Any methods implemented on PublicKey might need to also be implemented on
    // PrivateKey, as the latter embeds the former and will expose its methods.
    
    // ECDH returns k as a [ecdh.PublicKey]. It returns an error if the key is
    // invalid according to the definition of [ecdh.Curve.NewPublicKey], or if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/gcimporter_test.go

    func verifyInterfaceMethodRecvs(t *testing.T, named *types.Named, level int) {
    	// avoid endless recursion in case of an embedding bug that lead to a cycle
    	if level > 10 {
    		t.Errorf("%s: embeds itself", named)
    		return
    	}
    
    	iface, _ := named.Underlying().(*types.Interface)
    	if iface == nil {
    		return // not an interface
    	}
    
    	// check explicitly declared methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. src/go/types/typestring.go

    // object is qualified by the import path, e.g., "encoding/json.Marshal".
    type Qualifier func(*Package) string
    
    // RelativeTo returns a [Qualifier] that fully qualifies members of
    // all packages other than pkg.
    func RelativeTo(pkg *Package) Qualifier {
    	if pkg == nil {
    		return nil
    	}
    	return func(other *Package) string {
    		if pkg == other {
    			return "" // same package; unqualified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    // traces and heap dumps. Reasons should be unique and descriptive. Do not
    // re-use reasons, add new ones.
    //
    // gopark should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor
    //   - github.com/sagernet/gvisor
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname gopark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/encoding/json/decode.go

    			}
    			if f != nil {
    				subv = v
    				destring = f.quoted
    				for _, i := range f.index {
    					if subv.Kind() == reflect.Pointer {
    						if subv.IsNil() {
    							// If a struct embeds a pointer to an unexported type,
    							// it is not possible to set a newly allocated value
    							// since the field is unexported.
    							//
    							// See https://golang.org/issue/21357
    							if !subv.CanSet() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

      def setUp(self) -> None:
        super().setUp()
    
        # Many test cases for quantization involve creating and saving the input
        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
        # respectively. These paths will be cleaned up after each test case.
        self._input_saved_model_path = self.create_tempdir('input').full_path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. pkg/kubelet/userns/userns_manager.go

    type UsernsManager struct {
    	used    *allocator.AllocationBitmap
    	usedBy  map[types.UID]uint32 // Map pod.UID to range used
    	removed int
    
    	off int
    	len int
    
    	kl userNsPodsManager
    	// This protects all members except for kl.anager
    	lock sync.Mutex
    }
    
    // UserNamespace holds the configuration for the user namespace.
    type userNamespace struct {
    	// UIDs mappings for the user namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

                                val fqName = callableId.asSingleFqName()
                                val classFqName = callableId.classId?.asSingleFqName()
                                // either it is a member declaration
                                if (classFqName != null) {
                                    if (classFqName != qualifiedNameAsFqName) {
                                        this += classFqName
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types.go

    	// User is the user you're testing for.
    	// If you specify "User" but not "Groups", then is it interpreted as "What if User were not a member of any groups
    	// +optional
    	User string `json:"user,omitempty" protobuf:"bytes,3,opt,name=user"`
    	// Groups is the groups you're testing for.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. src/go/types/typeset.go

    	}
    
    	// Methods of embedded interfaces are collected unchanged; i.e., the identity
    	// of a method I.m's Func Object of an interface I is the same as that of
    	// the method m in an interface that embeds interface I. On the other hand,
    	// if a method is embedded via multiple overlapping embedded interfaces, we
    	// don't provide a guarantee which "original m" got chosen for the embedding
    	// interface. See also go.dev/issue/34421.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top