Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 295 for Gridin (0.03 sec)

  1. docs/en/docs/tutorial/cors.md

    # CORS (Cross-Origin Resource Sharing)
    
    <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">CORS or "Cross-Origin Resource Sharing"</a> refers to the situations when a frontend running in a browser has JavaScript code that communicates with a backend, and the backend is in a different "origin" than the frontend.
    
    ## Origin
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 16:39
    - 5.1K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    		}
    
    		origin := legacykube.Origin{
    			Type: gvk.CustomResourceDefinition,
    			FullName: resource.FullName{
    				Namespace: resource.Namespace(r.Namespace),
    				Name:      resource.LocalName(r.Name),
    			},
    			ResourceVersion: resource.Version(r.ResourceVersion),
    		}
    		ri := &resource.Instance{
    			Origin: &origin,
    		}
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-04-01 18:17
    - 12.4K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_cors/test_tutorial001.py

        headers = {
            "Origin": "https://localhost.tiangolo.com",
            "Access-Control-Request-Method": "GET",
            "Access-Control-Request-Headers": "X-Example",
        }
        response = client.options("/", headers=headers)
        assert response.status_code == 200, response.text
        assert response.text == "OK"
        assert (
            response.headers["access-control-allow-origin"]
            == "https://localhost.tiangolo.com"
    Registered: 2025-05-25 07:19
    - Last Modified: 2020-07-09 18:06
    - 1.2K bytes
    - Viewed (0)
  4. internal/config/browser/browser.go

    	referrerPolicy := env.Get(EnvBrowserReferrerPolicy, kvs.GetWithDefault(browserReferrerPolicy, DefaultKVS))
    	switch referrerPolicy {
    	case "no-referrer", "no-referrer-when-downgrade", "origin", "origin-when-cross-origin", "same-origin", "strict-origin", "strict-origin-when-cross-origin", "unsafe-url":
    		cfg.ReferrerPolicy = referrerPolicy
    	default:
    		return cfg, fmt.Errorf("invalid value %v for %s", referrerPolicy, browserReferrerPolicy)
    	}
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-06-21 00:58
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java

        public void add(final String origin, final CorsHandler handler) {
            if (logger.isDebugEnabled()) {
                logger.debug("Loaded {}", origin);
            }
            handerMap.put(origin, handler);
        }
    
        public CorsHandler get(final String origin) {
            final CorsHandler handler = handerMap.get(origin);
            if (handler != null) {
                return handler;
            }
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 1.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/DiscreteDomain.java

        this.supportsFastOffset = supportsFastOffset;
      }
    
      /**
       * Returns, conceptually, "origin + distance", or equivalently, the result of calling {@link
       * #next} on {@code origin} {@code distance} times.
       */
      C offset(C origin, long distance) {
        C current = origin;
        checkNonnegative(distance, "distance");
        for (long i = 0; i < distance; i++) {
          current = next(current);
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-13 17:34
    - 10.4K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/cors.md

    # CORS (Cross-Origin Resource Sharing)
    
    <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">CORS o "Cross-Origin Resource Sharing"</a> se refiere a situaciones en las que un frontend que se ejecuta en un navegador tiene código JavaScript que se comunica con un backend, y el backend está en un "origen" diferente al frontend.
    
    ## Origen
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-30 18:26
    - 5.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/DiscreteDomain.java

        this.supportsFastOffset = supportsFastOffset;
      }
    
      /**
       * Returns, conceptually, "origin + distance", or equivalently, the result of calling {@link
       * #next} on {@code origin} {@code distance} times.
       */
      C offset(C origin, long distance) {
        C current = origin;
        checkNonnegative(distance, "distance");
        for (long i = 0; i < distance; i++) {
          current = next(current);
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-13 17:34
    - 10.4K bytes
    - Viewed (0)
  9. fastapi/_compat.py

        origin = get_origin(annotation)
        if origin is Union or origin is UnionType:
            return any(field_annotation_is_complex(arg) for arg in get_args(annotation))
    
        return (
            _annotation_is_complex(annotation)
            or _annotation_is_complex(origin)
            or hasattr(origin, "__pydantic_core_schema__")
            or hasattr(origin, "__get_pydantic_core_schema__")
        )
    
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-22 17:09
    - 23.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/cors/DefaultCorsHandler.java

        }
    
        @Override
        public void process(final String origin, final ServletRequest request, final ServletResponse response) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final HttpServletResponse httpResponse = (HttpServletResponse) response;
            httpResponse.addHeader(ACCESS_CONTROL_ALLOW_ORIGIN, origin);
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 2K bytes
    - Viewed (0)
Back to top