Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,166 for west (0.06 sec)

  1. docs/changelogs/changelog_4x.md

     *  New: Upgrade to Kotlin 1.3.61.
    
     *  New: Match any number of subdomains with two asterisks in `CertificatePinner`. For example,
        `**.squareup.com` matches `us-west.www.squareup.com`, `www.squareup.com` and `squareup.com`.
    
     *  New: Share threads more aggressively between OkHttp's HTTP/2 connections, connection pool,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. src/time/time_test.go

    	"testing/quick"
    	. "time"
    )
    
    // We should be in PST/PDT, but if the time zone files are missing we
    // won't be. The purpose of this test is to at least explain why some of
    // the subsequent tests fail.
    func TestZoneData(t *testing.T) {
    	lt := Now()
    	// PST is 8 hours west, PDT is 7 hours west. We could use the name but it's not unique.
    	if name, off := lt.Zone(); off != -8*60*60 && off != -7*60*60 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    	policy          *networking.TrafficPolicy
    	port            *model.Port
    	serviceAccounts []string
    	serviceTargets  []model.ServiceTarget
    	// Used for traffic across multiple network clusters
    	// the east-west gateway in a remote cluster will use this value to route
    	// traffic to the appropriate service
    	istioMtlsSni    string
    	clusterMode     ClusterMode
    	direction       model.TrafficDirection
    	meshExternal    bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/kube.go

    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/cert/ca"
    	testenv "istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	kubecluster "istio.io/istio/pkg/test/framework/components/cluster/kube"
    	"istio.io/istio/pkg/test/framework/components/environment/kube"
    	"istio.io/istio/pkg/test/framework/components/istio/ingress"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. src/time/time.go

    // (1-1-1 00:00:00 UTC), (2) is unlikely enough to arise in practice to
    // be a suitable "not set" sentinel, unlike Jan 1 1970, and (3) has a
    // non-negative year even in time zones west of UTC, unlike 1-1-0
    // 00:00:00 UTC, which would be 12-31-(-1) 19:00:00 in New York.
    //
    // The zero Time value does not force a specific epoch for the time
    // representation. For example, to use the Unix epoch internally, we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation_test.go

    		`Australia/Queensland`,
    		`Australia/South`,
    		`Australia/Sydney`,
    		`Australia/Tasmania`,
    		`Australia/Victoria`,
    		`Australia/West`,
    		`Australia/Yancowinna`,
    		`Brazil/Acre`,
    		`Brazil/DeNoronha`,
    		`Brazil/East`,
    		`Brazil/West`,
    		`Canada/Atlantic`,
    		`Canada/Central`,
    		`Canada/Eastern`,
    		`Canada/Mountain`,
    		`Canada/Newfoundland`,
    		`Canada/Pacific`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  7. tests/integration/security/authz_test.go

    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/authz"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/echo/config"
    	"istio.io/istio/pkg/test/framework/components/echo/config/param"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  8. cmd/xl-storage_test.go

    			t.Errorf("Test %d: Expected error %v but got none.", i, test.expError)
    		case err == nil && n != int64(test.length):
    			t.Errorf("Test %d: %d bytes were expected, but %d were written", i, test.length, n)
    		case err == nil && !bytes.Equal(data[test.offset:test.offset+test.length], buffer):
    			t.Errorf("Test %d: Expected bytes: %v, but got: %v", i, data[test.offset:test.offset+test.length], buffer)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  9. src/time/format.go

    func parseTimeZone(value string) (length int, ok bool) {
    	if len(value) < 3 {
    		return 0, false
    	}
    	// Special case 1: ChST and MeST are the only zones with a lower-case letter.
    	if len(value) >= 4 && (value[:4] == "ChST" || value[:4] == "MeST") {
    		return 4, true
    	}
    	// Special case 2: GMT may have an hour offset; treat it specially.
    	if value[:3] == "GMT" {
    		length = parseGMT(value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. pkg/workloadapi/workload.pb.go

    	// If present, the waypoint proxy for this workload.
    	// All incoming requests must go through the waypoint.
    	Waypoint *GatewayAddress `protobuf:"bytes,8,opt,name=waypoint,proto3" json:"waypoint,omitempty"`
    	// If present, East West network gateway this workload can be reached through.
    	// Requests from remote networks should traverse this gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top