Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 372 for sqlite (0.1 sec)

  1. docs/de/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ## `dependencies` zum *Pfadoperation-Dekorator* hinzufügen
    
    Der *Pfadoperation-Dekorator* erhält ein optionales Argument `dependencies`.
    
    Es sollte eine `list`e von `Depends()` sein:
    
    === "Python 3.9+"
    
        ```Python hl_lines="19"
        {!> ../../../docs_src/dependencies/tutorial006_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="18"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:09:16 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/strings/example_test.go

    	// Output:
    	// moo moo moo
    }
    
    func ExampleSplit() {
    	fmt.Printf("%q\n", strings.Split("a,b,c", ","))
    	fmt.Printf("%q\n", strings.Split("a man a plan a canal panama", "a "))
    	fmt.Printf("%q\n", strings.Split(" xyz ", ""))
    	fmt.Printf("%q\n", strings.Split("", "Bernardo O'Higgins"))
    	// Output:
    	// ["a" "b" "c"]
    	// ["" "man " "plan " "canal panama"]
    	// [" " "x" "y" "z" " "]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. cmd/admin-server-info.go

    	}
    	for _, v := range os.Environ() {
    		if !strings.HasPrefix(v, "MINIO") && !strings.HasPrefix(v, "_MINIO") {
    			continue
    		}
    		split := strings.SplitN(v, "=", 2)
    		key := split[0]
    		value := ""
    		if len(split) > 1 {
    			value = split[1]
    		}
    
    		// Do not send sensitive creds.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <magic priority="50">
          <match value="ZXTape!\x1a" type="string" offset="0"/>
        </magic>
        <glob pattern="*.tzx"/>
      </mime-type>
    
      <mime-type type="application/x-sqlite3">
        <magic priority="50">
          <match value="SQLite format 3\x00" type="string" offset="0"/>
        </magic>
      </mime-type>
    
      <mime-type type="application/x-stata-do">
        <_comment>Stata DTA Script</_comment>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  5. src/os/writeto_linux_test.go

    	// Now call WriteTo (through io.Copy), which will hopefully call poll.SendFile
    	n, err := io.Copy(dst, src)
    	if err != nil {
    		t.Fatalf("io.Copy error: %v", err)
    	}
    
    	// We should have called poll.Splice with the right file descriptor arguments.
    	if n > 0 && !hook.called {
    		t.Fatal("expected to called poll.SendFile")
    	}
    	if hook.called && hook.srcfd != int(src.Fd()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. docs/de/docs/history-design-future.md

    Es war beispielsweise klar, dass es idealerweise auf Standard-Python-Typhinweisen basieren sollte.
    
    Der beste Ansatz bestand außerdem darin, bereits bestehende Standards zu nutzen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:48 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/code.go

    		// https://spec.commonmark.org/0.30/#info-string
    		// “The first word of the info string is typically used to
    		// specify the language of the code sample...”
    		// No definition of what “first word” means though.
    		// The Dingus splits on isUnicodeSpace, but Goldmark only uses space.
    		lang := b.Info
    		for i, c := range lang {
    			if isUnicodeSpace(c) {
    				lang = lang[:i]
    				break
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/features/features.go

    func NewFeatureGate(f *FeatureList, value string) (map[string]bool, error) {
    	featureGate := map[string]bool{}
    	for _, s := range strings.Split(value, ",") {
    		if len(s) == 0 {
    			continue
    		}
    
    		arr := strings.SplitN(s, "=", 2)
    		if len(arr) != 2 {
    			return nil, errors.Errorf("missing bool value for feature-gate key:%s", s)
    		}
    
    		k := strings.TrimSpace(arr[0])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/apigen/apigen.go

    	// For example: type is for Any is 'type.googlepis.com/istio.networking.v1alpha3.EnvoyFilter
    	// We use: networking.istio.io/v1alpha3/EnvoyFilter
    	kind := strings.SplitN(w.TypeUrl, "/", 3)
    	if len(kind) != 3 {
    		log.Warnf("ADS: Unknown watched resources %s", w.TypeUrl)
    		// Still return an empty response - to not break waiting code. It is fine to not know about some resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. pkg/kube/inject/openshift.go

    	"fmt"
    	"strings"
    
    	securityv1 "github.com/openshift/api/security/v1"
    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pkg/log"
    )
    
    // getPreallocatedUIDRange retrieves the annotated value from the namespace, splits it to make
    // the min/max and formats the data into the necessary types for the strategy options.
    func getPreallocatedUIDRange(ns *corev1.Namespace) (*int64, *int64, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top