Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 177 for Implementation (0.19 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file provides the generic implementation of Sum and MAC. Other files
    // might provide optimized assembly implementations of some of this code.
    
    package poly1305
    
    import (
    	"encoding/binary"
    	"math/bits"
    )
    
    // Poly1305 [RFC 7539] is a relatively simple algorithm: the authentication tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. src/go/types/struct.go

    	return ""
    }
    
    func (t *Struct) Underlying() Type { return t }
    func (t *Struct) String() string   { return TypeString(t, nil) }
    
    // ----------------------------------------------------------------------------
    // Implementation
    
    func (s *Struct) markComplete() {
    	if s.fields == nil {
    		s.fields = make([]*Var, 0)
    	}
    }
    
    func (check *Checker) structType(styp *Struct, e *ast.StructType) {
    	list := e.Fields
    	if list == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/net/http/transport_dial_test.go

    	// second request uses the first connection.
    	rt2 := dt.roundTrip()
    	c2 := dt.wantDial()
    	rt1.finish()
    	rt2.wantDone(c1)
    
    	// This section is a bit overfitted to the current Transport implementation:
    	// A third request starts. We have an in-progress dial that was started by rt2,
    	// but this new request (rt3) is going to ignore it and make a dial of its own.
    	// rt3 will use the first of these dials that completes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/crypto/tls/key_schedule.go

    	// Package mlkem768 implements ML-KEM, which compared to Kyber removed a
    	// final hashing step. Compute SHAKE-256(K || SHA3-256(c), 32) to match Kyber.
    	// See https://words.filippo.io/mlkem768/#bonus-track-using-a-ml-kem-implementation-as-kyber-v3.
    	h := sha3.NewShake256()
    	h.Write(K)
    	ch := sha3.Sum256(c)
    	h.Write(ch[:])
    	out := make([]byte, 32)
    	h.Read(out)
    	return out
    }
    
    const x25519PublicKeySize = 32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/go/ast/print.go

    func (p *printer) printf(format string, args ...any) {
    	if _, err := fmt.Fprintf(p, format, args...); err != nil {
    		panic(localError{err})
    	}
    }
    
    // Implementation note: Print is written for AST nodes but could be
    // used to print arbitrary data structures; such a version should
    // probably be in a different package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/runtime/netpoll_wasip1.go

    //   This is in contrast to poll(2) which accepts a mask with POLLIN and
    //   POLLOUT bits, allowing for a subscription to either, neither, or both
    //   reads and writes.
    //
    // Since poll_oneoff is similar to poll(2), the implementation here was derived
    // from netpoll_aix.go.
    
    const _EINTR = 27
    
    var (
    	evts []event
    	subs []subscription
    	pds  []*pollDesc
    	mtx  mutex
    )
    
    func netpollinit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    // traversed field paths. It is necessary to build the tree to take advantage of
    // DeepEqual checks performed by lower levels of the object during validation without
    // greatly modifying `kube-openapi`'s implementation.
    //
    // The tree, and all cache storage/scratch space for the validation of a single
    // call to `Validate` is thrown away at the end of the top-level call
    // to `Validate`.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/text/template/helper.go

    // the last one mentioned will be the one that results.
    func (t *Template) ParseGlob(pattern string) (*Template, error) {
    	t.init()
    	return parseGlob(t, pattern)
    }
    
    // parseGlob is the implementation of the function and method ParseGlob.
    func parseGlob(t *Template, pattern string) (*Template, error) {
    	filenames, err := filepath.Glob(pattern)
    	if err != nil {
    		return nil, err
    	}
    	if len(filenames) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/container_manager.go

    	GetNodeConfig() NodeConfig
    
    	// Status returns internal Status.
    	Status() Status
    
    	// NewPodContainerManager is a factory method which returns a podContainerManager object
    	// Returns a noop implementation if qos cgroup hierarchy is not enabled
    	NewPodContainerManager() PodContainerManager
    
    	// GetMountedSubsystems returns the mounted cgroup subsystems on the node
    	GetMountedSubsystems() *CgroupSubsystems
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	if u, ok := into.(runtime.Unstructured); ok {
    		var content map[string]interface{}
    		defer func() {
    			switch u := u.(type) {
    			case *unstructured.UnstructuredList:
    				// UnstructuredList's implementation of SetUnstructuredContent
    				// produces different objects than those produced by a decode using
    				// UnstructuredJSONScheme:
    				//
    				//   1. SetUnstructuredContent retains the "items" key in the list's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top