Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 104 of 104 for newLru (0.2 sec)

  1. src/make.bash

    # $HOME/sdk/go1.20.6, or $HOME/go1.4, whichever exists, in that order.
    # We still check $HOME/go1.4 to allow for build scripts that still hard-code
    # that name even though they put newer Go toolchains there.
    
    bootgo=1.20.6
    
    set -e
    
    if [[ ! -f run.bash ]]; then
    	echo 'make.bash must be run from $GOROOT/src' 1>&2
    	exit 1
    fi
    
    if [[ "$GOBUILDTIMELOGFILE" != "" ]]; then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/xds_cache_test.go

    		c.Add(ep1, &model.PushRequest{Start: t1}, any2)
    		if got := c.Get(ep1); got != nil {
    			t.Fatalf("expected no cache, but got %v", got)
    		}
    
    		// cache with newer token
    		c.Add(ep1, &model.PushRequest{Start: time.Now()}, any1)
    		if got := c.Get(ep1); got != any1 {
    			t.Fatalf("unexpected result: %v, want %v", got, any1)
    		}
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 20:43:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. src/sync/pool.go

    	// Since we've disabled preemption, GC cannot happen in between.
    	// Thus here we must observe local at least as large localSize.
    	// We can observe a newer/larger local, it is fine (we must observe its zero-initialized-ness).
    	s := runtime_LoadAcquintptr(&p.localSize) // load-acquire
    	l := p.local                              // load-consume
    	if uintptr(pid) < s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    A fundamental characteristic of the Tooling API is that it operates in a version independent way.
    This means that you can use the same API to work with builds that use different versions of Gradle, including versions that are newer or older than the version of the Tooling API that you are using.
    The Tooling API is Gradle wrapper aware and, by default, uses the same Gradle version as that used by the wrapper-powered build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top