Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Origins (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/build-cache/from-cache-origin.png

    from-cache-origin.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 112K bytes
    - Viewed (0)
  2. 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)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    oracle
    
    // orange : 2015-03-12 Orange Brand Services Limited
    orange
    
    // organic : 2014-03-27 Identity Digital Limited
    organic
    
    // origins : 2015-10-01 The Estée Lauder Companies Inc.
    origins
    
    // osaka : 2014-09-04 Osaka Registry Co., Ltd.
    osaka
    
    // otsuka : 2013-10-11 Otsuka Holdings Co., Ltd.
    otsuka
    
    // ott : 2015-06-04 Dish DBS Corporation
    ott
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    items: type: string type: array allowMethods: description: List of HTTP methods allowed to access the resource. items: type: string type: array allowOrigin: items: type: string type: array allowOrigins: description: String patterns that match allowed origins. items: oneOf: - not: anyOf: - required: - exact - required: - prefix - required: - regex - required: - exact - required: - prefix - required: - regex properties: exact: type: string prefix: type: string regex: description: RE2 style regex-based match...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    t=si(window),e=t.right,i=t.bottom;si(this.drag,{top:tt(this.pos.y+this.origin.top,0,i-this.drag.offsetHeight),left:tt(this.pos.x+this.origin.left,0,e-this.drag.offsetWidth)})}}},methods:{init:function(t){var e=t.target,i=t.button,n=t.defaultPrevented,r=Ot(this.$el).filter(function(t){return Yt(e,t)})[0];!r||n||0<i||Rt(e)||Yt(e,"."+this.clsNoDrag)||this.handle&&!Yt(e,this.handle)||(t.preventDefault(),this.touched=[this],this.placeholder=r,this.origin=G({target:e,index:pe(r)},this.pos),Ut(document,gt,this.mov...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/webapp/js/admin/popper.min.js.map

    gpuAcceleration: true,\n    /**\n     * @prop {string} [x='bottom']\n     * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin.\n     * Change this if your popper should grow in a direction different from `bottom`\n     */\n    x: 'bottom',\n    /**\n     * @prop {string} [x='left']\n     * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin.\n     * Change this if your popper should grow in a direction different from `right`\n     */\n    y: 'right',\n  },\n\n  /**\n  ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
Back to top