Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 470 for spacer (0.38 sec)

  1. src/cmd/internal/sys/args.go

    package sys
    
    // ExecArgLengthLimit is the number of bytes we can safely
    // pass as arguments to an exec.Command.
    //
    // Windows has a limit of 32 KB. To be conservative and not worry about whether
    // that includes spaces or not, just use 30 KB. Darwin's limit is less clear.
    // The OS claims 256KB, but we've seen failures with arglen as small as 50KB.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 02 13:15:42 UTC 2021
    - 550 bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/xchacha20poly1305.go

    		panic("chacha20poly1305: plaintext too large")
    	}
    
    	c := new(chacha20poly1305)
    	hKey, _ := chacha20.HChaCha20(x.key[:], nonce[0:16])
    	copy(c.key[:], hKey)
    
    	// The first 4 bytes of the final nonce are unused counter space.
    	cNonce := make([]byte, NonceSize)
    	copy(cNonce[4:12], nonce[16:24])
    
    	return c.seal(dst, cNonce[:], plaintext, additionalData)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. src/runtime/mem_linux.go

    			throw("runtime: cannot disable permissions in address space")
    		}
    	}
    }
    
    func sysUsedOS(v unsafe.Pointer, n uintptr) {
    	if debug.harddecommit > 0 {
    		p, err := mmap(v, n, _PROT_READ|_PROT_WRITE, _MAP_ANON|_MAP_FIXED|_MAP_PRIVATE, -1, 0)
    		if err == _ENOMEM {
    			throw("runtime: out of memory")
    		}
    		if p != v || err != 0 {
    			throw("runtime: cannot remap pages in address space")
    		}
    		return
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/cmd/internal/quoted/quoted_test.go

    	"testing"
    )
    
    func TestSplit(t *testing.T) {
    	for _, test := range []struct {
    		name    string
    		value   string
    		want    []string
    		wantErr string
    	}{
    		{name: "empty", value: "", want: nil},
    		{name: "space", value: " ", want: nil},
    		{name: "one", value: "a", want: []string{"a"}},
    		{name: "leading_space", value: " a", want: []string{"a"}},
    		{name: "trailing_space", value: "a ", want: []string{"a"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 27 16:39:27 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  5. src/encoding/json/tagkey_test.go

    	X string `jsom:"Misnamed"`
    }
    
    type badFormatTag struct {
    	Y string `:"BadFormat"`
    }
    
    type badCodeTag struct {
    	Z string `json:" !\"#&'()*+,."`
    }
    
    type spaceTag struct {
    	Q string `json:"With space"`
    }
    
    type unicodeTag struct {
    	W string `json:"Ελλάδα"`
    }
    
    func TestStructTagObjectKey(t *testing.T) {
    	tests := []struct {
    		CaseName
    		raw   any
    		value string
    		key   string
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http/StatusLine.kt

          // H T T P / 1 . 1   2 0 0   T e m p o r a r y   R e d i r e c t
          // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0
    
          // Parse protocol like "HTTP/1.1" followed by a space.
          val codeStart: Int
          val protocol: Protocol
          if (statusLine.startsWith("HTTP/1.")) {
            if (statusLine.length < 9 || statusLine[8] != ' ') {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/middleware.md

    * Dann gibt sie die **Response** zurück.
    
    !!! note "Technische Details"
        Wenn Sie Abhängigkeiten mit `yield` haben, wird der Exit-Code *nach* der Middleware ausgeführt.
    
        Wenn es Hintergrundaufgaben gab (später dokumentiert), werden sie *nach* allen Middlewares ausgeführt.
    
    ## Erstellung einer Middleware
    
    Um eine Middleware zu erstellen, verwenden Sie den Dekorator `@app.middleware("http")` über einer Funktion.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 11:26:59 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu_ppc64x_other.go

    //go:build (ppc64 || ppc64le) && !aix && !linux
    
    package cpu
    
    func osinit() {
    	// Other operating systems do not support reading HWCap from auxiliary vector,
    	// reading privileged system registers or sysctl in user space to detect CPU
    	// features at runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 18 06:24:06 UTC 2023
    - 423 bytes
    - Viewed (0)
  9. src/internal/cpu/cpu_arm64_other.go

    package cpu
    
    func osInit() {
    	// Other operating systems do not support reading HWCap from auxiliary vector,
    	// reading privileged aarch64 system registers or sysctl in user space to detect
    	// CPU features at runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 08 15:07:46 UTC 2022
    - 466 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/ReaderInputStream.java

      private void readMoreChars() throws IOException {
        // Possibilities:
        // 1) array has space available on right-hand side (between limit and capacity)
        // 2) array has space available on left-hand side (before position)
        // 3) array has no space available
        //
        // In case 2 we shift the existing chars to the left, and in case 3 we create a bigger
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top