Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,052 for templatize (0.14 sec)

  1. docs/en/docs/reference/templating.md

    # Templating - `Jinja2Templates`
    
    You can use the `Jinja2Templates` class to render Jinja templates.
    
    Read more about it in the [FastAPI docs for Templates](https://fastapi.tiangolo.com/advanced/templates/).
    
    You can import it directly from `fastapi.templating`:
    
    ```python
    from fastapi.templating import Jinja2Templates
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 365 bytes
    - Viewed (0)
  2. docs/de/docs/reference/templating.md

    # Templating – `Jinja2Templates`
    
    Sie können die `Jinja2Templates`-Klasse verwenden, um Jinja-Templates zu rendern.
    
    Lesen Sie mehr darüber in der [FastAPI-Dokumentation zu Templates](../advanced/templates.md).
    
    Sie können die Klasse direkt von `fastapi.templating` importieren:
    
    ```python
    from fastapi.templating import Jinja2Templates
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 21 22:26:02 UTC 2024
    - 386 bytes
    - Viewed (0)
  3. src/text/template/template.go

    		name: name,
    	}
    	t.init()
    	return t
    }
    
    // Name returns the name of the template.
    func (t *Template) Name() string {
    	return t.name
    }
    
    // New allocates a new, undefined template associated with the given one and with the same
    // delimiters. The association, which is transitive, allows one template to
    // invoke another with a {{template}} action.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/template.go

    import (
    	"encoding/base64"
    	"fmt"
    	"io"
    	"reflect"
    	"text/template"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/json"
    )
    
    // GoTemplatePrinter is an implementation of ResourcePrinter which formats data with a Go Template.
    type GoTemplatePrinter struct {
    	rawTemplate string
    	template    *template.Template
    }
    
    func NewGoTemplatePrinter(tmpl []byte) (*GoTemplatePrinter, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/config/param/template.go

    package param
    
    import (
    	"text/template"
    	"text/template/parse"
    
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Template that has been parsed to search for template parameters.
    type Template struct {
    	*template.Template
    	params sets.String
    }
    
    // Parse the given template to find the set of template parameters used.
    func Parse(t *template.Template) *Template {
    	return &Template{
    		Template: t,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 21:32:48 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/template.go

    */
    
    package util
    
    import (
    	"bytes"
    	"text/template"
    
    	"github.com/pkg/errors"
    )
    
    // ParseTemplate validates and parses passed as argument template
    func ParseTemplate(strtmpl string, obj interface{}) ([]byte, error) {
    	var buf bytes.Buffer
    	tmpl, err := template.New("template").Parse(strtmpl)
    	if err != nil {
    		return nil, errors.Wrap(err, "error when parsing template")
    	}
    	err = tmpl.Execute(&buf, obj)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 26 07:17:21 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  7. fastapi/templating.py

    from starlette.templating import Jinja2Templates as Jinja2Templates  # noqa...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Dec 20 18:50:00 UTC 2020
    - 76 bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/matcher/template.go

    // PatherTemplateMatcher creates a URI template matcher for path.
    func PathTemplateMatcher(path string) *uri_template.UriTemplateMatchConfig {
    	return &uri_template.UriTemplateMatchConfig{
    		PathTemplate: sanitizePathTemplate(path),
    	}
    }
    
    // sanitizePathTemplate converts the path template into a valid envoy uri template.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. cluster/gce/gci/testdata/kube-apiserver/kms.template

    {{ template "base" .KubeHome }}
    ENCRYPTION_PROVIDER_CONFIG_PATH={{.EncryptionProviderConfigPath}}
    {{if .EncryptionProviderConfig}}
      ENCRYPTION_PROVIDER_CONFIG={{.EncryptionProviderConfig}}
    {{end}}
    {{if .CloudKMSIntegration}}
      readonly CLOUD_KMS_INTEGRATION=true
    {{end}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 335 bytes
    - Viewed (0)
  10. cluster/gce/gci/testdata/kube-apiserver/etcd.template

    {{ template "base" .KubeHome }}
    readonly ETCD_APISERVER_CA_KEY={{.CAKey}}
    readonly ETCD_APISERVER_CA_CERT={{.CACert}}
    readonly ETCD_APISERVER_SERVER_KEY={{.APIServerKey}}
    readonly ETCD_APISERVER_SERVER_CERT={{.APIServerCert}}
    readonly ETCD_APISERVER_CLIENT_KEY={{.ETCDKey}}
    readonly ETCD_APISERVER_CLIENT_CERT={{.ETCDCert}}
    readonly ETCD_SERVERS={{.ETCDServers}}
    readonly ETCD_APISERVER_CA_CERT_PATH={{.CACertPath}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 819 bytes
    - Viewed (0)
Back to top