Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 131 for 8032 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*8028*/ uint16(xMatch),
    	/*8029*/ uint16(xSetOp), uint16(PADDD),
    	/*8031*/ uint16(xReadSlashR),
    	/*8032*/ uint16(xArgXmm1),
    	/*8033*/ uint16(xArgXmm2M128),
    	/*8034*/ uint16(xMatch),
    	/*8035*/ uint16(xCondDataSize), 0, 8039, 0,
    	/*8039*/ uint16(xSetOp), uint16(UD0),
    	/*8041*/ uint16(xReadSlashR),
    	/*8042*/ uint16(xArgR32),
    	/*8043*/ uint16(xArgRM32),
    	/*8044*/ uint16(xMatch),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  5. pkg/proxy/util/nodeport_addresses_test.go

    						&net.IPNet{IP: netutils.ParseIPSloppy("1.2.3.4"), Mask: net.CIDRMask(30, 32)},
    						&net.IPNet{IP: netutils.ParseIPSloppy("2001:db8::1"), Mask: net.CIDRMask(64, 128)},
    					},
    				},
    				{
    					itf: net.Interface{Index: 1, MTU: 0, Name: "lo", HardwareAddr: nil, Flags: 0},
    					addrs: []net.Addr{
    						&net.IPNet{IP: netutils.ParseIPSloppy("127.0.0.1"), Mask: net.CIDRMask(8, 32)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            and:
            wrapperExecuter.run()
    
            then:
            noExceptionThrown()
        }
    
        @Issue('https://github.com/gradle/gradle-private/issues/3032')
        def "fails with reasonable message when download times out"() {
            given:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
            prepareWrapper(getDefaultBaseUrl())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds.go

    	ret := &resourceExpirationEvaluator{
    		strictRemovedHandlingInAlpha: false,
    	}
    	if len(currentVersion.Major) > 0 {
    		currentMajor64, err := strconv.ParseInt(currentVersion.Major, 10, 32)
    		if err != nil {
    			return nil, err
    		}
    		ret.currentMajor = int(currentMajor64)
    	}
    	if len(currentVersion.Minor) > 0 {
    		// split the "normal" + and - for semver stuff
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 16 03:02:49 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  9. src/strconv/atoi_test.go

    		}
    	}
    }
    
    func TestParseUint32(t *testing.T) {
    	for i := range parseUint32Tests {
    		test := &parseUint32Tests[i]
    		out, err := ParseUint(test.in, 10, 32)
    		if uint64(test.out) != out || !reflect.DeepEqual(test.err, err) {
    			t.Errorf("ParseUint(%q, 10, 32) = %v, %v want %v, %v",
    				test.in, out, err, test.out, test.err)
    		}
    	}
    }
    
    func TestParseUint64(t *testing.T) {
    	for i := range parseUint64Tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  10. pkg/kubelet/client/kubelet_client_test.go

    	testURL, err := url.Parse(testServer.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, portStr, err := net.SplitHostPort(testURL.Host)
    	if err != nil {
    		t.Fatal(err)
    	}
    	port, err := strconv.ParseUint(portStr, 10, 32)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	config := &KubeletClientConfig{
    		Port: uint(port),
    		TLSClientConfig: KubeletTLSConfig{
    			CertFile: "../../client/testdata/mycertvalid.cer",
    			// TLS Configuration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 01:34:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top