Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 243 for sans (0.06 sec)

  1. docs/fr/docs/advanced/response-directly.md

    ## Utiliser le `jsonable_encoder` dans une `Response`
    
    Parce que **FastAPI** n'apporte aucune modification à une `Response` que vous retournez, vous devez vous assurer que son contenu est prêt à être utilisé (sérialisable).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/resources/org/gradle/reporting/base-style.css

    body {
        margin: 0;
        padding: 0;
        font-family: sans-serif;
        font-size: 12pt;
    }
    
    body, a, a:visited {
        color: #303030;
    }
    
    #content {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    #content h1 {
        font-size: 160%;
        margin-bottom: 10px;
    }
    
    #footer {
        margin-top: 100px;
        font-size: 80%;
        white-space: nowrap;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 10 15:05:34 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/common.go

    	}
    	return nil
    }
    
    // LowercaseSANs can be used to force all SANs to be lowercase so it passes IsDNS1123Subdomain
    func LowercaseSANs(sans []string) {
    	for i, san := range sans {
    		lowercase := strings.ToLower(san)
    		if lowercase != san {
    			klog.V(1).Infof("lowercasing SAN %q to %q", san, lowercase)
    			sans[i] = lowercase
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/options/constant.go

    	APIServerBindPort = "apiserver-bind-port"
    
    	// APIServerCertSANs flag sets extra Subject Alternative Names (SANs) to use for the API Server serving certificate. Can be both IP addresses and DNS names.
    	APIServerCertSANs = "apiserver-cert-extra-sans"
    
    	// APIServerExtraArgs flag sets a extra flags to pass to the API Server or override default ones in form of <flagname>=<value>.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        background-color: white;
        border: 1px solid #f7f7f8;
        border-radius: 4px 4px 0 0;
        cursor: pointer;
        display: inline-block;
        font-weight: normal;
        font-family: 'Lato', Arial, sans-serif;
        margin: 0;
        padding: 4px 20px;
        min-width: 130px;
        max-width: 320px;
        text-align: center;
        filter: grayscale(1);
        -webkit-filter: grayscale(1);
        opacity: 0.7;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/grpcgen/cds.go

    const transportSocketName = "envoy.transport_sockets.tls"
    
    func buildUpstreamTLSContext(sans []string) *tls.UpstreamTlsContext {
    	return &tls.UpstreamTlsContext{
    		CommonTlsContext: buildCommonTLSContext(sans),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4.puml

        BorderStyle dashed
    }
    
    ' Layout
    ' ##################################
    
    !definelong LAYOUT_AS_SKETCH
    skinparam backgroundColor #EEEBDC
    skinparam handwritten true
    skinparam defaultFontName "Comic Sans MS"
    center footer <font color=red>Warning:</font> Created for discussion, needs to be validated
    !enddefinelong
    
    !define LAYOUT_TOP_DOWN top to bottom direction
    !define LAYOUT_LEFT_RIGHT left to right direction
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java

         * the filename of the source file.
         *
         * @param basedir the directory where the artifact is stored
         * @param finalName the name of the artifact sans extension
         * @param artifact the artifact definition
         * @param localRepository the local repository to install into
         * @throws ArtifactInstallationException if an error occurred installing the artifact
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. pkg/bootstrap/option/convert.go

    		if err != nil {
    			return "", err
    		}
    		return marshalString, nil
    	}
    }
    
    func sanConverter(sans []string) convertFunc {
    	return func(*instance) (any, error) {
    		matchers := []string{}
    		for _, s := range sans {
    			matchers = append(matchers, fmt.Sprintf(`{"exact":"%s"}`, s))
    		}
    		return "[" + strings.Join(matchers, ",") + "]", nil
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. docs/fr/docs/benchmarks.md

        * De ce fait, en utilisant FastAPI on minimise le temps de développement, les bugs, le nombre de lignes de code, et on...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:49:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top