Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sally (0.06 sec)

  1. cmd/bucket-handlers.go

    		IsOwner:         false,
    	})
    
    	encodedSuccessResponse := encodeResponse(PolicyStatus{
    		IsPublic: func() string {
    			// Silly to have special 'boolean' values yes
    			// but complying with silly implementation
    			// https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketPolicyStatus.html
    			if readable && writable {
    				return "TRUE"
    			}
    			return "FALSE"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		return urlErr.Timeout()
    	}
    	return false
    }
    
    func isStreamReset(err error) bool {
    	if err == nil {
    		return false
    	}
    	if urlErr, ok := err.(*url.Error); ok {
    		// Sadly, the client does not receive a more specific indication
    		// of stream reset.
    		return strings.Contains(urlErr.Err.Error(), "INTERNAL_ERROR")
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    		},
    		// IPv4 address in windows-style "print all the digits" form.
    		{
    			in:      "010.000.015.001",
    			wantErr: `ParseAddr("010.000.015.001"): IPv4 field has octet with leading zero`,
    		},
    		// IPv4 address with a silly amount of leading zeros.
    		{
    			in:      "000001.00000002.00000003.000000004",
    			wantErr: `ParseAddr("000001.00000002.00000003.000000004"): IPv4 field has octet with leading zero`,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top