Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for clocks (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //sys	Chdir(path string) (err error)
    //sys	Chroot(path string) (err error)
    //sys	ClockAdjtime(clockid int32, buf *Timex) (state int, err error)
    //sys	ClockGetres(clockid int32, res *Timespec) (err error)
    //sys	ClockGettime(clockid int32, time *Timespec) (err error)
    //sys	ClockNanosleep(clockid int32, flags int, request *Timespec, remain *Timespec) (err error)
    //sys	Close(fd int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Prior to Gradle 7.6, Groovy scripts permitted access to root project configure methods
    within named container configure methods that throw `MissingMethodException`s.
    Consider the following snippets for examples of this behavior:
    
    Gradle permits access to the top-level `repositories` block from within the `configurations` block
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K 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