Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for Implementation (0.2 sec)

  1. src/runtime/mprof.go

    // them is responsible.
    //
    // Matching that behavior for runtime-internal locks will require identifying
    // which Ms are blocked on the mutex. The semaphore-based implementation is
    // ready to allow that, but the futex-based implementation will require a bit
    // more work. Until then, we report contention on runtime-internal locks with a
    // call stack taken from the unlock call (like the rest of the user-space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    	}
    }
    
    // Note: see comment in handshake_test.go for details of how the reference
    // tests work.
    
    // serverTest represents a test of the TLS server handshake against a reference
    // implementation.
    type serverTest struct {
    	// name is a freeform string identifying the test and the file in which
    	// the expected results will be stored.
    	name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    // license that can be found in the LICENSE file.
    
    // Package dnsmessage provides a mostly RFC 1035 compliant implementation of
    // DNS message packing and unpacking.
    //
    // The package also supports messages with Extension Mechanisms for DNS
    // (EDNS(0)) as defined in RFC 6891.
    //
    // This implementation is designed to minimize heap allocations and avoid
    // unnecessary packing and unpacking as much as possible.
    package dnsmessage
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  4. src/os/os_test.go

    						t.Log(errormsg)
    						t.Log("A filesystem is mounted with noatime; ignoring.")
    					} else {
    						switch runtime.GOOS {
    						case "netbsd", "dragonfly":
    							// On a 64-bit implementation, birth time is generally supported and cannot be changed.
    							// When supported, atime update is restricted and depends on the file system and on the
    							// OS configuration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    		}
    		// clear min(avail, lump) bytes
    		n := vsize - voff
    		if n > chunkBytes {
    			n = chunkBytes
    		}
    		memclrNoHeapPointers(unsafe.Pointer(voff), n)
    	}
    }
    
    // implementation of new builtin
    // compiler (both frontend and SSA backend) knows the signature
    // of this function.
    func newobject(typ *_type) unsafe.Pointer {
    	return mallocgc(typ.Size_, typ, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/crypto/des/des_test.go

    func newCipher(key []byte) cipher.Block {
    	c, err := des.NewCipher(key)
    	if err != nil {
    		panic("NewCipher failed: " + err.Error())
    	}
    	return c
    }
    
    // Use the known weak keys to test DES implementation
    func TestWeakKeys(t *testing.T) {
    	for i, tt := range weakKeyTests {
    		var encrypt = func(in []byte) (out []byte) {
    			c := newCipher(tt.key)
    			out = make([]byte, len(in))
    			c.Encrypt(out, in)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	// For each cluster and hostname, the full list of active endpoints (including empty list)
    	// must be sent. The shard name is used as a key - current implementation is using the
    	// registry name.
    	EDSUpdate(shard ShardKey, hostname string, namespace string, entry []*IstioEndpoint)
    
    	// EDSCacheUpdate is called when the list of endpoints or labels in a Service is changed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    				// TLS is not terminated, so we will attempt to decode as HTTP and fail
    				Error: simulation.ErrProtocolError,
    			},
    			Permissive: simulation.Result{
    				// This could also be a protocol error. In the current implementation, we choose not
    				// to create a match since if we did it would just be rejected in HCM; no match
    				// is more performant
    				Error: simulation.ErrNoFilterChain,
    			},
    			Strict: simulation.Result{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. cmd/iam.go

    )
    
    // LoadGroup - loads a specific group from storage, and updates the
    // memberships cache. If the specified group does not exist in
    // storage, it is removed from in-memory maps as well - this
    // simplifies the implementation for group removal. This is called
    // only via IAM notifications.
    func (sys *IAMSys) LoadGroup(ctx context.Context, objAPI ObjectLayer, group string) error {
    	if !sys.Initialized() {
    		return errServerNotInitialized
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    )
    
    // heapObjectsCanMove always returns false in the current garbage collector.
    // It exists for go4.org/unsafe/assume-no-moving-gc, which is an
    // unfortunate idea that had an even more unfortunate implementation.
    // Every time a new Go release happened, the package stopped building,
    // and the authors had to add a new file with a new //go:build line, and
    // then the entire ecosystem of packages with that as a dependency had to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top