Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 8032 (0.03 sec)

  1. cmd/testdata/config/invalid.yaml

    options:
      ftp: # settings for MinIO to act as an ftp server
            address: ':8021'
            passive-port-range: '30000-40000'
      sftp: # settings for MinIO to act as an sftp server
            address: ':8022'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 866 bytes
    - Viewed (0)
  2. cmd/testdata/config/1.yaml

    options:
      ftp: # settings for MinIO to act as an ftp server
            address: ':8021'
            passive-port-range: '30000-40000'
      sftp: # settings for MinIO to act as an sftp server
            address: ':8022'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 881 bytes
    - Viewed (0)
  3. cmd/testdata/config/2.yaml

    options:
      ftp: # settings for MinIO to act as an ftp server
            address: ':8021'
            passive-port-range: '30000-40000'
      sftp: # settings for MinIO to act as an sftp server
            address: ':8022'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 869 bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/get-current-user.md

    And all these thousands of *path operations* can be as small as 3 lines:
    
    === "Python 3.10+"
    
        ```Python hl_lines="30-32"
        {!> ../../../docs_src/security/tutorial002_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="30-32"
        {!> ../../../docs_src/security/tutorial002_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="31-33"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/security/get-current-user.md

    Und alle diese Tausenden von *Pfadoperationen* können nur drei Zeilen lang sein:
    
    === "Python 3.10+"
    
        ```Python hl_lines="30-32"
        {!> ../../../docs_src/security/tutorial002_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="30-32"
        {!> ../../../docs_src/security/tutorial002_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="31-33"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:05 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/sizeof_test.go

    		val    interface{} // type as a value
    		_32bit uintptr     // size on 32bit platforms
    		_64bit uintptr     // size on 64bit platforms
    	}{
    		{Sym{}, 32, 64},
    		{Type{}, 64, 104},
    		{Map{}, 12, 24},
    		{Forward{}, 20, 32},
    		{Func{}, 32, 56},
    		{Struct{}, 12, 24},
    		{Interface{}, 0, 0},
    		{Chan{}, 8, 16},
    		{Array{}, 12, 16},
    		{FuncArgs{}, 4, 8},
    		{ChanArgs{}, 4, 8},
    		{Ptr{}, 4, 8},
    		{Slice{}, 4, 8},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:08:44 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. docs/ftp/README.md

    ## Usage
    
    Start MinIO in a distributed setup, with 'ftp/sftp' enabled.
    
    ```
    minio server http://server{1...4}/disk{1...4}
       --ftp="address=:8021" --ftp="passive-port-range=30000-40000" \
       --sftp="address=:8022" --sftp="ssh-private-key=/home/miniouser/.ssh/id_rsa"
    ...
    ...
    ```
    
    Following example shows connecting via ftp client using `minioadmin` credentials, and list a bucket named `runner`:
    
    ```
    ftp localhost -P 8021
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. test/fixedbugs/issue14636.go

    	checkLinkOutput("0x0", "-B argument must have even number of digits")
    	checkLinkOutput("0x00", "usage")
    	checkLinkOutput("0xYZ", "-B argument contains invalid hex digit")
    	checkLinkOutput("0x"+strings.Repeat("00", 32), "usage")
    	checkLinkOutput("0x"+strings.Repeat("00", 33), "-B option too long (max 32 digits)")
    }
    
    func checkLinkOutput(buildid string, message string) {
    	cmd := exec.Command("go", "tool", "link", "-B", buildid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/syscall/exec_pdeathsig_test.go

    		if err != nil {
    			fmt.Fprintln(os.Stderr, err)
    			os.Exit(1)
    		}
    	}
    
    	uid, err := strconv.ParseUint(u.Uid, 10, 32)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "invalid UID: %v\n", err)
    		os.Exit(1)
    	}
    	gid, err := strconv.ParseUint(u.Gid, 10, 32)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "invalid GID: %v\n", err)
    		os.Exit(1)
    	}
    
    	cmd := exec.Command(os.Args[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 21:23:17 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. src/strconv/doc.go

    // but if the size argument specifies a narrower width the result can be
    // converted to that narrower type without data loss:
    //
    //	s := "2147483647" // biggest int32
    //	i64, err := strconv.ParseInt(s, 10, 32)
    //	...
    //	i := int32(i64)
    //
    // [FormatBool], [FormatFloat], [FormatInt], and [FormatUint] convert values to strings:
    //
    //	s := strconv.FormatBool(true)
    //	s := strconv.FormatFloat(3.1415, 'E', -1, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top