Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 146 for slug (0.24 sec)

  1. docs/en/docs/tutorial/handling-errors.md

    But when you register an exception handler, you should register it for Starlette's `HTTPException`.
    
    This way, if any part of Starlette's internal code, or a Starlette extension or plug-in, raises a Starlette `HTTPException`, your handler will be able to catch and handle it.
    
    In this example, to be able to have both `HTTPException`s in the same code, Starlette's exceptions is renamed to `StarletteHTTPException`:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. go.mod

    	github.com/rogpeppe/go-internal v1.12.0 // indirect
    	github.com/russross/blackfriday/v2 v2.1.0 // indirect
    	github.com/sagikazarmark/locafero v0.4.0 // indirect
    	github.com/sagikazarmark/slog-shim v0.1.0 // indirect
    	github.com/shopspring/decimal v1.3.1 // indirect
    	github.com/sirupsen/logrus v1.9.3 // indirect
    	github.com/sourcegraph/conc v0.3.0 // indirect
    	github.com/spf13/afero v1.11.0 // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    )
    
    // Unstructured allows objects that do not have Golang structs registered to be manipulated
    // generically. This can be used to deal with the API objects from a plug-in. Unstructured
    // objects still have functioning TypeMeta features-- kind, version, etc.
    //
    // WARNING: This object has accessors for the v1 standard metadata. You *MUST NOT* use this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// Plugins allows specifying a configuration per admission control plugin.
    	// +optional
    	Plugins []AdmissionPluginConfiguration
    }
    
    // AdmissionPluginConfiguration provides the configuration for a single plug-in.
    type AdmissionPluginConfiguration struct {
    	// Name is the name of the admission controller.
    	// It must match the registered admission plugin name.
    	Name string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. src/cmd/vet/vet_test.go

    		"atomic",
    		"bool",
    		"buildtag",
    		"cgo",
    		"composite",
    		"copylock",
    		"deadcode",
    		"directive",
    		"httpresponse",
    		"lostcancel",
    		"method",
    		"nilfunc",
    		"print",
    		"shift",
    		"slog",
    		"structtag",
    		"testingpkg",
    		// "testtag" has its own test
    		"unmarshal",
    		"unsafeptr",
    		"unused",
    	} {
    		pkg := pkg
    		t.Run(pkg, func(t *testing.T) {
    			t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/oauth2-jwt.md

    ```console
    $ pip install "passlib[bcrypt]"
    
    ---> 100%
    ```
    
    </div>
    
    !!! tip
        With `passlib`, you could even configure it to be able to read passwords created by **Django**, a **Flask** security plug-in or many others.
    
        So, you would be able to, for example, share the same data from a Django application in a database with a FastAPI application. Or gradually migrate a Django application using the same database.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

        # linked to from the /var/log/containers directory using names that capture the
        # pod name and container name. These logs are then submitted to
        # Google Cloud Logging which assumes the installation of the cloud-logging plug-in.
        #
        # Example
        # =======
        # A line in the Docker log file might look like this JSON:
        #
        # {"log":"2014/09/25 21:15:03 Got request with path wombat\\n",
        #  "stream":"stderr",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  8. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        # linked to from the /var/log/containers directory using names that capture the
        # pod name and container name. These logs are then submitted to
        # Google Cloud Logging which assumes the installation of the cloud-logging plug-in.
        #
        # Example
        # =======
        # A line in the Docker log file might look like this JSON:
        #
        # {"log":"2014/09/25 21:15:03 Got request with path wombat\\n",
        #  "stream":"stderr",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/istio_ca.go

    		fileBundle.SigningCertFile,
    		fileBundle.SigningKeyFile,
    		fileBundle.CertChainFiles,
    		fileBundle.RootCertFile)
    	if err != nil {
    		log.Errorf("Failed to update new Plug-in CA certs: %v", err)
    		return
    	}
    
    	err = s.updateRootCertAndGenKeyCert()
    	if err != nil {
    		log.Errorf("Failed generating plugged-in istiod key cert: %v", err)
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/CharMatcher.java

        @Override
        public String toString() {
          return description;
        }
      }
    
      /** Implementation of {@link #digit()}. */
      private static final class Digit extends RangesMatcher {
        // Plug the following UnicodeSet pattern into
        // https://unicode.org/cldr/utility/list-unicodeset.jsp
        // [[:Nd:]&[:nv=0:]&[\u0000-\uFFFF]]
        // and get the zeroes from there.
    
        // Must be in ascending order.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top