Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,171 for west (0.05 sec)

  1. test/typeparam/graph.go

    	19: {exits: [10]int{up: 29, west: 18, ne: 15, east: 20, south: 30}},
    	20: {exits: [10]int{ne: 19, west: 20, se: 21}},
    	21: {exits: [10]int{north: 20}}, // Dead End
    	22: {exits: [10]int{north: 18, east: 24, down: 23, south: 28, west: 26, nw: 22}},
    	23: {exits: [10]int{east: 22, west: 28, up: 24}},
    	24: {exits: [10]int{ne: 25, down: 23, nw: 28, sw: 26}},
    	25: {exits: [10]int{sw: 24}}, // Grating room (up to Clearing)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-location.yaml

    metadata:
      name: store
    spec:
      parentRefs:
      - name: external-http
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /west
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: store-west
          port: 8080
      - matches:
        - path:
            type: PathPrefix
            value: /east
        backendRefs:
        - group: multicluster.x-k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 664 bytes
    - Viewed (0)
  3. cmd/config-current_test.go

    	)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if site.Region() != "us-west-1" {
    		t.Errorf("Expecting region `us-west-1` found %s", globalSite.Region())
    	}
    
    	if err := saveServerConfig(context.Background(), objLayer, globalServerConfig); err != nil {
    		t.Fatalf("Unable to save updated config file %s", err)
    	}
    
    	// Initialize server config.
    	if err := loadConfig(objLayer, nil); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. cmd/signature-v4-parser_test.go

    		},
    		// Test Case - 7.
    		// Test case with invalid region.
    		{
    			inputCredentialStr: generateCredentialStr(
    				"Z7IXGOO6BZ0REAN1Q26I",
    				UTCNow().Format(yyyymmdd),
    				"us-west-2",
    				"s3",
    				"aws4_request"),
    			expectedCredentials: credentialHeader{},
    			expectedErrCode:     ErrAuthorizationHeaderMalformed,
    		},
    		// Test Case - 8.
    		// Test case with invalid request version.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  5. internal/event/config_test.go

    		panic(err)
    	}
    
    	testCases := []struct {
    		queue          *Queue
    		region         string
    		expectedResult ARN
    	}{
    		{queue1, "eu-west-1", ARN{TargetID{"1", "webhook"}, "eu-west-1"}},
    		{queue1, "", ARN{TargetID{"1", "webhook"}, ""}},
    		{queue2, "us-east-1", ARN{TargetID{"1", "webhook"}, "us-east-1"}},
    		{queue2, "", ARN{TargetID{"1", "webhook"}, ""}},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 05 10:16:33 UTC 2023
    - 29K bytes
    - Viewed (0)
  6. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    			caller: &security.Caller{
    				AuthSource: security.AuthSourceClientCertificate,
    				Identities: []string{
    					"spiffe://mesh.example.com/ns/firstns/sa/firstsa",
    					"hello.west.example.com",
    					"hello.east.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

        /**
         * Returns cases missing from the branches of [KtWhenExpression].
         *
         * The missing cases of the when-expression in the following example are Direction.WEST and Direction.EAST:
         *
         * enum class Direction {
         *   NORTH, SOUTH, WEST, EAST
         * }
         * foo = when(direction) {
         *   Direction.NORTH -> 1
         *   Direction.SOUTH -> 2
         *   else -> 3
         * }
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.kt

    interface Intf {
        fun run()
    }
    
    abstract class Ordinary
    
    annotation class Anno
    
    @Anno
    class Generic<T> : Ordinary(), Intf {
        override fun run() {}
    }
    
    enum class Direction {
        NORTH, SOUTH, WEST, EAST
    }
    
    sealed class Operation {
        class Add(val firstValue: Int, val secondValue: Int) : Operation()
        class Subtract(val minuend: Int, val subtrahend: Int) : Operation()
        class Negate(val value: Int) : Operation()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 426 bytes
    - Viewed (0)
  9. cmd/signature-v4_test.go

    				"X-Amz-SignedHeaders": "host;x-amz-content-sha256;x-amz-date",
    				"X-Amz-Credential":    fmt.Sprintf(credentialTemplate, "Z7IXGOO6BZ0REAN1Q26I", now.Format(yyyymmdd), "us-west-1"),
    			},
    			region:   "us-west-1",
    			expected: ErrInvalidAccessKeyID,
    		},
    		// (2) Should NOT fail with an invalid region if it doesn't verify it.
    		{
    			queryParams: map[string]string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        public final enum static field EAST: Direction
        public final enum static field NORTH: Direction
        public final enum static field SOUTH: Direction
        public final enum static field WEST: Direction
        private synthetic final static method $values(): Direction[]
        static method <clinit>(): void
        private method <init>(p0: java.lang.String, p1: int): void
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top