Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 186 for gint (0.04 sec)

  1. docs/de/docs/deployment/https.md

    * **Standardmäßig** bedeutet das, dass Sie nur **ein HTTPS-Zertifikat pro IP-Adresse** haben können.
        * Ganz gleich, wie groß Ihr Server ist oder wie klein die einzelnen Anwendungen darauf sind.
        * Hierfür gibt es jedoch eine **Lösung**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

     * </ul>
     *
     * <p>This class uses (possibly repeated) invocations of {@link java.lang.System#gc()} to cause
     * finalization to happen. However, a call to {@code System.gc()} is specified to be no more than a
     * hint, so this technique may fail at the whim of the JDK implementation, for example if a user
     * specified the JVM flag {@code -XX:+DisableExplicitGC}. But in practice, it works very well for
     * ordinary tests.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. common/config/.golangci.yml

        # XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:
        # if it's called for subdir of a project it can't find external interfaces. All text editor integrations
        # with golangci-lint call it on a directory with the changed file.
        check-exported: false
      gci:
        sections:
          - standard # Captures all standard packages if they do not match another section.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/security/first-steps.md

        Und es ist wahrscheinlich auch für die meisten anderen Anwendungsfälle die beste, es sei denn, Sie sind ein OAuth2-Experte und wissen genau, warum es eine andere Option gibt, die Ihren Anforderungen besser entspricht.
    
        In dem Fall gibt Ihnen **FastAPI** ebenfalls die Tools, die Sie zum Erstellen brauchen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

                String hint = "must be a number between 1 and 65535";
                int port = 0;
                try {
                    port = Integer.parseInt(value);
                } catch (NumberFormatException e) {
                    origin.handleInvalidValue(value, hint);
                }
                if (port < 1 || port > 65535) {
                    origin.handleInvalidValue(value, hint);
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. src/sort/zsortinterface.go

    func order2(data Interface, a, b int, swaps *int) (int, int) {
    	if data.Less(b, a) {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // median returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func median(data Interface, a, b, c int, swaps *int) int {
    	a, b = order2(data, a, b, swaps)
    	b, c = order2(data, b, c, swaps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  7. src/sort/gen_sort_variants.go

    	if {{Less "data" "b" "a"}} {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // median{{.FuncSuffix}} returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func median{{.FuncSuffix}}{{.TypeParam}}(data {{.DataType}}, a, b, c int, swaps *int {{.ExtraParam}}) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    		return fmt.Errorf("invalid toolchain name %q", name)
    	}
    	if f.Toolchain == nil {
    		var hint Expr
    		if f.Go != nil && f.Go.Syntax != nil {
    			hint = f.Go.Syntax
    		} else if f.Module != nil && f.Module.Syntax != nil {
    			hint = f.Module.Syntax
    		}
    		f.Toolchain = &Toolchain{
    			Name:   name,
    			Syntax: f.Syntax.addLine(hint, "toolchain", name),
    		}
    	} else {
    		f.Toolchain.Name = name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    		copy(cNonce[4:12], nonce[16:24])
    		nonce = cNonce
    	} else if len(nonce) != NonceSize {
    		return nil, errors.New("chacha20: wrong nonce size")
    	}
    
    	key, nonce = key[:KeySize], nonce[:NonceSize] // bounds check elimination hint
    	c.key = [8]uint32{
    		binary.LittleEndian.Uint32(key[0:4]),
    		binary.LittleEndian.Uint32(key[4:8]),
    		binary.LittleEndian.Uint32(key[8:12]),
    		binary.LittleEndian.Uint32(key[12:16]),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  10. hack/tools/go.mod

    go 1.21
    
    require (
    	github.com/aojea/sloppy-netparser v0.0.0-20210819225411-1b3bd8b3b975
    	github.com/cespare/prettybench v0.0.0-20150116022406-03b8cfe5406c
    	github.com/client9/misspell v0.3.4
    	github.com/golangci/golangci-lint v1.56.2
    	github.com/jcchavezs/porto v0.6.0
    	go.uber.org/automaxprocs v1.5.2
    	go.uber.org/mock v0.4.0
    	gotest.tools/gotestsum v1.6.4
    	honnef.co/go/tools v0.4.6
    	sigs.k8s.io/logtools v0.8.1
    )
    
    require (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top