Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for frequently (0.14 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     * Retrieving services via [Project.getService][com.intellij.openapi.project.Project.getService] and
     * [Application.getService][com.intellij.openapi.application.Application.getService] can have an impact on performance when called
     * frequently. While caching a service is generally not recommended, it can be beneficial for performance in hot spots, if done right.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/runtime/tracetime.go

    // encoded in fewer bytes.
    //
    // The target resolution in all cases is 64 nanoseconds.
    // This is based on the fact that fundamentally the execution tracer won't emit
    // events more frequently than roughly every 200 ns or so, because that's roughly
    // how long it takes to call through the scheduler.
    // We could be more aggressive and bump this up to 128 ns while still getting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProvider.kt

    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.*
    
    /**
     * A declaration provider for a given scope. It can be created via [KotlinDeclarationProviderFactory].
     *
     * It may be called frequently, so implementations should cache the results.
     */
    public abstract class KotlinDeclarationProvider : KotlinComposableProvider {
        public abstract fun getClassLikeDeclarationByClassId(classId: ClassId): KtClassLikeDeclaration?
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Map;
    import java.util.Set;
    
    
    /**
     * Provides access to frequently used system properties.
     */
    public class SystemProperties {
        private static final Set<String> STANDARD_PROPERTIES;
    
        static {
            Set<String> standardProperties = new HashSet<String>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/docker.md

    5. Copy the `./app` directory inside the `/code` directory.
    
        As this has all the code which is what **changes most frequently** the Docker **cache** won't be used for this or any **following steps** easily.
    
        So, it's important to put this **near the end** of the `Dockerfile`, to optimize the container image build times.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/runtime/race_amd64.s

    TEXT	runtime·racecallbackthunk(SB), NOSPLIT|NOFRAME, $0-0
    	// Handle command raceGetProcCmd (0) here.
    	// First, code below assumes that we are on curg, while raceGetProcCmd
    	// can be executed on g0. Second, it is called frequently, so will
    	// benefit from this fast path.
    	CMPQ	RARG0, $0
    	JNE	rest
    	get_tls(RARG0)
    	MOVQ	g(RARG0), RARG0
    	MOVQ	g_m(RARG0), RARG0
    	MOVQ	m_p(RARG0), RARG0
    	MOVQ	p_raceprocctx(RARG0), RARG0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/runtime/race_arm64.s

    TEXT	runtime·racecallbackthunk(SB), NOSPLIT|NOFRAME, $0
    	// Handle command raceGetProcCmd (0) here.
    	// First, code below assumes that we are on curg, while raceGetProcCmd
    	// can be executed on g0. Second, it is called frequently, so will
    	// benefit from this fast path.
    	CBNZ	R0, rest
    	MOVD	g, R13
    #ifdef TLS_darwin
    	MOVD	R27, R12 // save R27 a.k.a. REGTMP (callee-save in C). load_g clobbers it
    #endif
    	load_g
    #ifdef TLS_darwin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards.go

    // Calls to Keys should be guarded with a lock on the EndpointShards.
    func (es *EndpointShards) Keys() []ShardKey {
    	// len(shards) ~= number of remote clusters which isn't too large, doing this sort frequently
    	// shouldn't be too problematic. If it becomes an issue we can cache it in the EndpointShards struct.
    	keys := make([]ShardKey, 0, len(es.Shards))
    	for k := range es.Shards {
    		keys = append(keys, k)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. src/internal/trace/trace_test.go

    				{"runtime.GOMAXPROCS", 0},
    				{"main.main", 0},
    			}},
    		}
    		if !stress {
    			// Only check for this stack if !stress because traceAdvance alone could
    			// allocate enough memory to trigger a GC if called frequently enough.
    			// This might cause the runtime.GC call we're trying to match against to
    			// coalesce with an active GC triggered this by traceAdvance. In that case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. src/runtime/race_ppc64le.s

    TEXT	runtime·racecallbackthunk(SB), NOSPLIT|NOFRAME, $0
    	// Handle command raceGetProcCmd (0) here.
    	// First, code below assumes that we are on curg, while raceGetProcCmd
    	// can be executed on g0. Second, it is called frequently, so will
    	// benefit from this fast path.
    	MOVD	$0, R0		// clear R0 since we came from C code
    	CMP	R3, $0
    	BNE	rest
    	// Inline raceGetProdCmd without clobbering callee-save registers.
    	MOVD	runtime·tls_g(SB), R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top