Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Origins (0.13 sec)

  1. pkg/config/validation/validation.go

    		}
    	}
    
    	return
    }
    
    func validateAllowOrigins(origin *networking.StringMatch) error {
    	var match string
    	switch origin.MatchType.(type) {
    	case *networking.StringMatch_Exact:
    		match = origin.GetExact()
    	case *networking.StringMatch_Prefix:
    		match = origin.GetPrefix()
    	case *networking.StringMatch_Regex:
    		match = origin.GetRegex()
    	}
    	if match == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    						},
    						HTTP: echo.HTTP{
    							Headers: headers.New().With(headers.Origin, "cors.com").Build(),
    						},
    						Count: 1,
    						Check: check.And(
    							check.OK(),
    							check.ResponseHeader("Access-Control-Allow-Origin", "cors.com")),
    					}
    				}(),
    			},
    			{
    				// GET without matching origin
    				name: "get no origin match",
    				opts: echo.CallOptions{
    					Port: echo.Port{
    						Name: "http",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

        server.useHttps(handshakeCertificates.sslSocketFactory())
        server.enqueue(
          MockResponse(inTunnel = true),
        )
        server.enqueue(
          MockResponse(body = "encrypted response from the origin server"),
        )
        val hostnameVerifier = RecordingHostnameVerifier()
        client =
          client.newBuilder()
            .sslSocketFactory(
              handshakeCertificates.sslSocketFactory(),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    // DT_FLAGS values.
    type DynFlag int
    
    const (
    	DF_ORIGIN DynFlag = 0x0001 /* Indicates that the object being loaded may
    	   make reference to the
    	   $ORIGIN substitution string */
    	DF_SYMBOLIC DynFlag = 0x0002 /* Indicates "symbolic" linking. */
    	DF_TEXTREL  DynFlag = 0x0004 /* Indicates there may be relocations in non-writable segments. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. cmd/server_test.go

    		"Cache-Control",
    		"Retry-After",
    		"X-Amz-Bucket-Region",
    		"Expires",
    		"X-Amz*",
    		"X-Amz*",
    		"*",
    	}
    	expectedMap.Set("Vary", "Origin")
    
    	req, _ := http.NewRequest(http.MethodOptions, s.endPoint, nil)
    	req.Header.Set("Origin", "http://foobar.com")
    	res, err := s.client.Do(req)
    	if err != nil {
    		c.Fatal(err)
    	}
    
    	for k := range expectedMap {
    		if v, ok := res.Header[k]; !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //	    Error      *ModuleError  // error loading module
    //	    Sum        string        // checksum for path, version (as in go.sum)
    //	    GoModSum   string        // checksum for go.mod (as in go.sum)
    //	    Origin     any           // provenance of module
    //	    Reuse      bool          // reuse of old module info is safe
    //	}
    //
    //	type ModuleError struct {
    //	    Err string // the error itself
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    				ConsecutiveErrors: 101,
    			},
    			valid: true,
    			warn:  true,
    		},
    		{
    			name: "consecutive local origin errors is set but split local origin errors is not set", in: &networking.OutlierDetection{
    				ConsecutiveLocalOriginFailures: &wrapperspb.UInt32Value{Value: 10},
    			},
    			valid: false,
    		},
    	}
    
    	for _, c := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. src/reflect/value.go

    			if xt := x.Type(); !xt.AssignableTo(elem) {
    				panic("reflect: cannot use " + xt.String() + " as type " + elem.String() + " in " + op)
    			}
    			slice.Index(i).Set(x)
    		}
    		origIn := in
    		in = make([]Value, n+1)
    		copy(in[:n], origIn)
    		in[n] = slice
    	}
    
    	nin := len(in)
    	if nin != t.NumIn() {
    		panic("reflect.Value.Call: wrong argument count")
    	}
    	nout := t.NumOut()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    diagonal pair of box corners and the coordinates can be provided as normalized
    (i.e., lying in the interval [0, 1]) or absolute.  Note that this algorithm
    is agnostic to where the origin is in the coordinate system and more
    generally is invariant to orthogonal transformations and translations
    of the coordinate system; thus translating or reflections of the coordinate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    				EnforcingConsecutive_5Xx: &wrappers.UInt32Value{Value: 0},
    				EnforcingSuccessRate:     &wrappers.UInt32Value{Value: 0},
    			},
    		},
    		{
    			"Local origin errors is enabled",
    			&networking.OutlierDetection{
    				SplitExternalLocalOriginErrors: true,
    				ConsecutiveLocalOriginFailures: &wrappers.UInt32Value{Value: 10},
    			},
    			&cluster.OutlierDetection{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top