Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 120 for clocks (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit-icons.min.js

    stroke="#000" stroke-width="1.03" points="7 4 13 10 7 16"/></svg>',"chevron-up":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><polyline fill="none" stroke="#000" stroke-width="1.03" points="4 13 10 7 16 13"/></svg>',clock:'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9"/><rect x="9" y="4" width="1" height="7"/><path fill="none" stroke="#000" stroke-width="1.1"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 62.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/link/internal/loader/loader.go

    func (l *Loader) Preload(localSymVersion int, f *bio.Reader, lib *sym.Library, unit *sym.CompilationUnit, length int64) goobj.FingerprintType {
    	roObject, readonly, err := f.Slice(uint64(length)) // TODO: no need to map blocks that are for tools only (e.g. RefName)
    	if err != nil {
    		log.Fatal("cannot read object file:", err)
    	}
    	r := goobj.NewReaderFromBytes(roObject, readonly)
    	if r == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
    (GetCallerSP ...) => (LoweredGetCallerSP ...)
    (GetCallerPC ...) => (LoweredGetCallerPC ...)
    
    // Absorb pseudo-ops into blocks.
    (If (Equal cc) yes no) => (EQ cc yes no)
    (If (NotEqual cc) yes no) => (NE cc yes no)
    (If (LessThan cc) yes no) => (LT cc yes no)
    (If (LessThanU cc) yes no) => (ULT cc yes no)
    (If (LessEqual cc) yes no) => (LE cc yes no)
    (If (LessEqualU cc) yes no) => (ULE cc yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top