Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 113 for Filetime (0.65 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.resolution
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.validityAsserted
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.signatures.KaCallableSignature
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. src/runtime/metrics.go

    	// totalAllocated is the total bytes of heap objects allocated
    	// over the lifetime of the program.
    	totalAllocated uint64
    
    	// totalFreed is the total bytes of heap objects freed
    	// over the lifetime of the program.
    	totalFreed uint64
    
    	// totalAllocs is the number of heap objects allocated over
    	// the lifetime of the program.
    	totalAllocs uint64
    
    	// totalFrees is the number of heap objects freed over
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. src/runtime/mgclimit.go

    	assistTime := l.assistTimePool.Load()
    	if assistTime != 0 {
    		l.assistTimePool.Add(-assistTime)
    	}
    
    	// Drain the pool of idle time.
    	idleTime := l.idleTimePool.Load()
    	if idleTime != 0 {
    		l.idleTimePool.Add(-idleTime)
    	}
    
    	if !l.test {
    		// Consume time from in-flight events. Make sure we're not preemptible so allp can't change.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.components
    
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeToken
    import org.jetbrains.kotlin.analysis.api.lifetime.validityAsserted
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.scopes.KaScope
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. src/log/slog/value.go

    }
    
    type (
    	// Unexported version of *time.Location, just so we can store *time.Locations in
    	// Values. (No user-provided value has this type.)
    	timeLocation *time.Location
    
    	// timeTime is for times where UnixNano is undefined.
    	timeTime time.Time
    )
    
    // TimeValue returns a [Value] for a [time.Time].
    // It discards the monotonic portion.
    func TimeValue(v time.Time) Value {
    	if v.IsZero() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_tls13.go

    		return nil
    	}
    
    	// See RFC 8446, Section 4.6.1.
    	if msg.lifetime == 0 {
    		return nil
    	}
    	lifetime := time.Duration(msg.lifetime) * time.Second
    	if lifetime > maxSessionTicketLifetime {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: received a session ticket with invalid lifetime")
    	}
    
    	// RFC 9001, Section 4.6.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/runtime/mstats.go

    	// Update total CPU.
    	s.TotalTime = sched.totaltime + (now-sched.procresizetime)*int64(gomaxprocs)
    	s.IdleTime += sched.idleTime.Load()
    
    	// Compute userTime. We compute this indirectly as everything that's not the above.
    	//
    	// Since time spent in _Pgcstop is covered by gcPauseTime, and time spent in _Pidle
    	// is covered by idleTime, what we're left with is time spent in _Prunning and _Psyscall,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/net/net_windows_test.go

    	//
    	//Address ::1 Parameters
    	//---------------------------------------------------------
    	//Interface Luid     : Loopback Pseudo-Interface 1
    	//Scope Id           : 0.0
    	//Valid Lifetime     : infinite
    	//Preferred Lifetime : infinite
    	//DAD State          : Preferred
    	//Address Type       : Other
    	//Skip as Source     : false
    	//
    	//Address XXXX::XXXX:XXXX:XXXX:XXXX%11 Parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. security/pkg/pki/ca/ca.go

    	}
    
    	if err := csr.CheckSignature(); err != nil {
    		return nil, caerror.NewError(caerror.CSRError, err)
    	}
    
    	lifetime := requestedLifetime
    	// If the requested requestedLifetime is non-positive, apply the default TTL.
    	if requestedLifetime.Seconds() <= 0 {
    		lifetime = ca.defaultCertTTL
    	}
    	// If checkLifetime is set and the requested TTL is greater than maxCertTTL, return an error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

    import org.jetbrains.kotlin.analysis.project.structure.impl.getSourceFilePaths
    import org.jetbrains.kotlin.analysis.api.platform.lifetime.KotlinAlwaysAccessibleLifetimeTokenProvider
    import org.jetbrains.kotlin.analysis.api.platform.lifetime.KotlinLifetimeTokenProvider
    import org.jetbrains.kotlin.analysis.api.platform.projectStructure.KotlinByModulesResolutionScopeProvider
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top