Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for clocks (0.53 sec)

  1. src/crypto/tls/conn.go

    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    	// block. If the MAC check passed but the padding check failed, the
    	// last byte of that block decrypted to the block size.
    	//
    	// See also macAndPaddingGood logic below.
    	paddingLen &= good
    
    	toRemove = int(paddingLen) + 1
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (BR(W|H) x:(MOV(W|H)Zload [off] {sym} ptr mem)) && x.Uses == 1 => @x.Block (MOV(W|H)BRload (MOVDaddr <ptr.Type> [off] {sym} ptr) mem)
    (BR(W|H) x:(MOV(W|H)Zloadidx ptr idx      mem)) && x.Uses == 1 => @x.Block (MOV(W|H)BRloadidx ptr idx mem)
    (BRD x:(MOVDload [off] {sym} ptr mem)) && x.Uses == 1 => @x.Block (MOVDBRload (MOVDaddr <ptr.Type> [off] {sym} ptr) mem)
    (BRD x:(MOVDloadidx ptr idx      mem)) && x.Uses == 1 => @x.Block (MOVDBRloadidx ptr idx mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * of reads may not be immediately reflected on the algorithm's data structures. These structures
       * are guarded by a lock and operations are applied in batches to avoid lock contention. The
       * penalty of applying the batches is spread across threads so that the amortized cost is slightly
       * higher than performing just the operation without enforcing the capacity constraint.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    	PXOR	X7, X15
    
    	// compute number of remaining 128-byte blocks
    	DECQ	CX
    	SHRQ	$7, CX
    
    	PCALIGN $16
    aesloop:
    	// scramble state
    	AESENC	X8, X8
    	AESENC	X9, X9
    	AESENC	X10, X10
    	AESENC	X11, X11
    	AESENC	X12, X12
    	AESENC	X13, X13
    	AESENC	X14, X14
    	AESENC	X15, X15
    
    	// scramble state, xor in a block
    	MOVOU	(AX), X0
    	MOVOU	16(AX), X1
    	MOVOU	32(AX), X2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    	return mms.indices[mms.mustGetSingleMainModule()]
    }
    
    func (mms *MainModuleSet) Index(m module.Version) *modFileIndex {
    	mms.indexMu.Lock()
    	defer mms.indexMu.Unlock()
    	return mms.indices[m]
    }
    
    func (mms *MainModuleSet) SetIndex(m module.Version, index *modFileIndex) {
    	mms.indexMu.Lock()
    	defer mms.indexMu.Unlock()
    	mms.indices[m] = index
    }
    
    func (mms *MainModuleSet) ModFile(m module.Version) *modfile.File {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. src/testing/testing.go

    	if c.parent != nil {
    		c.parent.setRan()
    	}
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	c.ran = true
    }
    
    // Fail marks the function as having failed but continues execution.
    func (c *common) Fail() {
    	if c.parent != nil {
    		c.parent.Fail()
    	}
    	c.mu.Lock()
    	defer c.mu.Unlock()
    	// c.done needs to be locked to synchronize checks to c.done in parent tests.
    	if c.done {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    binary. Only a high-confidence subset of the default go vet checks are
    used. That subset is: atomic, bool, buildtags, directive, errorsas,
    ifaceassert, nilfunc, printf, and stringintconv. You can see
    the documentation for these and other vet tests via "go doc cmd/vet".
    To disable the running of go vet, use the -vet=off flag. To run all
    checks, use the -vet=all flag.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    		shard, f := env.EndpointIndex.ShardsForService(string(svc.Hostname), svc.Attributes.Namespace)
    		if f {
    			shard.RLock()
    			// copy here to reduce the lock time
    			// endpoints could update frequently, so the longer it locks, the more likely it will block other threads.
    			accounts = shard.ServiceAccounts.Copy()
    			shard.RUnlock()
    		}
    		if len(svc.ServiceAccounts) > 0 {
    			if accounts == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Accessing `libraries` or `bundles` from dependency version catalogs in the `plugins {}` block of a Kotlin script
    
    Accessing `libraries` or `bundles` from dependency version catalogs in the `plugins {}` block of a Kotlin script is deprecated.
    Please only use `versions` or `plugins` from dependency version catalogs in the `plugins {}` block.
    
    [[validate_plugins_without_java_toolchain]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    func (pc *persistConn) markReused() {
    	pc.mu.Lock()
    	pc.reused = true
    	pc.mu.Unlock()
    }
    
    // close closes the underlying TCP connection and closes
    // the pc.closech channel.
    //
    // The provided err is only for testing and debugging; in normal
    // circumstances it should never be seen by users.
    func (pc *persistConn) close(err error) {
    	pc.mu.Lock()
    	defer pc.mu.Unlock()
    	pc.closeLocked(err)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top