Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1321 - 1330 of 1,437 for Curl (0.05 sec)

  1. cmd/object-api-options.go

    			return
    		}
    
    		errResp := objectAttributesErrorResponse{
    			ArgumentName:  &argumentName,
    			ArgumentValue: &argumentValue,
    			APIErrorResponse: getAPIErrorResponse(
    				ctx,
    				apiErr,
    				r.URL.Path,
    				w.Header().Get(xhttp.AmzRequestID),
    				w.Header().Get(xhttp.AmzRequestHostID),
    			),
    		}
    
    		writeResponse(w, apiErr.HTTPStatusCode, encodeResponse(errResp), mimeXML)
    	}()
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 21 21:13:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. docs/zh/docs/advanced/generate-clients.md

    ```
    
    ////
    
    ### 使用自定义操作ID生成TypeScript客户端
    
    现在,如果你再次生成客户端,你会发现它具有改善的方法名称:
    
    <img src="/img/tutorial/generate-clients/image07.png">
    
    正如你所见,现在方法名称中只包含标签和函数名,不再包含URL路径和HTTP操作的信息。
    
    ### 预处理用于客户端生成器的OpenAPI规范
    
    生成的代码仍然存在一些**重复的信息**。
    
    我们已经知道该方法与 **items** 相关,因为它在 `ItemsService` 中(从标签中获取),但方法名中仍然有标签名作为前缀。😕
    
    一般情况下对于OpenAPI,我们可能仍然希望保留它,因为这将确保操作ID是**唯一的**。
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/security/simple-oauth2.md

    /// info | Informação
    
    No OAuth2, um "scope" é apenas uma string que declara uma permissão específica necessária.
    
    Não importa se tem outros caracteres como `:` ou se é uma URL.
    
    Esses detalhes são específicos da implementação.
    
    Para OAuth2 são apenas strings.
    
    ///
    
    ## Código para conseguir o `username` e a `password`
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 31 12:17:45 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/docker.md

    <div class="termy">
    
    ```console
    $ docker run -d --name mycontainer -p 80:80 myimage
    ```
    
    </div>
    
    ## Check it
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Sep 18 16:09:57 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/form-validator/security.js

    ataType:"json",error:function(a){return i({valid:!1,message:"Connection failed with status: "+a.statusText},f),!1},success:function(a){i(a,f)}})};a.formUtils.addAsyncValidator({name:"server",validatorFunction:function(a,b,c,d,e,g){var h=c.valAttr("url")||d.backendUrl||document.location.href;g.addClass("validating-server-side"),c.addClass("validating-server-side"),f(h,c,b,d,function(b){g.removeClass("validating-server-side"),c.removeClass("validating-server-side"),b.message&&c.attr(d.validationEr...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 10.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      optional SubjectAccessReviewStatus status = 3;
    }
    
    // NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface
    message NonResourceAttributes {
      // Path is the URL path of the request
      // +optional
      optional string path = 1;
    
      // Verb is the standard HTTP verb
      // +optional
      optional string verb = 2;
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. docs/pt/docs/advanced/custom-response.md

    ```
    
    ---
    
    Ou você pode utilizá-la no parâmetro `response_class`:
    
    ```Python hl_lines="2  7  9"
    {!../../docs_src/custom_response/tutorial006b.py!}
    ```
    
    Se você fizer isso, então você pode retornar a URL diretamente da sua *função de operação de rota*
    
    Neste caso, o `status_code` utilizada será o padrão de `RedirectResponse`, que é `307`.
    
    ---
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 29 11:47:10 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/FileLocationTest.java

                }
            }
        }
    
    
        @Test
        @Ignore
        public void testURLCharacter () throws Exception {
            // ? is invalid in filenames, still this should not matter for the url
            try ( SmbResource r = new SmbFile("smb://0.0.0.0/asdasf/", getContext());
                  SmbResource c = new SmbFile(r, "test?#foo") ) {
                assertEquals("test?#foo", c.getName());
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

        boolean hashesExternal = false;
        byte[] clientChallenge = null;
        byte[] challenge = null;
    
    /**
     * Create an <tt>NtlmPasswordAuthentication</tt> object from the userinfo
     * component of an SMB URL like "<tt>domain;user:pass</tt>". This constructor
     * is used internally be jCIFS when parsing SMB URLs.
     */
    
        public NtlmPasswordAuthentication( String userInfo ) {
            domain = username = password = null;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  10. docs/ko/docs/features.md

        * JSON 객체 (`dict`).
        * 아이템 타입을 정의하는 JSON 배열 (`list`).
        * 최소 길이와 최대 길이를 정의하는 문자열 (`str`) 필드.
        * 최솟값과 최댓값을 가지는 숫자 (`int`, `float`), 그 외.
    
    * 다음과 같이 더욱 이색적인 타입에 대해 검증할 수 있습니다:
        * URL.
        * 이메일.
        * UUID.
        * ...다른 것들.
    
    모든 검증은 견고하면서 잘 확립된 **Pydantic**에 의해 처리됩니다.
    
    ### 보안과 인증
    
    보안과 인증이 통합되어 있습니다. 데이터베이스나 데이터 모델과의 타협없이 사용할 수 있습니다.
    
    다음을 포함하는, 모든 보안 스키마가 OpenAPI에 정의되어 있습니다.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top