Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 236 for browser (0.29 sec)

  1. docs/sts/tls.md

    ## Caveat
    
    *Applications that use direct S3 API will work fine, however interactive users uploading content using (when POSTing to the presigned URL an app generates) a popup becomes visible on browser to provide client certs, you would have to manually cancel and continue. This may be annoying to use but there is no workaround for now.*
    
    ## Explore Further
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/query-params.md

    ```Python hl_lines="6-7"
    {!../../../docs_src/query_params/tutorial005.py!}
    ```
    
    Here the query parameter `needy` is a required query parameter of type `str`.
    
    If you open in your browser a URL like:
    
    ```
    http://127.0.0.1:8000/items/foo-item
    ```
    
    ...without adding the required parameter `needy`, you will see an error like:
    
    ```JSON
    {
      "detail": [
        {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 09:08:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/form-validator/file.js

    ,a.each(l,function(a,b){if(i=k.indexOf(b)>-1)return!1}),i}),i||(a.formUtils.warn("Trying to upload a file with mime type "+k+" which is not allowed"),e(this,"wrongFileType",l.join(", "),h))),i}return a.formUtils.warn("FileReader not supported by browser, will check file extension"),a.formUtils.validators.validate_extension.validatorFunction(b,f,g,h)},errorMessage:"",errorMessageKey:"wrongFileType"}),a.formUtils.addValidator({name:"extension",validatorFunction:function(b,c,f,g){var h=!0,i=this,j=d(c);return...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  4. src/html/template/css.go

    	//     escapes. For example, a malformed declaration may be missing a
    	//     property, colon (:) or value.
    	// So we need to make sure that values do not have mismatched bracket
    	// or quote characters to prevent the browser from restarting parsing
    	// inside a string that might embed JavaScript source.
    	for i, c := range b {
    		switch c {
    		case 0, '"', '\'', '(', ')', '/', ';', '@', '[', '\\', ']', '`', '{', '}', '<', '>':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/body.md

    # Requestbody
    
    Wenn Sie Daten von einem <abbr title="Client: Eine Software, die sich mit einem Server verbindet.">Client</abbr> (sagen wir, einem Browser) zu Ihrer API senden, dann senden Sie diese als einen **Requestbody** (Deutsch: Anfragekörper).
    
    Ein **Request**body sind Daten, die vom Client zu Ihrer API gesendet werden. Ein **Response**body (Deutsch: Antwortkörper) sind Daten, die Ihre API zum Client sendet.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. docs/sts/README.md

    These credentials can now be used to perform MinIO API operations.
    
    ### Using MinIO Console
    
    - Open MinIO URL on the browser, lets say <http://localhost:9000/>
    - Click on `Login with SSO`
    - User will be redirected to the Keycloak user login page, upon successful login the user will be redirected to MinIO page and logged in automatically,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  7. docs/en/docs/js/termynal.js

         */
        init() {
            /**
             * Calculates width and height of Termynal container.
             * If container is empty and lines are dynamically loaded, defaults to browser `auto` or CSS.
             */
            const containerStyle = getComputedStyle(this.container);
            this.container.style.width = containerStyle.width !== '0px' ?
                containerStyle.width : undefined;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.adoc

    // TODO: this block will start a background process not handled by the content testing
    [listing.terminal]
    ----
    $ wget https://mirrors.jenkins.io/war-stable/latest/jenkins.war
    $ java -jar jenkins.war
    ----
    
    In the browser, navigate to `localhost` with port `8080` to render the Jenkins dashboard.
    You will be asked to set up an new administration user and which plugins to install.
    
    === Installation of plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/NameServiceClient.java

        /**
         * Lookup <tt>hostname</tt> and return it's <tt>UniAddress</tt>. If the
         * <tt>possibleNTDomainOrWorkgroup</tt> parameter is <tt>true</tt> an
         * additional name query will be performed to locate a master browser.
         * 
         * @param hostname
         * @param possibleNTDomainOrWorkgroup
         * 
         * @return the first resolved address
         * @throws UnknownHostException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/web/api.go

    func Get(security SecurityMode, u *url.URL) (*Response, error) {
    	return get(security, u)
    }
    
    // OpenBrowser attempts to open the requested URL in a web browser.
    func OpenBrowser(url string) (opened bool) {
    	return openBrowser(url)
    }
    
    // Join returns the result of adding the slash-separated
    // path elements to the end of u's path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
Back to top