Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for newLru (0.18 sec)

  1. pilot/pkg/model/context.go

    // from the proxy metadata or the proxy ID
    func GetProxyConfigNamespace(proxy *Proxy) string {
    	if proxy == nil {
    		return ""
    	}
    
    	// First look for ISTIO_META_CONFIG_NAMESPACE
    	// All newer proxies (from Istio 1.1 onwards) are supposed to supply this
    	if len(proxy.Metadata.Namespace) > 0 {
    		return proxy.Metadata.Namespace
    	}
    
    	// if not found, for backward compatibility, extract the namespace from
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  2. src/time/format_test.go

    	// 'AST' abbreviation as matching the current location (Baghdad,
    	// where we'd expect a +03 hrs offset); likely because we're using
    	// a recent tzdata release (2017a or newer).
    	// If it happens, skip the Baghdad test.
    	if offset != 0 {
    		t2 = Date(2013, February, 1, 00, 00, 00, 0, baghdad)
    		if t1 != t2 {
    			t.Fatalf("ParseInLocation(Feb 01 2013 AST, Baghdad) = %v, want %v", t1, t2)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. docs/debugging/xl-meta/main.go

    }
    
    var (
    	// XL header specifies the format
    	xlHeader = [4]byte{'X', 'L', '2', ' '}
    
    	// Current version being written.
    	xlVersionCurrent [4]byte
    )
    
    const (
    	// Breaking changes.
    	// Newer versions cannot be read by older software.
    	// This will prevent downgrades to incompatible versions.
    	xlVersionMajor = 1
    
    	// Non breaking changes.
    	// Bumping this is informational, but should be done
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux.go

    func Faccessat(dirfd int, path string, mode uint32, flags int) (err error) {
    	if flags == 0 {
    		return faccessat(dirfd, path, mode)
    	}
    
    	// Attempt to use the newer faccessat2, which supports flags directly,
    	// falling back if it doesn't exist.
    	//
    	// Don't attempt on Android, which does not allow faccessat2 through
    	// its seccomp policy [1] on any version of Android as of 2022-12-20.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/obj9.go

    	// To maintain backwards compatibility, we accept some 4 argument usage of
    	// several opcodes which was likely not intended, but did work. These are not
    	// added to optab to avoid the chance this behavior might be used with newer
    	// instructions.
    	//
    	// Rewrite argument ordering like "ADDEX R3, $3, R4, R5" into
    	//                                "ADDEX R3, R4, $3, R5"
    	case AVSHASIGMAW, AVSHASIGMAD, AADDEX, AXXSLDWI, AXXPERMDI:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. src/os/os_windows_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	fi, err := os.Lstat(link)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if m := fi.Mode(); m&fs.ModeSymlink != 0 {
    		// This can happen depending on newer WSL versions when running as admin or in developer mode.
    		t.Skip("skipping: WSL created reparse tag IO_REPARSE_TAG_SYMLINK instead of an IO_REPARSE_TAG_LX_SYMLINK")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    //
    // The [Parse] and [ParseLax] functions both parse a go.mod file and return an
    // abstract syntax tree. ParseLax ignores unknown statements and may be used to
    // parse go.mod files that may have been developed with newer versions of Go.
    //
    // The [File] struct returned by Parse and ParseLax represent an abstract
    // go.mod file. File has several methods like [File.AddNewRequire] and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/test.go

    	if got, want := issue25143sum(1, 2, 3), C.int(6); got != want {
    		t.Errorf("issue25143sum(1, 2, 3) == %v, expected %v", got, want)
    	}
    }
    
    // issue 26066
    // Wrong type of constant with GCC 8 and newer.
    
    func test26066(t *testing.T) {
    	var i = int64(C.issue26066)
    	if i != -1 {
    		t.Errorf("got %d, want -1", i)
    	}
    }
    
    // issue 26517
    var a C.TypeOne
    var b C.TypeTwo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top